styles.css 159 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1808px;
  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. #u167363_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u167363 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u167363 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u167363_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u167364_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. #u167364 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u167364 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u167364_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u167365 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u167366_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. #u167366 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u167366 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u167366_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u167367 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u167368_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u167368 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u167368 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u167368_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u167369_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u167369 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u167369 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u167369_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u167370 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u167371_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u167371 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u167371 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u167371_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u167372_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u167372 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u167372 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u167372_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u167373_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u167373 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u167373 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u167373_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u167374_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u167374 {
  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. #u167374 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u167374_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u167375_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u167375 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u167375 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u167375_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u167376_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. #u167376 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u167376 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u167376_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u167377 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u167378_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u167378 {
  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. #u167378 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u167378_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u167379_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. #u167379 {
  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. #u167379 .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. #u167379_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u167380 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u167381_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u167381 {
  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. #u167381 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u167381_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u167382_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. #u167382 {
  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. #u167382 .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. #u167382_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u167383_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. #u167383 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u167383 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u167383_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u167384 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u167385_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u167385 {
  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. #u167385 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u167385_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u167386_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. #u167386 {
  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. #u167386 .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. #u167386_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u167387 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u167388_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u167388 {
  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. #u167388 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u167388_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u167389_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. #u167389 {
  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. #u167389 .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. #u167389_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u167390_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. #u167390 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:105px;
  802. width:375px;
  803. height:732px;
  804. display:flex;
  805. }
  806. #u167390 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u167390_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u167391 {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:0px;
  825. height:0px;
  826. }
  827. #u167392_img {
  828. border-width:0px;
  829. position:absolute;
  830. left:0px;
  831. top:0px;
  832. width:11px;
  833. height:18px;
  834. }
  835. #u167392 {
  836. border-width:0px;
  837. position:absolute;
  838. left:40px;
  839. top:79px;
  840. width:11px;
  841. height:18px;
  842. display:flex;
  843. }
  844. #u167392 .text {
  845. position:absolute;
  846. align-self:center;
  847. padding:2px 2px 2px 2px;
  848. box-sizing:border-box;
  849. width:100%;
  850. }
  851. #u167392_text {
  852. border-width:0px;
  853. word-wrap:break-word;
  854. text-transform:none;
  855. visibility:hidden;
  856. }
  857. #u167393_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. #u167393 {
  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. #u167393 .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. #u167393_text {
  904. border-width:0px;
  905. white-space:nowrap;
  906. text-transform:none;
  907. }
  908. #u167395_img {
  909. border-width:0px;
  910. position:absolute;
  911. left:0px;
  912. top:0px;
  913. width:433px;
  914. height:865px;
  915. }
  916. #u167395 {
  917. border-width:0px;
  918. position:absolute;
  919. left:921px;
  920. top:0px;
  921. width:433px;
  922. height:865px;
  923. display:flex;
  924. }
  925. #u167395 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:2px 2px 2px 2px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u167395_text {
  933. border-width:0px;
  934. word-wrap:break-word;
  935. text-transform:none;
  936. visibility:hidden;
  937. }
  938. #u167396_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. #u167396 {
  962. border-width:0px;
  963. position:absolute;
  964. left:950px;
  965. top:67px;
  966. width:375px;
  967. height:40px;
  968. display:flex;
  969. }
  970. #u167396 .text {
  971. position:absolute;
  972. align-self:center;
  973. padding:2px 2px 2px 2px;
  974. box-sizing:border-box;
  975. width:100%;
  976. }
  977. #u167396_text {
  978. border-width:0px;
  979. word-wrap:break-word;
  980. text-transform:none;
  981. visibility:hidden;
  982. }
  983. #u167397 {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:0px;
  989. height:0px;
  990. }
  991. #u167398_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. #u167398 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:1230px;
  1013. top:71px;
  1014. width:88px;
  1015. height:32px;
  1016. display:flex;
  1017. }
  1018. #u167398 .text {
  1019. position:absolute;
  1020. align-self:center;
  1021. padding:2px 2px 2px 2px;
  1022. box-sizing:border-box;
  1023. width:100%;
  1024. }
  1025. #u167398_text {
  1026. border-width:0px;
  1027. word-wrap:break-word;
  1028. text-transform:none;
  1029. visibility:hidden;
  1030. }
  1031. #u167399 {
  1032. border-width:0px;
  1033. position:absolute;
  1034. left:0px;
  1035. top:0px;
  1036. width:0px;
  1037. height:0px;
  1038. }
  1039. #u167400_img {
  1040. border-width:0px;
  1041. position:absolute;
  1042. left:0px;
  1043. top:0px;
  1044. width:18px;
  1045. height:18px;
  1046. }
  1047. #u167400 {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:1293px;
  1051. top:78px;
  1052. width:18px;
  1053. height:18px;
  1054. display:flex;
  1055. }
  1056. #u167400 .text {
  1057. position:absolute;
  1058. align-self:center;
  1059. padding:2px 2px 2px 2px;
  1060. box-sizing:border-box;
  1061. width:100%;
  1062. }
  1063. #u167400_text {
  1064. border-width:0px;
  1065. word-wrap:break-word;
  1066. text-transform:none;
  1067. visibility:hidden;
  1068. }
  1069. #u167401_img {
  1070. border-width:0px;
  1071. position:absolute;
  1072. left:0px;
  1073. top:0px;
  1074. width:6px;
  1075. height:6px;
  1076. }
  1077. #u167401 {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:1299px;
  1081. top:84px;
  1082. width:6px;
  1083. height:6px;
  1084. display:flex;
  1085. }
  1086. #u167401 .text {
  1087. position:absolute;
  1088. align-self:center;
  1089. padding:2px 2px 2px 2px;
  1090. box-sizing:border-box;
  1091. width:100%;
  1092. }
  1093. #u167401_text {
  1094. border-width:0px;
  1095. word-wrap:break-word;
  1096. text-transform:none;
  1097. visibility:hidden;
  1098. }
  1099. #u167402 {
  1100. border-width:0px;
  1101. position:absolute;
  1102. left:0px;
  1103. top:0px;
  1104. width:0px;
  1105. height:0px;
  1106. }
  1107. #u167403_img {
  1108. border-width:0px;
  1109. position:absolute;
  1110. left:0px;
  1111. top:0px;
  1112. width:5px;
  1113. height:5px;
  1114. }
  1115. #u167403 {
  1116. border-width:0px;
  1117. position:absolute;
  1118. left:1244px;
  1119. top:85px;
  1120. width:5px;
  1121. height:5px;
  1122. display:flex;
  1123. }
  1124. #u167403 .text {
  1125. position:absolute;
  1126. align-self:center;
  1127. padding:2px 2px 2px 2px;
  1128. box-sizing:border-box;
  1129. width:100%;
  1130. }
  1131. #u167403_text {
  1132. border-width:0px;
  1133. word-wrap:break-word;
  1134. text-transform:none;
  1135. visibility:hidden;
  1136. }
  1137. #u167404_img {
  1138. border-width:0px;
  1139. position:absolute;
  1140. left:0px;
  1141. top:0px;
  1142. width:5px;
  1143. height:5px;
  1144. }
  1145. #u167404 {
  1146. border-width:0px;
  1147. position:absolute;
  1148. left:1260px;
  1149. top:85px;
  1150. width:5px;
  1151. height:5px;
  1152. display:flex;
  1153. }
  1154. #u167404 .text {
  1155. position:absolute;
  1156. align-self:center;
  1157. padding:2px 2px 2px 2px;
  1158. box-sizing:border-box;
  1159. width:100%;
  1160. }
  1161. #u167404_text {
  1162. border-width:0px;
  1163. word-wrap:break-word;
  1164. text-transform:none;
  1165. visibility:hidden;
  1166. }
  1167. #u167405_img {
  1168. border-width:0px;
  1169. position:absolute;
  1170. left:0px;
  1171. top:0px;
  1172. width:7px;
  1173. height:7px;
  1174. }
  1175. #u167405 {
  1176. border-width:0px;
  1177. position:absolute;
  1178. left:1251px;
  1179. top:84px;
  1180. width:7px;
  1181. height:7px;
  1182. display:flex;
  1183. }
  1184. #u167405 .text {
  1185. position:absolute;
  1186. align-self:center;
  1187. padding:2px 2px 2px 2px;
  1188. box-sizing:border-box;
  1189. width:100%;
  1190. }
  1191. #u167405_text {
  1192. border-width:0px;
  1193. word-wrap:break-word;
  1194. text-transform:none;
  1195. visibility:hidden;
  1196. }
  1197. #u167406_img {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:19px;
  1203. height:2px;
  1204. }
  1205. #u167406 {
  1206. border-width:0px;
  1207. position:absolute;
  1208. left:1268px;
  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. #u167406 .text {
  1219. position:absolute;
  1220. align-self:center;
  1221. padding:2px 2px 2px 2px;
  1222. box-sizing:border-box;
  1223. width:100%;
  1224. }
  1225. #u167406_text {
  1226. border-width:0px;
  1227. word-wrap:break-word;
  1228. text-transform:none;
  1229. visibility:hidden;
  1230. }
  1231. #u167407_img {
  1232. border-width:0px;
  1233. position:absolute;
  1234. left:0px;
  1235. top:0px;
  1236. width:375px;
  1237. height:44px;
  1238. }
  1239. #u167407 {
  1240. border-width:0px;
  1241. position:absolute;
  1242. left:950px;
  1243. top:24px;
  1244. width:375px;
  1245. height:44px;
  1246. display:flex;
  1247. }
  1248. #u167407 .text {
  1249. position:absolute;
  1250. align-self:center;
  1251. padding:2px 2px 2px 2px;
  1252. box-sizing:border-box;
  1253. width:100%;
  1254. }
  1255. #u167407_text {
  1256. border-width:0px;
  1257. word-wrap:break-word;
  1258. text-transform:none;
  1259. visibility:hidden;
  1260. }
  1261. #u167408_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. #u167408 {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:950px;
  1285. top:788px;
  1286. width:375px;
  1287. height:50px;
  1288. display:flex;
  1289. }
  1290. #u167408 .text {
  1291. position:absolute;
  1292. align-self:center;
  1293. padding:2px 2px 2px 2px;
  1294. box-sizing:border-box;
  1295. width:100%;
  1296. }
  1297. #u167408_text {
  1298. border-width:0px;
  1299. word-wrap:break-word;
  1300. text-transform:none;
  1301. visibility:hidden;
  1302. }
  1303. #u167409 {
  1304. border-width:0px;
  1305. position:absolute;
  1306. left:0px;
  1307. top:0px;
  1308. width:0px;
  1309. height:0px;
  1310. }
  1311. #u167410_img {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:0px;
  1315. top:0px;
  1316. width:24px;
  1317. height:24px;
  1318. }
  1319. #u167410 {
  1320. border-width:0px;
  1321. position:absolute;
  1322. left:990px;
  1323. top:792px;
  1324. width:24px;
  1325. height:24px;
  1326. display:flex;
  1327. font-size:8px;
  1328. }
  1329. #u167410 .text {
  1330. position:absolute;
  1331. align-self:center;
  1332. padding:2px 2px 2px 2px;
  1333. box-sizing:border-box;
  1334. width:100%;
  1335. }
  1336. #u167410_text {
  1337. border-width:0px;
  1338. word-wrap:break-word;
  1339. text-transform:none;
  1340. }
  1341. #u167411_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. #u167411 {
  1361. border-width:0px;
  1362. position:absolute;
  1363. left:990px;
  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. #u167411 .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. #u167411_text {
  1381. border-width:0px;
  1382. white-space:nowrap;
  1383. text-transform:none;
  1384. }
  1385. #u167412 {
  1386. border-width:0px;
  1387. position:absolute;
  1388. left:0px;
  1389. top:0px;
  1390. width:0px;
  1391. height:0px;
  1392. }
  1393. #u167413_img {
  1394. border-width:0px;
  1395. position:absolute;
  1396. left:0px;
  1397. top:0px;
  1398. width:24px;
  1399. height:24px;
  1400. }
  1401. #u167413 {
  1402. border-width:0px;
  1403. position:absolute;
  1404. left:1260px;
  1405. top:794px;
  1406. width:24px;
  1407. height:24px;
  1408. display:flex;
  1409. font-size:8px;
  1410. }
  1411. #u167413 .text {
  1412. position:absolute;
  1413. align-self:center;
  1414. padding:2px 2px 2px 2px;
  1415. box-sizing:border-box;
  1416. width:100%;
  1417. }
  1418. #u167413_text {
  1419. border-width:0px;
  1420. word-wrap:break-word;
  1421. text-transform:none;
  1422. }
  1423. #u167414_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. #u167414 {
  1443. border-width:0px;
  1444. position:absolute;
  1445. left:1260px;
  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. #u167414 .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. #u167414_text {
  1463. border-width:0px;
  1464. white-space:nowrap;
  1465. text-transform:none;
  1466. }
  1467. #u167415_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. #u167415 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:950px;
  1486. top:107px;
  1487. width:375px;
  1488. height:681px;
  1489. display:flex;
  1490. }
  1491. #u167415 .text {
  1492. position:absolute;
  1493. align-self:center;
  1494. padding:2px 2px 2px 2px;
  1495. box-sizing:border-box;
  1496. width:100%;
  1497. }
  1498. #u167415_text {
  1499. border-width:0px;
  1500. word-wrap:break-word;
  1501. text-transform:none;
  1502. visibility:hidden;
  1503. }
  1504. #u167416 {
  1505. border-width:0px;
  1506. position:absolute;
  1507. left:0px;
  1508. top:0px;
  1509. width:0px;
  1510. height:0px;
  1511. }
  1512. #u167417_img {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:0px;
  1516. top:0px;
  1517. width:24px;
  1518. height:24px;
  1519. }
  1520. #u167417 {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:1172px;
  1524. top:792px;
  1525. width:24px;
  1526. height:24px;
  1527. display:flex;
  1528. font-size:8px;
  1529. }
  1530. #u167417 .text {
  1531. position:absolute;
  1532. align-self:center;
  1533. padding:2px 2px 2px 2px;
  1534. box-sizing:border-box;
  1535. width:100%;
  1536. }
  1537. #u167417_text {
  1538. border-width:0px;
  1539. word-wrap:break-word;
  1540. text-transform:none;
  1541. }
  1542. #u167418_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. #u167418 {
  1562. border-width:0px;
  1563. position:absolute;
  1564. left:1166px;
  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. #u167418 .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. #u167418_text {
  1582. border-width:0px;
  1583. white-space:nowrap;
  1584. text-transform:none;
  1585. }
  1586. #u167419 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:0px;
  1590. top:0px;
  1591. width:0px;
  1592. height:0px;
  1593. }
  1594. #u167420_img {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:0px;
  1598. top:0px;
  1599. width:24px;
  1600. height:24px;
  1601. }
  1602. #u167420 {
  1603. border-width:0px;
  1604. position:absolute;
  1605. left:1078px;
  1606. top:792px;
  1607. width:24px;
  1608. height:24px;
  1609. display:flex;
  1610. font-size:8px;
  1611. }
  1612. #u167420 .text {
  1613. position:absolute;
  1614. align-self:center;
  1615. padding:2px 2px 2px 2px;
  1616. box-sizing:border-box;
  1617. width:100%;
  1618. }
  1619. #u167420_text {
  1620. border-width:0px;
  1621. word-wrap:break-word;
  1622. text-transform:none;
  1623. }
  1624. #u167421_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. #u167421 {
  1644. border-width:0px;
  1645. position:absolute;
  1646. left:1072px;
  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. #u167421 .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. #u167421_text {
  1664. border-width:0px;
  1665. white-space:nowrap;
  1666. text-transform:none;
  1667. }
  1668. #u167422_div {
  1669. border-width:0px;
  1670. position:absolute;
  1671. left:0px;
  1672. top:0px;
  1673. width:375px;
  1674. height:788px;
  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. #u167422 {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:950px;
  1690. top:105px;
  1691. width:375px;
  1692. height:788px;
  1693. display:flex;
  1694. }
  1695. #u167422 .text {
  1696. position:absolute;
  1697. align-self:center;
  1698. padding:2px 2px 2px 2px;
  1699. box-sizing:border-box;
  1700. width:100%;
  1701. }
  1702. #u167422_text {
  1703. border-width:0px;
  1704. word-wrap:break-word;
  1705. text-transform:none;
  1706. visibility:hidden;
  1707. }
  1708. #u167423 {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:0px;
  1712. top:0px;
  1713. width:0px;
  1714. height:0px;
  1715. }
  1716. #u167424_img {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:0px;
  1720. top:0px;
  1721. width:11px;
  1722. height:18px;
  1723. }
  1724. #u167424 {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:961px;
  1728. top:79px;
  1729. width:11px;
  1730. height:18px;
  1731. display:flex;
  1732. }
  1733. #u167424 .text {
  1734. position:absolute;
  1735. align-self:center;
  1736. padding:2px 2px 2px 2px;
  1737. box-sizing:border-box;
  1738. width:100%;
  1739. }
  1740. #u167424_text {
  1741. border-width:0px;
  1742. word-wrap:break-word;
  1743. text-transform:none;
  1744. visibility:hidden;
  1745. }
  1746. #u167425_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. #u167425 {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:1103px;
  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. #u167425 .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. #u167425_text {
  1793. border-width:0px;
  1794. white-space:nowrap;
  1795. text-transform:none;
  1796. }
  1797. #u167426 {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:0px;
  1803. height:0px;
  1804. }
  1805. #u167427_img {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:0px;
  1809. top:0px;
  1810. width:375px;
  1811. height:69px;
  1812. }
  1813. #u167427 {
  1814. border-width:0px;
  1815. position:absolute;
  1816. left:29px;
  1817. top:105px;
  1818. width:375px;
  1819. height:69px;
  1820. display:flex;
  1821. }
  1822. #u167427 .text {
  1823. position:absolute;
  1824. align-self:center;
  1825. padding:2px 2px 2px 2px;
  1826. box-sizing:border-box;
  1827. width:100%;
  1828. }
  1829. #u167427_text {
  1830. border-width:0px;
  1831. word-wrap:break-word;
  1832. text-transform:none;
  1833. visibility:hidden;
  1834. }
  1835. #u167428_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. #u167428 {
  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. #u167428 .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. #u167428_text {
  1880. border-width:0px;
  1881. white-space:nowrap;
  1882. text-transform:none;
  1883. }
  1884. #u167429_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. #u167429 {
  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. #u167429 .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. #u167429_text {
  1931. border-width:0px;
  1932. white-space:nowrap;
  1933. text-transform:none;
  1934. }
  1935. #u167430_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. #u167430 {
  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. #u167430 .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. #u167430_text {
  1982. border-width:0px;
  1983. white-space:nowrap;
  1984. text-transform:none;
  1985. }
  1986. #u167431 {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:0px;
  1990. top:0px;
  1991. width:0px;
  1992. height:0px;
  1993. }
  1994. #u167432_img {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:0px;
  1998. top:0px;
  1999. width:375px;
  2000. height:40px;
  2001. }
  2002. #u167432 {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:29px;
  2006. top:174px;
  2007. width:375px;
  2008. height:40px;
  2009. display:flex;
  2010. }
  2011. #u167432 .text {
  2012. position:absolute;
  2013. align-self:center;
  2014. padding:2px 2px 2px 2px;
  2015. box-sizing:border-box;
  2016. width:100%;
  2017. }
  2018. #u167432_text {
  2019. border-width:0px;
  2020. word-wrap:break-word;
  2021. text-transform:none;
  2022. visibility:hidden;
  2023. }
  2024. #u167433_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. #u167433 {
  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. #u167433 .text {
  2062. position:absolute;
  2063. align-self:center;
  2064. padding:2px 2px 2px 2px;
  2065. box-sizing:border-box;
  2066. width:100%;
  2067. }
  2068. #u167433_text {
  2069. border-width:0px;
  2070. white-space:nowrap;
  2071. text-transform:none;
  2072. }
  2073. #u167434_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. #u167434 {
  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. #u167434 .text {
  2116. position:absolute;
  2117. align-self:center;
  2118. padding:2px 2px 2px 2px;
  2119. box-sizing:border-box;
  2120. width:100%;
  2121. }
  2122. #u167434_text {
  2123. border-width:0px;
  2124. white-space:nowrap;
  2125. text-transform:none;
  2126. }
  2127. #u167435_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. #u167435 {
  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. #u167435 .text {
  2165. position:absolute;
  2166. align-self:center;
  2167. padding:2px 2px 2px 2px;
  2168. box-sizing:border-box;
  2169. width:100%;
  2170. }
  2171. #u167435_text {
  2172. border-width:0px;
  2173. white-space:nowrap;
  2174. text-transform:none;
  2175. }
  2176. #u167436_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. #u167436 {
  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. #u167436 .text {
  2214. position:absolute;
  2215. align-self:center;
  2216. padding:2px 2px 2px 2px;
  2217. box-sizing:border-box;
  2218. width:100%;
  2219. }
  2220. #u167436_text {
  2221. border-width:0px;
  2222. white-space:nowrap;
  2223. text-transform:none;
  2224. }
  2225. #u167437 {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:0px;
  2229. top:0px;
  2230. width:0px;
  2231. height:0px;
  2232. }
  2233. #u167438_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. #u167438 {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:364px;
  2252. top:174px;
  2253. width:40px;
  2254. height:40px;
  2255. display:flex;
  2256. }
  2257. #u167438 .text {
  2258. position:absolute;
  2259. align-self:center;
  2260. padding:2px 2px 2px 2px;
  2261. box-sizing:border-box;
  2262. width:100%;
  2263. }
  2264. #u167438_text {
  2265. border-width:0px;
  2266. word-wrap:break-word;
  2267. text-transform:none;
  2268. visibility:hidden;
  2269. }
  2270. #u167439_img {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:0px;
  2274. top:0px;
  2275. width:16px;
  2276. height:16px;
  2277. }
  2278. #u167439 {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:378px;
  2282. top:186px;
  2283. width:16px;
  2284. height:16px;
  2285. display:flex;
  2286. }
  2287. #u167439 .text {
  2288. position:absolute;
  2289. align-self:center;
  2290. padding:2px 2px 2px 2px;
  2291. box-sizing:border-box;
  2292. width:100%;
  2293. }
  2294. #u167439_text {
  2295. border-width:0px;
  2296. word-wrap:break-word;
  2297. text-transform:none;
  2298. visibility:hidden;
  2299. }
  2300. #u167440 {
  2301. border-width:0px;
  2302. position:absolute;
  2303. left:0px;
  2304. top:0px;
  2305. width:0px;
  2306. height:0px;
  2307. }
  2308. #u167441_img {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:375px;
  2314. height:69px;
  2315. }
  2316. #u167441 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:950px;
  2320. top:105px;
  2321. width:375px;
  2322. height:69px;
  2323. display:flex;
  2324. }
  2325. #u167441 .text {
  2326. position:absolute;
  2327. align-self:center;
  2328. padding:2px 2px 2px 2px;
  2329. box-sizing:border-box;
  2330. width:100%;
  2331. }
  2332. #u167441_text {
  2333. border-width:0px;
  2334. word-wrap:break-word;
  2335. text-transform:none;
  2336. visibility:hidden;
  2337. }
  2338. #u167442_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. #u167442 {
  2363. border-width:0px;
  2364. position:absolute;
  2365. left:970px;
  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. #u167442 .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. #u167442_text {
  2383. border-width:0px;
  2384. white-space:nowrap;
  2385. text-transform:none;
  2386. }
  2387. #u167443_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. #u167443 {
  2413. border-width:0px;
  2414. position:absolute;
  2415. left:1087px;
  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. #u167443 .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. #u167443_text {
  2434. border-width:0px;
  2435. white-space:nowrap;
  2436. text-transform:none;
  2437. }
  2438. #u167444_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. #u167444 {
  2464. border-width:0px;
  2465. position:absolute;
  2466. left:1180px;
  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. #u167444 .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. #u167444_text {
  2485. border-width:0px;
  2486. white-space:nowrap;
  2487. text-transform:none;
  2488. }
  2489. #u167445 {
  2490. border-width:0px;
  2491. position:absolute;
  2492. left:0px;
  2493. top:0px;
  2494. width:0px;
  2495. height:0px;
  2496. }
  2497. #u167446_img {
  2498. border-width:0px;
  2499. position:absolute;
  2500. left:0px;
  2501. top:0px;
  2502. width:375px;
  2503. height:40px;
  2504. }
  2505. #u167446 {
  2506. border-width:0px;
  2507. position:absolute;
  2508. left:950px;
  2509. top:174px;
  2510. width:375px;
  2511. height:40px;
  2512. display:flex;
  2513. }
  2514. #u167446 .text {
  2515. position:absolute;
  2516. align-self:center;
  2517. padding:2px 2px 2px 2px;
  2518. box-sizing:border-box;
  2519. width:100%;
  2520. }
  2521. #u167446_text {
  2522. border-width:0px;
  2523. word-wrap:break-word;
  2524. text-transform:none;
  2525. visibility:hidden;
  2526. }
  2527. #u167447_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. #u167447 {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:1043px;
  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. #u167447 .text {
  2565. position:absolute;
  2566. align-self:center;
  2567. padding:2px 2px 2px 2px;
  2568. box-sizing:border-box;
  2569. width:100%;
  2570. }
  2571. #u167447_text {
  2572. border-width:0px;
  2573. white-space:nowrap;
  2574. text-transform:none;
  2575. }
  2576. #u167448_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. #u167448 {
  2601. border-width:0px;
  2602. position:absolute;
  2603. left:1131px;
  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. #u167448 .text {
  2614. position:absolute;
  2615. align-self:center;
  2616. padding:2px 2px 2px 2px;
  2617. box-sizing:border-box;
  2618. width:100%;
  2619. }
  2620. #u167448_text {
  2621. border-width:0px;
  2622. white-space:nowrap;
  2623. text-transform:none;
  2624. }
  2625. #u167449_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. #u167449 {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:1218px;
  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. #u167449 .text {
  2668. position:absolute;
  2669. align-self:center;
  2670. padding:2px 2px 2px 2px;
  2671. box-sizing:border-box;
  2672. width:100%;
  2673. }
  2674. #u167449_text {
  2675. border-width:0px;
  2676. white-space:nowrap;
  2677. text-transform:none;
  2678. }
  2679. #u167450_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. #u167450 {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:970px;
  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. #u167450 .text {
  2717. position:absolute;
  2718. align-self:center;
  2719. padding:2px 2px 2px 2px;
  2720. box-sizing:border-box;
  2721. width:100%;
  2722. }
  2723. #u167450_text {
  2724. border-width:0px;
  2725. white-space:nowrap;
  2726. text-transform:none;
  2727. }
  2728. #u167451 {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:0px;
  2732. top:0px;
  2733. width:0px;
  2734. height:0px;
  2735. }
  2736. #u167452_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. #u167452 {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:1285px;
  2755. top:174px;
  2756. width:40px;
  2757. height:40px;
  2758. display:flex;
  2759. }
  2760. #u167452 .text {
  2761. position:absolute;
  2762. align-self:center;
  2763. padding:2px 2px 2px 2px;
  2764. box-sizing:border-box;
  2765. width:100%;
  2766. }
  2767. #u167452_text {
  2768. border-width:0px;
  2769. word-wrap:break-word;
  2770. text-transform:none;
  2771. visibility:hidden;
  2772. }
  2773. #u167453_img {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:0px;
  2777. top:0px;
  2778. width:16px;
  2779. height:16px;
  2780. }
  2781. #u167453 {
  2782. border-width:0px;
  2783. position:absolute;
  2784. left:1299px;
  2785. top:186px;
  2786. width:16px;
  2787. height:16px;
  2788. display:flex;
  2789. }
  2790. #u167453 .text {
  2791. position:absolute;
  2792. align-self:center;
  2793. padding:2px 2px 2px 2px;
  2794. box-sizing:border-box;
  2795. width:100%;
  2796. }
  2797. #u167453_text {
  2798. border-width:0px;
  2799. word-wrap:break-word;
  2800. text-transform:none;
  2801. visibility:hidden;
  2802. }
  2803. #u167454 {
  2804. border-width:0px;
  2805. position:absolute;
  2806. left:0px;
  2807. top:0px;
  2808. width:0px;
  2809. height:0px;
  2810. }
  2811. #u167455_img {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:0px;
  2815. top:0px;
  2816. width:355px;
  2817. height:160px;
  2818. }
  2819. #u167455 {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:39px;
  2823. top:224px;
  2824. width:355px;
  2825. height:160px;
  2826. display:flex;
  2827. }
  2828. #u167455 .text {
  2829. position:absolute;
  2830. align-self:center;
  2831. padding:2px 2px 2px 2px;
  2832. box-sizing:border-box;
  2833. width:100%;
  2834. }
  2835. #u167455_text {
  2836. border-width:0px;
  2837. word-wrap:break-word;
  2838. text-transform:none;
  2839. visibility:hidden;
  2840. }
  2841. #u167456_div {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:0px;
  2845. top:0px;
  2846. width:225px;
  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. #u167456 {
  2867. border-width:0px;
  2868. position:absolute;
  2869. left:44px;
  2870. top:234px;
  2871. width:225px;
  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. #u167456 .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. #u167456_text {
  2888. border-width:0px;
  2889. white-space:nowrap;
  2890. text-transform:none;
  2891. }
  2892. #u167457_div {
  2893. border-width:0px;
  2894. position:absolute;
  2895. left:0px;
  2896. top:0px;
  2897. width:199px;
  2898. height:68px;
  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. #u167457 {
  2918. border-width:0px;
  2919. position:absolute;
  2920. left:54px;
  2921. top:264px;
  2922. width:199px;
  2923. height:68px;
  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. #u167457 .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. #u167457_text {
  2939. border-width:0px;
  2940. white-space:nowrap;
  2941. text-transform:none;
  2942. }
  2943. #u167458_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. #u167458 {
  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. #u167458 .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. #u167458_text {
  2988. border-width:0px;
  2989. white-space:nowrap;
  2990. text-transform:none;
  2991. }
  2992. #u167459_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. #u167459 {
  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. #u167459 .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. #u167459_text {
  3041. border-width:0px;
  3042. white-space:nowrap;
  3043. text-transform:none;
  3044. }
  3045. #u167460_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. #u167460 {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:298px;
  3069. top:344px;
  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. #u167460 .text {
  3080. position:absolute;
  3081. align-self:center;
  3082. padding:2px 2px 2px 2px;
  3083. box-sizing:border-box;
  3084. width:100%;
  3085. }
  3086. #u167460_text {
  3087. border-width:0px;
  3088. word-wrap:break-word;
  3089. text-transform:none;
  3090. }
  3091. #u167461_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. #u167461 {
  3115. border-width:0px;
  3116. position:absolute;
  3117. left:202px;
  3118. top:344px;
  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. #u167461 .text {
  3129. position:absolute;
  3130. align-self:center;
  3131. padding:2px 2px 2px 2px;
  3132. box-sizing:border-box;
  3133. width:100%;
  3134. }
  3135. #u167461_text {
  3136. border-width:0px;
  3137. word-wrap:break-word;
  3138. text-transform:none;
  3139. }
  3140. #u167462_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. #u167462 {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:104px;
  3165. top:354px;
  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. #u167462 .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. #u167462_text {
  3184. border-width:0px;
  3185. word-wrap:break-word;
  3186. text-transform:none;
  3187. }
  3188. #u167463 {
  3189. border-width:0px;
  3190. position:absolute;
  3191. left:0px;
  3192. top:0px;
  3193. width:0px;
  3194. height:0px;
  3195. }
  3196. #u167464_img {
  3197. border-width:0px;
  3198. position:absolute;
  3199. left:0px;
  3200. top:0px;
  3201. width:355px;
  3202. height:150px;
  3203. }
  3204. #u167464 {
  3205. border-width:0px;
  3206. position:absolute;
  3207. left:39px;
  3208. top:394px;
  3209. width:355px;
  3210. height:150px;
  3211. display:flex;
  3212. }
  3213. #u167464 .text {
  3214. position:absolute;
  3215. align-self:center;
  3216. padding:2px 2px 2px 2px;
  3217. box-sizing:border-box;
  3218. width:100%;
  3219. }
  3220. #u167464_text {
  3221. border-width:0px;
  3222. word-wrap:break-word;
  3223. text-transform:none;
  3224. visibility:hidden;
  3225. }
  3226. #u167465_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. #u167465 {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:44px;
  3255. top:404px;
  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. #u167465 .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. #u167465_text {
  3273. border-width:0px;
  3274. white-space:nowrap;
  3275. text-transform:none;
  3276. }
  3277. #u167466_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. #u167466 {
  3303. border-width:0px;
  3304. position:absolute;
  3305. left:54px;
  3306. top:434px;
  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. #u167466 .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. #u167466_text {
  3324. border-width:0px;
  3325. white-space:nowrap;
  3326. text-transform:none;
  3327. }
  3328. #u167467_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. #u167467 {
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:318px;
  3356. top:434px;
  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. #u167467 .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. #u167467_text {
  3373. border-width:0px;
  3374. white-space:nowrap;
  3375. text-transform:none;
  3376. }
  3377. #u167468_div {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:0px;
  3381. top:0px;
  3382. width:41px;
  3383. height:24px;
  3384. background:inherit;
  3385. background-color:rgba(255, 255, 255, 0);
  3386. border:none;
  3387. border-left:0px;
  3388. border-top:0px;
  3389. border-right:0px;
  3390. border-radius:0px;
  3391. border-bottom-right-radius:0px;
  3392. border-bottom-left-radius:0px;
  3393. -moz-box-shadow:none;
  3394. -webkit-box-shadow:none;
  3395. box-shadow:none;
  3396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3397. font-weight:400;
  3398. font-style:normal;
  3399. font-size:10px;
  3400. text-align:right;
  3401. line-height:24px;
  3402. }
  3403. #u167468 {
  3404. border-width:0px;
  3405. position:absolute;
  3406. left:338px;
  3407. top:459px;
  3408. width:41px;
  3409. height:24px;
  3410. display:flex;
  3411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3412. font-weight:400;
  3413. font-style:normal;
  3414. font-size:10px;
  3415. text-align:right;
  3416. line-height:24px;
  3417. }
  3418. #u167468 .text {
  3419. position:absolute;
  3420. align-self:flex-start;
  3421. padding:0px 0px 0px 0px;
  3422. box-sizing:border-box;
  3423. width:100%;
  3424. }
  3425. #u167468_text {
  3426. border-width:0px;
  3427. white-space:nowrap;
  3428. text-transform:none;
  3429. }
  3430. #u167469_div {
  3431. border-width:0px;
  3432. position:absolute;
  3433. left:0px;
  3434. top:0px;
  3435. width:86px;
  3436. height:30px;
  3437. background:inherit;
  3438. background-color:rgba(24, 144, 255, 1);
  3439. border:none;
  3440. border-radius:81px;
  3441. -moz-box-shadow:none;
  3442. -webkit-box-shadow:none;
  3443. box-shadow:none;
  3444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3445. font-weight:400;
  3446. font-style:normal;
  3447. font-size:12px;
  3448. color:#FFFFFF;
  3449. }
  3450. #u167469 {
  3451. border-width:0px;
  3452. position:absolute;
  3453. left:300px;
  3454. top:504px;
  3455. width:86px;
  3456. height:30px;
  3457. display:flex;
  3458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3459. font-weight:400;
  3460. font-style:normal;
  3461. font-size:12px;
  3462. color:#FFFFFF;
  3463. }
  3464. #u167469 .text {
  3465. position:absolute;
  3466. align-self:center;
  3467. padding:2px 2px 2px 2px;
  3468. box-sizing:border-box;
  3469. width:100%;
  3470. }
  3471. #u167469_text {
  3472. border-width:0px;
  3473. word-wrap:break-word;
  3474. text-transform:none;
  3475. }
  3476. #u167470_div {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:0px;
  3480. top:0px;
  3481. width:86px;
  3482. height:30px;
  3483. background:inherit;
  3484. background-color:rgba(255, 255, 255, 1);
  3485. box-sizing:border-box;
  3486. border-width:1px;
  3487. border-style:solid;
  3488. border-color:rgba(127, 127, 127, 1);
  3489. border-radius:81px;
  3490. -moz-box-shadow:none;
  3491. -webkit-box-shadow:none;
  3492. box-shadow:none;
  3493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3494. font-weight:400;
  3495. font-style:normal;
  3496. font-size:12px;
  3497. color:#555555;
  3498. }
  3499. #u167470 {
  3500. border-width:0px;
  3501. position:absolute;
  3502. left:204px;
  3503. top:504px;
  3504. width:86px;
  3505. height:30px;
  3506. display:flex;
  3507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3508. font-weight:400;
  3509. font-style:normal;
  3510. font-size:12px;
  3511. color:#555555;
  3512. }
  3513. #u167470 .text {
  3514. position:absolute;
  3515. align-self:center;
  3516. padding:2px 2px 2px 2px;
  3517. box-sizing:border-box;
  3518. width:100%;
  3519. }
  3520. #u167470_text {
  3521. border-width:0px;
  3522. word-wrap:break-word;
  3523. text-transform:none;
  3524. }
  3525. #u167471_div {
  3526. border-width:0px;
  3527. position:absolute;
  3528. left:0px;
  3529. top:0px;
  3530. width:87px;
  3531. height:11px;
  3532. background:inherit;
  3533. background-color:rgba(255, 255, 0, 0.0980392156862745);
  3534. border:none;
  3535. border-radius:5px;
  3536. -moz-box-shadow:none;
  3537. -webkit-box-shadow:none;
  3538. box-shadow:none;
  3539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3540. font-weight:400;
  3541. font-style:normal;
  3542. font-size:8px;
  3543. color:#F59A23;
  3544. text-align:center;
  3545. }
  3546. #u167471 {
  3547. border-width:0px;
  3548. position:absolute;
  3549. left:106px;
  3550. top:514px;
  3551. width:87px;
  3552. height:11px;
  3553. display:flex;
  3554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3555. font-weight:400;
  3556. font-style:normal;
  3557. font-size:8px;
  3558. color:#F59A23;
  3559. text-align:center;
  3560. }
  3561. #u167471 .text {
  3562. position:absolute;
  3563. align-self:flex-start;
  3564. padding:0px 0px 0px 0px;
  3565. box-sizing:border-box;
  3566. width:100%;
  3567. }
  3568. #u167471_text {
  3569. border-width:0px;
  3570. word-wrap:break-word;
  3571. text-transform:none;
  3572. }
  3573. #u167472 {
  3574. border-width:0px;
  3575. position:absolute;
  3576. left:0px;
  3577. top:0px;
  3578. width:0px;
  3579. height:0px;
  3580. }
  3581. #u167473_img {
  3582. border-width:0px;
  3583. position:absolute;
  3584. left:0px;
  3585. top:0px;
  3586. width:355px;
  3587. height:150px;
  3588. }
  3589. #u167473 {
  3590. border-width:0px;
  3591. position:absolute;
  3592. left:39px;
  3593. top:554px;
  3594. width:355px;
  3595. height:150px;
  3596. display:flex;
  3597. }
  3598. #u167473 .text {
  3599. position:absolute;
  3600. align-self:center;
  3601. padding:2px 2px 2px 2px;
  3602. box-sizing:border-box;
  3603. width:100%;
  3604. }
  3605. #u167473_text {
  3606. border-width:0px;
  3607. word-wrap:break-word;
  3608. text-transform:none;
  3609. visibility:hidden;
  3610. }
  3611. #u167474_div {
  3612. border-width:0px;
  3613. position:absolute;
  3614. left:0px;
  3615. top:0px;
  3616. width:253px;
  3617. height:30px;
  3618. background:inherit;
  3619. background-color:rgba(255, 255, 255, 0);
  3620. border:none;
  3621. border-left:0px;
  3622. border-top:0px;
  3623. border-right:0px;
  3624. border-radius:0px;
  3625. border-bottom-right-radius:0px;
  3626. border-bottom-left-radius:0px;
  3627. -moz-box-shadow:none;
  3628. -webkit-box-shadow:none;
  3629. box-shadow:none;
  3630. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3631. font-weight:500;
  3632. font-style:normal;
  3633. font-size:14px;
  3634. line-height:30px;
  3635. }
  3636. #u167474 {
  3637. border-width:0px;
  3638. position:absolute;
  3639. left:44px;
  3640. top:564px;
  3641. width:253px;
  3642. height:30px;
  3643. display:flex;
  3644. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3645. font-weight:500;
  3646. font-style:normal;
  3647. font-size:14px;
  3648. line-height:30px;
  3649. }
  3650. #u167474 .text {
  3651. position:absolute;
  3652. align-self:flex-start;
  3653. padding:0px 0px 0px 0px;
  3654. box-sizing:border-box;
  3655. width:100%;
  3656. }
  3657. #u167474_text {
  3658. border-width:0px;
  3659. white-space:nowrap;
  3660. text-transform:none;
  3661. }
  3662. #u167475_div {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:0px;
  3666. top:0px;
  3667. width:113px;
  3668. height:51px;
  3669. background:inherit;
  3670. background-color:rgba(255, 255, 255, 0);
  3671. border:none;
  3672. border-left:0px;
  3673. border-top:0px;
  3674. border-right:0px;
  3675. border-radius:0px;
  3676. border-bottom-right-radius:0px;
  3677. border-bottom-left-radius:0px;
  3678. -moz-box-shadow:none;
  3679. -webkit-box-shadow:none;
  3680. box-shadow:none;
  3681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3682. font-weight:400;
  3683. font-style:normal;
  3684. font-size:12px;
  3685. color:#7F7F7F;
  3686. }
  3687. #u167475 {
  3688. border-width:0px;
  3689. position:absolute;
  3690. left:54px;
  3691. top:594px;
  3692. width:113px;
  3693. height:51px;
  3694. display:flex;
  3695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3696. font-weight:400;
  3697. font-style:normal;
  3698. font-size:12px;
  3699. color:#7F7F7F;
  3700. }
  3701. #u167475 .text {
  3702. position:absolute;
  3703. align-self:flex-start;
  3704. padding:0px 0px 0px 0px;
  3705. box-sizing:border-box;
  3706. width:100%;
  3707. }
  3708. #u167475_text {
  3709. border-width:0px;
  3710. white-space:nowrap;
  3711. text-transform:none;
  3712. }
  3713. #u167476_div {
  3714. border-width:0px;
  3715. position:absolute;
  3716. left:0px;
  3717. top:0px;
  3718. width:61px;
  3719. height:25px;
  3720. background:inherit;
  3721. background-color:rgba(255, 255, 255, 0);
  3722. border:none;
  3723. border-left:0px;
  3724. border-top:0px;
  3725. border-right:0px;
  3726. border-radius:0px;
  3727. border-bottom-right-radius:0px;
  3728. border-bottom-left-radius:0px;
  3729. -moz-box-shadow:none;
  3730. -webkit-box-shadow:none;
  3731. box-shadow:none;
  3732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3733. font-weight:400;
  3734. font-style:normal;
  3735. text-align:right;
  3736. }
  3737. #u167476 {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:318px;
  3741. top:594px;
  3742. width:61px;
  3743. height:25px;
  3744. display:flex;
  3745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3746. font-weight:400;
  3747. font-style:normal;
  3748. text-align:right;
  3749. }
  3750. #u167476 .text {
  3751. position:absolute;
  3752. align-self:flex-start;
  3753. padding:0px 0px 0px 0px;
  3754. box-sizing:border-box;
  3755. width:100%;
  3756. }
  3757. #u167476_text {
  3758. border-width:0px;
  3759. white-space:nowrap;
  3760. text-transform:none;
  3761. }
  3762. #u167477_div {
  3763. border-width:0px;
  3764. position:absolute;
  3765. left:0px;
  3766. top:0px;
  3767. width:41px;
  3768. height:24px;
  3769. background:inherit;
  3770. background-color:rgba(255, 255, 255, 0);
  3771. border:none;
  3772. border-left:0px;
  3773. border-top:0px;
  3774. border-right:0px;
  3775. border-radius:0px;
  3776. border-bottom-right-radius:0px;
  3777. border-bottom-left-radius:0px;
  3778. -moz-box-shadow:none;
  3779. -webkit-box-shadow:none;
  3780. box-shadow:none;
  3781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3782. font-weight:400;
  3783. font-style:normal;
  3784. font-size:10px;
  3785. text-align:right;
  3786. line-height:24px;
  3787. }
  3788. #u167477 {
  3789. border-width:0px;
  3790. position:absolute;
  3791. left:338px;
  3792. top:619px;
  3793. width:41px;
  3794. height:24px;
  3795. display:flex;
  3796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3797. font-weight:400;
  3798. font-style:normal;
  3799. font-size:10px;
  3800. text-align:right;
  3801. line-height:24px;
  3802. }
  3803. #u167477 .text {
  3804. position:absolute;
  3805. align-self:flex-start;
  3806. padding:0px 0px 0px 0px;
  3807. box-sizing:border-box;
  3808. width:100%;
  3809. }
  3810. #u167477_text {
  3811. border-width:0px;
  3812. white-space:nowrap;
  3813. text-transform:none;
  3814. }
  3815. #u167478_div {
  3816. border-width:0px;
  3817. position:absolute;
  3818. left:0px;
  3819. top:0px;
  3820. width:86px;
  3821. height:30px;
  3822. background:inherit;
  3823. background-color:rgba(24, 144, 255, 1);
  3824. border:none;
  3825. border-radius:81px;
  3826. -moz-box-shadow:none;
  3827. -webkit-box-shadow:none;
  3828. box-shadow:none;
  3829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3830. font-weight:400;
  3831. font-style:normal;
  3832. font-size:12px;
  3833. color:#FFFFFF;
  3834. }
  3835. #u167478 {
  3836. border-width:0px;
  3837. position:absolute;
  3838. left:300px;
  3839. top:664px;
  3840. width:86px;
  3841. height:30px;
  3842. display:flex;
  3843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3844. font-weight:400;
  3845. font-style:normal;
  3846. font-size:12px;
  3847. color:#FFFFFF;
  3848. }
  3849. #u167478 .text {
  3850. position:absolute;
  3851. align-self:center;
  3852. padding:2px 2px 2px 2px;
  3853. box-sizing:border-box;
  3854. width:100%;
  3855. }
  3856. #u167478_text {
  3857. border-width:0px;
  3858. word-wrap:break-word;
  3859. text-transform:none;
  3860. }
  3861. #u167479_div {
  3862. border-width:0px;
  3863. position:absolute;
  3864. left:0px;
  3865. top:0px;
  3866. width:86px;
  3867. height:30px;
  3868. background:inherit;
  3869. background-color:rgba(255, 255, 255, 1);
  3870. box-sizing:border-box;
  3871. border-width:1px;
  3872. border-style:solid;
  3873. border-color:rgba(127, 127, 127, 1);
  3874. border-radius:81px;
  3875. -moz-box-shadow:none;
  3876. -webkit-box-shadow:none;
  3877. box-shadow:none;
  3878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3879. font-weight:400;
  3880. font-style:normal;
  3881. font-size:12px;
  3882. color:#555555;
  3883. }
  3884. #u167479 {
  3885. border-width:0px;
  3886. position:absolute;
  3887. left:204px;
  3888. top:664px;
  3889. width:86px;
  3890. height:30px;
  3891. display:flex;
  3892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3893. font-weight:400;
  3894. font-style:normal;
  3895. font-size:12px;
  3896. color:#555555;
  3897. }
  3898. #u167479 .text {
  3899. position:absolute;
  3900. align-self:center;
  3901. padding:2px 2px 2px 2px;
  3902. box-sizing:border-box;
  3903. width:100%;
  3904. }
  3905. #u167479_text {
  3906. border-width:0px;
  3907. word-wrap:break-word;
  3908. text-transform:none;
  3909. }
  3910. #u167480_div {
  3911. border-width:0px;
  3912. position:absolute;
  3913. left:0px;
  3914. top:0px;
  3915. width:87px;
  3916. height:11px;
  3917. background:inherit;
  3918. background-color:rgba(255, 255, 0, 0.0980392156862745);
  3919. border:none;
  3920. border-radius:5px;
  3921. -moz-box-shadow:none;
  3922. -webkit-box-shadow:none;
  3923. box-shadow:none;
  3924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3925. font-weight:400;
  3926. font-style:normal;
  3927. font-size:8px;
  3928. color:#F59A23;
  3929. text-align:center;
  3930. }
  3931. #u167480 {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:106px;
  3935. top:674px;
  3936. width:87px;
  3937. height:11px;
  3938. display:flex;
  3939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3940. font-weight:400;
  3941. font-style:normal;
  3942. font-size:8px;
  3943. color:#F59A23;
  3944. text-align:center;
  3945. }
  3946. #u167480 .text {
  3947. position:absolute;
  3948. align-self:flex-start;
  3949. padding:0px 0px 0px 0px;
  3950. box-sizing:border-box;
  3951. width:100%;
  3952. }
  3953. #u167480_text {
  3954. border-width:0px;
  3955. word-wrap:break-word;
  3956. text-transform:none;
  3957. }
  3958. #u167481 {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:0px;
  3962. top:0px;
  3963. width:0px;
  3964. height:0px;
  3965. }
  3966. #u167482_img {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:0px;
  3970. top:0px;
  3971. width:355px;
  3972. height:120px;
  3973. }
  3974. #u167482 {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:960px;
  3978. top:224px;
  3979. width:355px;
  3980. height:120px;
  3981. display:flex;
  3982. }
  3983. #u167482 .text {
  3984. position:absolute;
  3985. align-self:center;
  3986. padding:2px 2px 2px 2px;
  3987. box-sizing:border-box;
  3988. width:100%;
  3989. }
  3990. #u167482_text {
  3991. border-width:0px;
  3992. word-wrap:break-word;
  3993. text-transform:none;
  3994. visibility:hidden;
  3995. }
  3996. #u167483_div {
  3997. border-width:0px;
  3998. position:absolute;
  3999. left:0px;
  4000. top:0px;
  4001. width:225px;
  4002. height:30px;
  4003. background:inherit;
  4004. background-color:rgba(255, 255, 255, 0);
  4005. border:none;
  4006. border-left:0px;
  4007. border-top:0px;
  4008. border-right:0px;
  4009. border-radius:0px;
  4010. border-bottom-right-radius:0px;
  4011. border-bottom-left-radius:0px;
  4012. -moz-box-shadow:none;
  4013. -webkit-box-shadow:none;
  4014. box-shadow:none;
  4015. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4016. font-weight:500;
  4017. font-style:normal;
  4018. font-size:14px;
  4019. line-height:30px;
  4020. }
  4021. #u167483 {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:965px;
  4025. top:234px;
  4026. width:225px;
  4027. height:30px;
  4028. display:flex;
  4029. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4030. font-weight:500;
  4031. font-style:normal;
  4032. font-size:14px;
  4033. line-height:30px;
  4034. }
  4035. #u167483 .text {
  4036. position:absolute;
  4037. align-self:flex-start;
  4038. padding:0px 0px 0px 0px;
  4039. box-sizing:border-box;
  4040. width:100%;
  4041. }
  4042. #u167483_text {
  4043. border-width:0px;
  4044. white-space:nowrap;
  4045. text-transform:none;
  4046. }
  4047. #u167484_div {
  4048. border-width:0px;
  4049. position:absolute;
  4050. left:0px;
  4051. top:0px;
  4052. width:199px;
  4053. height:68px;
  4054. background:inherit;
  4055. background-color:rgba(255, 255, 255, 0);
  4056. border:none;
  4057. border-left:0px;
  4058. border-top:0px;
  4059. border-right:0px;
  4060. border-radius:0px;
  4061. border-bottom-right-radius:0px;
  4062. border-bottom-left-radius:0px;
  4063. -moz-box-shadow:none;
  4064. -webkit-box-shadow:none;
  4065. box-shadow:none;
  4066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4067. font-weight:400;
  4068. font-style:normal;
  4069. font-size:12px;
  4070. color:#7F7F7F;
  4071. }
  4072. #u167484 {
  4073. border-width:0px;
  4074. position:absolute;
  4075. left:975px;
  4076. top:264px;
  4077. width:199px;
  4078. height:68px;
  4079. display:flex;
  4080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4081. font-weight:400;
  4082. font-style:normal;
  4083. font-size:12px;
  4084. color:#7F7F7F;
  4085. }
  4086. #u167484 .text {
  4087. position:absolute;
  4088. align-self:flex-start;
  4089. padding:0px 0px 0px 0px;
  4090. box-sizing:border-box;
  4091. width:100%;
  4092. }
  4093. #u167484_text {
  4094. border-width:0px;
  4095. white-space:nowrap;
  4096. text-transform:none;
  4097. }
  4098. #u167485_div {
  4099. border-width:0px;
  4100. position:absolute;
  4101. left:0px;
  4102. top:0px;
  4103. width:61px;
  4104. height:25px;
  4105. background:inherit;
  4106. background-color:rgba(255, 255, 255, 0);
  4107. border:none;
  4108. border-left:0px;
  4109. border-top:0px;
  4110. border-right:0px;
  4111. border-radius:0px;
  4112. border-bottom-right-radius:0px;
  4113. border-bottom-left-radius:0px;
  4114. -moz-box-shadow:none;
  4115. -webkit-box-shadow:none;
  4116. box-shadow:none;
  4117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4118. font-weight:400;
  4119. font-style:normal;
  4120. text-align:right;
  4121. }
  4122. #u167485 {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:1239px;
  4126. top:264px;
  4127. width:61px;
  4128. height:25px;
  4129. display:flex;
  4130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4131. font-weight:400;
  4132. font-style:normal;
  4133. text-align:right;
  4134. }
  4135. #u167485 .text {
  4136. position:absolute;
  4137. align-self:flex-start;
  4138. padding:0px 0px 0px 0px;
  4139. box-sizing:border-box;
  4140. width:100%;
  4141. }
  4142. #u167485_text {
  4143. border-width:0px;
  4144. white-space:nowrap;
  4145. text-transform:none;
  4146. }
  4147. #u167486_div {
  4148. border-width:0px;
  4149. position:absolute;
  4150. left:0px;
  4151. top:0px;
  4152. width:86px;
  4153. height:28px;
  4154. background:inherit;
  4155. background-color:rgba(255, 255, 255, 0);
  4156. border:none;
  4157. border-left:0px;
  4158. border-top:0px;
  4159. border-right:0px;
  4160. border-radius:0px;
  4161. border-bottom-right-radius:0px;
  4162. border-bottom-left-radius:0px;
  4163. -moz-box-shadow:none;
  4164. -webkit-box-shadow:none;
  4165. box-shadow:none;
  4166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4167. font-weight:400;
  4168. font-style:normal;
  4169. font-size:10px;
  4170. color:#F59A23;
  4171. text-align:right;
  4172. }
  4173. #u167486 {
  4174. border-width:0px;
  4175. position:absolute;
  4176. left:1214px;
  4177. top:294px;
  4178. width:86px;
  4179. height:28px;
  4180. display:flex;
  4181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4182. font-weight:400;
  4183. font-style:normal;
  4184. font-size:10px;
  4185. color:#F59A23;
  4186. text-align:right;
  4187. }
  4188. #u167486 .text {
  4189. position:absolute;
  4190. align-self:flex-start;
  4191. padding:0px 0px 0px 0px;
  4192. box-sizing:border-box;
  4193. width:100%;
  4194. }
  4195. #u167486_text {
  4196. border-width:0px;
  4197. white-space:nowrap;
  4198. text-transform:none;
  4199. }
  4200. #u167487 {
  4201. border-width:0px;
  4202. position:absolute;
  4203. left:0px;
  4204. top:0px;
  4205. width:0px;
  4206. height:0px;
  4207. }
  4208. #u167488_img {
  4209. border-width:0px;
  4210. position:absolute;
  4211. left:0px;
  4212. top:0px;
  4213. width:355px;
  4214. height:110px;
  4215. }
  4216. #u167488 {
  4217. border-width:0px;
  4218. position:absolute;
  4219. left:960px;
  4220. top:634px;
  4221. width:355px;
  4222. height:110px;
  4223. display:flex;
  4224. }
  4225. #u167488 .text {
  4226. position:absolute;
  4227. align-self:center;
  4228. padding:2px 2px 2px 2px;
  4229. box-sizing:border-box;
  4230. width:100%;
  4231. }
  4232. #u167488_text {
  4233. border-width:0px;
  4234. word-wrap:break-word;
  4235. text-transform:none;
  4236. visibility:hidden;
  4237. }
  4238. #u167489_div {
  4239. border-width:0px;
  4240. position:absolute;
  4241. left:0px;
  4242. top:0px;
  4243. width:211px;
  4244. height:30px;
  4245. background:inherit;
  4246. background-color:rgba(255, 255, 255, 0);
  4247. border:none;
  4248. border-left:0px;
  4249. border-top:0px;
  4250. border-right:0px;
  4251. border-radius:0px;
  4252. border-bottom-right-radius:0px;
  4253. border-bottom-left-radius:0px;
  4254. -moz-box-shadow:none;
  4255. -webkit-box-shadow:none;
  4256. box-shadow:none;
  4257. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4258. font-weight:500;
  4259. font-style:normal;
  4260. font-size:14px;
  4261. line-height:30px;
  4262. }
  4263. #u167489 {
  4264. border-width:0px;
  4265. position:absolute;
  4266. left:965px;
  4267. top:644px;
  4268. width:211px;
  4269. height:30px;
  4270. display:flex;
  4271. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4272. font-weight:500;
  4273. font-style:normal;
  4274. font-size:14px;
  4275. line-height:30px;
  4276. }
  4277. #u167489 .text {
  4278. position:absolute;
  4279. align-self:flex-start;
  4280. padding:0px 0px 0px 0px;
  4281. box-sizing:border-box;
  4282. width:100%;
  4283. }
  4284. #u167489_text {
  4285. border-width:0px;
  4286. white-space:nowrap;
  4287. text-transform:none;
  4288. }
  4289. #u167490_div {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:0px;
  4293. top:0px;
  4294. width:182px;
  4295. height:51px;
  4296. background:inherit;
  4297. background-color:rgba(255, 255, 255, 0);
  4298. border:none;
  4299. border-left:0px;
  4300. border-top:0px;
  4301. border-right:0px;
  4302. border-radius:0px;
  4303. border-bottom-right-radius:0px;
  4304. border-bottom-left-radius:0px;
  4305. -moz-box-shadow:none;
  4306. -webkit-box-shadow:none;
  4307. box-shadow:none;
  4308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4309. font-weight:400;
  4310. font-style:normal;
  4311. font-size:12px;
  4312. color:#7F7F7F;
  4313. }
  4314. #u167490 {
  4315. border-width:0px;
  4316. position:absolute;
  4317. left:975px;
  4318. top:674px;
  4319. width:182px;
  4320. height:51px;
  4321. display:flex;
  4322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4323. font-weight:400;
  4324. font-style:normal;
  4325. font-size:12px;
  4326. color:#7F7F7F;
  4327. }
  4328. #u167490 .text {
  4329. position:absolute;
  4330. align-self:flex-start;
  4331. padding:0px 0px 0px 0px;
  4332. box-sizing:border-box;
  4333. width:100%;
  4334. }
  4335. #u167490_text {
  4336. border-width:0px;
  4337. white-space:nowrap;
  4338. text-transform:none;
  4339. }
  4340. #u167491_div {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:0px;
  4344. top:0px;
  4345. width:61px;
  4346. height:25px;
  4347. background:inherit;
  4348. background-color:rgba(255, 255, 255, 0);
  4349. border:none;
  4350. border-left:0px;
  4351. border-top:0px;
  4352. border-right:0px;
  4353. border-radius:0px;
  4354. border-bottom-right-radius:0px;
  4355. border-bottom-left-radius:0px;
  4356. -moz-box-shadow:none;
  4357. -webkit-box-shadow:none;
  4358. box-shadow:none;
  4359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4360. font-weight:400;
  4361. font-style:normal;
  4362. text-align:right;
  4363. }
  4364. #u167491 {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:1239px;
  4368. top:674px;
  4369. width:61px;
  4370. height:25px;
  4371. display:flex;
  4372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4373. font-weight:400;
  4374. font-style:normal;
  4375. text-align:right;
  4376. }
  4377. #u167491 .text {
  4378. position:absolute;
  4379. align-self:flex-start;
  4380. padding:0px 0px 0px 0px;
  4381. box-sizing:border-box;
  4382. width:100%;
  4383. }
  4384. #u167491_text {
  4385. border-width:0px;
  4386. white-space:nowrap;
  4387. text-transform:none;
  4388. }
  4389. #u167492 {
  4390. border-width:0px;
  4391. position:absolute;
  4392. left:0px;
  4393. top:0px;
  4394. width:0px;
  4395. height:0px;
  4396. }
  4397. #u167493_img {
  4398. border-width:0px;
  4399. position:absolute;
  4400. left:0px;
  4401. top:0px;
  4402. width:355px;
  4403. height:120px;
  4404. }
  4405. #u167493 {
  4406. border-width:0px;
  4407. position:absolute;
  4408. left:960px;
  4409. top:754px;
  4410. width:355px;
  4411. height:120px;
  4412. display:flex;
  4413. }
  4414. #u167493 .text {
  4415. position:absolute;
  4416. align-self:center;
  4417. padding:2px 2px 2px 2px;
  4418. box-sizing:border-box;
  4419. width:100%;
  4420. }
  4421. #u167493_text {
  4422. border-width:0px;
  4423. word-wrap:break-word;
  4424. text-transform:none;
  4425. visibility:hidden;
  4426. }
  4427. #u167494_div {
  4428. border-width:0px;
  4429. position:absolute;
  4430. left:0px;
  4431. top:0px;
  4432. width:253px;
  4433. height:30px;
  4434. background:inherit;
  4435. background-color:rgba(255, 255, 255, 0);
  4436. border:none;
  4437. border-left:0px;
  4438. border-top:0px;
  4439. border-right:0px;
  4440. border-radius:0px;
  4441. border-bottom-right-radius:0px;
  4442. border-bottom-left-radius:0px;
  4443. -moz-box-shadow:none;
  4444. -webkit-box-shadow:none;
  4445. box-shadow:none;
  4446. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4447. font-weight:500;
  4448. font-style:normal;
  4449. font-size:14px;
  4450. line-height:30px;
  4451. }
  4452. #u167494 {
  4453. border-width:0px;
  4454. position:absolute;
  4455. left:965px;
  4456. top:764px;
  4457. width:253px;
  4458. height:30px;
  4459. display:flex;
  4460. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4461. font-weight:500;
  4462. font-style:normal;
  4463. font-size:14px;
  4464. line-height:30px;
  4465. }
  4466. #u167494 .text {
  4467. position:absolute;
  4468. align-self:flex-start;
  4469. padding:0px 0px 0px 0px;
  4470. box-sizing:border-box;
  4471. width:100%;
  4472. }
  4473. #u167494_text {
  4474. border-width:0px;
  4475. white-space:nowrap;
  4476. text-transform:none;
  4477. }
  4478. #u167495_div {
  4479. border-width:0px;
  4480. position:absolute;
  4481. left:0px;
  4482. top:0px;
  4483. width:131px;
  4484. height:68px;
  4485. background:inherit;
  4486. background-color:rgba(255, 255, 255, 0);
  4487. border:none;
  4488. border-left:0px;
  4489. border-top:0px;
  4490. border-right:0px;
  4491. border-radius:0px;
  4492. border-bottom-right-radius:0px;
  4493. border-bottom-left-radius:0px;
  4494. -moz-box-shadow:none;
  4495. -webkit-box-shadow:none;
  4496. box-shadow:none;
  4497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4498. font-weight:400;
  4499. font-style:normal;
  4500. font-size:12px;
  4501. color:#7F7F7F;
  4502. }
  4503. #u167495 {
  4504. border-width:0px;
  4505. position:absolute;
  4506. left:975px;
  4507. top:794px;
  4508. width:131px;
  4509. height:68px;
  4510. display:flex;
  4511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4512. font-weight:400;
  4513. font-style:normal;
  4514. font-size:12px;
  4515. color:#7F7F7F;
  4516. }
  4517. #u167495 .text {
  4518. position:absolute;
  4519. align-self:flex-start;
  4520. padding:0px 0px 0px 0px;
  4521. box-sizing:border-box;
  4522. width:100%;
  4523. }
  4524. #u167495_text {
  4525. border-width:0px;
  4526. white-space:nowrap;
  4527. text-transform:none;
  4528. }
  4529. #u167496_div {
  4530. border-width:0px;
  4531. position:absolute;
  4532. left:0px;
  4533. top:0px;
  4534. width:61px;
  4535. height:25px;
  4536. background:inherit;
  4537. background-color:rgba(255, 255, 255, 0);
  4538. border:none;
  4539. border-left:0px;
  4540. border-top:0px;
  4541. border-right:0px;
  4542. border-radius:0px;
  4543. border-bottom-right-radius:0px;
  4544. border-bottom-left-radius:0px;
  4545. -moz-box-shadow:none;
  4546. -webkit-box-shadow:none;
  4547. box-shadow:none;
  4548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4549. font-weight:400;
  4550. font-style:normal;
  4551. text-align:right;
  4552. }
  4553. #u167496 {
  4554. border-width:0px;
  4555. position:absolute;
  4556. left:1239px;
  4557. top:794px;
  4558. width:61px;
  4559. height:25px;
  4560. display:flex;
  4561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4562. font-weight:400;
  4563. font-style:normal;
  4564. text-align:right;
  4565. }
  4566. #u167496 .text {
  4567. position:absolute;
  4568. align-self:flex-start;
  4569. padding:0px 0px 0px 0px;
  4570. box-sizing:border-box;
  4571. width:100%;
  4572. }
  4573. #u167496_text {
  4574. border-width:0px;
  4575. white-space:nowrap;
  4576. text-transform:none;
  4577. }
  4578. #u167497 {
  4579. border-width:0px;
  4580. position:absolute;
  4581. left:0px;
  4582. top:0px;
  4583. width:0px;
  4584. height:0px;
  4585. }
  4586. #u167498_img {
  4587. border-width:0px;
  4588. position:absolute;
  4589. left:0px;
  4590. top:0px;
  4591. width:355px;
  4592. height:120px;
  4593. }
  4594. #u167498 {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:960px;
  4598. top:354px;
  4599. width:355px;
  4600. height:120px;
  4601. display:flex;
  4602. }
  4603. #u167498 .text {
  4604. position:absolute;
  4605. align-self:center;
  4606. padding:2px 2px 2px 2px;
  4607. box-sizing:border-box;
  4608. width:100%;
  4609. }
  4610. #u167498_text {
  4611. border-width:0px;
  4612. word-wrap:break-word;
  4613. text-transform:none;
  4614. visibility:hidden;
  4615. }
  4616. #u167499_div {
  4617. border-width:0px;
  4618. position:absolute;
  4619. left:0px;
  4620. top:0px;
  4621. width:225px;
  4622. height:30px;
  4623. background:inherit;
  4624. background-color:rgba(255, 255, 255, 0);
  4625. border:none;
  4626. border-left:0px;
  4627. border-top:0px;
  4628. border-right:0px;
  4629. border-radius:0px;
  4630. border-bottom-right-radius:0px;
  4631. border-bottom-left-radius:0px;
  4632. -moz-box-shadow:none;
  4633. -webkit-box-shadow:none;
  4634. box-shadow:none;
  4635. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4636. font-weight:500;
  4637. font-style:normal;
  4638. font-size:14px;
  4639. line-height:30px;
  4640. }
  4641. #u167499 {
  4642. border-width:0px;
  4643. position:absolute;
  4644. left:965px;
  4645. top:364px;
  4646. width:225px;
  4647. height:30px;
  4648. display:flex;
  4649. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4650. font-weight:500;
  4651. font-style:normal;
  4652. font-size:14px;
  4653. line-height:30px;
  4654. }
  4655. #u167499 .text {
  4656. position:absolute;
  4657. align-self:flex-start;
  4658. padding:0px 0px 0px 0px;
  4659. box-sizing:border-box;
  4660. width:100%;
  4661. }
  4662. #u167499_text {
  4663. border-width:0px;
  4664. white-space:nowrap;
  4665. text-transform:none;
  4666. }
  4667. #u167500_div {
  4668. border-width:0px;
  4669. position:absolute;
  4670. left:0px;
  4671. top:0px;
  4672. width:165px;
  4673. height:68px;
  4674. background:inherit;
  4675. background-color:rgba(255, 255, 255, 0);
  4676. border:none;
  4677. border-left:0px;
  4678. border-top:0px;
  4679. border-right:0px;
  4680. border-radius:0px;
  4681. border-bottom-right-radius:0px;
  4682. border-bottom-left-radius:0px;
  4683. -moz-box-shadow:none;
  4684. -webkit-box-shadow:none;
  4685. box-shadow:none;
  4686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4687. font-weight:400;
  4688. font-style:normal;
  4689. font-size:12px;
  4690. color:#7F7F7F;
  4691. }
  4692. #u167500 {
  4693. border-width:0px;
  4694. position:absolute;
  4695. left:975px;
  4696. top:394px;
  4697. width:165px;
  4698. height:68px;
  4699. display:flex;
  4700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4701. font-weight:400;
  4702. font-style:normal;
  4703. font-size:12px;
  4704. color:#7F7F7F;
  4705. }
  4706. #u167500 .text {
  4707. position:absolute;
  4708. align-self:flex-start;
  4709. padding:0px 0px 0px 0px;
  4710. box-sizing:border-box;
  4711. width:100%;
  4712. }
  4713. #u167500_text {
  4714. border-width:0px;
  4715. white-space:nowrap;
  4716. text-transform:none;
  4717. }
  4718. #u167501_div {
  4719. border-width:0px;
  4720. position:absolute;
  4721. left:0px;
  4722. top:0px;
  4723. width:56px;
  4724. height:25px;
  4725. background:inherit;
  4726. background-color:rgba(255, 255, 255, 0);
  4727. border:none;
  4728. border-left:0px;
  4729. border-top:0px;
  4730. border-right:0px;
  4731. border-radius:0px;
  4732. border-bottom-right-radius:0px;
  4733. border-bottom-left-radius:0px;
  4734. -moz-box-shadow:none;
  4735. -webkit-box-shadow:none;
  4736. box-shadow:none;
  4737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4738. font-weight:400;
  4739. font-style:normal;
  4740. text-align:right;
  4741. }
  4742. #u167501 {
  4743. border-width:0px;
  4744. position:absolute;
  4745. left:1244px;
  4746. top:412px;
  4747. width:56px;
  4748. height:25px;
  4749. display:flex;
  4750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4751. font-weight:400;
  4752. font-style:normal;
  4753. text-align:right;
  4754. }
  4755. #u167501 .text {
  4756. position:absolute;
  4757. align-self:flex-start;
  4758. padding:0px 0px 0px 0px;
  4759. box-sizing:border-box;
  4760. width:100%;
  4761. }
  4762. #u167501_text {
  4763. border-width:0px;
  4764. white-space:nowrap;
  4765. text-transform:none;
  4766. }
  4767. #u167502_div {
  4768. border-width:0px;
  4769. position:absolute;
  4770. left:0px;
  4771. top:0px;
  4772. width:132px;
  4773. height:24px;
  4774. background:inherit;
  4775. background-color:rgba(255, 255, 255, 0);
  4776. border:none;
  4777. border-left:0px;
  4778. border-top:0px;
  4779. border-right:0px;
  4780. border-radius:0px;
  4781. border-bottom-right-radius:0px;
  4782. border-bottom-left-radius:0px;
  4783. -moz-box-shadow:none;
  4784. -webkit-box-shadow:none;
  4785. box-shadow:none;
  4786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4787. font-weight:400;
  4788. font-style:normal;
  4789. font-size:10px;
  4790. color:#AAAAAA;
  4791. text-align:right;
  4792. line-height:24px;
  4793. }
  4794. #u167502 {
  4795. border-width:0px;
  4796. position:absolute;
  4797. left:1168px;
  4798. top:437px;
  4799. width:132px;
  4800. height:24px;
  4801. display:flex;
  4802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4803. font-weight:400;
  4804. font-style:normal;
  4805. font-size:10px;
  4806. color:#AAAAAA;
  4807. text-align:right;
  4808. line-height:24px;
  4809. }
  4810. #u167502 .text {
  4811. position:absolute;
  4812. align-self:flex-start;
  4813. padding:0px 0px 0px 0px;
  4814. box-sizing:border-box;
  4815. width:100%;
  4816. }
  4817. #u167502_text {
  4818. border-width:0px;
  4819. white-space:nowrap;
  4820. text-transform:none;
  4821. }
  4822. #u167503 {
  4823. border-width:0px;
  4824. position:absolute;
  4825. left:0px;
  4826. top:0px;
  4827. width:0px;
  4828. height:0px;
  4829. }
  4830. #u167504_img {
  4831. border-width:0px;
  4832. position:absolute;
  4833. left:0px;
  4834. top:0px;
  4835. width:355px;
  4836. height:140px;
  4837. }
  4838. #u167504 {
  4839. border-width:0px;
  4840. position:absolute;
  4841. left:960px;
  4842. top:484px;
  4843. width:355px;
  4844. height:140px;
  4845. display:flex;
  4846. }
  4847. #u167504 .text {
  4848. position:absolute;
  4849. align-self:center;
  4850. padding:2px 2px 2px 2px;
  4851. box-sizing:border-box;
  4852. width:100%;
  4853. }
  4854. #u167504_text {
  4855. border-width:0px;
  4856. word-wrap:break-word;
  4857. text-transform:none;
  4858. visibility:hidden;
  4859. }
  4860. #u167505_div {
  4861. border-width:0px;
  4862. position:absolute;
  4863. left:0px;
  4864. top:0px;
  4865. width:225px;
  4866. height:30px;
  4867. background:inherit;
  4868. background-color:rgba(255, 255, 255, 0);
  4869. border:none;
  4870. border-left:0px;
  4871. border-top:0px;
  4872. border-right:0px;
  4873. border-radius:0px;
  4874. border-bottom-right-radius:0px;
  4875. border-bottom-left-radius:0px;
  4876. -moz-box-shadow:none;
  4877. -webkit-box-shadow:none;
  4878. box-shadow:none;
  4879. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4880. font-weight:500;
  4881. font-style:normal;
  4882. font-size:14px;
  4883. line-height:30px;
  4884. }
  4885. #u167505 {
  4886. border-width:0px;
  4887. position:absolute;
  4888. left:965px;
  4889. top:494px;
  4890. width:225px;
  4891. height:30px;
  4892. display:flex;
  4893. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4894. font-weight:500;
  4895. font-style:normal;
  4896. font-size:14px;
  4897. line-height:30px;
  4898. }
  4899. #u167505 .text {
  4900. position:absolute;
  4901. align-self:flex-start;
  4902. padding:0px 0px 0px 0px;
  4903. box-sizing:border-box;
  4904. width:100%;
  4905. }
  4906. #u167505_text {
  4907. border-width:0px;
  4908. white-space:nowrap;
  4909. text-transform:none;
  4910. }
  4911. #u167506_div {
  4912. border-width:0px;
  4913. position:absolute;
  4914. left:0px;
  4915. top:0px;
  4916. width:165px;
  4917. height:68px;
  4918. background:inherit;
  4919. background-color:rgba(255, 255, 255, 0);
  4920. border:none;
  4921. border-left:0px;
  4922. border-top:0px;
  4923. border-right:0px;
  4924. border-radius:0px;
  4925. border-bottom-right-radius:0px;
  4926. border-bottom-left-radius:0px;
  4927. -moz-box-shadow:none;
  4928. -webkit-box-shadow:none;
  4929. box-shadow:none;
  4930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4931. font-weight:400;
  4932. font-style:normal;
  4933. font-size:12px;
  4934. color:#7F7F7F;
  4935. }
  4936. #u167506 {
  4937. border-width:0px;
  4938. position:absolute;
  4939. left:975px;
  4940. top:524px;
  4941. width:165px;
  4942. height:68px;
  4943. display:flex;
  4944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4945. font-weight:400;
  4946. font-style:normal;
  4947. font-size:12px;
  4948. color:#7F7F7F;
  4949. }
  4950. #u167506 .text {
  4951. position:absolute;
  4952. align-self:flex-start;
  4953. padding:0px 0px 0px 0px;
  4954. box-sizing:border-box;
  4955. width:100%;
  4956. }
  4957. #u167506_text {
  4958. border-width:0px;
  4959. white-space:nowrap;
  4960. text-transform:none;
  4961. }
  4962. #u167507_div {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:0px;
  4966. top:0px;
  4967. width:57px;
  4968. height:25px;
  4969. background:inherit;
  4970. background-color:rgba(255, 255, 255, 0);
  4971. border:none;
  4972. border-left:0px;
  4973. border-top:0px;
  4974. border-right:0px;
  4975. border-radius:0px;
  4976. border-bottom-right-radius:0px;
  4977. border-bottom-left-radius:0px;
  4978. -moz-box-shadow:none;
  4979. -webkit-box-shadow:none;
  4980. box-shadow:none;
  4981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4982. font-weight:400;
  4983. font-style:normal;
  4984. text-align:right;
  4985. }
  4986. #u167507 {
  4987. border-width:0px;
  4988. position:absolute;
  4989. left:1243px;
  4990. top:542px;
  4991. width:57px;
  4992. height:25px;
  4993. display:flex;
  4994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4995. font-weight:400;
  4996. font-style:normal;
  4997. text-align:right;
  4998. }
  4999. #u167507 .text {
  5000. position:absolute;
  5001. align-self:flex-start;
  5002. padding:0px 0px 0px 0px;
  5003. box-sizing:border-box;
  5004. width:100%;
  5005. }
  5006. #u167507_text {
  5007. border-width:0px;
  5008. white-space:nowrap;
  5009. text-transform:none;
  5010. }
  5011. #u167508_div {
  5012. border-width:0px;
  5013. position:absolute;
  5014. left:0px;
  5015. top:0px;
  5016. width:132px;
  5017. height:24px;
  5018. background:inherit;
  5019. background-color:rgba(255, 255, 255, 0);
  5020. border:none;
  5021. border-left:0px;
  5022. border-top:0px;
  5023. border-right:0px;
  5024. border-radius:0px;
  5025. border-bottom-right-radius:0px;
  5026. border-bottom-left-radius:0px;
  5027. -moz-box-shadow:none;
  5028. -webkit-box-shadow:none;
  5029. box-shadow:none;
  5030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5031. font-weight:400;
  5032. font-style:normal;
  5033. font-size:10px;
  5034. color:#AAAAAA;
  5035. text-align:right;
  5036. line-height:24px;
  5037. }
  5038. #u167508 {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:1168px;
  5042. top:567px;
  5043. width:132px;
  5044. height:24px;
  5045. display:flex;
  5046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5047. font-weight:400;
  5048. font-style:normal;
  5049. font-size:10px;
  5050. color:#AAAAAA;
  5051. text-align:right;
  5052. line-height:24px;
  5053. }
  5054. #u167508 .text {
  5055. position:absolute;
  5056. align-self:flex-start;
  5057. padding:0px 0px 0px 0px;
  5058. box-sizing:border-box;
  5059. width:100%;
  5060. }
  5061. #u167508_text {
  5062. border-width:0px;
  5063. white-space:nowrap;
  5064. text-transform:none;
  5065. }
  5066. #u167509 {
  5067. border-width:0px;
  5068. position:absolute;
  5069. left:0px;
  5070. top:0px;
  5071. width:0px;
  5072. height:0px;
  5073. }
  5074. #u167511_img {
  5075. border-width:0px;
  5076. position:absolute;
  5077. left:0px;
  5078. top:0px;
  5079. width:433px;
  5080. height:865px;
  5081. }
  5082. #u167511 {
  5083. border-width:0px;
  5084. position:absolute;
  5085. left:459px;
  5086. top:0px;
  5087. width:433px;
  5088. height:865px;
  5089. display:flex;
  5090. }
  5091. #u167511 .text {
  5092. position:absolute;
  5093. align-self:center;
  5094. padding:2px 2px 2px 2px;
  5095. box-sizing:border-box;
  5096. width:100%;
  5097. }
  5098. #u167511_text {
  5099. border-width:0px;
  5100. word-wrap:break-word;
  5101. text-transform:none;
  5102. visibility:hidden;
  5103. }
  5104. #u167512_div {
  5105. border-width:0px;
  5106. position:absolute;
  5107. left:0px;
  5108. top:0px;
  5109. width:375px;
  5110. height:40px;
  5111. background:inherit;
  5112. background-color:rgba(255, 255, 255, 1);
  5113. box-sizing:border-box;
  5114. border-width:1px;
  5115. border-style:solid;
  5116. border-color:rgba(215, 215, 215, 1);
  5117. border-left:0px;
  5118. border-top:0px;
  5119. border-right:0px;
  5120. border-radius:0px;
  5121. border-bottom-right-radius:0px;
  5122. border-bottom-left-radius:0px;
  5123. -moz-box-shadow:none;
  5124. -webkit-box-shadow:none;
  5125. box-shadow:none;
  5126. }
  5127. #u167512 {
  5128. border-width:0px;
  5129. position:absolute;
  5130. left:488px;
  5131. top:67px;
  5132. width:375px;
  5133. height:40px;
  5134. display:flex;
  5135. }
  5136. #u167512 .text {
  5137. position:absolute;
  5138. align-self:center;
  5139. padding:2px 2px 2px 2px;
  5140. box-sizing:border-box;
  5141. width:100%;
  5142. }
  5143. #u167512_text {
  5144. border-width:0px;
  5145. word-wrap:break-word;
  5146. text-transform:none;
  5147. visibility:hidden;
  5148. }
  5149. #u167513 {
  5150. border-width:0px;
  5151. position:absolute;
  5152. left:0px;
  5153. top:0px;
  5154. width:0px;
  5155. height:0px;
  5156. }
  5157. #u167514_div {
  5158. border-width:0px;
  5159. position:absolute;
  5160. left:0px;
  5161. top:0px;
  5162. width:88px;
  5163. height:32px;
  5164. background:inherit;
  5165. background-color:rgba(255, 255, 255, 1);
  5166. box-sizing:border-box;
  5167. border-width:1px;
  5168. border-style:solid;
  5169. border-color:rgba(242, 242, 242, 1);
  5170. border-radius:33px;
  5171. -moz-box-shadow:none;
  5172. -webkit-box-shadow:none;
  5173. box-shadow:none;
  5174. }
  5175. #u167514 {
  5176. border-width:0px;
  5177. position:absolute;
  5178. left:768px;
  5179. top:71px;
  5180. width:88px;
  5181. height:32px;
  5182. display:flex;
  5183. }
  5184. #u167514 .text {
  5185. position:absolute;
  5186. align-self:center;
  5187. padding:2px 2px 2px 2px;
  5188. box-sizing:border-box;
  5189. width:100%;
  5190. }
  5191. #u167514_text {
  5192. border-width:0px;
  5193. word-wrap:break-word;
  5194. text-transform:none;
  5195. visibility:hidden;
  5196. }
  5197. #u167515 {
  5198. border-width:0px;
  5199. position:absolute;
  5200. left:0px;
  5201. top:0px;
  5202. width:0px;
  5203. height:0px;
  5204. }
  5205. #u167516_img {
  5206. border-width:0px;
  5207. position:absolute;
  5208. left:0px;
  5209. top:0px;
  5210. width:18px;
  5211. height:18px;
  5212. }
  5213. #u167516 {
  5214. border-width:0px;
  5215. position:absolute;
  5216. left:831px;
  5217. top:78px;
  5218. width:18px;
  5219. height:18px;
  5220. display:flex;
  5221. }
  5222. #u167516 .text {
  5223. position:absolute;
  5224. align-self:center;
  5225. padding:2px 2px 2px 2px;
  5226. box-sizing:border-box;
  5227. width:100%;
  5228. }
  5229. #u167516_text {
  5230. border-width:0px;
  5231. word-wrap:break-word;
  5232. text-transform:none;
  5233. visibility:hidden;
  5234. }
  5235. #u167517_img {
  5236. border-width:0px;
  5237. position:absolute;
  5238. left:0px;
  5239. top:0px;
  5240. width:6px;
  5241. height:6px;
  5242. }
  5243. #u167517 {
  5244. border-width:0px;
  5245. position:absolute;
  5246. left:837px;
  5247. top:84px;
  5248. width:6px;
  5249. height:6px;
  5250. display:flex;
  5251. }
  5252. #u167517 .text {
  5253. position:absolute;
  5254. align-self:center;
  5255. padding:2px 2px 2px 2px;
  5256. box-sizing:border-box;
  5257. width:100%;
  5258. }
  5259. #u167517_text {
  5260. border-width:0px;
  5261. word-wrap:break-word;
  5262. text-transform:none;
  5263. visibility:hidden;
  5264. }
  5265. #u167518 {
  5266. border-width:0px;
  5267. position:absolute;
  5268. left:0px;
  5269. top:0px;
  5270. width:0px;
  5271. height:0px;
  5272. }
  5273. #u167519_img {
  5274. border-width:0px;
  5275. position:absolute;
  5276. left:0px;
  5277. top:0px;
  5278. width:5px;
  5279. height:5px;
  5280. }
  5281. #u167519 {
  5282. border-width:0px;
  5283. position:absolute;
  5284. left:782px;
  5285. top:85px;
  5286. width:5px;
  5287. height:5px;
  5288. display:flex;
  5289. }
  5290. #u167519 .text {
  5291. position:absolute;
  5292. align-self:center;
  5293. padding:2px 2px 2px 2px;
  5294. box-sizing:border-box;
  5295. width:100%;
  5296. }
  5297. #u167519_text {
  5298. border-width:0px;
  5299. word-wrap:break-word;
  5300. text-transform:none;
  5301. visibility:hidden;
  5302. }
  5303. #u167520_img {
  5304. border-width:0px;
  5305. position:absolute;
  5306. left:0px;
  5307. top:0px;
  5308. width:5px;
  5309. height:5px;
  5310. }
  5311. #u167520 {
  5312. border-width:0px;
  5313. position:absolute;
  5314. left:798px;
  5315. top:85px;
  5316. width:5px;
  5317. height:5px;
  5318. display:flex;
  5319. }
  5320. #u167520 .text {
  5321. position:absolute;
  5322. align-self:center;
  5323. padding:2px 2px 2px 2px;
  5324. box-sizing:border-box;
  5325. width:100%;
  5326. }
  5327. #u167520_text {
  5328. border-width:0px;
  5329. word-wrap:break-word;
  5330. text-transform:none;
  5331. visibility:hidden;
  5332. }
  5333. #u167521_img {
  5334. border-width:0px;
  5335. position:absolute;
  5336. left:0px;
  5337. top:0px;
  5338. width:7px;
  5339. height:7px;
  5340. }
  5341. #u167521 {
  5342. border-width:0px;
  5343. position:absolute;
  5344. left:789px;
  5345. top:84px;
  5346. width:7px;
  5347. height:7px;
  5348. display:flex;
  5349. }
  5350. #u167521 .text {
  5351. position:absolute;
  5352. align-self:center;
  5353. padding:2px 2px 2px 2px;
  5354. box-sizing:border-box;
  5355. width:100%;
  5356. }
  5357. #u167521_text {
  5358. border-width:0px;
  5359. word-wrap:break-word;
  5360. text-transform:none;
  5361. visibility:hidden;
  5362. }
  5363. #u167522_img {
  5364. border-width:0px;
  5365. position:absolute;
  5366. left:0px;
  5367. top:0px;
  5368. width:19px;
  5369. height:2px;
  5370. }
  5371. #u167522 {
  5372. border-width:0px;
  5373. position:absolute;
  5374. left:806px;
  5375. top:87px;
  5376. width:18px;
  5377. height:1px;
  5378. display:flex;
  5379. -webkit-transform:rotate(90deg);
  5380. -moz-transform:rotate(90deg);
  5381. -ms-transform:rotate(90deg);
  5382. transform:rotate(90deg);
  5383. }
  5384. #u167522 .text {
  5385. position:absolute;
  5386. align-self:center;
  5387. padding:2px 2px 2px 2px;
  5388. box-sizing:border-box;
  5389. width:100%;
  5390. }
  5391. #u167522_text {
  5392. border-width:0px;
  5393. word-wrap:break-word;
  5394. text-transform:none;
  5395. visibility:hidden;
  5396. }
  5397. #u167523_img {
  5398. border-width:0px;
  5399. position:absolute;
  5400. left:0px;
  5401. top:0px;
  5402. width:375px;
  5403. height:44px;
  5404. }
  5405. #u167523 {
  5406. border-width:0px;
  5407. position:absolute;
  5408. left:488px;
  5409. top:24px;
  5410. width:375px;
  5411. height:44px;
  5412. display:flex;
  5413. }
  5414. #u167523 .text {
  5415. position:absolute;
  5416. align-self:center;
  5417. padding:2px 2px 2px 2px;
  5418. box-sizing:border-box;
  5419. width:100%;
  5420. }
  5421. #u167523_text {
  5422. border-width:0px;
  5423. word-wrap:break-word;
  5424. text-transform:none;
  5425. visibility:hidden;
  5426. }
  5427. #u167524_div {
  5428. border-width:0px;
  5429. position:absolute;
  5430. left:0px;
  5431. top:0px;
  5432. width:375px;
  5433. height:50px;
  5434. background:inherit;
  5435. background-color:rgba(255, 255, 255, 1);
  5436. box-sizing:border-box;
  5437. border-width:1px;
  5438. border-style:solid;
  5439. border-color:rgba(242, 242, 242, 1);
  5440. border-radius:26px;
  5441. border-top-left-radius:0px;
  5442. border-top-right-radius:0px;
  5443. -moz-box-shadow:none;
  5444. -webkit-box-shadow:none;
  5445. box-shadow:none;
  5446. }
  5447. #u167524 {
  5448. border-width:0px;
  5449. position:absolute;
  5450. left:488px;
  5451. top:788px;
  5452. width:375px;
  5453. height:50px;
  5454. display:flex;
  5455. }
  5456. #u167524 .text {
  5457. position:absolute;
  5458. align-self:center;
  5459. padding:2px 2px 2px 2px;
  5460. box-sizing:border-box;
  5461. width:100%;
  5462. }
  5463. #u167524_text {
  5464. border-width:0px;
  5465. word-wrap:break-word;
  5466. text-transform:none;
  5467. visibility:hidden;
  5468. }
  5469. #u167525 {
  5470. border-width:0px;
  5471. position:absolute;
  5472. left:0px;
  5473. top:0px;
  5474. width:0px;
  5475. height:0px;
  5476. }
  5477. #u167526_img {
  5478. border-width:0px;
  5479. position:absolute;
  5480. left:0px;
  5481. top:0px;
  5482. width:24px;
  5483. height:24px;
  5484. }
  5485. #u167526 {
  5486. border-width:0px;
  5487. position:absolute;
  5488. left:528px;
  5489. top:792px;
  5490. width:24px;
  5491. height:24px;
  5492. display:flex;
  5493. font-size:8px;
  5494. }
  5495. #u167526 .text {
  5496. position:absolute;
  5497. align-self:center;
  5498. padding:2px 2px 2px 2px;
  5499. box-sizing:border-box;
  5500. width:100%;
  5501. }
  5502. #u167526_text {
  5503. border-width:0px;
  5504. word-wrap:break-word;
  5505. text-transform:none;
  5506. }
  5507. #u167527_div {
  5508. border-width:0px;
  5509. position:absolute;
  5510. left:0px;
  5511. top:0px;
  5512. width:25px;
  5513. height:17px;
  5514. background:inherit;
  5515. background-color:rgba(255, 255, 255, 0);
  5516. border:none;
  5517. border-radius:0px;
  5518. -moz-box-shadow:none;
  5519. -webkit-box-shadow:none;
  5520. box-shadow:none;
  5521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5522. font-weight:400;
  5523. font-style:normal;
  5524. font-size:12px;
  5525. }
  5526. #u167527 {
  5527. border-width:0px;
  5528. position:absolute;
  5529. left:528px;
  5530. top:817px;
  5531. width:25px;
  5532. height:17px;
  5533. display:flex;
  5534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5535. font-weight:400;
  5536. font-style:normal;
  5537. font-size:12px;
  5538. }
  5539. #u167527 .text {
  5540. position:absolute;
  5541. align-self:flex-start;
  5542. padding:0px 0px 0px 0px;
  5543. box-sizing:border-box;
  5544. width:100%;
  5545. }
  5546. #u167527_text {
  5547. border-width:0px;
  5548. white-space:nowrap;
  5549. text-transform:none;
  5550. }
  5551. #u167528 {
  5552. border-width:0px;
  5553. position:absolute;
  5554. left:0px;
  5555. top:0px;
  5556. width:0px;
  5557. height:0px;
  5558. }
  5559. #u167529_img {
  5560. border-width:0px;
  5561. position:absolute;
  5562. left:0px;
  5563. top:0px;
  5564. width:24px;
  5565. height:24px;
  5566. }
  5567. #u167529 {
  5568. border-width:0px;
  5569. position:absolute;
  5570. left:798px;
  5571. top:794px;
  5572. width:24px;
  5573. height:24px;
  5574. display:flex;
  5575. font-size:8px;
  5576. }
  5577. #u167529 .text {
  5578. position:absolute;
  5579. align-self:center;
  5580. padding:2px 2px 2px 2px;
  5581. box-sizing:border-box;
  5582. width:100%;
  5583. }
  5584. #u167529_text {
  5585. border-width:0px;
  5586. word-wrap:break-word;
  5587. text-transform:none;
  5588. }
  5589. #u167530_div {
  5590. border-width:0px;
  5591. position:absolute;
  5592. left:0px;
  5593. top:0px;
  5594. width:25px;
  5595. height:17px;
  5596. background:inherit;
  5597. background-color:rgba(255, 255, 255, 0);
  5598. border:none;
  5599. border-radius:0px;
  5600. -moz-box-shadow:none;
  5601. -webkit-box-shadow:none;
  5602. box-shadow:none;
  5603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5604. font-weight:400;
  5605. font-style:normal;
  5606. font-size:12px;
  5607. }
  5608. #u167530 {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:798px;
  5612. top:819px;
  5613. width:25px;
  5614. height:17px;
  5615. display:flex;
  5616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5617. font-weight:400;
  5618. font-style:normal;
  5619. font-size:12px;
  5620. }
  5621. #u167530 .text {
  5622. position:absolute;
  5623. align-self:flex-start;
  5624. padding:0px 0px 0px 0px;
  5625. box-sizing:border-box;
  5626. width:100%;
  5627. }
  5628. #u167530_text {
  5629. border-width:0px;
  5630. white-space:nowrap;
  5631. text-transform:none;
  5632. }
  5633. #u167531_div {
  5634. border-width:0px;
  5635. position:absolute;
  5636. left:0px;
  5637. top:0px;
  5638. width:375px;
  5639. height:681px;
  5640. background:inherit;
  5641. background-color:rgba(242, 242, 242, 0.462745098039216);
  5642. border:none;
  5643. border-radius:0px;
  5644. -moz-box-shadow:none;
  5645. -webkit-box-shadow:none;
  5646. box-shadow:none;
  5647. }
  5648. #u167531 {
  5649. border-width:0px;
  5650. position:absolute;
  5651. left:488px;
  5652. top:107px;
  5653. width:375px;
  5654. height:681px;
  5655. display:flex;
  5656. }
  5657. #u167531 .text {
  5658. position:absolute;
  5659. align-self:center;
  5660. padding:2px 2px 2px 2px;
  5661. box-sizing:border-box;
  5662. width:100%;
  5663. }
  5664. #u167531_text {
  5665. border-width:0px;
  5666. word-wrap:break-word;
  5667. text-transform:none;
  5668. visibility:hidden;
  5669. }
  5670. #u167532 {
  5671. border-width:0px;
  5672. position:absolute;
  5673. left:0px;
  5674. top:0px;
  5675. width:0px;
  5676. height:0px;
  5677. }
  5678. #u167533_img {
  5679. border-width:0px;
  5680. position:absolute;
  5681. left:0px;
  5682. top:0px;
  5683. width:24px;
  5684. height:24px;
  5685. }
  5686. #u167533 {
  5687. border-width:0px;
  5688. position:absolute;
  5689. left:710px;
  5690. top:792px;
  5691. width:24px;
  5692. height:24px;
  5693. display:flex;
  5694. font-size:8px;
  5695. }
  5696. #u167533 .text {
  5697. position:absolute;
  5698. align-self:center;
  5699. padding:2px 2px 2px 2px;
  5700. box-sizing:border-box;
  5701. width:100%;
  5702. }
  5703. #u167533_text {
  5704. border-width:0px;
  5705. word-wrap:break-word;
  5706. text-transform:none;
  5707. }
  5708. #u167534_div {
  5709. border-width:0px;
  5710. position:absolute;
  5711. left:0px;
  5712. top:0px;
  5713. width:37px;
  5714. height:17px;
  5715. background:inherit;
  5716. background-color:rgba(255, 255, 255, 0);
  5717. border:none;
  5718. border-radius:0px;
  5719. -moz-box-shadow:none;
  5720. -webkit-box-shadow:none;
  5721. box-shadow:none;
  5722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5723. font-weight:400;
  5724. font-style:normal;
  5725. font-size:12px;
  5726. }
  5727. #u167534 {
  5728. border-width:0px;
  5729. position:absolute;
  5730. left:704px;
  5731. top:817px;
  5732. width:37px;
  5733. height:17px;
  5734. display:flex;
  5735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5736. font-weight:400;
  5737. font-style:normal;
  5738. font-size:12px;
  5739. }
  5740. #u167534 .text {
  5741. position:absolute;
  5742. align-self:flex-start;
  5743. padding:0px 0px 0px 0px;
  5744. box-sizing:border-box;
  5745. width:100%;
  5746. }
  5747. #u167534_text {
  5748. border-width:0px;
  5749. white-space:nowrap;
  5750. text-transform:none;
  5751. }
  5752. #u167535 {
  5753. border-width:0px;
  5754. position:absolute;
  5755. left:0px;
  5756. top:0px;
  5757. width:0px;
  5758. height:0px;
  5759. }
  5760. #u167536_img {
  5761. border-width:0px;
  5762. position:absolute;
  5763. left:0px;
  5764. top:0px;
  5765. width:24px;
  5766. height:24px;
  5767. }
  5768. #u167536 {
  5769. border-width:0px;
  5770. position:absolute;
  5771. left:616px;
  5772. top:792px;
  5773. width:24px;
  5774. height:24px;
  5775. display:flex;
  5776. font-size:8px;
  5777. }
  5778. #u167536 .text {
  5779. position:absolute;
  5780. align-self:center;
  5781. padding:2px 2px 2px 2px;
  5782. box-sizing:border-box;
  5783. width:100%;
  5784. }
  5785. #u167536_text {
  5786. border-width:0px;
  5787. word-wrap:break-word;
  5788. text-transform:none;
  5789. }
  5790. #u167537_div {
  5791. border-width:0px;
  5792. position:absolute;
  5793. left:0px;
  5794. top:0px;
  5795. width:37px;
  5796. height:17px;
  5797. background:inherit;
  5798. background-color:rgba(255, 255, 255, 0);
  5799. border:none;
  5800. border-radius:0px;
  5801. -moz-box-shadow:none;
  5802. -webkit-box-shadow:none;
  5803. box-shadow:none;
  5804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5805. font-weight:400;
  5806. font-style:normal;
  5807. font-size:12px;
  5808. }
  5809. #u167537 {
  5810. border-width:0px;
  5811. position:absolute;
  5812. left:610px;
  5813. top:817px;
  5814. width:37px;
  5815. height:17px;
  5816. display:flex;
  5817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5818. font-weight:400;
  5819. font-style:normal;
  5820. font-size:12px;
  5821. }
  5822. #u167537 .text {
  5823. position:absolute;
  5824. align-self:flex-start;
  5825. padding:0px 0px 0px 0px;
  5826. box-sizing:border-box;
  5827. width:100%;
  5828. }
  5829. #u167537_text {
  5830. border-width:0px;
  5831. white-space:nowrap;
  5832. text-transform:none;
  5833. }
  5834. #u167538_div {
  5835. border-width:0px;
  5836. position:absolute;
  5837. left:0px;
  5838. top:0px;
  5839. width:375px;
  5840. height:731px;
  5841. background:inherit;
  5842. background-color:rgba(242, 242, 242, 1);
  5843. border:none;
  5844. border-top:0px;
  5845. border-radius:25px;
  5846. border-top-left-radius:0px;
  5847. border-top-right-radius:0px;
  5848. -moz-box-shadow:none;
  5849. -webkit-box-shadow:none;
  5850. box-shadow:none;
  5851. }
  5852. #u167538 {
  5853. border-width:0px;
  5854. position:absolute;
  5855. left:488px;
  5856. top:106px;
  5857. width:375px;
  5858. height:731px;
  5859. display:flex;
  5860. }
  5861. #u167538 .text {
  5862. position:absolute;
  5863. align-self:center;
  5864. padding:2px 2px 2px 2px;
  5865. box-sizing:border-box;
  5866. width:100%;
  5867. }
  5868. #u167538_text {
  5869. border-width:0px;
  5870. word-wrap:break-word;
  5871. text-transform:none;
  5872. visibility:hidden;
  5873. }
  5874. #u167539_div {
  5875. border-width:0px;
  5876. position:absolute;
  5877. left:0px;
  5878. top:0px;
  5879. width:375px;
  5880. height:640px;
  5881. background:inherit;
  5882. background-color:rgba(255, 255, 255, 1);
  5883. border:none;
  5884. border-top:0px;
  5885. border-radius:0px;
  5886. border-top-left-radius:0px;
  5887. border-top-right-radius:0px;
  5888. -moz-box-shadow:none;
  5889. -webkit-box-shadow:none;
  5890. box-shadow:none;
  5891. }
  5892. #u167539 {
  5893. border-width:0px;
  5894. position:absolute;
  5895. left:488px;
  5896. top:106px;
  5897. width:375px;
  5898. height:640px;
  5899. display:flex;
  5900. }
  5901. #u167539 .text {
  5902. position:absolute;
  5903. align-self:center;
  5904. padding:2px 2px 2px 2px;
  5905. box-sizing:border-box;
  5906. width:100%;
  5907. }
  5908. #u167539_text {
  5909. border-width:0px;
  5910. word-wrap:break-word;
  5911. text-transform:none;
  5912. visibility:hidden;
  5913. }
  5914. #u167540 {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:0px;
  5918. top:0px;
  5919. width:0px;
  5920. height:0px;
  5921. }
  5922. #u167541_img {
  5923. border-width:0px;
  5924. position:absolute;
  5925. left:0px;
  5926. top:0px;
  5927. width:11px;
  5928. height:18px;
  5929. }
  5930. #u167541 {
  5931. border-width:0px;
  5932. position:absolute;
  5933. left:499px;
  5934. top:80px;
  5935. width:11px;
  5936. height:18px;
  5937. display:flex;
  5938. }
  5939. #u167541 .text {
  5940. position:absolute;
  5941. align-self:center;
  5942. padding:2px 2px 2px 2px;
  5943. box-sizing:border-box;
  5944. width:100%;
  5945. }
  5946. #u167541_text {
  5947. border-width:0px;
  5948. word-wrap:break-word;
  5949. text-transform:none;
  5950. visibility:hidden;
  5951. }
  5952. #u167542_div {
  5953. border-width:0px;
  5954. position:absolute;
  5955. left:0px;
  5956. top:0px;
  5957. width:57px;
  5958. height:30px;
  5959. background:inherit;
  5960. background-color:rgba(255, 255, 255, 0);
  5961. border:none;
  5962. border-left:0px;
  5963. border-top:0px;
  5964. border-right:0px;
  5965. border-radius:0px;
  5966. border-bottom-right-radius:0px;
  5967. border-bottom-left-radius:0px;
  5968. -moz-box-shadow:none;
  5969. -webkit-box-shadow:none;
  5970. box-shadow:none;
  5971. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5972. font-weight:500;
  5973. font-style:normal;
  5974. font-size:14px;
  5975. line-height:30px;
  5976. }
  5977. #u167542 {
  5978. border-width:0px;
  5979. position:absolute;
  5980. left:522px;
  5981. top:76px;
  5982. width:57px;
  5983. height:30px;
  5984. display:flex;
  5985. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5986. font-weight:500;
  5987. font-style:normal;
  5988. font-size:14px;
  5989. line-height:30px;
  5990. }
  5991. #u167542 .text {
  5992. position:absolute;
  5993. align-self:flex-start;
  5994. padding:0px 0px 0px 0px;
  5995. box-sizing:border-box;
  5996. width:100%;
  5997. }
  5998. #u167542_text {
  5999. border-width:0px;
  6000. white-space:nowrap;
  6001. text-transform:none;
  6002. }
  6003. #u167543_img {
  6004. border-width:0px;
  6005. position:absolute;
  6006. left:0px;
  6007. top:0px;
  6008. width:375px;
  6009. height:198px;
  6010. }
  6011. #u167543 {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:488px;
  6015. top:106px;
  6016. width:375px;
  6017. height:198px;
  6018. display:flex;
  6019. }
  6020. #u167543 .text {
  6021. position:absolute;
  6022. align-self:center;
  6023. padding:2px 2px 2px 2px;
  6024. box-sizing:border-box;
  6025. width:100%;
  6026. }
  6027. #u167543_text {
  6028. border-width:0px;
  6029. word-wrap:break-word;
  6030. text-transform:none;
  6031. visibility:hidden;
  6032. }
  6033. #u167544 {
  6034. border-width:0px;
  6035. position:absolute;
  6036. left:0px;
  6037. top:0px;
  6038. width:0px;
  6039. height:0px;
  6040. }
  6041. #u167545_div {
  6042. border-width:0px;
  6043. position:absolute;
  6044. left:0px;
  6045. top:0px;
  6046. width:55px;
  6047. height:30px;
  6048. background:inherit;
  6049. background-color:rgba(255, 255, 255, 0);
  6050. border:none;
  6051. border-left:0px;
  6052. border-top:0px;
  6053. border-right:0px;
  6054. border-radius:0px;
  6055. border-bottom-right-radius:0px;
  6056. border-bottom-left-radius:0px;
  6057. -moz-box-shadow:none;
  6058. -webkit-box-shadow:none;
  6059. box-shadow:none;
  6060. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6061. font-weight:500;
  6062. font-style:normal;
  6063. font-size:18px;
  6064. color:#FFFFFF;
  6065. line-height:30px;
  6066. }
  6067. #u167545 {
  6068. border-width:0px;
  6069. position:absolute;
  6070. left:537px;
  6071. top:115px;
  6072. width:55px;
  6073. height:30px;
  6074. display:flex;
  6075. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6076. font-weight:500;
  6077. font-style:normal;
  6078. font-size:18px;
  6079. color:#FFFFFF;
  6080. line-height:30px;
  6081. }
  6082. #u167545 .text {
  6083. position:absolute;
  6084. align-self:flex-start;
  6085. padding:0px 0px 0px 0px;
  6086. box-sizing:border-box;
  6087. width:100%;
  6088. }
  6089. #u167545_text {
  6090. border-width:0px;
  6091. white-space:nowrap;
  6092. text-transform:none;
  6093. }
  6094. #u167546_img {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:0px;
  6098. top:0px;
  6099. width:19px;
  6100. height:15px;
  6101. }
  6102. #u167546 {
  6103. border-width:0px;
  6104. position:absolute;
  6105. left:510px;
  6106. top:123px;
  6107. width:19px;
  6108. height:15px;
  6109. display:flex;
  6110. }
  6111. #u167546 .text {
  6112. position:absolute;
  6113. align-self:center;
  6114. padding:2px 2px 2px 2px;
  6115. box-sizing:border-box;
  6116. width:100%;
  6117. }
  6118. #u167546_text {
  6119. border-width:0px;
  6120. word-wrap:break-word;
  6121. text-transform:none;
  6122. visibility:hidden;
  6123. }
  6124. #u167547_div {
  6125. border-width:0px;
  6126. position:absolute;
  6127. left:0px;
  6128. top:0px;
  6129. width:245px;
  6130. height:50px;
  6131. background:inherit;
  6132. background-color:rgba(255, 255, 255, 0);
  6133. border:none;
  6134. border-left:0px;
  6135. border-top:0px;
  6136. border-right:0px;
  6137. border-radius:0px;
  6138. border-bottom-right-radius:0px;
  6139. border-bottom-left-radius:0px;
  6140. -moz-box-shadow:none;
  6141. -webkit-box-shadow:none;
  6142. box-shadow:none;
  6143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6144. font-weight:400;
  6145. font-style:normal;
  6146. font-size:12px;
  6147. color:rgba(255, 255, 255, 0.619607843137255);
  6148. line-height:25px;
  6149. }
  6150. #u167547 {
  6151. border-width:0px;
  6152. position:absolute;
  6153. left:505px;
  6154. top:166px;
  6155. width:245px;
  6156. height:50px;
  6157. display:flex;
  6158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6159. font-weight:400;
  6160. font-style:normal;
  6161. font-size:12px;
  6162. color:rgba(255, 255, 255, 0.619607843137255);
  6163. line-height:25px;
  6164. }
  6165. #u167547 .text {
  6166. position:absolute;
  6167. align-self:flex-start;
  6168. padding:0px 0px 0px 0px;
  6169. box-sizing:border-box;
  6170. width:100%;
  6171. }
  6172. #u167547_text {
  6173. border-width:0px;
  6174. white-space:nowrap;
  6175. text-transform:none;
  6176. }
  6177. #u167548_img {
  6178. border-width:0px;
  6179. position:absolute;
  6180. left:0px;
  6181. top:0px;
  6182. width:338px;
  6183. height:2px;
  6184. }
  6185. #u167548 {
  6186. border-width:0px;
  6187. position:absolute;
  6188. left:505px;
  6189. top:155px;
  6190. width:337px;
  6191. height:1px;
  6192. display:flex;
  6193. color:rgba(255, 255, 255, 0.364705882352941);
  6194. }
  6195. #u167548 .text {
  6196. position:absolute;
  6197. align-self:center;
  6198. padding:2px 2px 2px 2px;
  6199. box-sizing:border-box;
  6200. width:100%;
  6201. }
  6202. #u167548_text {
  6203. border-width:0px;
  6204. word-wrap:break-word;
  6205. text-transform:none;
  6206. visibility:hidden;
  6207. }
  6208. #u167549_img {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:-5px;
  6212. top:-5px;
  6213. width:360px;
  6214. height:102px;
  6215. }
  6216. #u167549 {
  6217. border-width:0px;
  6218. position:absolute;
  6219. left:499px;
  6220. top:225px;
  6221. width:350px;
  6222. height:92px;
  6223. display:flex;
  6224. }
  6225. #u167549 .text {
  6226. position:absolute;
  6227. align-self:center;
  6228. padding:2px 2px 2px 2px;
  6229. box-sizing:border-box;
  6230. width:100%;
  6231. }
  6232. #u167549_text {
  6233. border-width:0px;
  6234. word-wrap:break-word;
  6235. text-transform:none;
  6236. visibility:hidden;
  6237. }
  6238. #u167550_div {
  6239. border-width:0px;
  6240. position:absolute;
  6241. left:0px;
  6242. top:0px;
  6243. width:199px;
  6244. height:25px;
  6245. background:inherit;
  6246. background-color:rgba(255, 255, 255, 0);
  6247. border:none;
  6248. border-left:0px;
  6249. border-top:0px;
  6250. border-right:0px;
  6251. border-radius:0px;
  6252. border-bottom-right-radius:0px;
  6253. border-bottom-left-radius:0px;
  6254. -moz-box-shadow:none;
  6255. -webkit-box-shadow:none;
  6256. box-shadow:none;
  6257. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6258. font-weight:500;
  6259. font-style:normal;
  6260. font-size:18px;
  6261. line-height:25px;
  6262. }
  6263. #u167550 {
  6264. border-width:0px;
  6265. position:absolute;
  6266. left:517px;
  6267. top:240px;
  6268. width:199px;
  6269. height:25px;
  6270. display:flex;
  6271. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6272. font-weight:500;
  6273. font-style:normal;
  6274. font-size:18px;
  6275. line-height:25px;
  6276. }
  6277. #u167550 .text {
  6278. position:absolute;
  6279. align-self:flex-start;
  6280. padding:0px 0px 0px 0px;
  6281. box-sizing:border-box;
  6282. width:100%;
  6283. }
  6284. #u167550_text {
  6285. border-width:0px;
  6286. white-space:nowrap;
  6287. text-transform:none;
  6288. }
  6289. #u167551_div {
  6290. border-width:0px;
  6291. position:absolute;
  6292. left:0px;
  6293. top:0px;
  6294. width:98px;
  6295. height:25px;
  6296. background:inherit;
  6297. background-color:rgba(255, 255, 255, 0);
  6298. border:none;
  6299. border-left:0px;
  6300. border-top:0px;
  6301. border-right:0px;
  6302. border-radius:0px;
  6303. border-bottom-right-radius:0px;
  6304. border-bottom-left-radius:0px;
  6305. -moz-box-shadow:none;
  6306. -webkit-box-shadow:none;
  6307. box-shadow:none;
  6308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6309. font-weight:400;
  6310. font-style:normal;
  6311. font-size:14px;
  6312. color:#AAAAAA;
  6313. line-height:25px;
  6314. }
  6315. #u167551 {
  6316. border-width:0px;
  6317. position:absolute;
  6318. left:517px;
  6319. top:275px;
  6320. width:98px;
  6321. height:25px;
  6322. display:flex;
  6323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6324. font-weight:400;
  6325. font-style:normal;
  6326. font-size:14px;
  6327. color:#AAAAAA;
  6328. line-height:25px;
  6329. }
  6330. #u167551 .text {
  6331. position:absolute;
  6332. align-self:flex-start;
  6333. padding:0px 0px 0px 0px;
  6334. box-sizing:border-box;
  6335. width:100%;
  6336. }
  6337. #u167551_text {
  6338. border-width:0px;
  6339. white-space:nowrap;
  6340. text-transform:none;
  6341. }
  6342. #u167552_div {
  6343. border-width:0px;
  6344. position:absolute;
  6345. left:0px;
  6346. top:0px;
  6347. width:73px;
  6348. height:25px;
  6349. background:inherit;
  6350. background-color:rgba(255, 255, 255, 0);
  6351. border:none;
  6352. border-left:0px;
  6353. border-top:0px;
  6354. border-right:0px;
  6355. border-radius:0px;
  6356. border-bottom-right-radius:0px;
  6357. border-bottom-left-radius:0px;
  6358. -moz-box-shadow:none;
  6359. -webkit-box-shadow:none;
  6360. box-shadow:none;
  6361. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6362. font-weight:500;
  6363. font-style:normal;
  6364. font-size:18px;
  6365. line-height:25px;
  6366. }
  6367. #u167552 {
  6368. border-width:0px;
  6369. position:absolute;
  6370. left:499px;
  6371. top:337px;
  6372. width:73px;
  6373. height:25px;
  6374. display:flex;
  6375. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6376. font-weight:500;
  6377. font-style:normal;
  6378. font-size:18px;
  6379. line-height:25px;
  6380. }
  6381. #u167552 .text {
  6382. position:absolute;
  6383. align-self:flex-start;
  6384. padding:0px 0px 0px 0px;
  6385. box-sizing:border-box;
  6386. width:100%;
  6387. }
  6388. #u167552_text {
  6389. border-width:0px;
  6390. white-space:nowrap;
  6391. text-transform:none;
  6392. }
  6393. #u167553_div {
  6394. border-width:0px;
  6395. position:absolute;
  6396. left:0px;
  6397. top:0px;
  6398. width:350px;
  6399. height:50px;
  6400. background:inherit;
  6401. background-color:rgba(255, 255, 255, 1);
  6402. box-sizing:border-box;
  6403. border-width:1px;
  6404. border-style:solid;
  6405. border-color:rgba(215, 215, 215, 1);
  6406. border-radius:10px;
  6407. -moz-box-shadow:none;
  6408. -webkit-box-shadow:none;
  6409. box-shadow:none;
  6410. }
  6411. #u167553 {
  6412. border-width:0px;
  6413. position:absolute;
  6414. left:499px;
  6415. top:378px;
  6416. width:350px;
  6417. height:50px;
  6418. display:flex;
  6419. }
  6420. #u167553 .text {
  6421. position:absolute;
  6422. align-self:center;
  6423. padding:2px 2px 2px 2px;
  6424. box-sizing:border-box;
  6425. width:100%;
  6426. }
  6427. #u167553_text {
  6428. border-width:0px;
  6429. word-wrap:break-word;
  6430. text-transform:none;
  6431. visibility:hidden;
  6432. }
  6433. #u167554_div {
  6434. border-width:0px;
  6435. position:absolute;
  6436. left:0px;
  6437. top:0px;
  6438. width:167px;
  6439. height:25px;
  6440. background:inherit;
  6441. background-color:rgba(255, 255, 255, 0);
  6442. border:none;
  6443. border-left:0px;
  6444. border-top:0px;
  6445. border-right:0px;
  6446. border-radius:0px;
  6447. border-bottom-right-radius:0px;
  6448. border-bottom-left-radius:0px;
  6449. -moz-box-shadow:none;
  6450. -webkit-box-shadow:none;
  6451. box-shadow:none;
  6452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6453. font-style:normal;
  6454. line-height:25px;
  6455. }
  6456. #u167554 {
  6457. border-width:0px;
  6458. position:absolute;
  6459. left:517px;
  6460. top:393px;
  6461. width:167px;
  6462. height:25px;
  6463. display:flex;
  6464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6465. font-style:normal;
  6466. line-height:25px;
  6467. }
  6468. #u167554 .text {
  6469. position:absolute;
  6470. align-self:flex-start;
  6471. padding:0px 0px 0px 0px;
  6472. box-sizing:border-box;
  6473. width:100%;
  6474. }
  6475. #u167554_text {
  6476. border-width:0px;
  6477. white-space:nowrap;
  6478. text-transform:none;
  6479. }
  6480. #u167555_div {
  6481. border-width:0px;
  6482. position:absolute;
  6483. left:0px;
  6484. top:0px;
  6485. width:350px;
  6486. height:160px;
  6487. background:inherit;
  6488. background-color:rgba(255, 255, 255, 1);
  6489. box-sizing:border-box;
  6490. border-width:1px;
  6491. border-style:solid;
  6492. border-color:rgba(215, 215, 215, 1);
  6493. border-radius:10px;
  6494. -moz-box-shadow:none;
  6495. -webkit-box-shadow:none;
  6496. box-shadow:none;
  6497. }
  6498. #u167555 {
  6499. border-width:0px;
  6500. position:absolute;
  6501. left:499px;
  6502. top:438px;
  6503. width:350px;
  6504. height:160px;
  6505. display:flex;
  6506. }
  6507. #u167555 .text {
  6508. position:absolute;
  6509. align-self:center;
  6510. padding:2px 2px 2px 2px;
  6511. box-sizing:border-box;
  6512. width:100%;
  6513. }
  6514. #u167555_text {
  6515. border-width:0px;
  6516. word-wrap:break-word;
  6517. text-transform:none;
  6518. visibility:hidden;
  6519. }
  6520. #u167556_div {
  6521. border-width:0px;
  6522. position:absolute;
  6523. left:0px;
  6524. top:0px;
  6525. width:250px;
  6526. height:120px;
  6527. background:inherit;
  6528. background-color:rgba(255, 255, 255, 0);
  6529. border:none;
  6530. border-left:0px;
  6531. border-top:0px;
  6532. border-right:0px;
  6533. border-radius:0px;
  6534. border-bottom-right-radius:0px;
  6535. border-bottom-left-radius:0px;
  6536. -moz-box-shadow:none;
  6537. -webkit-box-shadow:none;
  6538. box-shadow:none;
  6539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6540. font-weight:400;
  6541. font-style:normal;
  6542. font-size:14px;
  6543. line-height:30px;
  6544. }
  6545. #u167556 {
  6546. border-width:0px;
  6547. position:absolute;
  6548. left:517px;
  6549. top:453px;
  6550. width:250px;
  6551. height:120px;
  6552. display:flex;
  6553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6554. font-weight:400;
  6555. font-style:normal;
  6556. font-size:14px;
  6557. line-height:30px;
  6558. }
  6559. #u167556 .text {
  6560. position:absolute;
  6561. align-self:flex-start;
  6562. padding:0px 0px 0px 0px;
  6563. box-sizing:border-box;
  6564. width:100%;
  6565. }
  6566. #u167556_text {
  6567. border-width:0px;
  6568. white-space:nowrap;
  6569. text-transform:none;
  6570. }
  6571. #u167557_div {
  6572. border-width:0px;
  6573. position:absolute;
  6574. left:0px;
  6575. top:0px;
  6576. width:57px;
  6577. height:30px;
  6578. background:inherit;
  6579. background-color:rgba(255, 255, 255, 0);
  6580. border:none;
  6581. border-left:0px;
  6582. border-top:0px;
  6583. border-right:0px;
  6584. border-radius:0px;
  6585. border-bottom-right-radius:0px;
  6586. border-bottom-left-radius:0px;
  6587. -moz-box-shadow:none;
  6588. -webkit-box-shadow:none;
  6589. box-shadow:none;
  6590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6591. font-weight:400;
  6592. font-style:normal;
  6593. font-size:14px;
  6594. line-height:30px;
  6595. }
  6596. #u167557 {
  6597. border-width:0px;
  6598. position:absolute;
  6599. left:520px;
  6600. top:657px;
  6601. width:57px;
  6602. height:30px;
  6603. display:flex;
  6604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6605. font-weight:400;
  6606. font-style:normal;
  6607. font-size:14px;
  6608. line-height:30px;
  6609. }
  6610. #u167557 .text {
  6611. position:absolute;
  6612. align-self:flex-start;
  6613. padding:0px 0px 0px 0px;
  6614. box-sizing:border-box;
  6615. width:100%;
  6616. }
  6617. #u167557_text {
  6618. border-width:0px;
  6619. white-space:nowrap;
  6620. text-transform:none;
  6621. }
  6622. #u167558_div {
  6623. border-width:0px;
  6624. position:absolute;
  6625. left:0px;
  6626. top:0px;
  6627. width:60px;
  6628. height:30px;
  6629. background:inherit;
  6630. background-color:rgba(255, 255, 255, 0);
  6631. border:none;
  6632. border-left:0px;
  6633. border-top:0px;
  6634. border-right:0px;
  6635. border-radius:0px;
  6636. border-bottom-right-radius:0px;
  6637. border-bottom-left-radius:0px;
  6638. -moz-box-shadow:none;
  6639. -webkit-box-shadow:none;
  6640. box-shadow:none;
  6641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6642. font-weight:400;
  6643. font-style:normal;
  6644. font-size:14px;
  6645. text-align:right;
  6646. line-height:30px;
  6647. }
  6648. #u167558 {
  6649. border-width:0px;
  6650. position:absolute;
  6651. left:765px;
  6652. top:657px;
  6653. width:60px;
  6654. height:30px;
  6655. display:flex;
  6656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6657. font-weight:400;
  6658. font-style:normal;
  6659. font-size:14px;
  6660. text-align:right;
  6661. line-height:30px;
  6662. }
  6663. #u167558 .text {
  6664. position:absolute;
  6665. align-self:flex-start;
  6666. padding:0px 0px 0px 0px;
  6667. box-sizing:border-box;
  6668. width:100%;
  6669. }
  6670. #u167558_text {
  6671. border-width:0px;
  6672. white-space:nowrap;
  6673. text-transform:none;
  6674. }
  6675. #u167559_div {
  6676. border-width:0px;
  6677. position:absolute;
  6678. left:0px;
  6679. top:0px;
  6680. width:375px;
  6681. height:40px;
  6682. background:inherit;
  6683. background-color:rgba(24, 144, 255, 0.0470588235294118);
  6684. border:none;
  6685. border-left:0px;
  6686. border-top:0px;
  6687. border-right:0px;
  6688. border-radius:0px;
  6689. border-bottom-right-radius:0px;
  6690. border-bottom-left-radius:0px;
  6691. -moz-box-shadow:none;
  6692. -webkit-box-shadow:none;
  6693. box-shadow:none;
  6694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6695. font-weight:400;
  6696. font-style:normal;
  6697. text-align:right;
  6698. line-height:30px;
  6699. }
  6700. #u167559 {
  6701. border-width:0px;
  6702. position:absolute;
  6703. left:488px;
  6704. top:706px;
  6705. width:375px;
  6706. height:40px;
  6707. display:flex;
  6708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6709. font-weight:400;
  6710. font-style:normal;
  6711. text-align:right;
  6712. line-height:30px;
  6713. }
  6714. #u167559 .text {
  6715. position:absolute;
  6716. align-self:center;
  6717. padding:0px 20px 0px 20px;
  6718. box-sizing:border-box;
  6719. width:100%;
  6720. }
  6721. #u167559_text {
  6722. border-width:0px;
  6723. word-wrap:break-word;
  6724. text-transform:none;
  6725. }
  6726. #u167560_div {
  6727. border-width:0px;
  6728. position:absolute;
  6729. left:0px;
  6730. top:0px;
  6731. width:344px;
  6732. height:40px;
  6733. background:inherit;
  6734. background-color:rgba(24, 144, 255, 1);
  6735. border:none;
  6736. border-radius:81px;
  6737. -moz-box-shadow:none;
  6738. -webkit-box-shadow:none;
  6739. box-shadow:none;
  6740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6741. font-weight:400;
  6742. font-style:normal;
  6743. font-size:14px;
  6744. color:#FFFFFF;
  6745. }
  6746. #u167560 {
  6747. border-width:0px;
  6748. position:absolute;
  6749. left:504px;
  6750. top:792px;
  6751. width:344px;
  6752. height:40px;
  6753. display:flex;
  6754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6755. font-weight:400;
  6756. font-style:normal;
  6757. font-size:14px;
  6758. color:#FFFFFF;
  6759. }
  6760. #u167560 .text {
  6761. position:absolute;
  6762. align-self:center;
  6763. padding:2px 2px 2px 2px;
  6764. box-sizing:border-box;
  6765. width:100%;
  6766. }
  6767. #u167560_text {
  6768. border-width:0px;
  6769. word-wrap:break-word;
  6770. text-transform:none;
  6771. }
  6772. #u167561_div {
  6773. border-width:0px;
  6774. position:absolute;
  6775. left:0px;
  6776. top:0px;
  6777. width:98px;
  6778. height:25px;
  6779. background:inherit;
  6780. background-color:rgba(255, 255, 255, 0);
  6781. border:none;
  6782. border-left:0px;
  6783. border-top:0px;
  6784. border-right:0px;
  6785. border-radius:0px;
  6786. border-bottom-right-radius:0px;
  6787. border-bottom-left-radius:0px;
  6788. -moz-box-shadow:none;
  6789. -webkit-box-shadow:none;
  6790. box-shadow:none;
  6791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6792. font-weight:400;
  6793. font-style:normal;
  6794. font-size:10px;
  6795. color:#298FFF;
  6796. line-height:25px;
  6797. }
  6798. #u167561 {
  6799. border-width:0px;
  6800. position:absolute;
  6801. left:622px;
  6802. top:766px;
  6803. width:98px;
  6804. height:25px;
  6805. display:flex;
  6806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6807. font-weight:400;
  6808. font-style:normal;
  6809. font-size:10px;
  6810. color:#298FFF;
  6811. line-height:25px;
  6812. }
  6813. #u167561 .text {
  6814. position:absolute;
  6815. align-self:flex-start;
  6816. padding:0px 0px 0px 0px;
  6817. box-sizing:border-box;
  6818. width:100%;
  6819. }
  6820. #u167561_text {
  6821. border-width:0px;
  6822. white-space:nowrap;
  6823. text-transform:none;
  6824. }
  6825. #u167562_div {
  6826. border-width:0px;
  6827. position:absolute;
  6828. left:0px;
  6829. top:0px;
  6830. width:73px;
  6831. height:25px;
  6832. background:inherit;
  6833. background-color:rgba(255, 255, 255, 0);
  6834. border:none;
  6835. border-left:0px;
  6836. border-top:0px;
  6837. border-right:0px;
  6838. border-radius:0px;
  6839. border-bottom-right-radius:0px;
  6840. border-bottom-left-radius:0px;
  6841. -moz-box-shadow:none;
  6842. -webkit-box-shadow:none;
  6843. box-shadow:none;
  6844. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6845. font-weight:500;
  6846. font-style:normal;
  6847. font-size:18px;
  6848. line-height:25px;
  6849. }
  6850. #u167562 {
  6851. border-width:0px;
  6852. position:absolute;
  6853. left:504px;
  6854. top:618px;
  6855. width:73px;
  6856. height:25px;
  6857. display:flex;
  6858. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6859. font-weight:500;
  6860. font-style:normal;
  6861. font-size:18px;
  6862. line-height:25px;
  6863. }
  6864. #u167562 .text {
  6865. position:absolute;
  6866. align-self:flex-start;
  6867. padding:0px 0px 0px 0px;
  6868. box-sizing:border-box;
  6869. width:100%;
  6870. }
  6871. #u167562_text {
  6872. border-width:0px;
  6873. white-space:nowrap;
  6874. text-transform:none;
  6875. }
  6876. #u167563 {
  6877. border-width:0px;
  6878. position:absolute;
  6879. left:0px;
  6880. top:0px;
  6881. width:0px;
  6882. height:0px;
  6883. }
  6884. #u167565_img {
  6885. border-width:0px;
  6886. position:absolute;
  6887. left:0px;
  6888. top:0px;
  6889. width:433px;
  6890. height:865px;
  6891. }
  6892. #u167565 {
  6893. border-width:0px;
  6894. position:absolute;
  6895. left:1375px;
  6896. top:0px;
  6897. width:433px;
  6898. height:865px;
  6899. display:flex;
  6900. }
  6901. #u167565 .text {
  6902. position:absolute;
  6903. align-self:center;
  6904. padding:2px 2px 2px 2px;
  6905. box-sizing:border-box;
  6906. width:100%;
  6907. }
  6908. #u167565_text {
  6909. border-width:0px;
  6910. word-wrap:break-word;
  6911. text-transform:none;
  6912. visibility:hidden;
  6913. }
  6914. #u167566_div {
  6915. border-width:0px;
  6916. position:absolute;
  6917. left:0px;
  6918. top:0px;
  6919. width:375px;
  6920. height:40px;
  6921. background:inherit;
  6922. background-color:rgba(255, 255, 255, 1);
  6923. box-sizing:border-box;
  6924. border-width:1px;
  6925. border-style:solid;
  6926. border-color:rgba(215, 215, 215, 1);
  6927. border-left:0px;
  6928. border-top:0px;
  6929. border-right:0px;
  6930. border-radius:0px;
  6931. border-bottom-right-radius:0px;
  6932. border-bottom-left-radius:0px;
  6933. -moz-box-shadow:none;
  6934. -webkit-box-shadow:none;
  6935. box-shadow:none;
  6936. }
  6937. #u167566 {
  6938. border-width:0px;
  6939. position:absolute;
  6940. left:1404px;
  6941. top:67px;
  6942. width:375px;
  6943. height:40px;
  6944. display:flex;
  6945. }
  6946. #u167566 .text {
  6947. position:absolute;
  6948. align-self:center;
  6949. padding:2px 2px 2px 2px;
  6950. box-sizing:border-box;
  6951. width:100%;
  6952. }
  6953. #u167566_text {
  6954. border-width:0px;
  6955. word-wrap:break-word;
  6956. text-transform:none;
  6957. visibility:hidden;
  6958. }
  6959. #u167567 {
  6960. border-width:0px;
  6961. position:absolute;
  6962. left:0px;
  6963. top:0px;
  6964. width:0px;
  6965. height:0px;
  6966. }
  6967. #u167568_div {
  6968. border-width:0px;
  6969. position:absolute;
  6970. left:0px;
  6971. top:0px;
  6972. width:88px;
  6973. height:32px;
  6974. background:inherit;
  6975. background-color:rgba(255, 255, 255, 1);
  6976. box-sizing:border-box;
  6977. border-width:1px;
  6978. border-style:solid;
  6979. border-color:rgba(242, 242, 242, 1);
  6980. border-radius:33px;
  6981. -moz-box-shadow:none;
  6982. -webkit-box-shadow:none;
  6983. box-shadow:none;
  6984. }
  6985. #u167568 {
  6986. border-width:0px;
  6987. position:absolute;
  6988. left:1684px;
  6989. top:71px;
  6990. width:88px;
  6991. height:32px;
  6992. display:flex;
  6993. }
  6994. #u167568 .text {
  6995. position:absolute;
  6996. align-self:center;
  6997. padding:2px 2px 2px 2px;
  6998. box-sizing:border-box;
  6999. width:100%;
  7000. }
  7001. #u167568_text {
  7002. border-width:0px;
  7003. word-wrap:break-word;
  7004. text-transform:none;
  7005. visibility:hidden;
  7006. }
  7007. #u167569 {
  7008. border-width:0px;
  7009. position:absolute;
  7010. left:0px;
  7011. top:0px;
  7012. width:0px;
  7013. height:0px;
  7014. }
  7015. #u167570_img {
  7016. border-width:0px;
  7017. position:absolute;
  7018. left:0px;
  7019. top:0px;
  7020. width:18px;
  7021. height:18px;
  7022. }
  7023. #u167570 {
  7024. border-width:0px;
  7025. position:absolute;
  7026. left:1747px;
  7027. top:78px;
  7028. width:18px;
  7029. height:18px;
  7030. display:flex;
  7031. }
  7032. #u167570 .text {
  7033. position:absolute;
  7034. align-self:center;
  7035. padding:2px 2px 2px 2px;
  7036. box-sizing:border-box;
  7037. width:100%;
  7038. }
  7039. #u167570_text {
  7040. border-width:0px;
  7041. word-wrap:break-word;
  7042. text-transform:none;
  7043. visibility:hidden;
  7044. }
  7045. #u167571_img {
  7046. border-width:0px;
  7047. position:absolute;
  7048. left:0px;
  7049. top:0px;
  7050. width:6px;
  7051. height:6px;
  7052. }
  7053. #u167571 {
  7054. border-width:0px;
  7055. position:absolute;
  7056. left:1753px;
  7057. top:84px;
  7058. width:6px;
  7059. height:6px;
  7060. display:flex;
  7061. }
  7062. #u167571 .text {
  7063. position:absolute;
  7064. align-self:center;
  7065. padding:2px 2px 2px 2px;
  7066. box-sizing:border-box;
  7067. width:100%;
  7068. }
  7069. #u167571_text {
  7070. border-width:0px;
  7071. word-wrap:break-word;
  7072. text-transform:none;
  7073. visibility:hidden;
  7074. }
  7075. #u167572 {
  7076. border-width:0px;
  7077. position:absolute;
  7078. left:0px;
  7079. top:0px;
  7080. width:0px;
  7081. height:0px;
  7082. }
  7083. #u167573_img {
  7084. border-width:0px;
  7085. position:absolute;
  7086. left:0px;
  7087. top:0px;
  7088. width:5px;
  7089. height:5px;
  7090. }
  7091. #u167573 {
  7092. border-width:0px;
  7093. position:absolute;
  7094. left:1698px;
  7095. top:85px;
  7096. width:5px;
  7097. height:5px;
  7098. display:flex;
  7099. }
  7100. #u167573 .text {
  7101. position:absolute;
  7102. align-self:center;
  7103. padding:2px 2px 2px 2px;
  7104. box-sizing:border-box;
  7105. width:100%;
  7106. }
  7107. #u167573_text {
  7108. border-width:0px;
  7109. word-wrap:break-word;
  7110. text-transform:none;
  7111. visibility:hidden;
  7112. }
  7113. #u167574_img {
  7114. border-width:0px;
  7115. position:absolute;
  7116. left:0px;
  7117. top:0px;
  7118. width:5px;
  7119. height:5px;
  7120. }
  7121. #u167574 {
  7122. border-width:0px;
  7123. position:absolute;
  7124. left:1714px;
  7125. top:85px;
  7126. width:5px;
  7127. height:5px;
  7128. display:flex;
  7129. }
  7130. #u167574 .text {
  7131. position:absolute;
  7132. align-self:center;
  7133. padding:2px 2px 2px 2px;
  7134. box-sizing:border-box;
  7135. width:100%;
  7136. }
  7137. #u167574_text {
  7138. border-width:0px;
  7139. word-wrap:break-word;
  7140. text-transform:none;
  7141. visibility:hidden;
  7142. }
  7143. #u167575_img {
  7144. border-width:0px;
  7145. position:absolute;
  7146. left:0px;
  7147. top:0px;
  7148. width:7px;
  7149. height:7px;
  7150. }
  7151. #u167575 {
  7152. border-width:0px;
  7153. position:absolute;
  7154. left:1705px;
  7155. top:84px;
  7156. width:7px;
  7157. height:7px;
  7158. display:flex;
  7159. }
  7160. #u167575 .text {
  7161. position:absolute;
  7162. align-self:center;
  7163. padding:2px 2px 2px 2px;
  7164. box-sizing:border-box;
  7165. width:100%;
  7166. }
  7167. #u167575_text {
  7168. border-width:0px;
  7169. word-wrap:break-word;
  7170. text-transform:none;
  7171. visibility:hidden;
  7172. }
  7173. #u167576_img {
  7174. border-width:0px;
  7175. position:absolute;
  7176. left:0px;
  7177. top:0px;
  7178. width:19px;
  7179. height:2px;
  7180. }
  7181. #u167576 {
  7182. border-width:0px;
  7183. position:absolute;
  7184. left:1722px;
  7185. top:87px;
  7186. width:18px;
  7187. height:1px;
  7188. display:flex;
  7189. -webkit-transform:rotate(90deg);
  7190. -moz-transform:rotate(90deg);
  7191. -ms-transform:rotate(90deg);
  7192. transform:rotate(90deg);
  7193. }
  7194. #u167576 .text {
  7195. position:absolute;
  7196. align-self:center;
  7197. padding:2px 2px 2px 2px;
  7198. box-sizing:border-box;
  7199. width:100%;
  7200. }
  7201. #u167576_text {
  7202. border-width:0px;
  7203. word-wrap:break-word;
  7204. text-transform:none;
  7205. visibility:hidden;
  7206. }
  7207. #u167577_img {
  7208. border-width:0px;
  7209. position:absolute;
  7210. left:0px;
  7211. top:0px;
  7212. width:375px;
  7213. height:44px;
  7214. }
  7215. #u167577 {
  7216. border-width:0px;
  7217. position:absolute;
  7218. left:1404px;
  7219. top:24px;
  7220. width:375px;
  7221. height:44px;
  7222. display:flex;
  7223. }
  7224. #u167577 .text {
  7225. position:absolute;
  7226. align-self:center;
  7227. padding:2px 2px 2px 2px;
  7228. box-sizing:border-box;
  7229. width:100%;
  7230. }
  7231. #u167577_text {
  7232. border-width:0px;
  7233. word-wrap:break-word;
  7234. text-transform:none;
  7235. visibility:hidden;
  7236. }
  7237. #u167578_div {
  7238. border-width:0px;
  7239. position:absolute;
  7240. left:0px;
  7241. top:0px;
  7242. width:375px;
  7243. height:50px;
  7244. background:inherit;
  7245. background-color:rgba(255, 255, 255, 1);
  7246. box-sizing:border-box;
  7247. border-width:1px;
  7248. border-style:solid;
  7249. border-color:rgba(242, 242, 242, 1);
  7250. border-radius:26px;
  7251. border-top-left-radius:0px;
  7252. border-top-right-radius:0px;
  7253. -moz-box-shadow:none;
  7254. -webkit-box-shadow:none;
  7255. box-shadow:none;
  7256. }
  7257. #u167578 {
  7258. border-width:0px;
  7259. position:absolute;
  7260. left:1404px;
  7261. top:788px;
  7262. width:375px;
  7263. height:50px;
  7264. display:flex;
  7265. }
  7266. #u167578 .text {
  7267. position:absolute;
  7268. align-self:center;
  7269. padding:2px 2px 2px 2px;
  7270. box-sizing:border-box;
  7271. width:100%;
  7272. }
  7273. #u167578_text {
  7274. border-width:0px;
  7275. word-wrap:break-word;
  7276. text-transform:none;
  7277. visibility:hidden;
  7278. }
  7279. #u167579 {
  7280. border-width:0px;
  7281. position:absolute;
  7282. left:0px;
  7283. top:0px;
  7284. width:0px;
  7285. height:0px;
  7286. }
  7287. #u167580_img {
  7288. border-width:0px;
  7289. position:absolute;
  7290. left:0px;
  7291. top:0px;
  7292. width:24px;
  7293. height:24px;
  7294. }
  7295. #u167580 {
  7296. border-width:0px;
  7297. position:absolute;
  7298. left:1444px;
  7299. top:792px;
  7300. width:24px;
  7301. height:24px;
  7302. display:flex;
  7303. font-size:8px;
  7304. }
  7305. #u167580 .text {
  7306. position:absolute;
  7307. align-self:center;
  7308. padding:2px 2px 2px 2px;
  7309. box-sizing:border-box;
  7310. width:100%;
  7311. }
  7312. #u167580_text {
  7313. border-width:0px;
  7314. word-wrap:break-word;
  7315. text-transform:none;
  7316. }
  7317. #u167581_div {
  7318. border-width:0px;
  7319. position:absolute;
  7320. left:0px;
  7321. top:0px;
  7322. width:25px;
  7323. height:17px;
  7324. background:inherit;
  7325. background-color:rgba(255, 255, 255, 0);
  7326. border:none;
  7327. border-radius:0px;
  7328. -moz-box-shadow:none;
  7329. -webkit-box-shadow:none;
  7330. box-shadow:none;
  7331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7332. font-weight:400;
  7333. font-style:normal;
  7334. font-size:12px;
  7335. }
  7336. #u167581 {
  7337. border-width:0px;
  7338. position:absolute;
  7339. left:1444px;
  7340. top:817px;
  7341. width:25px;
  7342. height:17px;
  7343. display:flex;
  7344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7345. font-weight:400;
  7346. font-style:normal;
  7347. font-size:12px;
  7348. }
  7349. #u167581 .text {
  7350. position:absolute;
  7351. align-self:flex-start;
  7352. padding:0px 0px 0px 0px;
  7353. box-sizing:border-box;
  7354. width:100%;
  7355. }
  7356. #u167581_text {
  7357. border-width:0px;
  7358. white-space:nowrap;
  7359. text-transform:none;
  7360. }
  7361. #u167582 {
  7362. border-width:0px;
  7363. position:absolute;
  7364. left:0px;
  7365. top:0px;
  7366. width:0px;
  7367. height:0px;
  7368. }
  7369. #u167583_img {
  7370. border-width:0px;
  7371. position:absolute;
  7372. left:0px;
  7373. top:0px;
  7374. width:24px;
  7375. height:24px;
  7376. }
  7377. #u167583 {
  7378. border-width:0px;
  7379. position:absolute;
  7380. left:1714px;
  7381. top:794px;
  7382. width:24px;
  7383. height:24px;
  7384. display:flex;
  7385. font-size:8px;
  7386. }
  7387. #u167583 .text {
  7388. position:absolute;
  7389. align-self:center;
  7390. padding:2px 2px 2px 2px;
  7391. box-sizing:border-box;
  7392. width:100%;
  7393. }
  7394. #u167583_text {
  7395. border-width:0px;
  7396. word-wrap:break-word;
  7397. text-transform:none;
  7398. }
  7399. #u167584_div {
  7400. border-width:0px;
  7401. position:absolute;
  7402. left:0px;
  7403. top:0px;
  7404. width:25px;
  7405. height:17px;
  7406. background:inherit;
  7407. background-color:rgba(255, 255, 255, 0);
  7408. border:none;
  7409. border-radius:0px;
  7410. -moz-box-shadow:none;
  7411. -webkit-box-shadow:none;
  7412. box-shadow:none;
  7413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7414. font-weight:400;
  7415. font-style:normal;
  7416. font-size:12px;
  7417. }
  7418. #u167584 {
  7419. border-width:0px;
  7420. position:absolute;
  7421. left:1714px;
  7422. top:819px;
  7423. width:25px;
  7424. height:17px;
  7425. display:flex;
  7426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7427. font-weight:400;
  7428. font-style:normal;
  7429. font-size:12px;
  7430. }
  7431. #u167584 .text {
  7432. position:absolute;
  7433. align-self:flex-start;
  7434. padding:0px 0px 0px 0px;
  7435. box-sizing:border-box;
  7436. width:100%;
  7437. }
  7438. #u167584_text {
  7439. border-width:0px;
  7440. white-space:nowrap;
  7441. text-transform:none;
  7442. }
  7443. #u167585_div {
  7444. border-width:0px;
  7445. position:absolute;
  7446. left:0px;
  7447. top:0px;
  7448. width:375px;
  7449. height:681px;
  7450. background:inherit;
  7451. background-color:rgba(242, 242, 242, 0.462745098039216);
  7452. border:none;
  7453. border-radius:0px;
  7454. -moz-box-shadow:none;
  7455. -webkit-box-shadow:none;
  7456. box-shadow:none;
  7457. }
  7458. #u167585 {
  7459. border-width:0px;
  7460. position:absolute;
  7461. left:1404px;
  7462. top:107px;
  7463. width:375px;
  7464. height:681px;
  7465. display:flex;
  7466. }
  7467. #u167585 .text {
  7468. position:absolute;
  7469. align-self:center;
  7470. padding:2px 2px 2px 2px;
  7471. box-sizing:border-box;
  7472. width:100%;
  7473. }
  7474. #u167585_text {
  7475. border-width:0px;
  7476. word-wrap:break-word;
  7477. text-transform:none;
  7478. visibility:hidden;
  7479. }
  7480. #u167586 {
  7481. border-width:0px;
  7482. position:absolute;
  7483. left:0px;
  7484. top:0px;
  7485. width:0px;
  7486. height:0px;
  7487. }
  7488. #u167587_img {
  7489. border-width:0px;
  7490. position:absolute;
  7491. left:0px;
  7492. top:0px;
  7493. width:24px;
  7494. height:24px;
  7495. }
  7496. #u167587 {
  7497. border-width:0px;
  7498. position:absolute;
  7499. left:1626px;
  7500. top:792px;
  7501. width:24px;
  7502. height:24px;
  7503. display:flex;
  7504. font-size:8px;
  7505. }
  7506. #u167587 .text {
  7507. position:absolute;
  7508. align-self:center;
  7509. padding:2px 2px 2px 2px;
  7510. box-sizing:border-box;
  7511. width:100%;
  7512. }
  7513. #u167587_text {
  7514. border-width:0px;
  7515. word-wrap:break-word;
  7516. text-transform:none;
  7517. }
  7518. #u167588_div {
  7519. border-width:0px;
  7520. position:absolute;
  7521. left:0px;
  7522. top:0px;
  7523. width:37px;
  7524. height:17px;
  7525. background:inherit;
  7526. background-color:rgba(255, 255, 255, 0);
  7527. border:none;
  7528. border-radius:0px;
  7529. -moz-box-shadow:none;
  7530. -webkit-box-shadow:none;
  7531. box-shadow:none;
  7532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7533. font-weight:400;
  7534. font-style:normal;
  7535. font-size:12px;
  7536. }
  7537. #u167588 {
  7538. border-width:0px;
  7539. position:absolute;
  7540. left:1620px;
  7541. top:817px;
  7542. width:37px;
  7543. height:17px;
  7544. display:flex;
  7545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7546. font-weight:400;
  7547. font-style:normal;
  7548. font-size:12px;
  7549. }
  7550. #u167588 .text {
  7551. position:absolute;
  7552. align-self:flex-start;
  7553. padding:0px 0px 0px 0px;
  7554. box-sizing:border-box;
  7555. width:100%;
  7556. }
  7557. #u167588_text {
  7558. border-width:0px;
  7559. white-space:nowrap;
  7560. text-transform:none;
  7561. }
  7562. #u167589 {
  7563. border-width:0px;
  7564. position:absolute;
  7565. left:0px;
  7566. top:0px;
  7567. width:0px;
  7568. height:0px;
  7569. }
  7570. #u167590_img {
  7571. border-width:0px;
  7572. position:absolute;
  7573. left:0px;
  7574. top:0px;
  7575. width:24px;
  7576. height:24px;
  7577. }
  7578. #u167590 {
  7579. border-width:0px;
  7580. position:absolute;
  7581. left:1532px;
  7582. top:792px;
  7583. width:24px;
  7584. height:24px;
  7585. display:flex;
  7586. font-size:8px;
  7587. }
  7588. #u167590 .text {
  7589. position:absolute;
  7590. align-self:center;
  7591. padding:2px 2px 2px 2px;
  7592. box-sizing:border-box;
  7593. width:100%;
  7594. }
  7595. #u167590_text {
  7596. border-width:0px;
  7597. word-wrap:break-word;
  7598. text-transform:none;
  7599. }
  7600. #u167591_div {
  7601. border-width:0px;
  7602. position:absolute;
  7603. left:0px;
  7604. top:0px;
  7605. width:37px;
  7606. height:17px;
  7607. background:inherit;
  7608. background-color:rgba(255, 255, 255, 0);
  7609. border:none;
  7610. border-radius:0px;
  7611. -moz-box-shadow:none;
  7612. -webkit-box-shadow:none;
  7613. box-shadow:none;
  7614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7615. font-weight:400;
  7616. font-style:normal;
  7617. font-size:12px;
  7618. }
  7619. #u167591 {
  7620. border-width:0px;
  7621. position:absolute;
  7622. left:1526px;
  7623. top:817px;
  7624. width:37px;
  7625. height:17px;
  7626. display:flex;
  7627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7628. font-weight:400;
  7629. font-style:normal;
  7630. font-size:12px;
  7631. }
  7632. #u167591 .text {
  7633. position:absolute;
  7634. align-self:flex-start;
  7635. padding:0px 0px 0px 0px;
  7636. box-sizing:border-box;
  7637. width:100%;
  7638. }
  7639. #u167591_text {
  7640. border-width:0px;
  7641. white-space:nowrap;
  7642. text-transform:none;
  7643. }
  7644. #u167592_div {
  7645. border-width:0px;
  7646. position:absolute;
  7647. left:0px;
  7648. top:0px;
  7649. width:375px;
  7650. height:824px;
  7651. background:inherit;
  7652. background-color:rgba(242, 242, 242, 1);
  7653. border:none;
  7654. border-top:0px;
  7655. border-radius:25px;
  7656. border-top-left-radius:0px;
  7657. border-top-right-radius:0px;
  7658. -moz-box-shadow:none;
  7659. -webkit-box-shadow:none;
  7660. box-shadow:none;
  7661. }
  7662. #u167592 {
  7663. border-width:0px;
  7664. position:absolute;
  7665. left:1404px;
  7666. top:106px;
  7667. width:375px;
  7668. height:824px;
  7669. display:flex;
  7670. }
  7671. #u167592 .text {
  7672. position:absolute;
  7673. align-self:center;
  7674. padding:2px 2px 2px 2px;
  7675. box-sizing:border-box;
  7676. width:100%;
  7677. }
  7678. #u167592_text {
  7679. border-width:0px;
  7680. word-wrap:break-word;
  7681. text-transform:none;
  7682. visibility:hidden;
  7683. }
  7684. #u167593_div {
  7685. border-width:0px;
  7686. position:absolute;
  7687. left:0px;
  7688. top:0px;
  7689. width:375px;
  7690. height:640px;
  7691. background:inherit;
  7692. background-color:rgba(255, 255, 255, 1);
  7693. border:none;
  7694. border-top:0px;
  7695. border-radius:0px;
  7696. border-top-left-radius:0px;
  7697. border-top-right-radius:0px;
  7698. -moz-box-shadow:none;
  7699. -webkit-box-shadow:none;
  7700. box-shadow:none;
  7701. }
  7702. #u167593 {
  7703. border-width:0px;
  7704. position:absolute;
  7705. left:1404px;
  7706. top:106px;
  7707. width:375px;
  7708. height:640px;
  7709. display:flex;
  7710. }
  7711. #u167593 .text {
  7712. position:absolute;
  7713. align-self:center;
  7714. padding:2px 2px 2px 2px;
  7715. box-sizing:border-box;
  7716. width:100%;
  7717. }
  7718. #u167593_text {
  7719. border-width:0px;
  7720. word-wrap:break-word;
  7721. text-transform:none;
  7722. visibility:hidden;
  7723. }
  7724. #u167594 {
  7725. border-width:0px;
  7726. position:absolute;
  7727. left:0px;
  7728. top:0px;
  7729. width:0px;
  7730. height:0px;
  7731. }
  7732. #u167595_img {
  7733. border-width:0px;
  7734. position:absolute;
  7735. left:0px;
  7736. top:0px;
  7737. width:11px;
  7738. height:18px;
  7739. }
  7740. #u167595 {
  7741. border-width:0px;
  7742. position:absolute;
  7743. left:1415px;
  7744. top:80px;
  7745. width:11px;
  7746. height:18px;
  7747. display:flex;
  7748. }
  7749. #u167595 .text {
  7750. position:absolute;
  7751. align-self:center;
  7752. padding:2px 2px 2px 2px;
  7753. box-sizing:border-box;
  7754. width:100%;
  7755. }
  7756. #u167595_text {
  7757. border-width:0px;
  7758. word-wrap:break-word;
  7759. text-transform:none;
  7760. visibility:hidden;
  7761. }
  7762. #u167596_div {
  7763. border-width:0px;
  7764. position:absolute;
  7765. left:0px;
  7766. top:0px;
  7767. width:57px;
  7768. height:30px;
  7769. background:inherit;
  7770. background-color:rgba(255, 255, 255, 0);
  7771. border:none;
  7772. border-left:0px;
  7773. border-top:0px;
  7774. border-right:0px;
  7775. border-radius:0px;
  7776. border-bottom-right-radius:0px;
  7777. border-bottom-left-radius:0px;
  7778. -moz-box-shadow:none;
  7779. -webkit-box-shadow:none;
  7780. box-shadow:none;
  7781. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7782. font-weight:500;
  7783. font-style:normal;
  7784. font-size:14px;
  7785. line-height:30px;
  7786. }
  7787. #u167596 {
  7788. border-width:0px;
  7789. position:absolute;
  7790. left:1438px;
  7791. top:76px;
  7792. width:57px;
  7793. height:30px;
  7794. display:flex;
  7795. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7796. font-weight:500;
  7797. font-style:normal;
  7798. font-size:14px;
  7799. line-height:30px;
  7800. }
  7801. #u167596 .text {
  7802. position:absolute;
  7803. align-self:flex-start;
  7804. padding:0px 0px 0px 0px;
  7805. box-sizing:border-box;
  7806. width:100%;
  7807. }
  7808. #u167596_text {
  7809. border-width:0px;
  7810. white-space:nowrap;
  7811. text-transform:none;
  7812. }
  7813. #u167597_img {
  7814. border-width:0px;
  7815. position:absolute;
  7816. left:0px;
  7817. top:0px;
  7818. width:375px;
  7819. height:198px;
  7820. }
  7821. #u167597 {
  7822. border-width:0px;
  7823. position:absolute;
  7824. left:1404px;
  7825. top:106px;
  7826. width:375px;
  7827. height:198px;
  7828. display:flex;
  7829. }
  7830. #u167597 .text {
  7831. position:absolute;
  7832. align-self:center;
  7833. padding:2px 2px 2px 2px;
  7834. box-sizing:border-box;
  7835. width:100%;
  7836. }
  7837. #u167597_text {
  7838. border-width:0px;
  7839. word-wrap:break-word;
  7840. text-transform:none;
  7841. visibility:hidden;
  7842. }
  7843. #u167598 {
  7844. border-width:0px;
  7845. position:absolute;
  7846. left:0px;
  7847. top:0px;
  7848. width:0px;
  7849. height:0px;
  7850. }
  7851. #u167599_div {
  7852. border-width:0px;
  7853. position:absolute;
  7854. left:0px;
  7855. top:0px;
  7856. width:55px;
  7857. height:30px;
  7858. background:inherit;
  7859. background-color:rgba(255, 255, 255, 0);
  7860. border:none;
  7861. border-left:0px;
  7862. border-top:0px;
  7863. border-right:0px;
  7864. border-radius:0px;
  7865. border-bottom-right-radius:0px;
  7866. border-bottom-left-radius:0px;
  7867. -moz-box-shadow:none;
  7868. -webkit-box-shadow:none;
  7869. box-shadow:none;
  7870. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7871. font-weight:500;
  7872. font-style:normal;
  7873. font-size:18px;
  7874. color:#FFFFFF;
  7875. line-height:30px;
  7876. }
  7877. #u167599 {
  7878. border-width:0px;
  7879. position:absolute;
  7880. left:1453px;
  7881. top:115px;
  7882. width:55px;
  7883. height:30px;
  7884. display:flex;
  7885. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7886. font-weight:500;
  7887. font-style:normal;
  7888. font-size:18px;
  7889. color:#FFFFFF;
  7890. line-height:30px;
  7891. }
  7892. #u167599 .text {
  7893. position:absolute;
  7894. align-self:flex-start;
  7895. padding:0px 0px 0px 0px;
  7896. box-sizing:border-box;
  7897. width:100%;
  7898. }
  7899. #u167599_text {
  7900. border-width:0px;
  7901. white-space:nowrap;
  7902. text-transform:none;
  7903. }
  7904. #u167600_img {
  7905. border-width:0px;
  7906. position:absolute;
  7907. left:0px;
  7908. top:0px;
  7909. width:19px;
  7910. height:15px;
  7911. }
  7912. #u167600 {
  7913. border-width:0px;
  7914. position:absolute;
  7915. left:1426px;
  7916. top:123px;
  7917. width:19px;
  7918. height:15px;
  7919. display:flex;
  7920. }
  7921. #u167600 .text {
  7922. position:absolute;
  7923. align-self:center;
  7924. padding:2px 2px 2px 2px;
  7925. box-sizing:border-box;
  7926. width:100%;
  7927. }
  7928. #u167600_text {
  7929. border-width:0px;
  7930. word-wrap:break-word;
  7931. text-transform:none;
  7932. visibility:hidden;
  7933. }
  7934. #u167601_div {
  7935. border-width:0px;
  7936. position:absolute;
  7937. left:0px;
  7938. top:0px;
  7939. width:245px;
  7940. height:50px;
  7941. background:inherit;
  7942. background-color:rgba(255, 255, 255, 0);
  7943. border:none;
  7944. border-left:0px;
  7945. border-top:0px;
  7946. border-right:0px;
  7947. border-radius:0px;
  7948. border-bottom-right-radius:0px;
  7949. border-bottom-left-radius:0px;
  7950. -moz-box-shadow:none;
  7951. -webkit-box-shadow:none;
  7952. box-shadow:none;
  7953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7954. font-weight:400;
  7955. font-style:normal;
  7956. font-size:12px;
  7957. color:rgba(255, 255, 255, 0.619607843137255);
  7958. line-height:25px;
  7959. }
  7960. #u167601 {
  7961. border-width:0px;
  7962. position:absolute;
  7963. left:1421px;
  7964. top:166px;
  7965. width:245px;
  7966. height:50px;
  7967. display:flex;
  7968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7969. font-weight:400;
  7970. font-style:normal;
  7971. font-size:12px;
  7972. color:rgba(255, 255, 255, 0.619607843137255);
  7973. line-height:25px;
  7974. }
  7975. #u167601 .text {
  7976. position:absolute;
  7977. align-self:flex-start;
  7978. padding:0px 0px 0px 0px;
  7979. box-sizing:border-box;
  7980. width:100%;
  7981. }
  7982. #u167601_text {
  7983. border-width:0px;
  7984. white-space:nowrap;
  7985. text-transform:none;
  7986. }
  7987. #u167602_img {
  7988. border-width:0px;
  7989. position:absolute;
  7990. left:0px;
  7991. top:0px;
  7992. width:338px;
  7993. height:2px;
  7994. }
  7995. #u167602 {
  7996. border-width:0px;
  7997. position:absolute;
  7998. left:1421px;
  7999. top:155px;
  8000. width:337px;
  8001. height:1px;
  8002. display:flex;
  8003. color:rgba(255, 255, 255, 0.364705882352941);
  8004. }
  8005. #u167602 .text {
  8006. position:absolute;
  8007. align-self:center;
  8008. padding:2px 2px 2px 2px;
  8009. box-sizing:border-box;
  8010. width:100%;
  8011. }
  8012. #u167602_text {
  8013. border-width:0px;
  8014. word-wrap:break-word;
  8015. text-transform:none;
  8016. visibility:hidden;
  8017. }
  8018. #u167603_img {
  8019. border-width:0px;
  8020. position:absolute;
  8021. left:-5px;
  8022. top:-5px;
  8023. width:360px;
  8024. height:102px;
  8025. }
  8026. #u167603 {
  8027. border-width:0px;
  8028. position:absolute;
  8029. left:1415px;
  8030. top:225px;
  8031. width:350px;
  8032. height:92px;
  8033. display:flex;
  8034. }
  8035. #u167603 .text {
  8036. position:absolute;
  8037. align-self:center;
  8038. padding:2px 2px 2px 2px;
  8039. box-sizing:border-box;
  8040. width:100%;
  8041. }
  8042. #u167603_text {
  8043. border-width:0px;
  8044. word-wrap:break-word;
  8045. text-transform:none;
  8046. visibility:hidden;
  8047. }
  8048. #u167604_div {
  8049. border-width:0px;
  8050. position:absolute;
  8051. left:0px;
  8052. top:0px;
  8053. width:199px;
  8054. height:25px;
  8055. background:inherit;
  8056. background-color:rgba(255, 255, 255, 0);
  8057. border:none;
  8058. border-left:0px;
  8059. border-top:0px;
  8060. border-right:0px;
  8061. border-radius:0px;
  8062. border-bottom-right-radius:0px;
  8063. border-bottom-left-radius:0px;
  8064. -moz-box-shadow:none;
  8065. -webkit-box-shadow:none;
  8066. box-shadow:none;
  8067. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8068. font-weight:500;
  8069. font-style:normal;
  8070. font-size:18px;
  8071. line-height:25px;
  8072. }
  8073. #u167604 {
  8074. border-width:0px;
  8075. position:absolute;
  8076. left:1433px;
  8077. top:240px;
  8078. width:199px;
  8079. height:25px;
  8080. display:flex;
  8081. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8082. font-weight:500;
  8083. font-style:normal;
  8084. font-size:18px;
  8085. line-height:25px;
  8086. }
  8087. #u167604 .text {
  8088. position:absolute;
  8089. align-self:flex-start;
  8090. padding:0px 0px 0px 0px;
  8091. box-sizing:border-box;
  8092. width:100%;
  8093. }
  8094. #u167604_text {
  8095. border-width:0px;
  8096. white-space:nowrap;
  8097. text-transform:none;
  8098. }
  8099. #u167605_div {
  8100. border-width:0px;
  8101. position:absolute;
  8102. left:0px;
  8103. top:0px;
  8104. width:98px;
  8105. height:25px;
  8106. background:inherit;
  8107. background-color:rgba(255, 255, 255, 0);
  8108. border:none;
  8109. border-left:0px;
  8110. border-top:0px;
  8111. border-right:0px;
  8112. border-radius:0px;
  8113. border-bottom-right-radius:0px;
  8114. border-bottom-left-radius:0px;
  8115. -moz-box-shadow:none;
  8116. -webkit-box-shadow:none;
  8117. box-shadow:none;
  8118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8119. font-weight:400;
  8120. font-style:normal;
  8121. font-size:14px;
  8122. color:#AAAAAA;
  8123. line-height:25px;
  8124. }
  8125. #u167605 {
  8126. border-width:0px;
  8127. position:absolute;
  8128. left:1433px;
  8129. top:275px;
  8130. width:98px;
  8131. height:25px;
  8132. display:flex;
  8133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8134. font-weight:400;
  8135. font-style:normal;
  8136. font-size:14px;
  8137. color:#AAAAAA;
  8138. line-height:25px;
  8139. }
  8140. #u167605 .text {
  8141. position:absolute;
  8142. align-self:flex-start;
  8143. padding:0px 0px 0px 0px;
  8144. box-sizing:border-box;
  8145. width:100%;
  8146. }
  8147. #u167605_text {
  8148. border-width:0px;
  8149. white-space:nowrap;
  8150. text-transform:none;
  8151. }
  8152. #u167606_div {
  8153. border-width:0px;
  8154. position:absolute;
  8155. left:0px;
  8156. top:0px;
  8157. width:73px;
  8158. height:25px;
  8159. background:inherit;
  8160. background-color:rgba(255, 255, 255, 0);
  8161. border:none;
  8162. border-left:0px;
  8163. border-top:0px;
  8164. border-right:0px;
  8165. border-radius:0px;
  8166. border-bottom-right-radius:0px;
  8167. border-bottom-left-radius:0px;
  8168. -moz-box-shadow:none;
  8169. -webkit-box-shadow:none;
  8170. box-shadow:none;
  8171. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8172. font-weight:500;
  8173. font-style:normal;
  8174. font-size:18px;
  8175. line-height:25px;
  8176. }
  8177. #u167606 {
  8178. border-width:0px;
  8179. position:absolute;
  8180. left:1415px;
  8181. top:337px;
  8182. width:73px;
  8183. height:25px;
  8184. display:flex;
  8185. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8186. font-weight:500;
  8187. font-style:normal;
  8188. font-size:18px;
  8189. line-height:25px;
  8190. }
  8191. #u167606 .text {
  8192. position:absolute;
  8193. align-self:flex-start;
  8194. padding:0px 0px 0px 0px;
  8195. box-sizing:border-box;
  8196. width:100%;
  8197. }
  8198. #u167606_text {
  8199. border-width:0px;
  8200. white-space:nowrap;
  8201. text-transform:none;
  8202. }
  8203. #u167607_div {
  8204. border-width:0px;
  8205. position:absolute;
  8206. left:0px;
  8207. top:0px;
  8208. width:350px;
  8209. height:50px;
  8210. background:inherit;
  8211. background-color:rgba(255, 255, 255, 1);
  8212. box-sizing:border-box;
  8213. border-width:1px;
  8214. border-style:solid;
  8215. border-color:rgba(215, 215, 215, 1);
  8216. border-radius:10px;
  8217. -moz-box-shadow:none;
  8218. -webkit-box-shadow:none;
  8219. box-shadow:none;
  8220. }
  8221. #u167607 {
  8222. border-width:0px;
  8223. position:absolute;
  8224. left:1415px;
  8225. top:378px;
  8226. width:350px;
  8227. height:50px;
  8228. display:flex;
  8229. }
  8230. #u167607 .text {
  8231. position:absolute;
  8232. align-self:center;
  8233. padding:2px 2px 2px 2px;
  8234. box-sizing:border-box;
  8235. width:100%;
  8236. }
  8237. #u167607_text {
  8238. border-width:0px;
  8239. word-wrap:break-word;
  8240. text-transform:none;
  8241. visibility:hidden;
  8242. }
  8243. #u167608_div {
  8244. border-width:0px;
  8245. position:absolute;
  8246. left:0px;
  8247. top:0px;
  8248. width:167px;
  8249. height:25px;
  8250. background:inherit;
  8251. background-color:rgba(255, 255, 255, 0);
  8252. border:none;
  8253. border-left:0px;
  8254. border-top:0px;
  8255. border-right:0px;
  8256. border-radius:0px;
  8257. border-bottom-right-radius:0px;
  8258. border-bottom-left-radius:0px;
  8259. -moz-box-shadow:none;
  8260. -webkit-box-shadow:none;
  8261. box-shadow:none;
  8262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8263. font-style:normal;
  8264. line-height:25px;
  8265. }
  8266. #u167608 {
  8267. border-width:0px;
  8268. position:absolute;
  8269. left:1433px;
  8270. top:393px;
  8271. width:167px;
  8272. height:25px;
  8273. display:flex;
  8274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8275. font-style:normal;
  8276. line-height:25px;
  8277. }
  8278. #u167608 .text {
  8279. position:absolute;
  8280. align-self:flex-start;
  8281. padding:0px 0px 0px 0px;
  8282. box-sizing:border-box;
  8283. width:100%;
  8284. }
  8285. #u167608_text {
  8286. border-width:0px;
  8287. white-space:nowrap;
  8288. text-transform:none;
  8289. }
  8290. #u167609_div {
  8291. border-width:0px;
  8292. position:absolute;
  8293. left:0px;
  8294. top:0px;
  8295. width:350px;
  8296. height:160px;
  8297. background:inherit;
  8298. background-color:rgba(255, 255, 255, 1);
  8299. box-sizing:border-box;
  8300. border-width:1px;
  8301. border-style:solid;
  8302. border-color:rgba(215, 215, 215, 1);
  8303. border-radius:10px;
  8304. -moz-box-shadow:none;
  8305. -webkit-box-shadow:none;
  8306. box-shadow:none;
  8307. }
  8308. #u167609 {
  8309. border-width:0px;
  8310. position:absolute;
  8311. left:1415px;
  8312. top:438px;
  8313. width:350px;
  8314. height:160px;
  8315. display:flex;
  8316. }
  8317. #u167609 .text {
  8318. position:absolute;
  8319. align-self:center;
  8320. padding:2px 2px 2px 2px;
  8321. box-sizing:border-box;
  8322. width:100%;
  8323. }
  8324. #u167609_text {
  8325. border-width:0px;
  8326. word-wrap:break-word;
  8327. text-transform:none;
  8328. visibility:hidden;
  8329. }
  8330. #u167610_div {
  8331. border-width:0px;
  8332. position:absolute;
  8333. left:0px;
  8334. top:0px;
  8335. width:250px;
  8336. height:120px;
  8337. background:inherit;
  8338. background-color:rgba(255, 255, 255, 0);
  8339. border:none;
  8340. border-left:0px;
  8341. border-top:0px;
  8342. border-right:0px;
  8343. border-radius:0px;
  8344. border-bottom-right-radius:0px;
  8345. border-bottom-left-radius:0px;
  8346. -moz-box-shadow:none;
  8347. -webkit-box-shadow:none;
  8348. box-shadow:none;
  8349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8350. font-weight:400;
  8351. font-style:normal;
  8352. font-size:14px;
  8353. line-height:30px;
  8354. }
  8355. #u167610 {
  8356. border-width:0px;
  8357. position:absolute;
  8358. left:1433px;
  8359. top:453px;
  8360. width:250px;
  8361. height:120px;
  8362. display:flex;
  8363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8364. font-weight:400;
  8365. font-style:normal;
  8366. font-size:14px;
  8367. line-height:30px;
  8368. }
  8369. #u167610 .text {
  8370. position:absolute;
  8371. align-self:flex-start;
  8372. padding:0px 0px 0px 0px;
  8373. box-sizing:border-box;
  8374. width:100%;
  8375. }
  8376. #u167610_text {
  8377. border-width:0px;
  8378. white-space:nowrap;
  8379. text-transform:none;
  8380. }
  8381. #u167611_div {
  8382. border-width:0px;
  8383. position:absolute;
  8384. left:0px;
  8385. top:0px;
  8386. width:57px;
  8387. height:30px;
  8388. background:inherit;
  8389. background-color:rgba(255, 255, 255, 0);
  8390. border:none;
  8391. border-left:0px;
  8392. border-top:0px;
  8393. border-right:0px;
  8394. border-radius:0px;
  8395. border-bottom-right-radius:0px;
  8396. border-bottom-left-radius:0px;
  8397. -moz-box-shadow:none;
  8398. -webkit-box-shadow:none;
  8399. box-shadow:none;
  8400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8401. font-weight:400;
  8402. font-style:normal;
  8403. font-size:14px;
  8404. line-height:30px;
  8405. }
  8406. #u167611 {
  8407. border-width:0px;
  8408. position:absolute;
  8409. left:1436px;
  8410. top:657px;
  8411. width:57px;
  8412. height:30px;
  8413. display:flex;
  8414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8415. font-weight:400;
  8416. font-style:normal;
  8417. font-size:14px;
  8418. line-height:30px;
  8419. }
  8420. #u167611 .text {
  8421. position:absolute;
  8422. align-self:flex-start;
  8423. padding:0px 0px 0px 0px;
  8424. box-sizing:border-box;
  8425. width:100%;
  8426. }
  8427. #u167611_text {
  8428. border-width:0px;
  8429. white-space:nowrap;
  8430. text-transform:none;
  8431. }
  8432. #u167612_div {
  8433. border-width:0px;
  8434. position:absolute;
  8435. left:0px;
  8436. top:0px;
  8437. width:60px;
  8438. height:30px;
  8439. background:inherit;
  8440. background-color:rgba(255, 255, 255, 0);
  8441. border:none;
  8442. border-left:0px;
  8443. border-top:0px;
  8444. border-right:0px;
  8445. border-radius:0px;
  8446. border-bottom-right-radius:0px;
  8447. border-bottom-left-radius:0px;
  8448. -moz-box-shadow:none;
  8449. -webkit-box-shadow:none;
  8450. box-shadow:none;
  8451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8452. font-weight:400;
  8453. font-style:normal;
  8454. font-size:14px;
  8455. text-align:right;
  8456. line-height:30px;
  8457. }
  8458. #u167612 {
  8459. border-width:0px;
  8460. position:absolute;
  8461. left:1681px;
  8462. top:657px;
  8463. width:60px;
  8464. height:30px;
  8465. display:flex;
  8466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8467. font-weight:400;
  8468. font-style:normal;
  8469. font-size:14px;
  8470. text-align:right;
  8471. line-height:30px;
  8472. }
  8473. #u167612 .text {
  8474. position:absolute;
  8475. align-self:flex-start;
  8476. padding:0px 0px 0px 0px;
  8477. box-sizing:border-box;
  8478. width:100%;
  8479. }
  8480. #u167612_text {
  8481. border-width:0px;
  8482. white-space:nowrap;
  8483. text-transform:none;
  8484. }
  8485. #u167613_div {
  8486. border-width:0px;
  8487. position:absolute;
  8488. left:0px;
  8489. top:0px;
  8490. width:375px;
  8491. height:40px;
  8492. background:inherit;
  8493. background-color:rgba(24, 144, 255, 0.0470588235294118);
  8494. border:none;
  8495. border-left:0px;
  8496. border-top:0px;
  8497. border-right:0px;
  8498. border-radius:0px;
  8499. border-bottom-right-radius:0px;
  8500. border-bottom-left-radius:0px;
  8501. -moz-box-shadow:none;
  8502. -webkit-box-shadow:none;
  8503. box-shadow:none;
  8504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8505. font-weight:400;
  8506. font-style:normal;
  8507. text-align:right;
  8508. line-height:30px;
  8509. }
  8510. #u167613 {
  8511. border-width:0px;
  8512. position:absolute;
  8513. left:1404px;
  8514. top:706px;
  8515. width:375px;
  8516. height:40px;
  8517. display:flex;
  8518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8519. font-weight:400;
  8520. font-style:normal;
  8521. text-align:right;
  8522. line-height:30px;
  8523. }
  8524. #u167613 .text {
  8525. position:absolute;
  8526. align-self:center;
  8527. padding:0px 20px 0px 20px;
  8528. box-sizing:border-box;
  8529. width:100%;
  8530. }
  8531. #u167613_text {
  8532. border-width:0px;
  8533. word-wrap:break-word;
  8534. text-transform:none;
  8535. }
  8536. #u167614_div {
  8537. border-width:0px;
  8538. position:absolute;
  8539. left:0px;
  8540. top:0px;
  8541. width:73px;
  8542. height:25px;
  8543. background:inherit;
  8544. background-color:rgba(255, 255, 255, 0);
  8545. border:none;
  8546. border-left:0px;
  8547. border-top:0px;
  8548. border-right:0px;
  8549. border-radius:0px;
  8550. border-bottom-right-radius:0px;
  8551. border-bottom-left-radius:0px;
  8552. -moz-box-shadow:none;
  8553. -webkit-box-shadow:none;
  8554. box-shadow:none;
  8555. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8556. font-weight:500;
  8557. font-style:normal;
  8558. font-size:18px;
  8559. line-height:25px;
  8560. }
  8561. #u167614 {
  8562. border-width:0px;
  8563. position:absolute;
  8564. left:1420px;
  8565. top:618px;
  8566. width:73px;
  8567. height:25px;
  8568. display:flex;
  8569. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8570. font-weight:500;
  8571. font-style:normal;
  8572. font-size:18px;
  8573. line-height:25px;
  8574. }
  8575. #u167614 .text {
  8576. position:absolute;
  8577. align-self:flex-start;
  8578. padding:0px 0px 0px 0px;
  8579. box-sizing:border-box;
  8580. width:100%;
  8581. }
  8582. #u167614_text {
  8583. border-width:0px;
  8584. white-space:nowrap;
  8585. text-transform:none;
  8586. }
  8587. #u167615 {
  8588. border-width:0px;
  8589. position:absolute;
  8590. left:0px;
  8591. top:0px;
  8592. width:0px;
  8593. height:0px;
  8594. }
  8595. #u167616_div {
  8596. border-width:0px;
  8597. position:absolute;
  8598. left:0px;
  8599. top:0px;
  8600. width:375px;
  8601. height:110px;
  8602. background:inherit;
  8603. background-color:rgba(255, 255, 255, 1);
  8604. border:none;
  8605. border-top:0px;
  8606. border-radius:0px;
  8607. border-top-left-radius:0px;
  8608. border-top-right-radius:0px;
  8609. -moz-box-shadow:none;
  8610. -webkit-box-shadow:none;
  8611. box-shadow:none;
  8612. }
  8613. #u167616 {
  8614. border-width:0px;
  8615. position:absolute;
  8616. left:1404px;
  8617. top:756px;
  8618. width:375px;
  8619. height:110px;
  8620. display:flex;
  8621. }
  8622. #u167616 .text {
  8623. position:absolute;
  8624. align-self:center;
  8625. padding:2px 2px 2px 2px;
  8626. box-sizing:border-box;
  8627. width:100%;
  8628. }
  8629. #u167616_text {
  8630. border-width:0px;
  8631. word-wrap:break-word;
  8632. text-transform:none;
  8633. visibility:hidden;
  8634. }
  8635. #u167617_div {
  8636. border-width:0px;
  8637. position:absolute;
  8638. left:0px;
  8639. top:0px;
  8640. width:124px;
  8641. height:90px;
  8642. background:inherit;
  8643. background-color:rgba(255, 255, 255, 0);
  8644. border:none;
  8645. border-left:0px;
  8646. border-top:0px;
  8647. border-right:0px;
  8648. border-radius:0px;
  8649. border-bottom-right-radius:0px;
  8650. border-bottom-left-radius:0px;
  8651. -moz-box-shadow:none;
  8652. -webkit-box-shadow:none;
  8653. box-shadow:none;
  8654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8655. font-weight:400;
  8656. font-style:normal;
  8657. font-size:12px;
  8658. text-align:right;
  8659. line-height:30px;
  8660. }
  8661. #u167617 {
  8662. border-width:0px;
  8663. position:absolute;
  8664. left:1631px;
  8665. top:766px;
  8666. width:124px;
  8667. height:90px;
  8668. display:flex;
  8669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8670. font-weight:400;
  8671. font-style:normal;
  8672. font-size:12px;
  8673. text-align:right;
  8674. line-height:30px;
  8675. }
  8676. #u167617 .text {
  8677. position:absolute;
  8678. align-self:flex-start;
  8679. padding:0px 0px 0px 0px;
  8680. box-sizing:border-box;
  8681. width:100%;
  8682. }
  8683. #u167617_text {
  8684. border-width:0px;
  8685. white-space:nowrap;
  8686. text-transform:none;
  8687. }
  8688. #u167618_div {
  8689. border-width:0px;
  8690. position:absolute;
  8691. left:0px;
  8692. top:0px;
  8693. width:49px;
  8694. height:90px;
  8695. background:inherit;
  8696. background-color:rgba(255, 255, 255, 0);
  8697. border:none;
  8698. border-left:0px;
  8699. border-top:0px;
  8700. border-right:0px;
  8701. border-radius:0px;
  8702. border-bottom-right-radius:0px;
  8703. border-bottom-left-radius:0px;
  8704. -moz-box-shadow:none;
  8705. -webkit-box-shadow:none;
  8706. box-shadow:none;
  8707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8708. font-weight:400;
  8709. font-style:normal;
  8710. font-size:12px;
  8711. color:#7F7F7F;
  8712. line-height:30px;
  8713. }
  8714. #u167618 {
  8715. border-width:0px;
  8716. position:absolute;
  8717. left:1421px;
  8718. top:766px;
  8719. width:49px;
  8720. height:90px;
  8721. display:flex;
  8722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8723. font-weight:400;
  8724. font-style:normal;
  8725. font-size:12px;
  8726. color:#7F7F7F;
  8727. line-height:30px;
  8728. }
  8729. #u167618 .text {
  8730. position:absolute;
  8731. align-self:flex-start;
  8732. padding:0px 0px 0px 0px;
  8733. box-sizing:border-box;
  8734. width:100%;
  8735. }
  8736. #u167618_text {
  8737. border-width:0px;
  8738. white-space:nowrap;
  8739. text-transform:none;
  8740. }
  8741. #u167619_div {
  8742. border-width:0px;
  8743. position:absolute;
  8744. left:0px;
  8745. top:0px;
  8746. width:334px;
  8747. height:40px;
  8748. background:inherit;
  8749. background-color:rgba(0, 137, 254, 0);
  8750. box-sizing:border-box;
  8751. border-width:1px;
  8752. border-style:solid;
  8753. border-color:rgba(215, 215, 215, 1);
  8754. border-radius:82px;
  8755. -moz-box-shadow:none;
  8756. -webkit-box-shadow:none;
  8757. box-shadow:none;
  8758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8759. font-weight:400;
  8760. font-style:normal;
  8761. font-size:14px;
  8762. color:#7F7F7F;
  8763. }
  8764. #u167619 {
  8765. border-width:0px;
  8766. position:absolute;
  8767. left:1424px;
  8768. top:876px;
  8769. width:334px;
  8770. height:40px;
  8771. display:flex;
  8772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8773. font-weight:400;
  8774. font-style:normal;
  8775. font-size:14px;
  8776. color:#7F7F7F;
  8777. }
  8778. #u167619 .text {
  8779. position:absolute;
  8780. align-self:center;
  8781. padding:2px 2px 2px 2px;
  8782. box-sizing:border-box;
  8783. width:100%;
  8784. }
  8785. #u167619_text {
  8786. border-width:0px;
  8787. word-wrap:break-word;
  8788. text-transform:none;
  8789. }