styles.css 218 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2266px;
  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. #u165435_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u165435 {
  28. border-width:0px;
  29. position:absolute;
  30. left:1380px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u165435 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u165435_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u165436_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. #u165436 {
  73. border-width:0px;
  74. position:absolute;
  75. left:1409px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u165436 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u165436_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u165437 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u165438_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. #u165438 {
  121. border-width:0px;
  122. position:absolute;
  123. left:1689px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u165438 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u165438_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u165439 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u165440_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u165440 {
  159. border-width:0px;
  160. position:absolute;
  161. left:1752px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u165440 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u165440_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u165441_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u165441 {
  189. border-width:0px;
  190. position:absolute;
  191. left:1758px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u165441 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u165441_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u165442 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u165443_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u165443 {
  227. border-width:0px;
  228. position:absolute;
  229. left:1703px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u165443 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u165443_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u165444_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u165444 {
  257. border-width:0px;
  258. position:absolute;
  259. left:1719px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u165444 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u165444_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u165445_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u165445 {
  287. border-width:0px;
  288. position:absolute;
  289. left:1710px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u165445 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u165445_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u165446_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u165446 {
  317. border-width:0px;
  318. position:absolute;
  319. left:1727px;
  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. #u165446 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u165446_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u165447_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u165447 {
  351. border-width:0px;
  352. position:absolute;
  353. left:1409px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u165447 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u165447_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u165448_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. #u165448 {
  393. border-width:0px;
  394. position:absolute;
  395. left:1409px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u165448 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u165448_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u165449 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u165450_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u165450 {
  431. border-width:0px;
  432. position:absolute;
  433. left:1449px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u165450 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u165450_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u165451_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. #u165451 {
  472. border-width:0px;
  473. position:absolute;
  474. left:1449px;
  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. #u165451 .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. #u165451_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u165452 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u165453_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u165453 {
  513. border-width:0px;
  514. position:absolute;
  515. left:1719px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u165453 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u165453_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u165454_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. #u165454 {
  554. border-width:0px;
  555. position:absolute;
  556. left:1719px;
  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. #u165454 .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. #u165454_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u165455_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. #u165455 {
  594. border-width:0px;
  595. position:absolute;
  596. left:1409px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u165455 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u165455_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u165456 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u165457_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u165457 {
  632. border-width:0px;
  633. position:absolute;
  634. left:1631px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u165457 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u165457_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u165458_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. #u165458 {
  673. border-width:0px;
  674. position:absolute;
  675. left:1625px;
  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. #u165458 .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. #u165458_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u165459 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u165460_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u165460 {
  714. border-width:0px;
  715. position:absolute;
  716. left:1537px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u165460 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u165460_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u165461_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. #u165461 {
  755. border-width:0px;
  756. position:absolute;
  757. left:1531px;
  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. #u165461 .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. #u165461_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u165462_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:1138px;
  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. #u165462 {
  798. border-width:0px;
  799. position:absolute;
  800. left:1409px;
  801. top:106px;
  802. width:375px;
  803. height:1138px;
  804. display:flex;
  805. }
  806. #u165462 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u165462_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u165463_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:375px;
  825. height:839px;
  826. background:inherit;
  827. background-color:rgba(255, 255, 255, 1);
  828. border:none;
  829. border-top:0px;
  830. border-radius:0px;
  831. border-top-left-radius:0px;
  832. border-top-right-radius:0px;
  833. -moz-box-shadow:none;
  834. -webkit-box-shadow:none;
  835. box-shadow:none;
  836. }
  837. #u165463 {
  838. border-width:0px;
  839. position:absolute;
  840. left:1409px;
  841. top:106px;
  842. width:375px;
  843. height:839px;
  844. display:flex;
  845. }
  846. #u165463 .text {
  847. position:absolute;
  848. align-self:center;
  849. padding:2px 2px 2px 2px;
  850. box-sizing:border-box;
  851. width:100%;
  852. }
  853. #u165463_text {
  854. border-width:0px;
  855. word-wrap:break-word;
  856. text-transform:none;
  857. visibility:hidden;
  858. }
  859. #u165464 {
  860. border-width:0px;
  861. position:absolute;
  862. left:0px;
  863. top:0px;
  864. width:0px;
  865. height:0px;
  866. }
  867. #u165465_img {
  868. border-width:0px;
  869. position:absolute;
  870. left:0px;
  871. top:0px;
  872. width:11px;
  873. height:18px;
  874. }
  875. #u165465 {
  876. border-width:0px;
  877. position:absolute;
  878. left:1420px;
  879. top:80px;
  880. width:11px;
  881. height:18px;
  882. display:flex;
  883. }
  884. #u165465 .text {
  885. position:absolute;
  886. align-self:center;
  887. padding:2px 2px 2px 2px;
  888. box-sizing:border-box;
  889. width:100%;
  890. }
  891. #u165465_text {
  892. border-width:0px;
  893. word-wrap:break-word;
  894. text-transform:none;
  895. visibility:hidden;
  896. }
  897. #u165466_div {
  898. border-width:0px;
  899. position:absolute;
  900. left:0px;
  901. top:0px;
  902. width:57px;
  903. height:30px;
  904. background:inherit;
  905. background-color:rgba(255, 255, 255, 0);
  906. border:none;
  907. border-left:0px;
  908. border-top:0px;
  909. border-right:0px;
  910. border-radius:0px;
  911. border-bottom-right-radius:0px;
  912. border-bottom-left-radius:0px;
  913. -moz-box-shadow:none;
  914. -webkit-box-shadow:none;
  915. box-shadow:none;
  916. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  917. font-weight:500;
  918. font-style:normal;
  919. font-size:14px;
  920. line-height:30px;
  921. }
  922. #u165466 {
  923. border-width:0px;
  924. position:absolute;
  925. left:1443px;
  926. top:76px;
  927. width:57px;
  928. height:30px;
  929. display:flex;
  930. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  931. font-weight:500;
  932. font-style:normal;
  933. font-size:14px;
  934. line-height:30px;
  935. }
  936. #u165466 .text {
  937. position:absolute;
  938. align-self:flex-start;
  939. padding:0px 0px 0px 0px;
  940. box-sizing:border-box;
  941. width:100%;
  942. }
  943. #u165466_text {
  944. border-width:0px;
  945. white-space:nowrap;
  946. text-transform:none;
  947. }
  948. #u165467_img {
  949. border-width:0px;
  950. position:absolute;
  951. left:0px;
  952. top:0px;
  953. width:375px;
  954. height:198px;
  955. }
  956. #u165467 {
  957. border-width:0px;
  958. position:absolute;
  959. left:1409px;
  960. top:106px;
  961. width:375px;
  962. height:198px;
  963. display:flex;
  964. }
  965. #u165467 .text {
  966. position:absolute;
  967. align-self:center;
  968. padding:2px 2px 2px 2px;
  969. box-sizing:border-box;
  970. width:100%;
  971. }
  972. #u165467_text {
  973. border-width:0px;
  974. word-wrap:break-word;
  975. text-transform:none;
  976. visibility:hidden;
  977. }
  978. #u165468 {
  979. border-width:0px;
  980. position:absolute;
  981. left:0px;
  982. top:0px;
  983. width:0px;
  984. height:0px;
  985. }
  986. #u165469_div {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:55px;
  992. height:30px;
  993. background:inherit;
  994. background-color:rgba(255, 255, 255, 0);
  995. border:none;
  996. border-left:0px;
  997. border-top:0px;
  998. border-right:0px;
  999. border-radius:0px;
  1000. border-bottom-right-radius:0px;
  1001. border-bottom-left-radius:0px;
  1002. -moz-box-shadow:none;
  1003. -webkit-box-shadow:none;
  1004. box-shadow:none;
  1005. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1006. font-weight:500;
  1007. font-style:normal;
  1008. font-size:18px;
  1009. color:#FFFFFF;
  1010. line-height:30px;
  1011. }
  1012. #u165469 {
  1013. border-width:0px;
  1014. position:absolute;
  1015. left:1458px;
  1016. top:115px;
  1017. width:55px;
  1018. height:30px;
  1019. display:flex;
  1020. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1021. font-weight:500;
  1022. font-style:normal;
  1023. font-size:18px;
  1024. color:#FFFFFF;
  1025. line-height:30px;
  1026. }
  1027. #u165469 .text {
  1028. position:absolute;
  1029. align-self:flex-start;
  1030. padding:0px 0px 0px 0px;
  1031. box-sizing:border-box;
  1032. width:100%;
  1033. }
  1034. #u165469_text {
  1035. border-width:0px;
  1036. white-space:nowrap;
  1037. text-transform:none;
  1038. }
  1039. #u165470_img {
  1040. border-width:0px;
  1041. position:absolute;
  1042. left:0px;
  1043. top:0px;
  1044. width:19px;
  1045. height:15px;
  1046. }
  1047. #u165470 {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:1431px;
  1051. top:123px;
  1052. width:19px;
  1053. height:15px;
  1054. display:flex;
  1055. }
  1056. #u165470 .text {
  1057. position:absolute;
  1058. align-self:center;
  1059. padding:2px 2px 2px 2px;
  1060. box-sizing:border-box;
  1061. width:100%;
  1062. }
  1063. #u165470_text {
  1064. border-width:0px;
  1065. word-wrap:break-word;
  1066. text-transform:none;
  1067. visibility:hidden;
  1068. }
  1069. #u165471_div {
  1070. border-width:0px;
  1071. position:absolute;
  1072. left:0px;
  1073. top:0px;
  1074. width:245px;
  1075. height:50px;
  1076. background:inherit;
  1077. background-color:rgba(255, 255, 255, 0);
  1078. border:none;
  1079. border-left:0px;
  1080. border-top:0px;
  1081. border-right:0px;
  1082. border-radius:0px;
  1083. border-bottom-right-radius:0px;
  1084. border-bottom-left-radius:0px;
  1085. -moz-box-shadow:none;
  1086. -webkit-box-shadow:none;
  1087. box-shadow:none;
  1088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1089. font-weight:400;
  1090. font-style:normal;
  1091. font-size:12px;
  1092. color:rgba(255, 255, 255, 0.619607843137255);
  1093. line-height:25px;
  1094. }
  1095. #u165471 {
  1096. border-width:0px;
  1097. position:absolute;
  1098. left:1426px;
  1099. top:166px;
  1100. width:245px;
  1101. height:50px;
  1102. display:flex;
  1103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1104. font-weight:400;
  1105. font-style:normal;
  1106. font-size:12px;
  1107. color:rgba(255, 255, 255, 0.619607843137255);
  1108. line-height:25px;
  1109. }
  1110. #u165471 .text {
  1111. position:absolute;
  1112. align-self:flex-start;
  1113. padding:0px 0px 0px 0px;
  1114. box-sizing:border-box;
  1115. width:100%;
  1116. }
  1117. #u165471_text {
  1118. border-width:0px;
  1119. white-space:nowrap;
  1120. text-transform:none;
  1121. }
  1122. #u165472_img {
  1123. border-width:0px;
  1124. position:absolute;
  1125. left:0px;
  1126. top:0px;
  1127. width:338px;
  1128. height:2px;
  1129. }
  1130. #u165472 {
  1131. border-width:0px;
  1132. position:absolute;
  1133. left:1426px;
  1134. top:155px;
  1135. width:337px;
  1136. height:1px;
  1137. display:flex;
  1138. color:rgba(255, 255, 255, 0.364705882352941);
  1139. }
  1140. #u165472 .text {
  1141. position:absolute;
  1142. align-self:center;
  1143. padding:2px 2px 2px 2px;
  1144. box-sizing:border-box;
  1145. width:100%;
  1146. }
  1147. #u165472_text {
  1148. border-width:0px;
  1149. word-wrap:break-word;
  1150. text-transform:none;
  1151. visibility:hidden;
  1152. }
  1153. #u165473_img {
  1154. border-width:0px;
  1155. position:absolute;
  1156. left:-5px;
  1157. top:-5px;
  1158. width:360px;
  1159. height:120px;
  1160. }
  1161. #u165473 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:1420px;
  1165. top:225px;
  1166. width:350px;
  1167. height:110px;
  1168. display:flex;
  1169. }
  1170. #u165473 .text {
  1171. position:absolute;
  1172. align-self:center;
  1173. padding:2px 2px 2px 2px;
  1174. box-sizing:border-box;
  1175. width:100%;
  1176. }
  1177. #u165473_text {
  1178. border-width:0px;
  1179. word-wrap:break-word;
  1180. text-transform:none;
  1181. visibility:hidden;
  1182. }
  1183. #u165474_div {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:0px;
  1187. top:0px;
  1188. width:163px;
  1189. height:25px;
  1190. background:inherit;
  1191. background-color:rgba(255, 255, 255, 0);
  1192. border:none;
  1193. border-left:0px;
  1194. border-top:0px;
  1195. border-right:0px;
  1196. border-radius:0px;
  1197. border-bottom-right-radius:0px;
  1198. border-bottom-left-radius:0px;
  1199. -moz-box-shadow:none;
  1200. -webkit-box-shadow:none;
  1201. box-shadow:none;
  1202. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1203. font-weight:500;
  1204. font-style:normal;
  1205. font-size:18px;
  1206. line-height:25px;
  1207. }
  1208. #u165474 {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:1438px;
  1212. top:240px;
  1213. width:163px;
  1214. height:25px;
  1215. display:flex;
  1216. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1217. font-weight:500;
  1218. font-style:normal;
  1219. font-size:18px;
  1220. line-height:25px;
  1221. }
  1222. #u165474 .text {
  1223. position:absolute;
  1224. align-self:flex-start;
  1225. padding:0px 0px 0px 0px;
  1226. box-sizing:border-box;
  1227. width:100%;
  1228. }
  1229. #u165474_text {
  1230. border-width:0px;
  1231. white-space:nowrap;
  1232. text-transform:none;
  1233. }
  1234. #u165475_div {
  1235. border-width:0px;
  1236. position:absolute;
  1237. left:0px;
  1238. top:0px;
  1239. width:238px;
  1240. height:50px;
  1241. background:inherit;
  1242. background-color:rgba(255, 255, 255, 0);
  1243. border:none;
  1244. border-left:0px;
  1245. border-top:0px;
  1246. border-right:0px;
  1247. border-radius:0px;
  1248. border-bottom-right-radius:0px;
  1249. border-bottom-left-radius:0px;
  1250. -moz-box-shadow:none;
  1251. -webkit-box-shadow:none;
  1252. box-shadow:none;
  1253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1254. font-weight:400;
  1255. font-style:normal;
  1256. font-size:14px;
  1257. line-height:25px;
  1258. }
  1259. #u165475 {
  1260. border-width:0px;
  1261. position:absolute;
  1262. left:1438px;
  1263. top:275px;
  1264. width:238px;
  1265. height:50px;
  1266. display:flex;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:14px;
  1271. line-height:25px;
  1272. }
  1273. #u165475 .text {
  1274. position:absolute;
  1275. align-self:flex-start;
  1276. padding:0px 0px 0px 0px;
  1277. box-sizing:border-box;
  1278. width:100%;
  1279. }
  1280. #u165475_text {
  1281. border-width:0px;
  1282. white-space:nowrap;
  1283. text-transform:none;
  1284. }
  1285. #u165476_div {
  1286. border-width:0px;
  1287. position:absolute;
  1288. left:0px;
  1289. top:0px;
  1290. width:73px;
  1291. height:25px;
  1292. background:inherit;
  1293. background-color:rgba(255, 255, 255, 0);
  1294. border:none;
  1295. border-left:0px;
  1296. border-top:0px;
  1297. border-right:0px;
  1298. border-radius:0px;
  1299. border-bottom-right-radius:0px;
  1300. border-bottom-left-radius:0px;
  1301. -moz-box-shadow:none;
  1302. -webkit-box-shadow:none;
  1303. box-shadow:none;
  1304. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1305. font-weight:500;
  1306. font-style:normal;
  1307. font-size:18px;
  1308. line-height:25px;
  1309. }
  1310. #u165476 {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:1420px;
  1314. top:355px;
  1315. width:73px;
  1316. height:25px;
  1317. display:flex;
  1318. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1319. font-weight:500;
  1320. font-style:normal;
  1321. font-size:18px;
  1322. line-height:25px;
  1323. }
  1324. #u165476 .text {
  1325. position:absolute;
  1326. align-self:flex-start;
  1327. padding:0px 0px 0px 0px;
  1328. box-sizing:border-box;
  1329. width:100%;
  1330. }
  1331. #u165476_text {
  1332. border-width:0px;
  1333. white-space:nowrap;
  1334. text-transform:none;
  1335. }
  1336. #u165477_div {
  1337. border-width:0px;
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:350px;
  1342. height:55px;
  1343. background:inherit;
  1344. background-color:rgba(255, 255, 255, 1);
  1345. box-sizing:border-box;
  1346. border-width:1px;
  1347. border-style:solid;
  1348. border-color:rgba(215, 215, 215, 1);
  1349. border-radius:10px;
  1350. -moz-box-shadow:none;
  1351. -webkit-box-shadow:none;
  1352. box-shadow:none;
  1353. }
  1354. #u165477 {
  1355. border-width:0px;
  1356. position:absolute;
  1357. left:1420px;
  1358. top:396px;
  1359. width:350px;
  1360. height:55px;
  1361. display:flex;
  1362. }
  1363. #u165477 .text {
  1364. position:absolute;
  1365. align-self:center;
  1366. padding:2px 2px 2px 2px;
  1367. box-sizing:border-box;
  1368. width:100%;
  1369. }
  1370. #u165477_text {
  1371. border-width:0px;
  1372. word-wrap:break-word;
  1373. text-transform:none;
  1374. visibility:hidden;
  1375. }
  1376. #u165478_div {
  1377. border-width:0px;
  1378. position:absolute;
  1379. left:0px;
  1380. top:0px;
  1381. width:99px;
  1382. height:25px;
  1383. background:inherit;
  1384. background-color:rgba(255, 255, 255, 0);
  1385. border:none;
  1386. border-left:0px;
  1387. border-top:0px;
  1388. border-right:0px;
  1389. border-radius:0px;
  1390. border-bottom-right-radius:0px;
  1391. border-bottom-left-radius:0px;
  1392. -moz-box-shadow:none;
  1393. -webkit-box-shadow:none;
  1394. box-shadow:none;
  1395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1396. font-style:normal;
  1397. line-height:25px;
  1398. }
  1399. #u165478 {
  1400. border-width:0px;
  1401. position:absolute;
  1402. left:1438px;
  1403. top:411px;
  1404. width:99px;
  1405. height:25px;
  1406. display:flex;
  1407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1408. font-style:normal;
  1409. line-height:25px;
  1410. }
  1411. #u165478 .text {
  1412. position:absolute;
  1413. align-self:flex-start;
  1414. padding:0px 0px 0px 0px;
  1415. box-sizing:border-box;
  1416. width:100%;
  1417. }
  1418. #u165478_text {
  1419. border-width:0px;
  1420. white-space:nowrap;
  1421. text-transform:none;
  1422. }
  1423. #u165479_div {
  1424. border-width:0px;
  1425. position:absolute;
  1426. left:0px;
  1427. top:0px;
  1428. width:350px;
  1429. height:90px;
  1430. background:inherit;
  1431. background-color:rgba(255, 255, 255, 1);
  1432. box-sizing:border-box;
  1433. border-width:1px;
  1434. border-style:solid;
  1435. border-color:rgba(215, 215, 215, 1);
  1436. border-radius:10px;
  1437. -moz-box-shadow:none;
  1438. -webkit-box-shadow:none;
  1439. box-shadow:none;
  1440. }
  1441. #u165479 {
  1442. border-width:0px;
  1443. position:absolute;
  1444. left:1420px;
  1445. top:461px;
  1446. width:350px;
  1447. height:90px;
  1448. display:flex;
  1449. }
  1450. #u165479 .text {
  1451. position:absolute;
  1452. align-self:center;
  1453. padding:2px 2px 2px 2px;
  1454. box-sizing:border-box;
  1455. width:100%;
  1456. }
  1457. #u165479_text {
  1458. border-width:0px;
  1459. word-wrap:break-word;
  1460. text-transform:none;
  1461. visibility:hidden;
  1462. }
  1463. #u165480_div {
  1464. border-width:0px;
  1465. position:absolute;
  1466. left:0px;
  1467. top:0px;
  1468. width:70px;
  1469. height:50px;
  1470. background:inherit;
  1471. background-color:rgba(255, 255, 255, 0);
  1472. border:none;
  1473. border-left:0px;
  1474. border-top:0px;
  1475. border-right:0px;
  1476. border-radius:0px;
  1477. border-bottom-right-radius:0px;
  1478. border-bottom-left-radius:0px;
  1479. -moz-box-shadow:none;
  1480. -webkit-box-shadow:none;
  1481. box-shadow:none;
  1482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1483. font-weight:400;
  1484. font-style:normal;
  1485. line-height:25px;
  1486. }
  1487. #u165480 {
  1488. border-width:0px;
  1489. position:absolute;
  1490. left:1438px;
  1491. top:476px;
  1492. width:70px;
  1493. height:50px;
  1494. display:flex;
  1495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1496. font-weight:400;
  1497. font-style:normal;
  1498. line-height:25px;
  1499. }
  1500. #u165480 .text {
  1501. position:absolute;
  1502. align-self:flex-start;
  1503. padding:0px 0px 0px 0px;
  1504. box-sizing:border-box;
  1505. width:100%;
  1506. }
  1507. #u165480_text {
  1508. border-width:0px;
  1509. white-space:nowrap;
  1510. text-transform:none;
  1511. }
  1512. #u165481_div {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:0px;
  1516. top:0px;
  1517. width:64px;
  1518. height:50px;
  1519. background:inherit;
  1520. background-color:rgba(255, 255, 255, 0);
  1521. border:none;
  1522. border-left:0px;
  1523. border-top:0px;
  1524. border-right:0px;
  1525. border-radius:0px;
  1526. border-bottom-right-radius:0px;
  1527. border-bottom-left-radius:0px;
  1528. -moz-box-shadow:none;
  1529. -webkit-box-shadow:none;
  1530. box-shadow:none;
  1531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1532. font-weight:400;
  1533. font-style:normal;
  1534. line-height:25px;
  1535. }
  1536. #u165481 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:1673px;
  1540. top:476px;
  1541. width:64px;
  1542. height:50px;
  1543. display:flex;
  1544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1545. font-weight:400;
  1546. font-style:normal;
  1547. line-height:25px;
  1548. }
  1549. #u165481 .text {
  1550. position:absolute;
  1551. align-self:flex-start;
  1552. padding:0px 0px 0px 0px;
  1553. box-sizing:border-box;
  1554. width:100%;
  1555. }
  1556. #u165481_text {
  1557. border-width:0px;
  1558. white-space:nowrap;
  1559. text-transform:none;
  1560. }
  1561. #u165482_img {
  1562. border-width:0px;
  1563. position:absolute;
  1564. left:0px;
  1565. top:0px;
  1566. width:141px;
  1567. height:2px;
  1568. }
  1569. #u165482 {
  1570. border-width:0px;
  1571. position:absolute;
  1572. left:1519px;
  1573. top:513px;
  1574. width:140px;
  1575. height:1px;
  1576. display:flex;
  1577. }
  1578. #u165482 .text {
  1579. position:absolute;
  1580. align-self:center;
  1581. padding:2px 2px 2px 2px;
  1582. box-sizing:border-box;
  1583. width:100%;
  1584. }
  1585. #u165482_text {
  1586. border-width:0px;
  1587. word-wrap:break-word;
  1588. text-transform:none;
  1589. visibility:hidden;
  1590. }
  1591. #u165483_div {
  1592. border-width:0px;
  1593. position:absolute;
  1594. left:0px;
  1595. top:0px;
  1596. width:21px;
  1597. height:21px;
  1598. background:inherit;
  1599. background-color:rgba(255, 255, 255, 1);
  1600. box-sizing:border-box;
  1601. border-width:1px;
  1602. border-style:solid;
  1603. border-color:rgba(215, 215, 215, 1);
  1604. border-radius:15px;
  1605. -moz-box-shadow:none;
  1606. -webkit-box-shadow:none;
  1607. box-shadow:none;
  1608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1609. font-weight:400;
  1610. font-style:normal;
  1611. font-size:10px;
  1612. color:#AAAAAA;
  1613. text-align:center;
  1614. line-height:25px;
  1615. }
  1616. #u165483 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:1517px;
  1620. top:503px;
  1621. width:21px;
  1622. height:21px;
  1623. display:flex;
  1624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1625. font-weight:400;
  1626. font-style:normal;
  1627. font-size:10px;
  1628. color:#AAAAAA;
  1629. text-align:center;
  1630. line-height:25px;
  1631. }
  1632. #u165483 .text {
  1633. position:absolute;
  1634. align-self:center;
  1635. padding:0px 0px 0px 0px;
  1636. box-sizing:border-box;
  1637. width:100%;
  1638. }
  1639. #u165483_text {
  1640. border-width:0px;
  1641. word-wrap:break-word;
  1642. text-transform:none;
  1643. }
  1644. #u165484_div {
  1645. border-width:0px;
  1646. position:absolute;
  1647. left:0px;
  1648. top:0px;
  1649. width:21px;
  1650. height:21px;
  1651. background:inherit;
  1652. background-color:rgba(255, 255, 255, 1);
  1653. box-sizing:border-box;
  1654. border-width:1px;
  1655. border-style:solid;
  1656. border-color:rgba(215, 215, 215, 1);
  1657. border-radius:15px;
  1658. -moz-box-shadow:none;
  1659. -webkit-box-shadow:none;
  1660. box-shadow:none;
  1661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1662. font-weight:400;
  1663. font-style:normal;
  1664. font-size:10px;
  1665. color:#AAAAAA;
  1666. text-align:center;
  1667. line-height:25px;
  1668. }
  1669. #u165484 {
  1670. border-width:0px;
  1671. position:absolute;
  1672. left:1642px;
  1673. top:503px;
  1674. width:21px;
  1675. height:21px;
  1676. display:flex;
  1677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1678. font-weight:400;
  1679. font-style:normal;
  1680. font-size:10px;
  1681. color:#AAAAAA;
  1682. text-align:center;
  1683. line-height:25px;
  1684. }
  1685. #u165484 .text {
  1686. position:absolute;
  1687. align-self:center;
  1688. padding:0px 0px 0px 0px;
  1689. box-sizing:border-box;
  1690. width:100%;
  1691. }
  1692. #u165484_text {
  1693. border-width:0px;
  1694. word-wrap:break-word;
  1695. text-transform:none;
  1696. }
  1697. #u165485_div {
  1698. border-width:0px;
  1699. position:absolute;
  1700. left:0px;
  1701. top:0px;
  1702. width:61px;
  1703. height:25px;
  1704. background:inherit;
  1705. background-color:rgba(255, 255, 255, 0);
  1706. border:none;
  1707. border-left:0px;
  1708. border-top:0px;
  1709. border-right:0px;
  1710. border-radius:0px;
  1711. border-bottom-right-radius:0px;
  1712. border-bottom-left-radius:0px;
  1713. -moz-box-shadow:none;
  1714. -webkit-box-shadow:none;
  1715. box-shadow:none;
  1716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1717. font-weight:400;
  1718. font-style:normal;
  1719. font-size:12px;
  1720. color:#298FFF;
  1721. line-height:25px;
  1722. }
  1723. #u165485 {
  1724. border-width:0px;
  1725. position:absolute;
  1726. left:1564px;
  1727. top:489px;
  1728. width:61px;
  1729. height:25px;
  1730. display:flex;
  1731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1732. font-weight:400;
  1733. font-style:normal;
  1734. font-size:12px;
  1735. color:#298FFF;
  1736. line-height:25px;
  1737. }
  1738. #u165485 .text {
  1739. position:absolute;
  1740. align-self:flex-start;
  1741. padding:0px 0px 0px 0px;
  1742. box-sizing:border-box;
  1743. width:100%;
  1744. }
  1745. #u165485_text {
  1746. border-width:0px;
  1747. white-space:nowrap;
  1748. text-transform:none;
  1749. }
  1750. #u165486_div {
  1751. border-width:0px;
  1752. position:absolute;
  1753. left:0px;
  1754. top:0px;
  1755. width:73px;
  1756. height:25px;
  1757. background:inherit;
  1758. background-color:rgba(255, 255, 255, 0);
  1759. border:none;
  1760. border-left:0px;
  1761. border-top:0px;
  1762. border-right:0px;
  1763. border-radius:0px;
  1764. border-bottom-right-radius:0px;
  1765. border-bottom-left-radius:0px;
  1766. -moz-box-shadow:none;
  1767. -webkit-box-shadow:none;
  1768. box-shadow:none;
  1769. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1770. font-weight:500;
  1771. font-style:normal;
  1772. font-size:18px;
  1773. line-height:25px;
  1774. }
  1775. #u165486 {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:1420px;
  1779. top:651px;
  1780. width:73px;
  1781. height:25px;
  1782. display:flex;
  1783. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1784. font-weight:500;
  1785. font-style:normal;
  1786. font-size:18px;
  1787. line-height:25px;
  1788. }
  1789. #u165486 .text {
  1790. position:absolute;
  1791. align-self:flex-start;
  1792. padding:0px 0px 0px 0px;
  1793. box-sizing:border-box;
  1794. width:100%;
  1795. }
  1796. #u165486_text {
  1797. border-width:0px;
  1798. white-space:nowrap;
  1799. text-transform:none;
  1800. }
  1801. #u165487_div {
  1802. border-width:0px;
  1803. position:absolute;
  1804. left:0px;
  1805. top:0px;
  1806. width:71px;
  1807. height:90px;
  1808. background:inherit;
  1809. background-color:rgba(255, 255, 255, 0);
  1810. border:none;
  1811. border-left:0px;
  1812. border-top:0px;
  1813. border-right:0px;
  1814. border-radius:0px;
  1815. border-bottom-right-radius:0px;
  1816. border-bottom-left-radius:0px;
  1817. -moz-box-shadow:none;
  1818. -webkit-box-shadow:none;
  1819. box-shadow:none;
  1820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1821. font-weight:400;
  1822. font-style:normal;
  1823. font-size:14px;
  1824. line-height:30px;
  1825. }
  1826. #u165487 {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:1433px;
  1830. top:807px;
  1831. width:71px;
  1832. height:90px;
  1833. display:flex;
  1834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1835. font-weight:400;
  1836. font-style:normal;
  1837. font-size:14px;
  1838. line-height:30px;
  1839. }
  1840. #u165487 .text {
  1841. position:absolute;
  1842. align-self:flex-start;
  1843. padding:0px 0px 0px 0px;
  1844. box-sizing:border-box;
  1845. width:100%;
  1846. }
  1847. #u165487_text {
  1848. border-width:0px;
  1849. white-space:nowrap;
  1850. text-transform:none;
  1851. }
  1852. #u165488_div {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:0px;
  1856. top:0px;
  1857. width:350px;
  1858. height:100px;
  1859. background:inherit;
  1860. background-color:rgba(255, 255, 255, 1);
  1861. box-sizing:border-box;
  1862. border-width:1px;
  1863. border-style:solid;
  1864. border-color:rgba(215, 215, 215, 1);
  1865. border-radius:10px;
  1866. -moz-box-shadow:none;
  1867. -webkit-box-shadow:none;
  1868. box-shadow:none;
  1869. }
  1870. #u165488 {
  1871. border-width:0px;
  1872. position:absolute;
  1873. left:1420px;
  1874. top:686px;
  1875. width:350px;
  1876. height:100px;
  1877. display:flex;
  1878. }
  1879. #u165488 .text {
  1880. position:absolute;
  1881. align-self:center;
  1882. padding:2px 2px 2px 2px;
  1883. box-sizing:border-box;
  1884. width:100%;
  1885. }
  1886. #u165488_text {
  1887. border-width:0px;
  1888. word-wrap:break-word;
  1889. text-transform:none;
  1890. visibility:hidden;
  1891. }
  1892. #u165489_div {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:0px;
  1896. top:0px;
  1897. width:211px;
  1898. height:60px;
  1899. background:inherit;
  1900. background-color:rgba(255, 255, 255, 0);
  1901. border:none;
  1902. border-left:0px;
  1903. border-top:0px;
  1904. border-right:0px;
  1905. border-radius:0px;
  1906. border-bottom-right-radius:0px;
  1907. border-bottom-left-radius:0px;
  1908. -moz-box-shadow:none;
  1909. -webkit-box-shadow:none;
  1910. box-shadow:none;
  1911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1912. font-weight:400;
  1913. font-style:normal;
  1914. line-height:30px;
  1915. }
  1916. #u165489 {
  1917. border-width:0px;
  1918. position:absolute;
  1919. left:1438px;
  1920. top:706px;
  1921. width:211px;
  1922. height:60px;
  1923. display:flex;
  1924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1925. font-weight:400;
  1926. font-style:normal;
  1927. line-height:30px;
  1928. }
  1929. #u165489 .text {
  1930. position:absolute;
  1931. align-self:flex-start;
  1932. padding:0px 0px 0px 0px;
  1933. box-sizing:border-box;
  1934. width:100%;
  1935. }
  1936. #u165489_text {
  1937. border-width:0px;
  1938. white-space:nowrap;
  1939. text-transform:none;
  1940. }
  1941. #u165490_div {
  1942. border-width:0px;
  1943. position:absolute;
  1944. left:0px;
  1945. top:0px;
  1946. width:52px;
  1947. height:90px;
  1948. background:inherit;
  1949. background-color:rgba(255, 255, 255, 0);
  1950. border:none;
  1951. border-left:0px;
  1952. border-top:0px;
  1953. border-right:0px;
  1954. border-radius:0px;
  1955. border-bottom-right-radius:0px;
  1956. border-bottom-left-radius:0px;
  1957. -moz-box-shadow:none;
  1958. -webkit-box-shadow:none;
  1959. box-shadow:none;
  1960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1961. font-weight:400;
  1962. font-style:normal;
  1963. font-size:14px;
  1964. text-align:right;
  1965. line-height:30px;
  1966. }
  1967. #u165490 {
  1968. border-width:0px;
  1969. position:absolute;
  1970. left:1718px;
  1971. top:807px;
  1972. width:52px;
  1973. height:90px;
  1974. display:flex;
  1975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1976. font-weight:400;
  1977. font-style:normal;
  1978. font-size:14px;
  1979. text-align:right;
  1980. line-height:30px;
  1981. }
  1982. #u165490 .text {
  1983. position:absolute;
  1984. align-self:flex-start;
  1985. padding:0px 0px 0px 0px;
  1986. box-sizing:border-box;
  1987. width:100%;
  1988. }
  1989. #u165490_text {
  1990. border-width:0px;
  1991. white-space:nowrap;
  1992. text-transform:none;
  1993. }
  1994. #u165491 {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:0px;
  1998. top:0px;
  1999. width:0px;
  2000. height:0px;
  2001. }
  2002. #u165492_div {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:0px;
  2006. top:0px;
  2007. width:375px;
  2008. height:110px;
  2009. background:inherit;
  2010. background-color:rgba(255, 255, 255, 1);
  2011. border:none;
  2012. border-top:0px;
  2013. border-radius:0px;
  2014. border-top-left-radius:0px;
  2015. border-top-right-radius:0px;
  2016. -moz-box-shadow:none;
  2017. -webkit-box-shadow:none;
  2018. box-shadow:none;
  2019. }
  2020. #u165492 {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:1409px;
  2024. top:1066px;
  2025. width:375px;
  2026. height:110px;
  2027. display:flex;
  2028. }
  2029. #u165492 .text {
  2030. position:absolute;
  2031. align-self:center;
  2032. padding:2px 2px 2px 2px;
  2033. box-sizing:border-box;
  2034. width:100%;
  2035. }
  2036. #u165492_text {
  2037. border-width:0px;
  2038. word-wrap:break-word;
  2039. text-transform:none;
  2040. visibility:hidden;
  2041. }
  2042. #u165493_div {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:0px;
  2046. top:0px;
  2047. width:124px;
  2048. height:90px;
  2049. background:inherit;
  2050. background-color:rgba(255, 255, 255, 0);
  2051. border:none;
  2052. border-left:0px;
  2053. border-top:0px;
  2054. border-right:0px;
  2055. border-radius:0px;
  2056. border-bottom-right-radius:0px;
  2057. border-bottom-left-radius:0px;
  2058. -moz-box-shadow:none;
  2059. -webkit-box-shadow:none;
  2060. box-shadow:none;
  2061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2062. font-weight:400;
  2063. font-style:normal;
  2064. font-size:12px;
  2065. text-align:right;
  2066. line-height:30px;
  2067. }
  2068. #u165493 {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:1636px;
  2072. top:1076px;
  2073. width:124px;
  2074. height:90px;
  2075. display:flex;
  2076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2077. font-weight:400;
  2078. font-style:normal;
  2079. font-size:12px;
  2080. text-align:right;
  2081. line-height:30px;
  2082. }
  2083. #u165493 .text {
  2084. position:absolute;
  2085. align-self:flex-start;
  2086. padding:0px 0px 0px 0px;
  2087. box-sizing:border-box;
  2088. width:100%;
  2089. }
  2090. #u165493_text {
  2091. border-width:0px;
  2092. white-space:nowrap;
  2093. text-transform:none;
  2094. }
  2095. #u165494_div {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:0px;
  2099. top:0px;
  2100. width:49px;
  2101. height:90px;
  2102. background:inherit;
  2103. background-color:rgba(255, 255, 255, 0);
  2104. border:none;
  2105. border-left:0px;
  2106. border-top:0px;
  2107. border-right:0px;
  2108. border-radius:0px;
  2109. border-bottom-right-radius:0px;
  2110. border-bottom-left-radius:0px;
  2111. -moz-box-shadow:none;
  2112. -webkit-box-shadow:none;
  2113. box-shadow:none;
  2114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2115. font-weight:400;
  2116. font-style:normal;
  2117. font-size:12px;
  2118. color:#7F7F7F;
  2119. line-height:30px;
  2120. }
  2121. #u165494 {
  2122. border-width:0px;
  2123. position:absolute;
  2124. left:1426px;
  2125. top:1076px;
  2126. width:49px;
  2127. height:90px;
  2128. display:flex;
  2129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2130. font-weight:400;
  2131. font-style:normal;
  2132. font-size:12px;
  2133. color:#7F7F7F;
  2134. line-height:30px;
  2135. }
  2136. #u165494 .text {
  2137. position:absolute;
  2138. align-self:flex-start;
  2139. padding:0px 0px 0px 0px;
  2140. box-sizing:border-box;
  2141. width:100%;
  2142. }
  2143. #u165494_text {
  2144. border-width:0px;
  2145. white-space:nowrap;
  2146. text-transform:none;
  2147. }
  2148. #u165495_div {
  2149. border-width:0px;
  2150. position:absolute;
  2151. left:0px;
  2152. top:0px;
  2153. width:375px;
  2154. height:40px;
  2155. background:inherit;
  2156. background-color:rgba(24, 144, 255, 0.0470588235294118);
  2157. border:none;
  2158. border-left:0px;
  2159. border-top:0px;
  2160. border-right:0px;
  2161. border-radius:0px;
  2162. border-bottom-right-radius:0px;
  2163. border-bottom-left-radius:0px;
  2164. -moz-box-shadow:none;
  2165. -webkit-box-shadow:none;
  2166. box-shadow:none;
  2167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2168. font-weight:400;
  2169. font-style:normal;
  2170. text-align:right;
  2171. line-height:30px;
  2172. }
  2173. #u165495 {
  2174. border-width:0px;
  2175. position:absolute;
  2176. left:1409px;
  2177. top:905px;
  2178. width:375px;
  2179. height:40px;
  2180. display:flex;
  2181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2182. font-weight:400;
  2183. font-style:normal;
  2184. text-align:right;
  2185. line-height:30px;
  2186. }
  2187. #u165495 .text {
  2188. position:absolute;
  2189. align-self:center;
  2190. padding:0px 20px 0px 20px;
  2191. box-sizing:border-box;
  2192. width:100%;
  2193. }
  2194. #u165495_text {
  2195. border-width:0px;
  2196. word-wrap:break-word;
  2197. text-transform:none;
  2198. }
  2199. #u165497_img {
  2200. border-width:0px;
  2201. position:absolute;
  2202. left:0px;
  2203. top:0px;
  2204. width:433px;
  2205. height:865px;
  2206. }
  2207. #u165497 {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:1833px;
  2211. top:0px;
  2212. width:433px;
  2213. height:865px;
  2214. display:flex;
  2215. }
  2216. #u165497 .text {
  2217. position:absolute;
  2218. align-self:center;
  2219. padding:2px 2px 2px 2px;
  2220. box-sizing:border-box;
  2221. width:100%;
  2222. }
  2223. #u165497_text {
  2224. border-width:0px;
  2225. word-wrap:break-word;
  2226. text-transform:none;
  2227. visibility:hidden;
  2228. }
  2229. #u165498_div {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:0px;
  2233. top:0px;
  2234. width:375px;
  2235. height:40px;
  2236. background:inherit;
  2237. background-color:rgba(255, 255, 255, 1);
  2238. box-sizing:border-box;
  2239. border-width:1px;
  2240. border-style:solid;
  2241. border-color:rgba(215, 215, 215, 1);
  2242. border-left:0px;
  2243. border-top:0px;
  2244. border-right:0px;
  2245. border-radius:0px;
  2246. border-bottom-right-radius:0px;
  2247. border-bottom-left-radius:0px;
  2248. -moz-box-shadow:none;
  2249. -webkit-box-shadow:none;
  2250. box-shadow:none;
  2251. }
  2252. #u165498 {
  2253. border-width:0px;
  2254. position:absolute;
  2255. left:1862px;
  2256. top:67px;
  2257. width:375px;
  2258. height:40px;
  2259. display:flex;
  2260. }
  2261. #u165498 .text {
  2262. position:absolute;
  2263. align-self:center;
  2264. padding:2px 2px 2px 2px;
  2265. box-sizing:border-box;
  2266. width:100%;
  2267. }
  2268. #u165498_text {
  2269. border-width:0px;
  2270. word-wrap:break-word;
  2271. text-transform:none;
  2272. visibility:hidden;
  2273. }
  2274. #u165499 {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:0px;
  2278. top:0px;
  2279. width:0px;
  2280. height:0px;
  2281. }
  2282. #u165500_div {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:0px;
  2286. top:0px;
  2287. width:88px;
  2288. height:32px;
  2289. background:inherit;
  2290. background-color:rgba(255, 255, 255, 1);
  2291. box-sizing:border-box;
  2292. border-width:1px;
  2293. border-style:solid;
  2294. border-color:rgba(242, 242, 242, 1);
  2295. border-radius:33px;
  2296. -moz-box-shadow:none;
  2297. -webkit-box-shadow:none;
  2298. box-shadow:none;
  2299. }
  2300. #u165500 {
  2301. border-width:0px;
  2302. position:absolute;
  2303. left:2142px;
  2304. top:71px;
  2305. width:88px;
  2306. height:32px;
  2307. display:flex;
  2308. }
  2309. #u165500 .text {
  2310. position:absolute;
  2311. align-self:center;
  2312. padding:2px 2px 2px 2px;
  2313. box-sizing:border-box;
  2314. width:100%;
  2315. }
  2316. #u165500_text {
  2317. border-width:0px;
  2318. word-wrap:break-word;
  2319. text-transform:none;
  2320. visibility:hidden;
  2321. }
  2322. #u165501 {
  2323. border-width:0px;
  2324. position:absolute;
  2325. left:0px;
  2326. top:0px;
  2327. width:0px;
  2328. height:0px;
  2329. }
  2330. #u165502_img {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:0px;
  2334. top:0px;
  2335. width:18px;
  2336. height:18px;
  2337. }
  2338. #u165502 {
  2339. border-width:0px;
  2340. position:absolute;
  2341. left:2205px;
  2342. top:78px;
  2343. width:18px;
  2344. height:18px;
  2345. display:flex;
  2346. }
  2347. #u165502 .text {
  2348. position:absolute;
  2349. align-self:center;
  2350. padding:2px 2px 2px 2px;
  2351. box-sizing:border-box;
  2352. width:100%;
  2353. }
  2354. #u165502_text {
  2355. border-width:0px;
  2356. word-wrap:break-word;
  2357. text-transform:none;
  2358. visibility:hidden;
  2359. }
  2360. #u165503_img {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:0px;
  2364. top:0px;
  2365. width:6px;
  2366. height:6px;
  2367. }
  2368. #u165503 {
  2369. border-width:0px;
  2370. position:absolute;
  2371. left:2211px;
  2372. top:84px;
  2373. width:6px;
  2374. height:6px;
  2375. display:flex;
  2376. }
  2377. #u165503 .text {
  2378. position:absolute;
  2379. align-self:center;
  2380. padding:2px 2px 2px 2px;
  2381. box-sizing:border-box;
  2382. width:100%;
  2383. }
  2384. #u165503_text {
  2385. border-width:0px;
  2386. word-wrap:break-word;
  2387. text-transform:none;
  2388. visibility:hidden;
  2389. }
  2390. #u165504 {
  2391. border-width:0px;
  2392. position:absolute;
  2393. left:0px;
  2394. top:0px;
  2395. width:0px;
  2396. height:0px;
  2397. }
  2398. #u165505_img {
  2399. border-width:0px;
  2400. position:absolute;
  2401. left:0px;
  2402. top:0px;
  2403. width:5px;
  2404. height:5px;
  2405. }
  2406. #u165505 {
  2407. border-width:0px;
  2408. position:absolute;
  2409. left:2156px;
  2410. top:85px;
  2411. width:5px;
  2412. height:5px;
  2413. display:flex;
  2414. }
  2415. #u165505 .text {
  2416. position:absolute;
  2417. align-self:center;
  2418. padding:2px 2px 2px 2px;
  2419. box-sizing:border-box;
  2420. width:100%;
  2421. }
  2422. #u165505_text {
  2423. border-width:0px;
  2424. word-wrap:break-word;
  2425. text-transform:none;
  2426. visibility:hidden;
  2427. }
  2428. #u165506_img {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:0px;
  2432. top:0px;
  2433. width:5px;
  2434. height:5px;
  2435. }
  2436. #u165506 {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:2172px;
  2440. top:85px;
  2441. width:5px;
  2442. height:5px;
  2443. display:flex;
  2444. }
  2445. #u165506 .text {
  2446. position:absolute;
  2447. align-self:center;
  2448. padding:2px 2px 2px 2px;
  2449. box-sizing:border-box;
  2450. width:100%;
  2451. }
  2452. #u165506_text {
  2453. border-width:0px;
  2454. word-wrap:break-word;
  2455. text-transform:none;
  2456. visibility:hidden;
  2457. }
  2458. #u165507_img {
  2459. border-width:0px;
  2460. position:absolute;
  2461. left:0px;
  2462. top:0px;
  2463. width:7px;
  2464. height:7px;
  2465. }
  2466. #u165507 {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:2163px;
  2470. top:84px;
  2471. width:7px;
  2472. height:7px;
  2473. display:flex;
  2474. }
  2475. #u165507 .text {
  2476. position:absolute;
  2477. align-self:center;
  2478. padding:2px 2px 2px 2px;
  2479. box-sizing:border-box;
  2480. width:100%;
  2481. }
  2482. #u165507_text {
  2483. border-width:0px;
  2484. word-wrap:break-word;
  2485. text-transform:none;
  2486. visibility:hidden;
  2487. }
  2488. #u165508_img {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:0px;
  2492. top:0px;
  2493. width:19px;
  2494. height:2px;
  2495. }
  2496. #u165508 {
  2497. border-width:0px;
  2498. position:absolute;
  2499. left:2180px;
  2500. top:87px;
  2501. width:18px;
  2502. height:1px;
  2503. display:flex;
  2504. -webkit-transform:rotate(90deg);
  2505. -moz-transform:rotate(90deg);
  2506. -ms-transform:rotate(90deg);
  2507. transform:rotate(90deg);
  2508. }
  2509. #u165508 .text {
  2510. position:absolute;
  2511. align-self:center;
  2512. padding:2px 2px 2px 2px;
  2513. box-sizing:border-box;
  2514. width:100%;
  2515. }
  2516. #u165508_text {
  2517. border-width:0px;
  2518. word-wrap:break-word;
  2519. text-transform:none;
  2520. visibility:hidden;
  2521. }
  2522. #u165509_img {
  2523. border-width:0px;
  2524. position:absolute;
  2525. left:0px;
  2526. top:0px;
  2527. width:375px;
  2528. height:44px;
  2529. }
  2530. #u165509 {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:1862px;
  2534. top:24px;
  2535. width:375px;
  2536. height:44px;
  2537. display:flex;
  2538. }
  2539. #u165509 .text {
  2540. position:absolute;
  2541. align-self:center;
  2542. padding:2px 2px 2px 2px;
  2543. box-sizing:border-box;
  2544. width:100%;
  2545. }
  2546. #u165509_text {
  2547. border-width:0px;
  2548. word-wrap:break-word;
  2549. text-transform:none;
  2550. visibility:hidden;
  2551. }
  2552. #u165510_div {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:0px;
  2556. top:0px;
  2557. width:375px;
  2558. height:50px;
  2559. background:inherit;
  2560. background-color:rgba(255, 255, 255, 1);
  2561. box-sizing:border-box;
  2562. border-width:1px;
  2563. border-style:solid;
  2564. border-color:rgba(242, 242, 242, 1);
  2565. border-radius:26px;
  2566. border-top-left-radius:0px;
  2567. border-top-right-radius:0px;
  2568. -moz-box-shadow:none;
  2569. -webkit-box-shadow:none;
  2570. box-shadow:none;
  2571. }
  2572. #u165510 {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:1862px;
  2576. top:788px;
  2577. width:375px;
  2578. height:50px;
  2579. display:flex;
  2580. }
  2581. #u165510 .text {
  2582. position:absolute;
  2583. align-self:center;
  2584. padding:2px 2px 2px 2px;
  2585. box-sizing:border-box;
  2586. width:100%;
  2587. }
  2588. #u165510_text {
  2589. border-width:0px;
  2590. word-wrap:break-word;
  2591. text-transform:none;
  2592. visibility:hidden;
  2593. }
  2594. #u165511 {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:0px;
  2598. top:0px;
  2599. width:0px;
  2600. height:0px;
  2601. }
  2602. #u165512_img {
  2603. border-width:0px;
  2604. position:absolute;
  2605. left:0px;
  2606. top:0px;
  2607. width:24px;
  2608. height:24px;
  2609. }
  2610. #u165512 {
  2611. border-width:0px;
  2612. position:absolute;
  2613. left:1902px;
  2614. top:792px;
  2615. width:24px;
  2616. height:24px;
  2617. display:flex;
  2618. font-size:8px;
  2619. }
  2620. #u165512 .text {
  2621. position:absolute;
  2622. align-self:center;
  2623. padding:2px 2px 2px 2px;
  2624. box-sizing:border-box;
  2625. width:100%;
  2626. }
  2627. #u165512_text {
  2628. border-width:0px;
  2629. word-wrap:break-word;
  2630. text-transform:none;
  2631. }
  2632. #u165513_div {
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:0px;
  2636. top:0px;
  2637. width:25px;
  2638. height:17px;
  2639. background:inherit;
  2640. background-color:rgba(255, 255, 255, 0);
  2641. border:none;
  2642. border-radius:0px;
  2643. -moz-box-shadow:none;
  2644. -webkit-box-shadow:none;
  2645. box-shadow:none;
  2646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2647. font-weight:400;
  2648. font-style:normal;
  2649. font-size:12px;
  2650. }
  2651. #u165513 {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:1902px;
  2655. top:817px;
  2656. width:25px;
  2657. height:17px;
  2658. display:flex;
  2659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2660. font-weight:400;
  2661. font-style:normal;
  2662. font-size:12px;
  2663. }
  2664. #u165513 .text {
  2665. position:absolute;
  2666. align-self:flex-start;
  2667. padding:0px 0px 0px 0px;
  2668. box-sizing:border-box;
  2669. width:100%;
  2670. }
  2671. #u165513_text {
  2672. border-width:0px;
  2673. white-space:nowrap;
  2674. text-transform:none;
  2675. }
  2676. #u165514 {
  2677. border-width:0px;
  2678. position:absolute;
  2679. left:0px;
  2680. top:0px;
  2681. width:0px;
  2682. height:0px;
  2683. }
  2684. #u165515_img {
  2685. border-width:0px;
  2686. position:absolute;
  2687. left:0px;
  2688. top:0px;
  2689. width:24px;
  2690. height:24px;
  2691. }
  2692. #u165515 {
  2693. border-width:0px;
  2694. position:absolute;
  2695. left:2172px;
  2696. top:794px;
  2697. width:24px;
  2698. height:24px;
  2699. display:flex;
  2700. font-size:8px;
  2701. }
  2702. #u165515 .text {
  2703. position:absolute;
  2704. align-self:center;
  2705. padding:2px 2px 2px 2px;
  2706. box-sizing:border-box;
  2707. width:100%;
  2708. }
  2709. #u165515_text {
  2710. border-width:0px;
  2711. word-wrap:break-word;
  2712. text-transform:none;
  2713. }
  2714. #u165516_div {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:0px;
  2718. top:0px;
  2719. width:25px;
  2720. height:17px;
  2721. background:inherit;
  2722. background-color:rgba(255, 255, 255, 0);
  2723. border:none;
  2724. border-radius:0px;
  2725. -moz-box-shadow:none;
  2726. -webkit-box-shadow:none;
  2727. box-shadow:none;
  2728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2729. font-weight:400;
  2730. font-style:normal;
  2731. font-size:12px;
  2732. }
  2733. #u165516 {
  2734. border-width:0px;
  2735. position:absolute;
  2736. left:2172px;
  2737. top:819px;
  2738. width:25px;
  2739. height:17px;
  2740. display:flex;
  2741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2742. font-weight:400;
  2743. font-style:normal;
  2744. font-size:12px;
  2745. }
  2746. #u165516 .text {
  2747. position:absolute;
  2748. align-self:flex-start;
  2749. padding:0px 0px 0px 0px;
  2750. box-sizing:border-box;
  2751. width:100%;
  2752. }
  2753. #u165516_text {
  2754. border-width:0px;
  2755. white-space:nowrap;
  2756. text-transform:none;
  2757. }
  2758. #u165517_div {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:0px;
  2762. top:0px;
  2763. width:375px;
  2764. height:681px;
  2765. background:inherit;
  2766. background-color:rgba(242, 242, 242, 0.462745098039216);
  2767. border:none;
  2768. border-radius:0px;
  2769. -moz-box-shadow:none;
  2770. -webkit-box-shadow:none;
  2771. box-shadow:none;
  2772. }
  2773. #u165517 {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:1862px;
  2777. top:107px;
  2778. width:375px;
  2779. height:681px;
  2780. display:flex;
  2781. }
  2782. #u165517 .text {
  2783. position:absolute;
  2784. align-self:center;
  2785. padding:2px 2px 2px 2px;
  2786. box-sizing:border-box;
  2787. width:100%;
  2788. }
  2789. #u165517_text {
  2790. border-width:0px;
  2791. word-wrap:break-word;
  2792. text-transform:none;
  2793. visibility:hidden;
  2794. }
  2795. #u165518 {
  2796. border-width:0px;
  2797. position:absolute;
  2798. left:0px;
  2799. top:0px;
  2800. width:0px;
  2801. height:0px;
  2802. }
  2803. #u165519_img {
  2804. border-width:0px;
  2805. position:absolute;
  2806. left:0px;
  2807. top:0px;
  2808. width:24px;
  2809. height:24px;
  2810. }
  2811. #u165519 {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:2084px;
  2815. top:792px;
  2816. width:24px;
  2817. height:24px;
  2818. display:flex;
  2819. font-size:8px;
  2820. }
  2821. #u165519 .text {
  2822. position:absolute;
  2823. align-self:center;
  2824. padding:2px 2px 2px 2px;
  2825. box-sizing:border-box;
  2826. width:100%;
  2827. }
  2828. #u165519_text {
  2829. border-width:0px;
  2830. word-wrap:break-word;
  2831. text-transform:none;
  2832. }
  2833. #u165520_div {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:37px;
  2839. height:17px;
  2840. background:inherit;
  2841. background-color:rgba(255, 255, 255, 0);
  2842. border:none;
  2843. border-radius:0px;
  2844. -moz-box-shadow:none;
  2845. -webkit-box-shadow:none;
  2846. box-shadow:none;
  2847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2848. font-weight:400;
  2849. font-style:normal;
  2850. font-size:12px;
  2851. }
  2852. #u165520 {
  2853. border-width:0px;
  2854. position:absolute;
  2855. left:2078px;
  2856. top:817px;
  2857. width:37px;
  2858. height:17px;
  2859. display:flex;
  2860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2861. font-weight:400;
  2862. font-style:normal;
  2863. font-size:12px;
  2864. }
  2865. #u165520 .text {
  2866. position:absolute;
  2867. align-self:flex-start;
  2868. padding:0px 0px 0px 0px;
  2869. box-sizing:border-box;
  2870. width:100%;
  2871. }
  2872. #u165520_text {
  2873. border-width:0px;
  2874. white-space:nowrap;
  2875. text-transform:none;
  2876. }
  2877. #u165521 {
  2878. border-width:0px;
  2879. position:absolute;
  2880. left:0px;
  2881. top:0px;
  2882. width:0px;
  2883. height:0px;
  2884. }
  2885. #u165522_img {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:0px;
  2889. top:0px;
  2890. width:24px;
  2891. height:24px;
  2892. }
  2893. #u165522 {
  2894. border-width:0px;
  2895. position:absolute;
  2896. left:1990px;
  2897. top:792px;
  2898. width:24px;
  2899. height:24px;
  2900. display:flex;
  2901. font-size:8px;
  2902. }
  2903. #u165522 .text {
  2904. position:absolute;
  2905. align-self:center;
  2906. padding:2px 2px 2px 2px;
  2907. box-sizing:border-box;
  2908. width:100%;
  2909. }
  2910. #u165522_text {
  2911. border-width:0px;
  2912. word-wrap:break-word;
  2913. text-transform:none;
  2914. }
  2915. #u165523_div {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:0px;
  2919. top:0px;
  2920. width:37px;
  2921. height:17px;
  2922. background:inherit;
  2923. background-color:rgba(255, 255, 255, 0);
  2924. border:none;
  2925. border-radius:0px;
  2926. -moz-box-shadow:none;
  2927. -webkit-box-shadow:none;
  2928. box-shadow:none;
  2929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2930. font-weight:400;
  2931. font-style:normal;
  2932. font-size:12px;
  2933. }
  2934. #u165523 {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:1984px;
  2938. top:817px;
  2939. width:37px;
  2940. height:17px;
  2941. display:flex;
  2942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2943. font-weight:400;
  2944. font-style:normal;
  2945. font-size:12px;
  2946. }
  2947. #u165523 .text {
  2948. position:absolute;
  2949. align-self:flex-start;
  2950. padding:0px 0px 0px 0px;
  2951. box-sizing:border-box;
  2952. width:100%;
  2953. }
  2954. #u165523_text {
  2955. border-width:0px;
  2956. white-space:nowrap;
  2957. text-transform:none;
  2958. }
  2959. #u165524_div {
  2960. border-width:0px;
  2961. position:absolute;
  2962. left:0px;
  2963. top:0px;
  2964. width:375px;
  2965. height:1405px;
  2966. background:inherit;
  2967. background-color:rgba(242, 242, 242, 1);
  2968. border:none;
  2969. border-top:0px;
  2970. border-radius:25px;
  2971. border-top-left-radius:0px;
  2972. border-top-right-radius:0px;
  2973. -moz-box-shadow:none;
  2974. -webkit-box-shadow:none;
  2975. box-shadow:none;
  2976. }
  2977. #u165524 {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:1862px;
  2981. top:106px;
  2982. width:375px;
  2983. height:1405px;
  2984. display:flex;
  2985. }
  2986. #u165524 .text {
  2987. position:absolute;
  2988. align-self:center;
  2989. padding:2px 2px 2px 2px;
  2990. box-sizing:border-box;
  2991. width:100%;
  2992. }
  2993. #u165524_text {
  2994. border-width:0px;
  2995. word-wrap:break-word;
  2996. text-transform:none;
  2997. visibility:hidden;
  2998. }
  2999. #u165525_div {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:0px;
  3003. top:0px;
  3004. width:375px;
  3005. height:970px;
  3006. background:inherit;
  3007. background-color:rgba(255, 255, 255, 1);
  3008. border:none;
  3009. border-top:0px;
  3010. border-radius:0px;
  3011. border-top-left-radius:0px;
  3012. border-top-right-radius:0px;
  3013. -moz-box-shadow:none;
  3014. -webkit-box-shadow:none;
  3015. box-shadow:none;
  3016. }
  3017. #u165525 {
  3018. border-width:0px;
  3019. position:absolute;
  3020. left:1862px;
  3021. top:106px;
  3022. width:375px;
  3023. height:970px;
  3024. display:flex;
  3025. }
  3026. #u165525 .text {
  3027. position:absolute;
  3028. align-self:center;
  3029. padding:2px 2px 2px 2px;
  3030. box-sizing:border-box;
  3031. width:100%;
  3032. }
  3033. #u165525_text {
  3034. border-width:0px;
  3035. word-wrap:break-word;
  3036. text-transform:none;
  3037. visibility:hidden;
  3038. }
  3039. #u165526 {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:0px;
  3043. top:0px;
  3044. width:0px;
  3045. height:0px;
  3046. }
  3047. #u165527_img {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:0px;
  3051. top:0px;
  3052. width:11px;
  3053. height:18px;
  3054. }
  3055. #u165527 {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:1873px;
  3059. top:80px;
  3060. width:11px;
  3061. height:18px;
  3062. display:flex;
  3063. }
  3064. #u165527 .text {
  3065. position:absolute;
  3066. align-self:center;
  3067. padding:2px 2px 2px 2px;
  3068. box-sizing:border-box;
  3069. width:100%;
  3070. }
  3071. #u165527_text {
  3072. border-width:0px;
  3073. word-wrap:break-word;
  3074. text-transform:none;
  3075. visibility:hidden;
  3076. }
  3077. #u165528_div {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:0px;
  3081. top:0px;
  3082. width:57px;
  3083. height:30px;
  3084. background:inherit;
  3085. background-color:rgba(255, 255, 255, 0);
  3086. border:none;
  3087. border-left:0px;
  3088. border-top:0px;
  3089. border-right:0px;
  3090. border-radius:0px;
  3091. border-bottom-right-radius:0px;
  3092. border-bottom-left-radius:0px;
  3093. -moz-box-shadow:none;
  3094. -webkit-box-shadow:none;
  3095. box-shadow:none;
  3096. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3097. font-weight:500;
  3098. font-style:normal;
  3099. font-size:14px;
  3100. line-height:30px;
  3101. }
  3102. #u165528 {
  3103. border-width:0px;
  3104. position:absolute;
  3105. left:1896px;
  3106. top:76px;
  3107. width:57px;
  3108. height:30px;
  3109. display:flex;
  3110. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3111. font-weight:500;
  3112. font-style:normal;
  3113. font-size:14px;
  3114. line-height:30px;
  3115. }
  3116. #u165528 .text {
  3117. position:absolute;
  3118. align-self:flex-start;
  3119. padding:0px 0px 0px 0px;
  3120. box-sizing:border-box;
  3121. width:100%;
  3122. }
  3123. #u165528_text {
  3124. border-width:0px;
  3125. white-space:nowrap;
  3126. text-transform:none;
  3127. }
  3128. #u165529_img {
  3129. border-width:0px;
  3130. position:absolute;
  3131. left:0px;
  3132. top:0px;
  3133. width:375px;
  3134. height:198px;
  3135. }
  3136. #u165529 {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:1862px;
  3140. top:106px;
  3141. width:375px;
  3142. height:198px;
  3143. display:flex;
  3144. }
  3145. #u165529 .text {
  3146. position:absolute;
  3147. align-self:center;
  3148. padding:2px 2px 2px 2px;
  3149. box-sizing:border-box;
  3150. width:100%;
  3151. }
  3152. #u165529_text {
  3153. border-width:0px;
  3154. word-wrap:break-word;
  3155. text-transform:none;
  3156. visibility:hidden;
  3157. }
  3158. #u165530 {
  3159. border-width:0px;
  3160. position:absolute;
  3161. left:0px;
  3162. top:0px;
  3163. width:0px;
  3164. height:0px;
  3165. }
  3166. #u165531_div {
  3167. border-width:0px;
  3168. position:absolute;
  3169. left:0px;
  3170. top:0px;
  3171. width:55px;
  3172. height:30px;
  3173. background:inherit;
  3174. background-color:rgba(255, 255, 255, 0);
  3175. border:none;
  3176. border-left:0px;
  3177. border-top:0px;
  3178. border-right:0px;
  3179. border-radius:0px;
  3180. border-bottom-right-radius:0px;
  3181. border-bottom-left-radius:0px;
  3182. -moz-box-shadow:none;
  3183. -webkit-box-shadow:none;
  3184. box-shadow:none;
  3185. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3186. font-weight:500;
  3187. font-style:normal;
  3188. font-size:18px;
  3189. color:#FFFFFF;
  3190. line-height:30px;
  3191. }
  3192. #u165531 {
  3193. border-width:0px;
  3194. position:absolute;
  3195. left:1911px;
  3196. top:115px;
  3197. width:55px;
  3198. height:30px;
  3199. display:flex;
  3200. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3201. font-weight:500;
  3202. font-style:normal;
  3203. font-size:18px;
  3204. color:#FFFFFF;
  3205. line-height:30px;
  3206. }
  3207. #u165531 .text {
  3208. position:absolute;
  3209. align-self:flex-start;
  3210. padding:0px 0px 0px 0px;
  3211. box-sizing:border-box;
  3212. width:100%;
  3213. }
  3214. #u165531_text {
  3215. border-width:0px;
  3216. white-space:nowrap;
  3217. text-transform:none;
  3218. }
  3219. #u165532_img {
  3220. border-width:0px;
  3221. position:absolute;
  3222. left:0px;
  3223. top:0px;
  3224. width:19px;
  3225. height:15px;
  3226. }
  3227. #u165532 {
  3228. border-width:0px;
  3229. position:absolute;
  3230. left:1884px;
  3231. top:123px;
  3232. width:19px;
  3233. height:15px;
  3234. display:flex;
  3235. }
  3236. #u165532 .text {
  3237. position:absolute;
  3238. align-self:center;
  3239. padding:2px 2px 2px 2px;
  3240. box-sizing:border-box;
  3241. width:100%;
  3242. }
  3243. #u165532_text {
  3244. border-width:0px;
  3245. word-wrap:break-word;
  3246. text-transform:none;
  3247. visibility:hidden;
  3248. }
  3249. #u165533_div {
  3250. border-width:0px;
  3251. position:absolute;
  3252. left:0px;
  3253. top:0px;
  3254. width:245px;
  3255. height:50px;
  3256. background:inherit;
  3257. background-color:rgba(255, 255, 255, 0);
  3258. border:none;
  3259. border-left:0px;
  3260. border-top:0px;
  3261. border-right:0px;
  3262. border-radius:0px;
  3263. border-bottom-right-radius:0px;
  3264. border-bottom-left-radius:0px;
  3265. -moz-box-shadow:none;
  3266. -webkit-box-shadow:none;
  3267. box-shadow:none;
  3268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3269. font-weight:400;
  3270. font-style:normal;
  3271. font-size:12px;
  3272. color:rgba(255, 255, 255, 0.619607843137255);
  3273. line-height:25px;
  3274. }
  3275. #u165533 {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:1879px;
  3279. top:166px;
  3280. width:245px;
  3281. height:50px;
  3282. display:flex;
  3283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3284. font-weight:400;
  3285. font-style:normal;
  3286. font-size:12px;
  3287. color:rgba(255, 255, 255, 0.619607843137255);
  3288. line-height:25px;
  3289. }
  3290. #u165533 .text {
  3291. position:absolute;
  3292. align-self:flex-start;
  3293. padding:0px 0px 0px 0px;
  3294. box-sizing:border-box;
  3295. width:100%;
  3296. }
  3297. #u165533_text {
  3298. border-width:0px;
  3299. white-space:nowrap;
  3300. text-transform:none;
  3301. }
  3302. #u165534_img {
  3303. border-width:0px;
  3304. position:absolute;
  3305. left:0px;
  3306. top:0px;
  3307. width:338px;
  3308. height:2px;
  3309. }
  3310. #u165534 {
  3311. border-width:0px;
  3312. position:absolute;
  3313. left:1879px;
  3314. top:155px;
  3315. width:337px;
  3316. height:1px;
  3317. display:flex;
  3318. color:rgba(255, 255, 255, 0.364705882352941);
  3319. }
  3320. #u165534 .text {
  3321. position:absolute;
  3322. align-self:center;
  3323. padding:2px 2px 2px 2px;
  3324. box-sizing:border-box;
  3325. width:100%;
  3326. }
  3327. #u165534_text {
  3328. border-width:0px;
  3329. word-wrap:break-word;
  3330. text-transform:none;
  3331. visibility:hidden;
  3332. }
  3333. #u165535_img {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:-5px;
  3337. top:-5px;
  3338. width:360px;
  3339. height:120px;
  3340. }
  3341. #u165535 {
  3342. border-width:0px;
  3343. position:absolute;
  3344. left:1873px;
  3345. top:225px;
  3346. width:350px;
  3347. height:110px;
  3348. display:flex;
  3349. }
  3350. #u165535 .text {
  3351. position:absolute;
  3352. align-self:center;
  3353. padding:2px 2px 2px 2px;
  3354. box-sizing:border-box;
  3355. width:100%;
  3356. }
  3357. #u165535_text {
  3358. border-width:0px;
  3359. word-wrap:break-word;
  3360. text-transform:none;
  3361. visibility:hidden;
  3362. }
  3363. #u165536_div {
  3364. border-width:0px;
  3365. position:absolute;
  3366. left:0px;
  3367. top:0px;
  3368. width:163px;
  3369. height:25px;
  3370. background:inherit;
  3371. background-color:rgba(255, 255, 255, 0);
  3372. border:none;
  3373. border-left:0px;
  3374. border-top:0px;
  3375. border-right:0px;
  3376. border-radius:0px;
  3377. border-bottom-right-radius:0px;
  3378. border-bottom-left-radius:0px;
  3379. -moz-box-shadow:none;
  3380. -webkit-box-shadow:none;
  3381. box-shadow:none;
  3382. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3383. font-weight:500;
  3384. font-style:normal;
  3385. font-size:18px;
  3386. line-height:25px;
  3387. }
  3388. #u165536 {
  3389. border-width:0px;
  3390. position:absolute;
  3391. left:1891px;
  3392. top:240px;
  3393. width:163px;
  3394. height:25px;
  3395. display:flex;
  3396. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3397. font-weight:500;
  3398. font-style:normal;
  3399. font-size:18px;
  3400. line-height:25px;
  3401. }
  3402. #u165536 .text {
  3403. position:absolute;
  3404. align-self:flex-start;
  3405. padding:0px 0px 0px 0px;
  3406. box-sizing:border-box;
  3407. width:100%;
  3408. }
  3409. #u165536_text {
  3410. border-width:0px;
  3411. white-space:nowrap;
  3412. text-transform:none;
  3413. }
  3414. #u165537_div {
  3415. border-width:0px;
  3416. position:absolute;
  3417. left:0px;
  3418. top:0px;
  3419. width:238px;
  3420. height:50px;
  3421. background:inherit;
  3422. background-color:rgba(255, 255, 255, 0);
  3423. border:none;
  3424. border-left:0px;
  3425. border-top:0px;
  3426. border-right:0px;
  3427. border-radius:0px;
  3428. border-bottom-right-radius:0px;
  3429. border-bottom-left-radius:0px;
  3430. -moz-box-shadow:none;
  3431. -webkit-box-shadow:none;
  3432. box-shadow:none;
  3433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3434. font-weight:400;
  3435. font-style:normal;
  3436. font-size:14px;
  3437. line-height:25px;
  3438. }
  3439. #u165537 {
  3440. border-width:0px;
  3441. position:absolute;
  3442. left:1891px;
  3443. top:275px;
  3444. width:238px;
  3445. height:50px;
  3446. display:flex;
  3447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3448. font-weight:400;
  3449. font-style:normal;
  3450. font-size:14px;
  3451. line-height:25px;
  3452. }
  3453. #u165537 .text {
  3454. position:absolute;
  3455. align-self:flex-start;
  3456. padding:0px 0px 0px 0px;
  3457. box-sizing:border-box;
  3458. width:100%;
  3459. }
  3460. #u165537_text {
  3461. border-width:0px;
  3462. white-space:nowrap;
  3463. text-transform:none;
  3464. }
  3465. #u165538_div {
  3466. border-width:0px;
  3467. position:absolute;
  3468. left:0px;
  3469. top:0px;
  3470. width:73px;
  3471. height:25px;
  3472. background:inherit;
  3473. background-color:rgba(255, 255, 255, 0);
  3474. border:none;
  3475. border-left:0px;
  3476. border-top:0px;
  3477. border-right:0px;
  3478. border-radius:0px;
  3479. border-bottom-right-radius:0px;
  3480. border-bottom-left-radius:0px;
  3481. -moz-box-shadow:none;
  3482. -webkit-box-shadow:none;
  3483. box-shadow:none;
  3484. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3485. font-weight:500;
  3486. font-style:normal;
  3487. font-size:18px;
  3488. line-height:25px;
  3489. }
  3490. #u165538 {
  3491. border-width:0px;
  3492. position:absolute;
  3493. left:1873px;
  3494. top:355px;
  3495. width:73px;
  3496. height:25px;
  3497. display:flex;
  3498. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3499. font-weight:500;
  3500. font-style:normal;
  3501. font-size:18px;
  3502. line-height:25px;
  3503. }
  3504. #u165538 .text {
  3505. position:absolute;
  3506. align-self:flex-start;
  3507. padding:0px 0px 0px 0px;
  3508. box-sizing:border-box;
  3509. width:100%;
  3510. }
  3511. #u165538_text {
  3512. border-width:0px;
  3513. white-space:nowrap;
  3514. text-transform:none;
  3515. }
  3516. #u165539_div {
  3517. border-width:0px;
  3518. position:absolute;
  3519. left:0px;
  3520. top:0px;
  3521. width:350px;
  3522. height:55px;
  3523. background:inherit;
  3524. background-color:rgba(255, 255, 255, 1);
  3525. box-sizing:border-box;
  3526. border-width:1px;
  3527. border-style:solid;
  3528. border-color:rgba(215, 215, 215, 1);
  3529. border-radius:10px;
  3530. -moz-box-shadow:none;
  3531. -webkit-box-shadow:none;
  3532. box-shadow:none;
  3533. }
  3534. #u165539 {
  3535. border-width:0px;
  3536. position:absolute;
  3537. left:1873px;
  3538. top:396px;
  3539. width:350px;
  3540. height:55px;
  3541. display:flex;
  3542. }
  3543. #u165539 .text {
  3544. position:absolute;
  3545. align-self:center;
  3546. padding:2px 2px 2px 2px;
  3547. box-sizing:border-box;
  3548. width:100%;
  3549. }
  3550. #u165539_text {
  3551. border-width:0px;
  3552. word-wrap:break-word;
  3553. text-transform:none;
  3554. visibility:hidden;
  3555. }
  3556. #u165540_div {
  3557. border-width:0px;
  3558. position:absolute;
  3559. left:0px;
  3560. top:0px;
  3561. width:99px;
  3562. height:25px;
  3563. background:inherit;
  3564. background-color:rgba(255, 255, 255, 0);
  3565. border:none;
  3566. border-left:0px;
  3567. border-top:0px;
  3568. border-right:0px;
  3569. border-radius:0px;
  3570. border-bottom-right-radius:0px;
  3571. border-bottom-left-radius:0px;
  3572. -moz-box-shadow:none;
  3573. -webkit-box-shadow:none;
  3574. box-shadow:none;
  3575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3576. font-style:normal;
  3577. line-height:25px;
  3578. }
  3579. #u165540 {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:1891px;
  3583. top:411px;
  3584. width:99px;
  3585. height:25px;
  3586. display:flex;
  3587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3588. font-style:normal;
  3589. line-height:25px;
  3590. }
  3591. #u165540 .text {
  3592. position:absolute;
  3593. align-self:flex-start;
  3594. padding:0px 0px 0px 0px;
  3595. box-sizing:border-box;
  3596. width:100%;
  3597. }
  3598. #u165540_text {
  3599. border-width:0px;
  3600. white-space:nowrap;
  3601. text-transform:none;
  3602. }
  3603. #u165541_div {
  3604. border-width:0px;
  3605. position:absolute;
  3606. left:0px;
  3607. top:0px;
  3608. width:350px;
  3609. height:90px;
  3610. background:inherit;
  3611. background-color:rgba(255, 255, 255, 1);
  3612. box-sizing:border-box;
  3613. border-width:1px;
  3614. border-style:solid;
  3615. border-color:rgba(215, 215, 215, 1);
  3616. border-radius:10px;
  3617. -moz-box-shadow:none;
  3618. -webkit-box-shadow:none;
  3619. box-shadow:none;
  3620. }
  3621. #u165541 {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:1873px;
  3625. top:461px;
  3626. width:350px;
  3627. height:90px;
  3628. display:flex;
  3629. }
  3630. #u165541 .text {
  3631. position:absolute;
  3632. align-self:center;
  3633. padding:2px 2px 2px 2px;
  3634. box-sizing:border-box;
  3635. width:100%;
  3636. }
  3637. #u165541_text {
  3638. border-width:0px;
  3639. word-wrap:break-word;
  3640. text-transform:none;
  3641. visibility:hidden;
  3642. }
  3643. #u165542_div {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:0px;
  3647. top:0px;
  3648. width:70px;
  3649. height:50px;
  3650. background:inherit;
  3651. background-color:rgba(255, 255, 255, 0);
  3652. border:none;
  3653. border-left:0px;
  3654. border-top:0px;
  3655. border-right:0px;
  3656. border-radius:0px;
  3657. border-bottom-right-radius:0px;
  3658. border-bottom-left-radius:0px;
  3659. -moz-box-shadow:none;
  3660. -webkit-box-shadow:none;
  3661. box-shadow:none;
  3662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3663. font-weight:400;
  3664. font-style:normal;
  3665. line-height:25px;
  3666. }
  3667. #u165542 {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:1891px;
  3671. top:476px;
  3672. width:70px;
  3673. height:50px;
  3674. display:flex;
  3675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3676. font-weight:400;
  3677. font-style:normal;
  3678. line-height:25px;
  3679. }
  3680. #u165542 .text {
  3681. position:absolute;
  3682. align-self:flex-start;
  3683. padding:0px 0px 0px 0px;
  3684. box-sizing:border-box;
  3685. width:100%;
  3686. }
  3687. #u165542_text {
  3688. border-width:0px;
  3689. white-space:nowrap;
  3690. text-transform:none;
  3691. }
  3692. #u165543_div {
  3693. border-width:0px;
  3694. position:absolute;
  3695. left:0px;
  3696. top:0px;
  3697. width:64px;
  3698. height:50px;
  3699. background:inherit;
  3700. background-color:rgba(255, 255, 255, 0);
  3701. border:none;
  3702. border-left:0px;
  3703. border-top:0px;
  3704. border-right:0px;
  3705. border-radius:0px;
  3706. border-bottom-right-radius:0px;
  3707. border-bottom-left-radius:0px;
  3708. -moz-box-shadow:none;
  3709. -webkit-box-shadow:none;
  3710. box-shadow:none;
  3711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3712. font-weight:400;
  3713. font-style:normal;
  3714. line-height:25px;
  3715. }
  3716. #u165543 {
  3717. border-width:0px;
  3718. position:absolute;
  3719. left:2126px;
  3720. top:476px;
  3721. width:64px;
  3722. height:50px;
  3723. display:flex;
  3724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3725. font-weight:400;
  3726. font-style:normal;
  3727. line-height:25px;
  3728. }
  3729. #u165543 .text {
  3730. position:absolute;
  3731. align-self:flex-start;
  3732. padding:0px 0px 0px 0px;
  3733. box-sizing:border-box;
  3734. width:100%;
  3735. }
  3736. #u165543_text {
  3737. border-width:0px;
  3738. white-space:nowrap;
  3739. text-transform:none;
  3740. }
  3741. #u165544_img {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:0px;
  3745. top:0px;
  3746. width:141px;
  3747. height:2px;
  3748. }
  3749. #u165544 {
  3750. border-width:0px;
  3751. position:absolute;
  3752. left:1972px;
  3753. top:513px;
  3754. width:140px;
  3755. height:1px;
  3756. display:flex;
  3757. }
  3758. #u165544 .text {
  3759. position:absolute;
  3760. align-self:center;
  3761. padding:2px 2px 2px 2px;
  3762. box-sizing:border-box;
  3763. width:100%;
  3764. }
  3765. #u165544_text {
  3766. border-width:0px;
  3767. word-wrap:break-word;
  3768. text-transform:none;
  3769. visibility:hidden;
  3770. }
  3771. #u165545_div {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:0px;
  3775. top:0px;
  3776. width:21px;
  3777. height:21px;
  3778. background:inherit;
  3779. background-color:rgba(255, 255, 255, 1);
  3780. box-sizing:border-box;
  3781. border-width:1px;
  3782. border-style:solid;
  3783. border-color:rgba(215, 215, 215, 1);
  3784. border-radius:15px;
  3785. -moz-box-shadow:none;
  3786. -webkit-box-shadow:none;
  3787. box-shadow:none;
  3788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3789. font-weight:400;
  3790. font-style:normal;
  3791. font-size:10px;
  3792. color:#AAAAAA;
  3793. text-align:center;
  3794. line-height:25px;
  3795. }
  3796. #u165545 {
  3797. border-width:0px;
  3798. position:absolute;
  3799. left:1970px;
  3800. top:503px;
  3801. width:21px;
  3802. height:21px;
  3803. display:flex;
  3804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3805. font-weight:400;
  3806. font-style:normal;
  3807. font-size:10px;
  3808. color:#AAAAAA;
  3809. text-align:center;
  3810. line-height:25px;
  3811. }
  3812. #u165545 .text {
  3813. position:absolute;
  3814. align-self:center;
  3815. padding:0px 0px 0px 0px;
  3816. box-sizing:border-box;
  3817. width:100%;
  3818. }
  3819. #u165545_text {
  3820. border-width:0px;
  3821. word-wrap:break-word;
  3822. text-transform:none;
  3823. }
  3824. #u165546_div {
  3825. border-width:0px;
  3826. position:absolute;
  3827. left:0px;
  3828. top:0px;
  3829. width:21px;
  3830. height:21px;
  3831. background:inherit;
  3832. background-color:rgba(255, 255, 255, 1);
  3833. box-sizing:border-box;
  3834. border-width:1px;
  3835. border-style:solid;
  3836. border-color:rgba(215, 215, 215, 1);
  3837. border-radius:15px;
  3838. -moz-box-shadow:none;
  3839. -webkit-box-shadow:none;
  3840. box-shadow:none;
  3841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3842. font-weight:400;
  3843. font-style:normal;
  3844. font-size:10px;
  3845. color:#AAAAAA;
  3846. text-align:center;
  3847. line-height:25px;
  3848. }
  3849. #u165546 {
  3850. border-width:0px;
  3851. position:absolute;
  3852. left:2095px;
  3853. top:503px;
  3854. width:21px;
  3855. height:21px;
  3856. display:flex;
  3857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3858. font-weight:400;
  3859. font-style:normal;
  3860. font-size:10px;
  3861. color:#AAAAAA;
  3862. text-align:center;
  3863. line-height:25px;
  3864. }
  3865. #u165546 .text {
  3866. position:absolute;
  3867. align-self:center;
  3868. padding:0px 0px 0px 0px;
  3869. box-sizing:border-box;
  3870. width:100%;
  3871. }
  3872. #u165546_text {
  3873. border-width:0px;
  3874. word-wrap:break-word;
  3875. text-transform:none;
  3876. }
  3877. #u165547_div {
  3878. border-width:0px;
  3879. position:absolute;
  3880. left:0px;
  3881. top:0px;
  3882. width:61px;
  3883. height:25px;
  3884. background:inherit;
  3885. background-color:rgba(255, 255, 255, 0);
  3886. border:none;
  3887. border-left:0px;
  3888. border-top:0px;
  3889. border-right:0px;
  3890. border-radius:0px;
  3891. border-bottom-right-radius:0px;
  3892. border-bottom-left-radius:0px;
  3893. -moz-box-shadow:none;
  3894. -webkit-box-shadow:none;
  3895. box-shadow:none;
  3896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3897. font-weight:400;
  3898. font-style:normal;
  3899. font-size:12px;
  3900. color:#AAAAAA;
  3901. line-height:25px;
  3902. }
  3903. #u165547 {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:2017px;
  3907. top:489px;
  3908. width:61px;
  3909. height:25px;
  3910. display:flex;
  3911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3912. font-weight:400;
  3913. font-style:normal;
  3914. font-size:12px;
  3915. color:#AAAAAA;
  3916. line-height:25px;
  3917. }
  3918. #u165547 .text {
  3919. position:absolute;
  3920. align-self:flex-start;
  3921. padding:0px 0px 0px 0px;
  3922. box-sizing:border-box;
  3923. width:100%;
  3924. }
  3925. #u165547_text {
  3926. border-width:0px;
  3927. white-space:nowrap;
  3928. text-transform:none;
  3929. }
  3930. #u165548_div {
  3931. border-width:0px;
  3932. position:absolute;
  3933. left:0px;
  3934. top:0px;
  3935. width:73px;
  3936. height:25px;
  3937. background:inherit;
  3938. background-color:rgba(255, 255, 255, 0);
  3939. border:none;
  3940. border-left:0px;
  3941. border-top:0px;
  3942. border-right:0px;
  3943. border-radius:0px;
  3944. border-bottom-right-radius:0px;
  3945. border-bottom-left-radius:0px;
  3946. -moz-box-shadow:none;
  3947. -webkit-box-shadow:none;
  3948. box-shadow:none;
  3949. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3950. font-weight:500;
  3951. font-style:normal;
  3952. font-size:18px;
  3953. line-height:25px;
  3954. }
  3955. #u165548 {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:1873px;
  3959. top:651px;
  3960. width:73px;
  3961. height:25px;
  3962. display:flex;
  3963. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3964. font-weight:500;
  3965. font-style:normal;
  3966. font-size:18px;
  3967. line-height:25px;
  3968. }
  3969. #u165548 .text {
  3970. position:absolute;
  3971. align-self:flex-start;
  3972. padding:0px 0px 0px 0px;
  3973. box-sizing:border-box;
  3974. width:100%;
  3975. }
  3976. #u165548_text {
  3977. border-width:0px;
  3978. white-space:nowrap;
  3979. text-transform:none;
  3980. }
  3981. #u165549_div {
  3982. border-width:0px;
  3983. position:absolute;
  3984. left:0px;
  3985. top:0px;
  3986. width:350px;
  3987. height:245px;
  3988. background:inherit;
  3989. background-color:rgba(255, 255, 255, 1);
  3990. box-sizing:border-box;
  3991. border-width:1px;
  3992. border-style:solid;
  3993. border-color:rgba(215, 215, 215, 1);
  3994. border-radius:10px;
  3995. -moz-box-shadow:none;
  3996. -webkit-box-shadow:none;
  3997. box-shadow:none;
  3998. }
  3999. #u165549 {
  4000. border-width:0px;
  4001. position:absolute;
  4002. left:1873px;
  4003. top:686px;
  4004. width:350px;
  4005. height:245px;
  4006. display:flex;
  4007. }
  4008. #u165549 .text {
  4009. position:absolute;
  4010. align-self:center;
  4011. padding:2px 2px 2px 2px;
  4012. box-sizing:border-box;
  4013. width:100%;
  4014. }
  4015. #u165549_text {
  4016. border-width:0px;
  4017. word-wrap:break-word;
  4018. text-transform:none;
  4019. visibility:hidden;
  4020. }
  4021. #u165550_div {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:0px;
  4025. top:0px;
  4026. width:135px;
  4027. height:30px;
  4028. background:inherit;
  4029. background-color:rgba(255, 255, 255, 0);
  4030. border:none;
  4031. border-left:0px;
  4032. border-top:0px;
  4033. border-right:0px;
  4034. border-radius:0px;
  4035. border-bottom-right-radius:0px;
  4036. border-bottom-left-radius:0px;
  4037. -moz-box-shadow:none;
  4038. -webkit-box-shadow:none;
  4039. box-shadow:none;
  4040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4041. font-weight:400;
  4042. font-style:normal;
  4043. font-size:18px;
  4044. line-height:30px;
  4045. }
  4046. #u165550 {
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:1891px;
  4050. top:706px;
  4051. width:135px;
  4052. height:30px;
  4053. display:flex;
  4054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4055. font-weight:400;
  4056. font-style:normal;
  4057. font-size:18px;
  4058. line-height:30px;
  4059. }
  4060. #u165550 .text {
  4061. position:absolute;
  4062. align-self:flex-start;
  4063. padding:0px 0px 0px 0px;
  4064. box-sizing:border-box;
  4065. width:100%;
  4066. }
  4067. #u165550_text {
  4068. border-width:0px;
  4069. white-space:nowrap;
  4070. text-transform:none;
  4071. }
  4072. #u165551 {
  4073. border-width:0px;
  4074. position:absolute;
  4075. left:1887px;
  4076. top:790px;
  4077. width:322px;
  4078. height:125px;
  4079. }
  4080. #u165552_img {
  4081. border-width:0px;
  4082. position:absolute;
  4083. left:0px;
  4084. top:0px;
  4085. width:64px;
  4086. height:25px;
  4087. }
  4088. #u165552 {
  4089. border-width:0px;
  4090. position:absolute;
  4091. left:0px;
  4092. top:0px;
  4093. width:64px;
  4094. height:25px;
  4095. display:flex;
  4096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4097. font-weight:400;
  4098. font-style:normal;
  4099. font-size:10px;
  4100. color:#FFFFFF;
  4101. }
  4102. #u165552 .text {
  4103. position:absolute;
  4104. align-self:center;
  4105. padding:2px 2px 2px 2px;
  4106. box-sizing:border-box;
  4107. width:100%;
  4108. }
  4109. #u165552_text {
  4110. border-width:0px;
  4111. word-wrap:break-word;
  4112. text-transform:none;
  4113. }
  4114. #u165553_img {
  4115. border-width:0px;
  4116. position:absolute;
  4117. left:0px;
  4118. top:0px;
  4119. width:64px;
  4120. height:25px;
  4121. }
  4122. #u165553 {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:64px;
  4126. top:0px;
  4127. width:64px;
  4128. height:25px;
  4129. display:flex;
  4130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4131. font-weight:400;
  4132. font-style:normal;
  4133. font-size:10px;
  4134. color:#FFFFFF;
  4135. }
  4136. #u165553 .text {
  4137. position:absolute;
  4138. align-self:center;
  4139. padding:2px 2px 2px 2px;
  4140. box-sizing:border-box;
  4141. width:100%;
  4142. }
  4143. #u165553_text {
  4144. border-width:0px;
  4145. word-wrap:break-word;
  4146. text-transform:none;
  4147. }
  4148. #u165554_img {
  4149. border-width:0px;
  4150. position:absolute;
  4151. left:0px;
  4152. top:0px;
  4153. width:64px;
  4154. height:25px;
  4155. }
  4156. #u165554 {
  4157. border-width:0px;
  4158. position:absolute;
  4159. left:128px;
  4160. top:0px;
  4161. width:64px;
  4162. height:25px;
  4163. display:flex;
  4164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4165. font-weight:400;
  4166. font-style:normal;
  4167. font-size:10px;
  4168. color:#FFFFFF;
  4169. }
  4170. #u165554 .text {
  4171. position:absolute;
  4172. align-self:center;
  4173. padding:2px 2px 2px 2px;
  4174. box-sizing:border-box;
  4175. width:100%;
  4176. }
  4177. #u165554_text {
  4178. border-width:0px;
  4179. word-wrap:break-word;
  4180. text-transform:none;
  4181. }
  4182. #u165555_img {
  4183. border-width:0px;
  4184. position:absolute;
  4185. left:0px;
  4186. top:0px;
  4187. width:64px;
  4188. height:25px;
  4189. }
  4190. #u165555 {
  4191. border-width:0px;
  4192. position:absolute;
  4193. left:192px;
  4194. top:0px;
  4195. width:64px;
  4196. height:25px;
  4197. display:flex;
  4198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4199. font-weight:400;
  4200. font-style:normal;
  4201. font-size:10px;
  4202. color:#FFFFFF;
  4203. }
  4204. #u165555 .text {
  4205. position:absolute;
  4206. align-self:center;
  4207. padding:2px 2px 2px 2px;
  4208. box-sizing:border-box;
  4209. width:100%;
  4210. }
  4211. #u165555_text {
  4212. border-width:0px;
  4213. word-wrap:break-word;
  4214. text-transform:none;
  4215. }
  4216. #u165556_img {
  4217. border-width:0px;
  4218. position:absolute;
  4219. left:0px;
  4220. top:0px;
  4221. width:66px;
  4222. height:25px;
  4223. }
  4224. #u165556 {
  4225. border-width:0px;
  4226. position:absolute;
  4227. left:256px;
  4228. top:0px;
  4229. width:66px;
  4230. height:25px;
  4231. display:flex;
  4232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4233. font-weight:400;
  4234. font-style:normal;
  4235. font-size:10px;
  4236. color:#FFFFFF;
  4237. }
  4238. #u165556 .text {
  4239. position:absolute;
  4240. align-self:center;
  4241. padding:2px 2px 2px 2px;
  4242. box-sizing:border-box;
  4243. width:100%;
  4244. }
  4245. #u165556_text {
  4246. border-width:0px;
  4247. word-wrap:break-word;
  4248. text-transform:none;
  4249. }
  4250. #u165557_img {
  4251. border-width:0px;
  4252. position:absolute;
  4253. left:0px;
  4254. top:0px;
  4255. width:64px;
  4256. height:25px;
  4257. }
  4258. #u165557 {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:0px;
  4262. top:25px;
  4263. width:64px;
  4264. height:25px;
  4265. display:flex;
  4266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4267. font-weight:400;
  4268. font-style:normal;
  4269. font-size:10px;
  4270. }
  4271. #u165557 .text {
  4272. position:absolute;
  4273. align-self:center;
  4274. padding:2px 2px 2px 2px;
  4275. box-sizing:border-box;
  4276. width:100%;
  4277. }
  4278. #u165557_text {
  4279. border-width:0px;
  4280. word-wrap:break-word;
  4281. text-transform:none;
  4282. }
  4283. #u165558_img {
  4284. border-width:0px;
  4285. position:absolute;
  4286. left:0px;
  4287. top:0px;
  4288. width:64px;
  4289. height:25px;
  4290. }
  4291. #u165558 {
  4292. border-width:0px;
  4293. position:absolute;
  4294. left:64px;
  4295. top:25px;
  4296. width:64px;
  4297. height:25px;
  4298. display:flex;
  4299. font-size:10px;
  4300. }
  4301. #u165558 .text {
  4302. position:absolute;
  4303. align-self:center;
  4304. padding:2px 2px 2px 2px;
  4305. box-sizing:border-box;
  4306. width:100%;
  4307. }
  4308. #u165558_text {
  4309. border-width:0px;
  4310. word-wrap:break-word;
  4311. text-transform:none;
  4312. }
  4313. #u165559_img {
  4314. border-width:0px;
  4315. position:absolute;
  4316. left:0px;
  4317. top:0px;
  4318. width:64px;
  4319. height:25px;
  4320. }
  4321. #u165559 {
  4322. border-width:0px;
  4323. position:absolute;
  4324. left:128px;
  4325. top:25px;
  4326. width:64px;
  4327. height:25px;
  4328. display:flex;
  4329. font-size:10px;
  4330. }
  4331. #u165559 .text {
  4332. position:absolute;
  4333. align-self:center;
  4334. padding:2px 2px 2px 2px;
  4335. box-sizing:border-box;
  4336. width:100%;
  4337. }
  4338. #u165559_text {
  4339. border-width:0px;
  4340. word-wrap:break-word;
  4341. text-transform:none;
  4342. }
  4343. #u165560_img {
  4344. border-width:0px;
  4345. position:absolute;
  4346. left:0px;
  4347. top:0px;
  4348. width:64px;
  4349. height:25px;
  4350. }
  4351. #u165560 {
  4352. border-width:0px;
  4353. position:absolute;
  4354. left:192px;
  4355. top:25px;
  4356. width:64px;
  4357. height:25px;
  4358. display:flex;
  4359. font-size:10px;
  4360. }
  4361. #u165560 .text {
  4362. position:absolute;
  4363. align-self:center;
  4364. padding:2px 2px 2px 2px;
  4365. box-sizing:border-box;
  4366. width:100%;
  4367. }
  4368. #u165560_text {
  4369. border-width:0px;
  4370. word-wrap:break-word;
  4371. text-transform:none;
  4372. }
  4373. #u165561_img {
  4374. border-width:0px;
  4375. position:absolute;
  4376. left:0px;
  4377. top:0px;
  4378. width:66px;
  4379. height:25px;
  4380. }
  4381. #u165561 {
  4382. border-width:0px;
  4383. position:absolute;
  4384. left:256px;
  4385. top:25px;
  4386. width:66px;
  4387. height:25px;
  4388. display:flex;
  4389. font-size:10px;
  4390. }
  4391. #u165561 .text {
  4392. position:absolute;
  4393. align-self:center;
  4394. padding:2px 2px 2px 2px;
  4395. box-sizing:border-box;
  4396. width:100%;
  4397. }
  4398. #u165561_text {
  4399. border-width:0px;
  4400. word-wrap:break-word;
  4401. text-transform:none;
  4402. }
  4403. #u165562_img {
  4404. border-width:0px;
  4405. position:absolute;
  4406. left:0px;
  4407. top:0px;
  4408. width:64px;
  4409. height:25px;
  4410. }
  4411. #u165562 {
  4412. border-width:0px;
  4413. position:absolute;
  4414. left:0px;
  4415. top:50px;
  4416. width:64px;
  4417. height:25px;
  4418. display:flex;
  4419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4420. font-weight:400;
  4421. font-style:normal;
  4422. font-size:10px;
  4423. }
  4424. #u165562 .text {
  4425. position:absolute;
  4426. align-self:center;
  4427. padding:2px 2px 2px 2px;
  4428. box-sizing:border-box;
  4429. width:100%;
  4430. }
  4431. #u165562_text {
  4432. border-width:0px;
  4433. word-wrap:break-word;
  4434. text-transform:none;
  4435. }
  4436. #u165563_img {
  4437. border-width:0px;
  4438. position:absolute;
  4439. left:0px;
  4440. top:0px;
  4441. width:64px;
  4442. height:25px;
  4443. }
  4444. #u165563 {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:64px;
  4448. top:50px;
  4449. width:64px;
  4450. height:25px;
  4451. display:flex;
  4452. font-size:10px;
  4453. }
  4454. #u165563 .text {
  4455. position:absolute;
  4456. align-self:center;
  4457. padding:2px 2px 2px 2px;
  4458. box-sizing:border-box;
  4459. width:100%;
  4460. }
  4461. #u165563_text {
  4462. border-width:0px;
  4463. word-wrap:break-word;
  4464. text-transform:none;
  4465. }
  4466. #u165564_img {
  4467. border-width:0px;
  4468. position:absolute;
  4469. left:0px;
  4470. top:0px;
  4471. width:64px;
  4472. height:25px;
  4473. }
  4474. #u165564 {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:128px;
  4478. top:50px;
  4479. width:64px;
  4480. height:25px;
  4481. display:flex;
  4482. font-size:10px;
  4483. }
  4484. #u165564 .text {
  4485. position:absolute;
  4486. align-self:center;
  4487. padding:2px 2px 2px 2px;
  4488. box-sizing:border-box;
  4489. width:100%;
  4490. }
  4491. #u165564_text {
  4492. border-width:0px;
  4493. word-wrap:break-word;
  4494. text-transform:none;
  4495. }
  4496. #u165565_img {
  4497. border-width:0px;
  4498. position:absolute;
  4499. left:0px;
  4500. top:0px;
  4501. width:64px;
  4502. height:25px;
  4503. }
  4504. #u165565 {
  4505. border-width:0px;
  4506. position:absolute;
  4507. left:192px;
  4508. top:50px;
  4509. width:64px;
  4510. height:25px;
  4511. display:flex;
  4512. font-size:10px;
  4513. }
  4514. #u165565 .text {
  4515. position:absolute;
  4516. align-self:center;
  4517. padding:2px 2px 2px 2px;
  4518. box-sizing:border-box;
  4519. width:100%;
  4520. }
  4521. #u165565_text {
  4522. border-width:0px;
  4523. word-wrap:break-word;
  4524. text-transform:none;
  4525. }
  4526. #u165566_img {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:0px;
  4530. top:0px;
  4531. width:66px;
  4532. height:25px;
  4533. }
  4534. #u165566 {
  4535. border-width:0px;
  4536. position:absolute;
  4537. left:256px;
  4538. top:50px;
  4539. width:66px;
  4540. height:25px;
  4541. display:flex;
  4542. font-size:10px;
  4543. }
  4544. #u165566 .text {
  4545. position:absolute;
  4546. align-self:center;
  4547. padding:2px 2px 2px 2px;
  4548. box-sizing:border-box;
  4549. width:100%;
  4550. }
  4551. #u165566_text {
  4552. border-width:0px;
  4553. word-wrap:break-word;
  4554. text-transform:none;
  4555. }
  4556. #u165567_img {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:0px;
  4560. top:0px;
  4561. width:64px;
  4562. height:25px;
  4563. }
  4564. #u165567 {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:0px;
  4568. top:75px;
  4569. width:64px;
  4570. height:25px;
  4571. display:flex;
  4572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4573. font-weight:400;
  4574. font-style:normal;
  4575. font-size:10px;
  4576. }
  4577. #u165567 .text {
  4578. position:absolute;
  4579. align-self:center;
  4580. padding:2px 2px 2px 2px;
  4581. box-sizing:border-box;
  4582. width:100%;
  4583. }
  4584. #u165567_text {
  4585. border-width:0px;
  4586. word-wrap:break-word;
  4587. text-transform:none;
  4588. }
  4589. #u165568_img {
  4590. border-width:0px;
  4591. position:absolute;
  4592. left:0px;
  4593. top:0px;
  4594. width:64px;
  4595. height:25px;
  4596. }
  4597. #u165568 {
  4598. border-width:0px;
  4599. position:absolute;
  4600. left:64px;
  4601. top:75px;
  4602. width:64px;
  4603. height:25px;
  4604. display:flex;
  4605. font-size:10px;
  4606. }
  4607. #u165568 .text {
  4608. position:absolute;
  4609. align-self:center;
  4610. padding:2px 2px 2px 2px;
  4611. box-sizing:border-box;
  4612. width:100%;
  4613. }
  4614. #u165568_text {
  4615. border-width:0px;
  4616. word-wrap:break-word;
  4617. text-transform:none;
  4618. }
  4619. #u165569_img {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:0px;
  4623. top:0px;
  4624. width:64px;
  4625. height:25px;
  4626. }
  4627. #u165569 {
  4628. border-width:0px;
  4629. position:absolute;
  4630. left:128px;
  4631. top:75px;
  4632. width:64px;
  4633. height:25px;
  4634. display:flex;
  4635. font-size:10px;
  4636. }
  4637. #u165569 .text {
  4638. position:absolute;
  4639. align-self:center;
  4640. padding:2px 2px 2px 2px;
  4641. box-sizing:border-box;
  4642. width:100%;
  4643. }
  4644. #u165569_text {
  4645. border-width:0px;
  4646. word-wrap:break-word;
  4647. text-transform:none;
  4648. }
  4649. #u165570_img {
  4650. border-width:0px;
  4651. position:absolute;
  4652. left:0px;
  4653. top:0px;
  4654. width:64px;
  4655. height:25px;
  4656. }
  4657. #u165570 {
  4658. border-width:0px;
  4659. position:absolute;
  4660. left:192px;
  4661. top:75px;
  4662. width:64px;
  4663. height:25px;
  4664. display:flex;
  4665. font-size:10px;
  4666. }
  4667. #u165570 .text {
  4668. position:absolute;
  4669. align-self:center;
  4670. padding:2px 2px 2px 2px;
  4671. box-sizing:border-box;
  4672. width:100%;
  4673. }
  4674. #u165570_text {
  4675. border-width:0px;
  4676. word-wrap:break-word;
  4677. text-transform:none;
  4678. }
  4679. #u165571_img {
  4680. border-width:0px;
  4681. position:absolute;
  4682. left:0px;
  4683. top:0px;
  4684. width:66px;
  4685. height:25px;
  4686. }
  4687. #u165571 {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:256px;
  4691. top:75px;
  4692. width:66px;
  4693. height:25px;
  4694. display:flex;
  4695. font-size:10px;
  4696. }
  4697. #u165571 .text {
  4698. position:absolute;
  4699. align-self:center;
  4700. padding:2px 2px 2px 2px;
  4701. box-sizing:border-box;
  4702. width:100%;
  4703. }
  4704. #u165571_text {
  4705. border-width:0px;
  4706. word-wrap:break-word;
  4707. text-transform:none;
  4708. }
  4709. #u165572_img {
  4710. border-width:0px;
  4711. position:absolute;
  4712. left:0px;
  4713. top:0px;
  4714. width:64px;
  4715. height:25px;
  4716. }
  4717. #u165572 {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:0px;
  4721. top:100px;
  4722. width:64px;
  4723. height:25px;
  4724. display:flex;
  4725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4726. font-weight:400;
  4727. font-style:normal;
  4728. font-size:10px;
  4729. }
  4730. #u165572 .text {
  4731. position:absolute;
  4732. align-self:center;
  4733. padding:2px 2px 2px 2px;
  4734. box-sizing:border-box;
  4735. width:100%;
  4736. }
  4737. #u165572_text {
  4738. border-width:0px;
  4739. word-wrap:break-word;
  4740. text-transform:none;
  4741. }
  4742. #u165573_img {
  4743. border-width:0px;
  4744. position:absolute;
  4745. left:0px;
  4746. top:0px;
  4747. width:64px;
  4748. height:25px;
  4749. }
  4750. #u165573 {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:64px;
  4754. top:100px;
  4755. width:64px;
  4756. height:25px;
  4757. display:flex;
  4758. font-size:10px;
  4759. }
  4760. #u165573 .text {
  4761. position:absolute;
  4762. align-self:center;
  4763. padding:2px 2px 2px 2px;
  4764. box-sizing:border-box;
  4765. width:100%;
  4766. }
  4767. #u165573_text {
  4768. border-width:0px;
  4769. word-wrap:break-word;
  4770. text-transform:none;
  4771. }
  4772. #u165574_img {
  4773. border-width:0px;
  4774. position:absolute;
  4775. left:0px;
  4776. top:0px;
  4777. width:64px;
  4778. height:25px;
  4779. }
  4780. #u165574 {
  4781. border-width:0px;
  4782. position:absolute;
  4783. left:128px;
  4784. top:100px;
  4785. width:64px;
  4786. height:25px;
  4787. display:flex;
  4788. font-size:10px;
  4789. }
  4790. #u165574 .text {
  4791. position:absolute;
  4792. align-self:center;
  4793. padding:2px 2px 2px 2px;
  4794. box-sizing:border-box;
  4795. width:100%;
  4796. }
  4797. #u165574_text {
  4798. border-width:0px;
  4799. word-wrap:break-word;
  4800. text-transform:none;
  4801. }
  4802. #u165575_img {
  4803. border-width:0px;
  4804. position:absolute;
  4805. left:0px;
  4806. top:0px;
  4807. width:64px;
  4808. height:25px;
  4809. }
  4810. #u165575 {
  4811. border-width:0px;
  4812. position:absolute;
  4813. left:192px;
  4814. top:100px;
  4815. width:64px;
  4816. height:25px;
  4817. display:flex;
  4818. font-size:10px;
  4819. }
  4820. #u165575 .text {
  4821. position:absolute;
  4822. align-self:center;
  4823. padding:2px 2px 2px 2px;
  4824. box-sizing:border-box;
  4825. width:100%;
  4826. }
  4827. #u165575_text {
  4828. border-width:0px;
  4829. word-wrap:break-word;
  4830. text-transform:none;
  4831. }
  4832. #u165576_img {
  4833. border-width:0px;
  4834. position:absolute;
  4835. left:0px;
  4836. top:0px;
  4837. width:66px;
  4838. height:25px;
  4839. }
  4840. #u165576 {
  4841. border-width:0px;
  4842. position:absolute;
  4843. left:256px;
  4844. top:100px;
  4845. width:66px;
  4846. height:25px;
  4847. display:flex;
  4848. font-size:10px;
  4849. }
  4850. #u165576 .text {
  4851. position:absolute;
  4852. align-self:center;
  4853. padding:2px 2px 2px 2px;
  4854. box-sizing:border-box;
  4855. width:100%;
  4856. }
  4857. #u165576_text {
  4858. border-width:0px;
  4859. word-wrap:break-word;
  4860. text-transform:none;
  4861. }
  4862. #u165577 {
  4863. border-width:0px;
  4864. position:absolute;
  4865. left:0px;
  4866. top:0px;
  4867. width:0px;
  4868. height:0px;
  4869. }
  4870. #u165578_div {
  4871. border-width:0px;
  4872. position:absolute;
  4873. left:0px;
  4874. top:0px;
  4875. width:323px;
  4876. height:40px;
  4877. background:inherit;
  4878. background-color:rgba(242, 242, 242, 1);
  4879. border:none;
  4880. border-radius:4px;
  4881. -moz-box-shadow:none;
  4882. -webkit-box-shadow:none;
  4883. box-shadow:none;
  4884. }
  4885. #u165578 {
  4886. border-width:0px;
  4887. position:absolute;
  4888. left:1886px;
  4889. top:741px;
  4890. width:323px;
  4891. height:40px;
  4892. display:flex;
  4893. }
  4894. #u165578 .text {
  4895. position:absolute;
  4896. align-self:center;
  4897. padding:2px 2px 2px 2px;
  4898. box-sizing:border-box;
  4899. width:100%;
  4900. }
  4901. #u165578_text {
  4902. border-width:0px;
  4903. word-wrap:break-word;
  4904. text-transform:none;
  4905. visibility:hidden;
  4906. }
  4907. #u165579_div {
  4908. border-width:0px;
  4909. position:absolute;
  4910. left:0px;
  4911. top:0px;
  4912. width:201px;
  4913. height:30px;
  4914. background:inherit;
  4915. background-color:rgba(255, 255, 255, 0);
  4916. border:none;
  4917. border-left:0px;
  4918. border-top:0px;
  4919. border-right:0px;
  4920. border-radius:0px;
  4921. border-bottom-right-radius:0px;
  4922. border-bottom-left-radius:0px;
  4923. -moz-box-shadow:none;
  4924. -webkit-box-shadow:none;
  4925. box-shadow:none;
  4926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4927. font-weight:400;
  4928. font-style:normal;
  4929. font-size:14px;
  4930. color:#AAAAAA;
  4931. line-height:30px;
  4932. }
  4933. #u165579 {
  4934. border-width:0px;
  4935. position:absolute;
  4936. left:1901px;
  4937. top:746px;
  4938. width:201px;
  4939. height:30px;
  4940. display:flex;
  4941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4942. font-weight:400;
  4943. font-style:normal;
  4944. font-size:14px;
  4945. color:#AAAAAA;
  4946. line-height:30px;
  4947. }
  4948. #u165579 .text {
  4949. position:absolute;
  4950. align-self:flex-start;
  4951. padding:0px 0px 0px 0px;
  4952. box-sizing:border-box;
  4953. width:100%;
  4954. }
  4955. #u165579_text {
  4956. border-width:0px;
  4957. white-space:nowrap;
  4958. text-transform:none;
  4959. }
  4960. #u165580_div {
  4961. border-width:0px;
  4962. position:absolute;
  4963. left:0px;
  4964. top:0px;
  4965. width:71px;
  4966. height:90px;
  4967. background:inherit;
  4968. background-color:rgba(255, 255, 255, 0);
  4969. border:none;
  4970. border-left:0px;
  4971. border-top:0px;
  4972. border-right:0px;
  4973. border-radius:0px;
  4974. border-bottom-right-radius:0px;
  4975. border-bottom-left-radius:0px;
  4976. -moz-box-shadow:none;
  4977. -webkit-box-shadow:none;
  4978. box-shadow:none;
  4979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4980. font-weight:400;
  4981. font-style:normal;
  4982. font-size:14px;
  4983. line-height:30px;
  4984. }
  4985. #u165580 {
  4986. border-width:0px;
  4987. position:absolute;
  4988. left:1887px;
  4989. top:941px;
  4990. width:71px;
  4991. height:90px;
  4992. display:flex;
  4993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4994. font-weight:400;
  4995. font-style:normal;
  4996. font-size:14px;
  4997. line-height:30px;
  4998. }
  4999. #u165580 .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. #u165580_text {
  5007. border-width:0px;
  5008. white-space:nowrap;
  5009. text-transform:none;
  5010. }
  5011. #u165581_div {
  5012. border-width:0px;
  5013. position:absolute;
  5014. left:0px;
  5015. top:0px;
  5016. width:52px;
  5017. height:90px;
  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:14px;
  5034. text-align:right;
  5035. line-height:30px;
  5036. }
  5037. #u165581 {
  5038. border-width:0px;
  5039. position:absolute;
  5040. left:2172px;
  5041. top:941px;
  5042. width:52px;
  5043. height:90px;
  5044. display:flex;
  5045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5046. font-weight:400;
  5047. font-style:normal;
  5048. font-size:14px;
  5049. text-align:right;
  5050. line-height:30px;
  5051. }
  5052. #u165581 .text {
  5053. position:absolute;
  5054. align-self:flex-start;
  5055. padding:0px 0px 0px 0px;
  5056. box-sizing:border-box;
  5057. width:100%;
  5058. }
  5059. #u165581_text {
  5060. border-width:0px;
  5061. white-space:nowrap;
  5062. text-transform:none;
  5063. }
  5064. #u165582_div {
  5065. border-width:0px;
  5066. position:absolute;
  5067. left:0px;
  5068. top:0px;
  5069. width:375px;
  5070. height:40px;
  5071. background:inherit;
  5072. background-color:rgba(24, 144, 255, 0.0470588235294118);
  5073. border:none;
  5074. border-left:0px;
  5075. border-top:0px;
  5076. border-right:0px;
  5077. border-radius:0px;
  5078. border-bottom-right-radius:0px;
  5079. border-bottom-left-radius:0px;
  5080. -moz-box-shadow:none;
  5081. -webkit-box-shadow:none;
  5082. box-shadow:none;
  5083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5084. font-weight:400;
  5085. font-style:normal;
  5086. text-align:right;
  5087. line-height:30px;
  5088. }
  5089. #u165582 {
  5090. border-width:0px;
  5091. position:absolute;
  5092. left:1863px;
  5093. top:1036px;
  5094. width:375px;
  5095. height:40px;
  5096. display:flex;
  5097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5098. font-weight:400;
  5099. font-style:normal;
  5100. text-align:right;
  5101. line-height:30px;
  5102. }
  5103. #u165582 .text {
  5104. position:absolute;
  5105. align-self:center;
  5106. padding:0px 20px 0px 20px;
  5107. box-sizing:border-box;
  5108. width:100%;
  5109. }
  5110. #u165582_text {
  5111. border-width:0px;
  5112. word-wrap:break-word;
  5113. text-transform:none;
  5114. }
  5115. #u165583 {
  5116. border-width:0px;
  5117. position:absolute;
  5118. left:0px;
  5119. top:0px;
  5120. width:0px;
  5121. height:0px;
  5122. }
  5123. #u165584_div {
  5124. border-width:0px;
  5125. position:absolute;
  5126. left:0px;
  5127. top:0px;
  5128. width:62px;
  5129. height:30px;
  5130. background:inherit;
  5131. background-color:rgba(255, 255, 255, 0);
  5132. border:none;
  5133. border-radius:0px;
  5134. -moz-box-shadow:none;
  5135. -webkit-box-shadow:none;
  5136. box-shadow:none;
  5137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5138. font-weight:400;
  5139. font-style:normal;
  5140. font-size:14px;
  5141. line-height:30px;
  5142. }
  5143. #u165584 {
  5144. border-width:0px;
  5145. position:absolute;
  5146. left:1673px;
  5147. top:706px;
  5148. width:62px;
  5149. height:30px;
  5150. display:flex;
  5151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5152. font-weight:400;
  5153. font-style:normal;
  5154. font-size:14px;
  5155. line-height:30px;
  5156. }
  5157. #u165584 .text {
  5158. position:absolute;
  5159. align-self:flex-start;
  5160. padding:0px 0px 0px 0px;
  5161. box-sizing:border-box;
  5162. width:100%;
  5163. }
  5164. #u165584_text {
  5165. border-width:0px;
  5166. white-space:nowrap;
  5167. text-transform:none;
  5168. }
  5169. #u165585_img {
  5170. border-width:0px;
  5171. position:absolute;
  5172. left:0px;
  5173. top:0px;
  5174. width:12px;
  5175. height:7px;
  5176. }
  5177. #u165585 {
  5178. border-width:0px;
  5179. position:absolute;
  5180. left:1738px;
  5181. top:718px;
  5182. width:12px;
  5183. height:7px;
  5184. display:flex;
  5185. -webkit-transform:rotate(180deg);
  5186. -moz-transform:rotate(180deg);
  5187. -ms-transform:rotate(180deg);
  5188. transform:rotate(180deg);
  5189. }
  5190. #u165585 .text {
  5191. position:absolute;
  5192. align-self:center;
  5193. padding:2px 2px 2px 2px;
  5194. box-sizing:border-box;
  5195. width:100%;
  5196. }
  5197. #u165585_text {
  5198. border-width:0px;
  5199. word-wrap:break-word;
  5200. text-transform:none;
  5201. visibility:hidden;
  5202. }
  5203. #u165586 {
  5204. border-width:0px;
  5205. position:absolute;
  5206. left:0px;
  5207. top:0px;
  5208. width:0px;
  5209. height:0px;
  5210. }
  5211. #u165587_div {
  5212. border-width:0px;
  5213. position:absolute;
  5214. left:0px;
  5215. top:0px;
  5216. width:62px;
  5217. height:30px;
  5218. background:inherit;
  5219. background-color:rgba(255, 255, 255, 0);
  5220. border:none;
  5221. border-radius:0px;
  5222. -moz-box-shadow:none;
  5223. -webkit-box-shadow:none;
  5224. box-shadow:none;
  5225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5226. font-weight:400;
  5227. font-style:normal;
  5228. font-size:14px;
  5229. line-height:30px;
  5230. }
  5231. #u165587 {
  5232. border-width:0px;
  5233. position:absolute;
  5234. left:2132px;
  5235. top:706px;
  5236. width:62px;
  5237. height:30px;
  5238. display:flex;
  5239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5240. font-weight:400;
  5241. font-style:normal;
  5242. font-size:14px;
  5243. line-height:30px;
  5244. }
  5245. #u165587 .text {
  5246. position:absolute;
  5247. align-self:flex-start;
  5248. padding:0px 0px 0px 0px;
  5249. box-sizing:border-box;
  5250. width:100%;
  5251. }
  5252. #u165587_text {
  5253. border-width:0px;
  5254. white-space:nowrap;
  5255. text-transform:none;
  5256. }
  5257. #u165588_img {
  5258. border-width:0px;
  5259. position:absolute;
  5260. left:0px;
  5261. top:0px;
  5262. width:12px;
  5263. height:7px;
  5264. }
  5265. #u165588 {
  5266. border-width:0px;
  5267. position:absolute;
  5268. left:2197px;
  5269. top:718px;
  5270. width:12px;
  5271. height:7px;
  5272. display:flex;
  5273. }
  5274. #u165588 .text {
  5275. position:absolute;
  5276. align-self:center;
  5277. padding:2px 2px 2px 2px;
  5278. box-sizing:border-box;
  5279. width:100%;
  5280. }
  5281. #u165588_text {
  5282. border-width:0px;
  5283. word-wrap:break-word;
  5284. text-transform:none;
  5285. visibility:hidden;
  5286. }
  5287. #u165589 {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:0px;
  5291. top:0px;
  5292. width:0px;
  5293. height:0px;
  5294. }
  5295. #u165590_div {
  5296. border-width:0px;
  5297. position:absolute;
  5298. left:0px;
  5299. top:0px;
  5300. width:375px;
  5301. height:50px;
  5302. background:inherit;
  5303. background-color:rgba(255, 255, 255, 1);
  5304. border:none;
  5305. border-top:0px;
  5306. border-radius:0px;
  5307. border-top-left-radius:0px;
  5308. border-top-right-radius:0px;
  5309. -moz-box-shadow:none;
  5310. -webkit-box-shadow:none;
  5311. box-shadow:none;
  5312. }
  5313. #u165590 {
  5314. border-width:0px;
  5315. position:absolute;
  5316. left:1409px;
  5317. top:1006px;
  5318. width:375px;
  5319. height:50px;
  5320. display:flex;
  5321. }
  5322. #u165590 .text {
  5323. position:absolute;
  5324. align-self:center;
  5325. padding:2px 2px 2px 2px;
  5326. box-sizing:border-box;
  5327. width:100%;
  5328. }
  5329. #u165590_text {
  5330. border-width:0px;
  5331. word-wrap:break-word;
  5332. text-transform:none;
  5333. visibility:hidden;
  5334. }
  5335. #u165591_div {
  5336. border-width:0px;
  5337. position:absolute;
  5338. left:0px;
  5339. top:0px;
  5340. width:256px;
  5341. height:25px;
  5342. background:inherit;
  5343. background-color:rgba(255, 255, 255, 0);
  5344. border:none;
  5345. border-left:0px;
  5346. border-top:0px;
  5347. border-right:0px;
  5348. border-radius:0px;
  5349. border-bottom-right-radius:0px;
  5350. border-bottom-left-radius:0px;
  5351. -moz-box-shadow:none;
  5352. -webkit-box-shadow:none;
  5353. box-shadow:none;
  5354. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5355. font-style:normal;
  5356. line-height:25px;
  5357. }
  5358. #u165591 {
  5359. border-width:0px;
  5360. position:absolute;
  5361. left:1426px;
  5362. top:1018px;
  5363. width:256px;
  5364. height:25px;
  5365. display:flex;
  5366. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5367. font-style:normal;
  5368. line-height:25px;
  5369. }
  5370. #u165591 .text {
  5371. position:absolute;
  5372. align-self:flex-start;
  5373. padding:0px 0px 0px 0px;
  5374. box-sizing:border-box;
  5375. width:100%;
  5376. }
  5377. #u165591_text {
  5378. border-width:0px;
  5379. white-space:nowrap;
  5380. text-transform:none;
  5381. }
  5382. #u165592 {
  5383. border-width:0px;
  5384. position:absolute;
  5385. left:0px;
  5386. top:0px;
  5387. width:0px;
  5388. height:0px;
  5389. }
  5390. #u165593_div {
  5391. border-width:0px;
  5392. position:absolute;
  5393. left:0px;
  5394. top:0px;
  5395. width:57px;
  5396. height:30px;
  5397. background:inherit;
  5398. background-color:rgba(255, 255, 255, 0);
  5399. border:none;
  5400. border-radius:0px;
  5401. -moz-box-shadow:none;
  5402. -webkit-box-shadow:none;
  5403. box-shadow:none;
  5404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5405. font-weight:400;
  5406. font-style:normal;
  5407. font-size:14px;
  5408. color:#298FFF;
  5409. line-height:30px;
  5410. }
  5411. #u165593 {
  5412. border-width:0px;
  5413. position:absolute;
  5414. left:1686px;
  5415. top:1015px;
  5416. width:57px;
  5417. height:30px;
  5418. display:flex;
  5419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5420. font-weight:400;
  5421. font-style:normal;
  5422. font-size:14px;
  5423. color:#298FFF;
  5424. line-height:30px;
  5425. }
  5426. #u165593 .text {
  5427. position:absolute;
  5428. align-self:flex-start;
  5429. padding:0px 0px 0px 0px;
  5430. box-sizing:border-box;
  5431. width:100%;
  5432. }
  5433. #u165593_text {
  5434. border-width:0px;
  5435. white-space:nowrap;
  5436. text-transform:none;
  5437. }
  5438. #u165594_img {
  5439. border-width:0px;
  5440. position:absolute;
  5441. left:0px;
  5442. top:0px;
  5443. width:12px;
  5444. height:7px;
  5445. }
  5446. #u165594 {
  5447. border-width:0px;
  5448. position:absolute;
  5449. left:1751px;
  5450. top:1027px;
  5451. width:12px;
  5452. height:7px;
  5453. display:flex;
  5454. -webkit-transform:rotate(180deg);
  5455. -moz-transform:rotate(180deg);
  5456. -ms-transform:rotate(180deg);
  5457. transform:rotate(180deg);
  5458. }
  5459. #u165594 .text {
  5460. position:absolute;
  5461. align-self:center;
  5462. padding:2px 2px 2px 2px;
  5463. box-sizing:border-box;
  5464. width:100%;
  5465. }
  5466. #u165594_text {
  5467. border-width:0px;
  5468. word-wrap:break-word;
  5469. text-transform:none;
  5470. visibility:hidden;
  5471. }
  5472. #u165595 {
  5473. border-width:0px;
  5474. position:absolute;
  5475. left:0px;
  5476. top:0px;
  5477. width:0px;
  5478. height:0px;
  5479. }
  5480. #u165596_div {
  5481. border-width:0px;
  5482. position:absolute;
  5483. left:0px;
  5484. top:0px;
  5485. width:375px;
  5486. height:50px;
  5487. background:inherit;
  5488. background-color:rgba(255, 255, 255, 1);
  5489. border:none;
  5490. border-top:0px;
  5491. border-radius:0px;
  5492. border-top-left-radius:0px;
  5493. border-top-right-radius:0px;
  5494. -moz-box-shadow:none;
  5495. -webkit-box-shadow:none;
  5496. box-shadow:none;
  5497. }
  5498. #u165596 {
  5499. border-width:0px;
  5500. position:absolute;
  5501. left:1409px;
  5502. top:955px;
  5503. width:375px;
  5504. height:50px;
  5505. display:flex;
  5506. }
  5507. #u165596 .text {
  5508. position:absolute;
  5509. align-self:center;
  5510. padding:2px 2px 2px 2px;
  5511. box-sizing:border-box;
  5512. width:100%;
  5513. }
  5514. #u165596_text {
  5515. border-width:0px;
  5516. word-wrap:break-word;
  5517. text-transform:none;
  5518. visibility:hidden;
  5519. }
  5520. #u165597_div {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:0px;
  5524. top:0px;
  5525. width:57px;
  5526. height:25px;
  5527. background:inherit;
  5528. background-color:rgba(255, 255, 255, 0);
  5529. border:none;
  5530. border-left:0px;
  5531. border-top:0px;
  5532. border-right:0px;
  5533. border-radius:0px;
  5534. border-bottom-right-radius:0px;
  5535. border-bottom-left-radius:0px;
  5536. -moz-box-shadow:none;
  5537. -webkit-box-shadow:none;
  5538. box-shadow:none;
  5539. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5540. font-weight:500;
  5541. font-style:normal;
  5542. font-size:14px;
  5543. line-height:25px;
  5544. }
  5545. #u165597 {
  5546. border-width:0px;
  5547. position:absolute;
  5548. left:1426px;
  5549. top:967px;
  5550. width:57px;
  5551. height:25px;
  5552. display:flex;
  5553. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5554. font-weight:500;
  5555. font-style:normal;
  5556. font-size:14px;
  5557. line-height:25px;
  5558. }
  5559. #u165597 .text {
  5560. position:absolute;
  5561. align-self:flex-start;
  5562. padding:0px 0px 0px 0px;
  5563. box-sizing:border-box;
  5564. width:100%;
  5565. }
  5566. #u165597_text {
  5567. border-width:0px;
  5568. white-space:nowrap;
  5569. text-transform:none;
  5570. }
  5571. #u165598 {
  5572. border-width:0px;
  5573. position:absolute;
  5574. left:0px;
  5575. top:0px;
  5576. width:0px;
  5577. height:0px;
  5578. }
  5579. #u165599_div {
  5580. border-width:0px;
  5581. position:absolute;
  5582. left:0px;
  5583. top:0px;
  5584. width:43px;
  5585. height:30px;
  5586. background:inherit;
  5587. background-color:rgba(255, 255, 255, 0);
  5588. border:none;
  5589. border-radius:0px;
  5590. -moz-box-shadow:none;
  5591. -webkit-box-shadow:none;
  5592. box-shadow:none;
  5593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5594. font-weight:400;
  5595. font-style:normal;
  5596. font-size:14px;
  5597. color:#298FFF;
  5598. text-align:right;
  5599. line-height:30px;
  5600. }
  5601. #u165599 {
  5602. border-width:0px;
  5603. position:absolute;
  5604. left:1697px;
  5605. top:965px;
  5606. width:43px;
  5607. height:30px;
  5608. display:flex;
  5609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5610. font-weight:400;
  5611. font-style:normal;
  5612. font-size:14px;
  5613. color:#298FFF;
  5614. text-align:right;
  5615. line-height:30px;
  5616. }
  5617. #u165599 .text {
  5618. position:absolute;
  5619. align-self:flex-start;
  5620. padding:0px 0px 0px 0px;
  5621. box-sizing:border-box;
  5622. width:100%;
  5623. }
  5624. #u165599_text {
  5625. border-width:0px;
  5626. white-space:nowrap;
  5627. text-transform:none;
  5628. }
  5629. #u165600_img {
  5630. border-width:0px;
  5631. position:absolute;
  5632. left:0px;
  5633. top:0px;
  5634. width:12px;
  5635. height:7px;
  5636. }
  5637. #u165600 {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:1748px;
  5641. top:977px;
  5642. width:12px;
  5643. height:7px;
  5644. display:flex;
  5645. -webkit-transform:rotate(180deg);
  5646. -moz-transform:rotate(180deg);
  5647. -ms-transform:rotate(180deg);
  5648. transform:rotate(180deg);
  5649. }
  5650. #u165600 .text {
  5651. position:absolute;
  5652. align-self:center;
  5653. padding:2px 2px 2px 2px;
  5654. box-sizing:border-box;
  5655. width:100%;
  5656. }
  5657. #u165600_text {
  5658. border-width:0px;
  5659. word-wrap:break-word;
  5660. text-transform:none;
  5661. visibility:hidden;
  5662. }
  5663. #u165601 {
  5664. border-width:0px;
  5665. position:absolute;
  5666. left:0px;
  5667. top:0px;
  5668. width:0px;
  5669. height:0px;
  5670. }
  5671. #u165602_div {
  5672. border-width:0px;
  5673. position:absolute;
  5674. left:0px;
  5675. top:0px;
  5676. width:375px;
  5677. height:120px;
  5678. background:inherit;
  5679. background-color:rgba(255, 255, 255, 1);
  5680. border:none;
  5681. border-top:0px;
  5682. border-radius:0px;
  5683. border-top-left-radius:0px;
  5684. border-top-right-radius:0px;
  5685. -moz-box-shadow:none;
  5686. -webkit-box-shadow:none;
  5687. box-shadow:none;
  5688. }
  5689. #u165602 {
  5690. border-width:0px;
  5691. position:absolute;
  5692. left:1863px;
  5693. top:1207px;
  5694. width:375px;
  5695. height:120px;
  5696. display:flex;
  5697. }
  5698. #u165602 .text {
  5699. position:absolute;
  5700. align-self:center;
  5701. padding:2px 2px 2px 2px;
  5702. box-sizing:border-box;
  5703. width:100%;
  5704. }
  5705. #u165602_text {
  5706. border-width:0px;
  5707. word-wrap:break-word;
  5708. text-transform:none;
  5709. visibility:hidden;
  5710. }
  5711. #u165603_div {
  5712. border-width:0px;
  5713. position:absolute;
  5714. left:0px;
  5715. top:0px;
  5716. width:256px;
  5717. height:25px;
  5718. background:inherit;
  5719. background-color:rgba(255, 255, 255, 0);
  5720. border:none;
  5721. border-left:0px;
  5722. border-top:0px;
  5723. border-right:0px;
  5724. border-radius:0px;
  5725. border-bottom-right-radius:0px;
  5726. border-bottom-left-radius:0px;
  5727. -moz-box-shadow:none;
  5728. -webkit-box-shadow:none;
  5729. box-shadow:none;
  5730. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5731. font-style:normal;
  5732. line-height:25px;
  5733. }
  5734. #u165603 {
  5735. border-width:0px;
  5736. position:absolute;
  5737. left:1880px;
  5738. top:1219px;
  5739. width:256px;
  5740. height:25px;
  5741. display:flex;
  5742. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5743. font-style:normal;
  5744. line-height:25px;
  5745. }
  5746. #u165603 .text {
  5747. position:absolute;
  5748. align-self:flex-start;
  5749. padding:0px 0px 0px 0px;
  5750. box-sizing:border-box;
  5751. width:100%;
  5752. }
  5753. #u165603_text {
  5754. border-width:0px;
  5755. white-space:nowrap;
  5756. text-transform:none;
  5757. }
  5758. #u165604 {
  5759. border-width:0px;
  5760. position:absolute;
  5761. left:0px;
  5762. top:0px;
  5763. width:0px;
  5764. height:0px;
  5765. }
  5766. #u165605_div {
  5767. border-width:0px;
  5768. position:absolute;
  5769. left:0px;
  5770. top:0px;
  5771. width:57px;
  5772. height:30px;
  5773. background:inherit;
  5774. background-color:rgba(255, 255, 255, 0);
  5775. border:none;
  5776. border-radius:0px;
  5777. -moz-box-shadow:none;
  5778. -webkit-box-shadow:none;
  5779. box-shadow:none;
  5780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5781. font-weight:400;
  5782. font-style:normal;
  5783. font-size:14px;
  5784. color:#298FFF;
  5785. line-height:30px;
  5786. }
  5787. #u165605 {
  5788. border-width:0px;
  5789. position:absolute;
  5790. left:2140px;
  5791. top:1216px;
  5792. width:57px;
  5793. height:30px;
  5794. display:flex;
  5795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5796. font-weight:400;
  5797. font-style:normal;
  5798. font-size:14px;
  5799. color:#298FFF;
  5800. line-height:30px;
  5801. }
  5802. #u165605 .text {
  5803. position:absolute;
  5804. align-self:flex-start;
  5805. padding:0px 0px 0px 0px;
  5806. box-sizing:border-box;
  5807. width:100%;
  5808. }
  5809. #u165605_text {
  5810. border-width:0px;
  5811. white-space:nowrap;
  5812. text-transform:none;
  5813. }
  5814. #u165606_img {
  5815. border-width:0px;
  5816. position:absolute;
  5817. left:0px;
  5818. top:0px;
  5819. width:12px;
  5820. height:7px;
  5821. }
  5822. #u165606 {
  5823. border-width:0px;
  5824. position:absolute;
  5825. left:2205px;
  5826. top:1228px;
  5827. width:12px;
  5828. height:7px;
  5829. display:flex;
  5830. }
  5831. #u165606 .text {
  5832. position:absolute;
  5833. align-self:center;
  5834. padding:2px 2px 2px 2px;
  5835. box-sizing:border-box;
  5836. width:100%;
  5837. }
  5838. #u165606_text {
  5839. border-width:0px;
  5840. word-wrap:break-word;
  5841. text-transform:none;
  5842. visibility:hidden;
  5843. }
  5844. #u165607 {
  5845. border-width:0px;
  5846. position:absolute;
  5847. left:1880px;
  5848. top:1249px;
  5849. width:344px;
  5850. height:57px;
  5851. }
  5852. #u165608_img {
  5853. border-width:0px;
  5854. position:absolute;
  5855. left:0px;
  5856. top:0px;
  5857. width:151px;
  5858. height:25px;
  5859. }
  5860. #u165608 {
  5861. border-width:0px;
  5862. position:absolute;
  5863. left:0px;
  5864. top:0px;
  5865. width:151px;
  5866. height:25px;
  5867. display:flex;
  5868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5869. font-weight:400;
  5870. font-style:normal;
  5871. font-size:10px;
  5872. color:#FFFFFF;
  5873. }
  5874. #u165608 .text {
  5875. position:absolute;
  5876. align-self:center;
  5877. padding:2px 2px 2px 2px;
  5878. box-sizing:border-box;
  5879. width:100%;
  5880. }
  5881. #u165608_text {
  5882. border-width:0px;
  5883. word-wrap:break-word;
  5884. text-transform:none;
  5885. }
  5886. #u165609_img {
  5887. border-width:0px;
  5888. position:absolute;
  5889. left:0px;
  5890. top:0px;
  5891. width:65px;
  5892. height:25px;
  5893. }
  5894. #u165609 {
  5895. border-width:0px;
  5896. position:absolute;
  5897. left:151px;
  5898. top:0px;
  5899. width:65px;
  5900. height:25px;
  5901. display:flex;
  5902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5903. font-weight:400;
  5904. font-style:normal;
  5905. font-size:10px;
  5906. color:#FFFFFF;
  5907. }
  5908. #u165609 .text {
  5909. position:absolute;
  5910. align-self:center;
  5911. padding:2px 2px 2px 2px;
  5912. box-sizing:border-box;
  5913. width:100%;
  5914. }
  5915. #u165609_text {
  5916. border-width:0px;
  5917. word-wrap:break-word;
  5918. text-transform:none;
  5919. }
  5920. #u165610_img {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:0px;
  5924. top:0px;
  5925. width:65px;
  5926. height:25px;
  5927. }
  5928. #u165610 {
  5929. border-width:0px;
  5930. position:absolute;
  5931. left:216px;
  5932. top:0px;
  5933. width:65px;
  5934. height:25px;
  5935. display:flex;
  5936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5937. font-weight:400;
  5938. font-style:normal;
  5939. font-size:10px;
  5940. color:#FFFFFF;
  5941. }
  5942. #u165610 .text {
  5943. position:absolute;
  5944. align-self:center;
  5945. padding:2px 2px 2px 2px;
  5946. box-sizing:border-box;
  5947. width:100%;
  5948. }
  5949. #u165610_text {
  5950. border-width:0px;
  5951. word-wrap:break-word;
  5952. text-transform:none;
  5953. }
  5954. #u165611_img {
  5955. border-width:0px;
  5956. position:absolute;
  5957. left:0px;
  5958. top:0px;
  5959. width:63px;
  5960. height:25px;
  5961. }
  5962. #u165611 {
  5963. border-width:0px;
  5964. position:absolute;
  5965. left:281px;
  5966. top:0px;
  5967. width:63px;
  5968. height:25px;
  5969. display:flex;
  5970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5971. font-weight:400;
  5972. font-style:normal;
  5973. font-size:10px;
  5974. color:#FFFFFF;
  5975. }
  5976. #u165611 .text {
  5977. position:absolute;
  5978. align-self:center;
  5979. padding:2px 2px 2px 2px;
  5980. box-sizing:border-box;
  5981. width:100%;
  5982. }
  5983. #u165611_text {
  5984. border-width:0px;
  5985. word-wrap:break-word;
  5986. text-transform:none;
  5987. }
  5988. #u165612_img {
  5989. border-width:0px;
  5990. position:absolute;
  5991. left:0px;
  5992. top:0px;
  5993. width:151px;
  5994. height:32px;
  5995. }
  5996. #u165612 {
  5997. border-width:0px;
  5998. position:absolute;
  5999. left:0px;
  6000. top:25px;
  6001. width:151px;
  6002. height:32px;
  6003. display:flex;
  6004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6005. font-weight:400;
  6006. font-style:normal;
  6007. font-size:10px;
  6008. }
  6009. #u165612 .text {
  6010. position:absolute;
  6011. align-self:center;
  6012. padding:2px 2px 2px 2px;
  6013. box-sizing:border-box;
  6014. width:100%;
  6015. }
  6016. #u165612_text {
  6017. border-width:0px;
  6018. word-wrap:break-word;
  6019. text-transform:none;
  6020. }
  6021. #u165613_img {
  6022. border-width:0px;
  6023. position:absolute;
  6024. left:0px;
  6025. top:0px;
  6026. width:65px;
  6027. height:32px;
  6028. }
  6029. #u165613 {
  6030. border-width:0px;
  6031. position:absolute;
  6032. left:151px;
  6033. top:25px;
  6034. width:65px;
  6035. height:32px;
  6036. display:flex;
  6037. font-size:10px;
  6038. }
  6039. #u165613 .text {
  6040. position:absolute;
  6041. align-self:center;
  6042. padding:2px 2px 2px 2px;
  6043. box-sizing:border-box;
  6044. width:100%;
  6045. }
  6046. #u165613_text {
  6047. border-width:0px;
  6048. word-wrap:break-word;
  6049. text-transform:none;
  6050. }
  6051. #u165614_img {
  6052. border-width:0px;
  6053. position:absolute;
  6054. left:0px;
  6055. top:0px;
  6056. width:65px;
  6057. height:32px;
  6058. }
  6059. #u165614 {
  6060. border-width:0px;
  6061. position:absolute;
  6062. left:216px;
  6063. top:25px;
  6064. width:65px;
  6065. height:32px;
  6066. display:flex;
  6067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6068. font-weight:400;
  6069. font-style:normal;
  6070. font-size:10px;
  6071. }
  6072. #u165614 .text {
  6073. position:absolute;
  6074. align-self:center;
  6075. padding:2px 2px 2px 2px;
  6076. box-sizing:border-box;
  6077. width:100%;
  6078. }
  6079. #u165614_text {
  6080. border-width:0px;
  6081. word-wrap:break-word;
  6082. text-transform:none;
  6083. }
  6084. #u165615_img {
  6085. border-width:0px;
  6086. position:absolute;
  6087. left:0px;
  6088. top:0px;
  6089. width:63px;
  6090. height:32px;
  6091. }
  6092. #u165615 {
  6093. border-width:0px;
  6094. position:absolute;
  6095. left:281px;
  6096. top:25px;
  6097. width:63px;
  6098. height:32px;
  6099. display:flex;
  6100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6101. font-weight:400;
  6102. font-style:normal;
  6103. font-size:10px;
  6104. color:#298FFF;
  6105. }
  6106. #u165615 .text {
  6107. position:absolute;
  6108. align-self:center;
  6109. padding:2px 2px 2px 2px;
  6110. box-sizing:border-box;
  6111. width:100%;
  6112. }
  6113. #u165615_text {
  6114. border-width:0px;
  6115. word-wrap:break-word;
  6116. text-transform:none;
  6117. }
  6118. #u165616 {
  6119. border-width:0px;
  6120. position:absolute;
  6121. left:0px;
  6122. top:0px;
  6123. width:0px;
  6124. height:0px;
  6125. }
  6126. #u165617_div {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:0px;
  6130. top:0px;
  6131. width:375px;
  6132. height:120px;
  6133. background:inherit;
  6134. background-color:rgba(255, 255, 255, 1);
  6135. border:none;
  6136. border-top:0px;
  6137. border-radius:0px;
  6138. border-top-left-radius:0px;
  6139. border-top-right-radius:0px;
  6140. -moz-box-shadow:none;
  6141. -webkit-box-shadow:none;
  6142. box-shadow:none;
  6143. }
  6144. #u165617 {
  6145. border-width:0px;
  6146. position:absolute;
  6147. left:1863px;
  6148. top:1086px;
  6149. width:375px;
  6150. height:120px;
  6151. display:flex;
  6152. }
  6153. #u165617 .text {
  6154. position:absolute;
  6155. align-self:center;
  6156. padding:2px 2px 2px 2px;
  6157. box-sizing:border-box;
  6158. width:100%;
  6159. }
  6160. #u165617_text {
  6161. border-width:0px;
  6162. word-wrap:break-word;
  6163. text-transform:none;
  6164. visibility:hidden;
  6165. }
  6166. #u165618_div {
  6167. border-width:0px;
  6168. position:absolute;
  6169. left:0px;
  6170. top:0px;
  6171. width:57px;
  6172. height:25px;
  6173. background:inherit;
  6174. background-color:rgba(255, 255, 255, 0);
  6175. border:none;
  6176. border-left:0px;
  6177. border-top:0px;
  6178. border-right:0px;
  6179. border-radius:0px;
  6180. border-bottom-right-radius:0px;
  6181. border-bottom-left-radius:0px;
  6182. -moz-box-shadow:none;
  6183. -webkit-box-shadow:none;
  6184. box-shadow:none;
  6185. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6186. font-weight:500;
  6187. font-style:normal;
  6188. font-size:14px;
  6189. line-height:25px;
  6190. }
  6191. #u165618 {
  6192. border-width:0px;
  6193. position:absolute;
  6194. left:1880px;
  6195. top:1098px;
  6196. width:57px;
  6197. height:25px;
  6198. display:flex;
  6199. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6200. font-weight:500;
  6201. font-style:normal;
  6202. font-size:14px;
  6203. line-height:25px;
  6204. }
  6205. #u165618 .text {
  6206. position:absolute;
  6207. align-self:flex-start;
  6208. padding:0px 0px 0px 0px;
  6209. box-sizing:border-box;
  6210. width:100%;
  6211. }
  6212. #u165618_text {
  6213. border-width:0px;
  6214. white-space:nowrap;
  6215. text-transform:none;
  6216. }
  6217. #u165619 {
  6218. border-width:0px;
  6219. position:absolute;
  6220. left:0px;
  6221. top:0px;
  6222. width:0px;
  6223. height:0px;
  6224. }
  6225. #u165620_div {
  6226. border-width:0px;
  6227. position:absolute;
  6228. left:0px;
  6229. top:0px;
  6230. width:43px;
  6231. height:30px;
  6232. background:inherit;
  6233. background-color:rgba(255, 255, 255, 0);
  6234. border:none;
  6235. border-radius:0px;
  6236. -moz-box-shadow:none;
  6237. -webkit-box-shadow:none;
  6238. box-shadow:none;
  6239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6240. font-weight:400;
  6241. font-style:normal;
  6242. font-size:14px;
  6243. color:#298FFF;
  6244. text-align:right;
  6245. line-height:30px;
  6246. }
  6247. #u165620 {
  6248. border-width:0px;
  6249. position:absolute;
  6250. left:2151px;
  6251. top:1096px;
  6252. width:43px;
  6253. height:30px;
  6254. display:flex;
  6255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6256. font-weight:400;
  6257. font-style:normal;
  6258. font-size:14px;
  6259. color:#298FFF;
  6260. text-align:right;
  6261. line-height:30px;
  6262. }
  6263. #u165620 .text {
  6264. position:absolute;
  6265. align-self:flex-start;
  6266. padding:0px 0px 0px 0px;
  6267. box-sizing:border-box;
  6268. width:100%;
  6269. }
  6270. #u165620_text {
  6271. border-width:0px;
  6272. white-space:nowrap;
  6273. text-transform:none;
  6274. }
  6275. #u165621_img {
  6276. border-width:0px;
  6277. position:absolute;
  6278. left:0px;
  6279. top:0px;
  6280. width:12px;
  6281. height:7px;
  6282. }
  6283. #u165621 {
  6284. border-width:0px;
  6285. position:absolute;
  6286. left:2202px;
  6287. top:1108px;
  6288. width:12px;
  6289. height:7px;
  6290. display:flex;
  6291. }
  6292. #u165621 .text {
  6293. position:absolute;
  6294. align-self:center;
  6295. padding:2px 2px 2px 2px;
  6296. box-sizing:border-box;
  6297. width:100%;
  6298. }
  6299. #u165621_text {
  6300. border-width:0px;
  6301. word-wrap:break-word;
  6302. text-transform:none;
  6303. visibility:hidden;
  6304. }
  6305. #u165622 {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:1880px;
  6309. top:1128px;
  6310. width:344px;
  6311. height:57px;
  6312. }
  6313. #u165623_img {
  6314. border-width:0px;
  6315. position:absolute;
  6316. left:0px;
  6317. top:0px;
  6318. width:151px;
  6319. height:25px;
  6320. }
  6321. #u165623 {
  6322. border-width:0px;
  6323. position:absolute;
  6324. left:0px;
  6325. top:0px;
  6326. width:151px;
  6327. height:25px;
  6328. display:flex;
  6329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6330. font-weight:400;
  6331. font-style:normal;
  6332. font-size:10px;
  6333. color:#FFFFFF;
  6334. }
  6335. #u165623 .text {
  6336. position:absolute;
  6337. align-self:center;
  6338. padding:2px 2px 2px 2px;
  6339. box-sizing:border-box;
  6340. width:100%;
  6341. }
  6342. #u165623_text {
  6343. border-width:0px;
  6344. word-wrap:break-word;
  6345. text-transform:none;
  6346. }
  6347. #u165624_img {
  6348. border-width:0px;
  6349. position:absolute;
  6350. left:0px;
  6351. top:0px;
  6352. width:65px;
  6353. height:25px;
  6354. }
  6355. #u165624 {
  6356. border-width:0px;
  6357. position:absolute;
  6358. left:151px;
  6359. top:0px;
  6360. width:65px;
  6361. height:25px;
  6362. display:flex;
  6363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6364. font-weight:400;
  6365. font-style:normal;
  6366. font-size:10px;
  6367. color:#FFFFFF;
  6368. }
  6369. #u165624 .text {
  6370. position:absolute;
  6371. align-self:center;
  6372. padding:2px 2px 2px 2px;
  6373. box-sizing:border-box;
  6374. width:100%;
  6375. }
  6376. #u165624_text {
  6377. border-width:0px;
  6378. word-wrap:break-word;
  6379. text-transform:none;
  6380. }
  6381. #u165625_img {
  6382. border-width:0px;
  6383. position:absolute;
  6384. left:0px;
  6385. top:0px;
  6386. width:65px;
  6387. height:25px;
  6388. }
  6389. #u165625 {
  6390. border-width:0px;
  6391. position:absolute;
  6392. left:216px;
  6393. top:0px;
  6394. width:65px;
  6395. height:25px;
  6396. display:flex;
  6397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6398. font-weight:400;
  6399. font-style:normal;
  6400. font-size:10px;
  6401. color:#FFFFFF;
  6402. }
  6403. #u165625 .text {
  6404. position:absolute;
  6405. align-self:center;
  6406. padding:2px 2px 2px 2px;
  6407. box-sizing:border-box;
  6408. width:100%;
  6409. }
  6410. #u165625_text {
  6411. border-width:0px;
  6412. word-wrap:break-word;
  6413. text-transform:none;
  6414. }
  6415. #u165626_img {
  6416. border-width:0px;
  6417. position:absolute;
  6418. left:0px;
  6419. top:0px;
  6420. width:63px;
  6421. height:25px;
  6422. }
  6423. #u165626 {
  6424. border-width:0px;
  6425. position:absolute;
  6426. left:281px;
  6427. top:0px;
  6428. width:63px;
  6429. height:25px;
  6430. display:flex;
  6431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6432. font-weight:400;
  6433. font-style:normal;
  6434. font-size:10px;
  6435. color:#FFFFFF;
  6436. }
  6437. #u165626 .text {
  6438. position:absolute;
  6439. align-self:center;
  6440. padding:2px 2px 2px 2px;
  6441. box-sizing:border-box;
  6442. width:100%;
  6443. }
  6444. #u165626_text {
  6445. border-width:0px;
  6446. word-wrap:break-word;
  6447. text-transform:none;
  6448. }
  6449. #u165627_img {
  6450. border-width:0px;
  6451. position:absolute;
  6452. left:0px;
  6453. top:0px;
  6454. width:151px;
  6455. height:32px;
  6456. }
  6457. #u165627 {
  6458. border-width:0px;
  6459. position:absolute;
  6460. left:0px;
  6461. top:25px;
  6462. width:151px;
  6463. height:32px;
  6464. display:flex;
  6465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6466. font-weight:400;
  6467. font-style:normal;
  6468. font-size:10px;
  6469. }
  6470. #u165627 .text {
  6471. position:absolute;
  6472. align-self:center;
  6473. padding:2px 2px 2px 2px;
  6474. box-sizing:border-box;
  6475. width:100%;
  6476. }
  6477. #u165627_text {
  6478. border-width:0px;
  6479. word-wrap:break-word;
  6480. text-transform:none;
  6481. }
  6482. #u165628_img {
  6483. border-width:0px;
  6484. position:absolute;
  6485. left:0px;
  6486. top:0px;
  6487. width:65px;
  6488. height:32px;
  6489. }
  6490. #u165628 {
  6491. border-width:0px;
  6492. position:absolute;
  6493. left:151px;
  6494. top:25px;
  6495. width:65px;
  6496. height:32px;
  6497. display:flex;
  6498. font-size:10px;
  6499. }
  6500. #u165628 .text {
  6501. position:absolute;
  6502. align-self:center;
  6503. padding:2px 2px 2px 2px;
  6504. box-sizing:border-box;
  6505. width:100%;
  6506. }
  6507. #u165628_text {
  6508. border-width:0px;
  6509. word-wrap:break-word;
  6510. text-transform:none;
  6511. }
  6512. #u165629_img {
  6513. border-width:0px;
  6514. position:absolute;
  6515. left:0px;
  6516. top:0px;
  6517. width:65px;
  6518. height:32px;
  6519. }
  6520. #u165629 {
  6521. border-width:0px;
  6522. position:absolute;
  6523. left:216px;
  6524. top:25px;
  6525. width:65px;
  6526. height:32px;
  6527. display:flex;
  6528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6529. font-weight:400;
  6530. font-style:normal;
  6531. font-size:10px;
  6532. }
  6533. #u165629 .text {
  6534. position:absolute;
  6535. align-self:center;
  6536. padding:2px 2px 2px 2px;
  6537. box-sizing:border-box;
  6538. width:100%;
  6539. }
  6540. #u165629_text {
  6541. border-width:0px;
  6542. word-wrap:break-word;
  6543. text-transform:none;
  6544. }
  6545. #u165630_img {
  6546. border-width:0px;
  6547. position:absolute;
  6548. left:0px;
  6549. top:0px;
  6550. width:63px;
  6551. height:32px;
  6552. }
  6553. #u165630 {
  6554. border-width:0px;
  6555. position:absolute;
  6556. left:281px;
  6557. top:25px;
  6558. width:63px;
  6559. height:32px;
  6560. display:flex;
  6561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6562. font-weight:400;
  6563. font-style:normal;
  6564. font-size:10px;
  6565. color:#298FFF;
  6566. }
  6567. #u165630 .text {
  6568. position:absolute;
  6569. align-self:center;
  6570. padding:2px 2px 2px 2px;
  6571. box-sizing:border-box;
  6572. width:100%;
  6573. }
  6574. #u165630_text {
  6575. border-width:0px;
  6576. word-wrap:break-word;
  6577. text-transform:none;
  6578. }
  6579. #u165631 {
  6580. border-width:0px;
  6581. position:absolute;
  6582. left:0px;
  6583. top:0px;
  6584. width:0px;
  6585. height:0px;
  6586. }
  6587. #u165632_div {
  6588. border-width:0px;
  6589. position:absolute;
  6590. left:0px;
  6591. top:0px;
  6592. width:350px;
  6593. height:70px;
  6594. background:inherit;
  6595. background-color:rgba(255, 255, 255, 1);
  6596. box-sizing:border-box;
  6597. border-width:1px;
  6598. border-style:solid;
  6599. border-color:rgba(215, 215, 215, 1);
  6600. border-radius:10px;
  6601. -moz-box-shadow:none;
  6602. -webkit-box-shadow:none;
  6603. box-shadow:none;
  6604. }
  6605. #u165632 {
  6606. border-width:0px;
  6607. position:absolute;
  6608. left:1420px;
  6609. top:561px;
  6610. width:350px;
  6611. height:70px;
  6612. display:flex;
  6613. }
  6614. #u165632 .text {
  6615. position:absolute;
  6616. align-self:center;
  6617. padding:2px 2px 2px 2px;
  6618. box-sizing:border-box;
  6619. width:100%;
  6620. }
  6621. #u165632_text {
  6622. border-width:0px;
  6623. word-wrap:break-word;
  6624. text-transform:none;
  6625. visibility:hidden;
  6626. }
  6627. #u165633_div {
  6628. border-width:0px;
  6629. position:absolute;
  6630. left:0px;
  6631. top:0px;
  6632. width:186px;
  6633. height:50px;
  6634. background:inherit;
  6635. background-color:rgba(255, 255, 255, 0);
  6636. border:none;
  6637. border-left:0px;
  6638. border-top:0px;
  6639. border-right:0px;
  6640. border-radius:0px;
  6641. border-bottom-right-radius:0px;
  6642. border-bottom-left-radius:0px;
  6643. -moz-box-shadow:none;
  6644. -webkit-box-shadow:none;
  6645. box-shadow:none;
  6646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6647. font-weight:400;
  6648. font-style:normal;
  6649. font-size:14px;
  6650. line-height:25px;
  6651. }
  6652. #u165633 {
  6653. border-width:0px;
  6654. position:absolute;
  6655. left:1438px;
  6656. top:571px;
  6657. width:186px;
  6658. height:50px;
  6659. display:flex;
  6660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6661. font-weight:400;
  6662. font-style:normal;
  6663. font-size:14px;
  6664. line-height:25px;
  6665. }
  6666. #u165633 .text {
  6667. position:absolute;
  6668. align-self:flex-start;
  6669. padding:0px 0px 0px 0px;
  6670. box-sizing:border-box;
  6671. width:100%;
  6672. }
  6673. #u165633_text {
  6674. border-width:0px;
  6675. white-space:nowrap;
  6676. text-transform:none;
  6677. }
  6678. #u165634 {
  6679. border-width:0px;
  6680. position:absolute;
  6681. left:0px;
  6682. top:0px;
  6683. width:0px;
  6684. height:0px;
  6685. }
  6686. #u165635_div {
  6687. border-width:0px;
  6688. position:absolute;
  6689. left:0px;
  6690. top:0px;
  6691. width:350px;
  6692. height:70px;
  6693. background:inherit;
  6694. background-color:rgba(255, 255, 255, 1);
  6695. box-sizing:border-box;
  6696. border-width:1px;
  6697. border-style:solid;
  6698. border-color:rgba(215, 215, 215, 1);
  6699. border-radius:10px;
  6700. -moz-box-shadow:none;
  6701. -webkit-box-shadow:none;
  6702. box-shadow:none;
  6703. }
  6704. #u165635 {
  6705. border-width:0px;
  6706. position:absolute;
  6707. left:1873px;
  6708. top:561px;
  6709. width:350px;
  6710. height:70px;
  6711. display:flex;
  6712. }
  6713. #u165635 .text {
  6714. position:absolute;
  6715. align-self:center;
  6716. padding:2px 2px 2px 2px;
  6717. box-sizing:border-box;
  6718. width:100%;
  6719. }
  6720. #u165635_text {
  6721. border-width:0px;
  6722. word-wrap:break-word;
  6723. text-transform:none;
  6724. visibility:hidden;
  6725. }
  6726. #u165636_div {
  6727. border-width:0px;
  6728. position:absolute;
  6729. left:0px;
  6730. top:0px;
  6731. width:186px;
  6732. height:50px;
  6733. background:inherit;
  6734. background-color:rgba(255, 255, 255, 0);
  6735. border:none;
  6736. border-left:0px;
  6737. border-top:0px;
  6738. border-right:0px;
  6739. border-radius:0px;
  6740. border-bottom-right-radius:0px;
  6741. border-bottom-left-radius:0px;
  6742. -moz-box-shadow:none;
  6743. -webkit-box-shadow:none;
  6744. box-shadow:none;
  6745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6746. font-weight:400;
  6747. font-style:normal;
  6748. font-size:14px;
  6749. line-height:25px;
  6750. }
  6751. #u165636 {
  6752. border-width:0px;
  6753. position:absolute;
  6754. left:1891px;
  6755. top:571px;
  6756. width:186px;
  6757. height:50px;
  6758. display:flex;
  6759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6760. font-weight:400;
  6761. font-style:normal;
  6762. font-size:14px;
  6763. line-height:25px;
  6764. }
  6765. #u165636 .text {
  6766. position:absolute;
  6767. align-self:flex-start;
  6768. padding:0px 0px 0px 0px;
  6769. box-sizing:border-box;
  6770. width:100%;
  6771. }
  6772. #u165636_text {
  6773. border-width:0px;
  6774. white-space:nowrap;
  6775. text-transform:none;
  6776. }
  6777. #u165637_div {
  6778. border-width:0px;
  6779. position:absolute;
  6780. left:0px;
  6781. top:0px;
  6782. width:334px;
  6783. height:40px;
  6784. background:inherit;
  6785. background-color:rgba(0, 137, 254, 0);
  6786. box-sizing:border-box;
  6787. border-width:1px;
  6788. border-style:solid;
  6789. border-color:rgba(215, 215, 215, 1);
  6790. border-radius:82px;
  6791. -moz-box-shadow:none;
  6792. -webkit-box-shadow:none;
  6793. box-shadow:none;
  6794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6795. font-weight:400;
  6796. font-style:normal;
  6797. font-size:14px;
  6798. color:#7F7F7F;
  6799. }
  6800. #u165637 {
  6801. border-width:0px;
  6802. position:absolute;
  6803. left:1429px;
  6804. top:1186px;
  6805. width:334px;
  6806. height:40px;
  6807. display:flex;
  6808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6809. font-weight:400;
  6810. font-style:normal;
  6811. font-size:14px;
  6812. color:#7F7F7F;
  6813. }
  6814. #u165637 .text {
  6815. position:absolute;
  6816. align-self:center;
  6817. padding:2px 2px 2px 2px;
  6818. box-sizing:border-box;
  6819. width:100%;
  6820. }
  6821. #u165637_text {
  6822. border-width:0px;
  6823. word-wrap:break-word;
  6824. text-transform:none;
  6825. }
  6826. #u165638_div {
  6827. border-width:0px;
  6828. position:absolute;
  6829. left:0px;
  6830. top:0px;
  6831. width:334px;
  6832. height:40px;
  6833. background:inherit;
  6834. background-color:rgba(0, 137, 254, 0);
  6835. box-sizing:border-box;
  6836. border-width:1px;
  6837. border-style:solid;
  6838. border-color:rgba(215, 215, 215, 1);
  6839. border-radius:82px;
  6840. -moz-box-shadow:none;
  6841. -webkit-box-shadow:none;
  6842. box-shadow:none;
  6843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6844. font-weight:400;
  6845. font-style:normal;
  6846. font-size:14px;
  6847. color:#7F7F7F;
  6848. }
  6849. #u165638 {
  6850. border-width:0px;
  6851. position:absolute;
  6852. left:1883px;
  6853. top:1457px;
  6854. width:334px;
  6855. height:40px;
  6856. display:flex;
  6857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6858. font-weight:400;
  6859. font-style:normal;
  6860. font-size:14px;
  6861. color:#7F7F7F;
  6862. }
  6863. #u165638 .text {
  6864. position:absolute;
  6865. align-self:center;
  6866. padding:2px 2px 2px 2px;
  6867. box-sizing:border-box;
  6868. width:100%;
  6869. }
  6870. #u165638_text {
  6871. border-width:0px;
  6872. word-wrap:break-word;
  6873. text-transform:none;
  6874. }
  6875. #u165639 {
  6876. border-width:0px;
  6877. position:absolute;
  6878. left:0px;
  6879. top:0px;
  6880. width:0px;
  6881. height:0px;
  6882. }
  6883. #u165640_div {
  6884. border-width:0px;
  6885. position:absolute;
  6886. left:0px;
  6887. top:0px;
  6888. width:375px;
  6889. height:110px;
  6890. background:inherit;
  6891. background-color:rgba(255, 255, 255, 1);
  6892. border:none;
  6893. border-top:0px;
  6894. border-radius:0px;
  6895. border-top-left-radius:0px;
  6896. border-top-right-radius:0px;
  6897. -moz-box-shadow:none;
  6898. -webkit-box-shadow:none;
  6899. box-shadow:none;
  6900. }
  6901. #u165640 {
  6902. border-width:0px;
  6903. position:absolute;
  6904. left:1863px;
  6905. top:1337px;
  6906. width:375px;
  6907. height:110px;
  6908. display:flex;
  6909. }
  6910. #u165640 .text {
  6911. position:absolute;
  6912. align-self:center;
  6913. padding:2px 2px 2px 2px;
  6914. box-sizing:border-box;
  6915. width:100%;
  6916. }
  6917. #u165640_text {
  6918. border-width:0px;
  6919. word-wrap:break-word;
  6920. text-transform:none;
  6921. visibility:hidden;
  6922. }
  6923. #u165641_div {
  6924. border-width:0px;
  6925. position:absolute;
  6926. left:0px;
  6927. top:0px;
  6928. width:124px;
  6929. height:90px;
  6930. background:inherit;
  6931. background-color:rgba(255, 255, 255, 0);
  6932. border:none;
  6933. border-left:0px;
  6934. border-top:0px;
  6935. border-right:0px;
  6936. border-radius:0px;
  6937. border-bottom-right-radius:0px;
  6938. border-bottom-left-radius:0px;
  6939. -moz-box-shadow:none;
  6940. -webkit-box-shadow:none;
  6941. box-shadow:none;
  6942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6943. font-weight:400;
  6944. font-style:normal;
  6945. font-size:12px;
  6946. text-align:right;
  6947. line-height:30px;
  6948. }
  6949. #u165641 {
  6950. border-width:0px;
  6951. position:absolute;
  6952. left:2090px;
  6953. top:1347px;
  6954. width:124px;
  6955. height:90px;
  6956. display:flex;
  6957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6958. font-weight:400;
  6959. font-style:normal;
  6960. font-size:12px;
  6961. text-align:right;
  6962. line-height:30px;
  6963. }
  6964. #u165641 .text {
  6965. position:absolute;
  6966. align-self:flex-start;
  6967. padding:0px 0px 0px 0px;
  6968. box-sizing:border-box;
  6969. width:100%;
  6970. }
  6971. #u165641_text {
  6972. border-width:0px;
  6973. white-space:nowrap;
  6974. text-transform:none;
  6975. }
  6976. #u165642_div {
  6977. border-width:0px;
  6978. position:absolute;
  6979. left:0px;
  6980. top:0px;
  6981. width:49px;
  6982. height:90px;
  6983. background:inherit;
  6984. background-color:rgba(255, 255, 255, 0);
  6985. border:none;
  6986. border-left:0px;
  6987. border-top:0px;
  6988. border-right:0px;
  6989. border-radius:0px;
  6990. border-bottom-right-radius:0px;
  6991. border-bottom-left-radius:0px;
  6992. -moz-box-shadow:none;
  6993. -webkit-box-shadow:none;
  6994. box-shadow:none;
  6995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6996. font-weight:400;
  6997. font-style:normal;
  6998. font-size:12px;
  6999. color:#7F7F7F;
  7000. line-height:30px;
  7001. }
  7002. #u165642 {
  7003. border-width:0px;
  7004. position:absolute;
  7005. left:1880px;
  7006. top:1347px;
  7007. width:49px;
  7008. height:90px;
  7009. display:flex;
  7010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7011. font-weight:400;
  7012. font-style:normal;
  7013. font-size:12px;
  7014. color:#7F7F7F;
  7015. line-height:30px;
  7016. }
  7017. #u165642 .text {
  7018. position:absolute;
  7019. align-self:flex-start;
  7020. padding:0px 0px 0px 0px;
  7021. box-sizing:border-box;
  7022. width:100%;
  7023. }
  7024. #u165642_text {
  7025. border-width:0px;
  7026. white-space:nowrap;
  7027. text-transform:none;
  7028. }
  7029. #u165644_img {
  7030. border-width:0px;
  7031. position:absolute;
  7032. left:0px;
  7033. top:0px;
  7034. width:433px;
  7035. height:865px;
  7036. }
  7037. #u165644 {
  7038. border-width:0px;
  7039. position:absolute;
  7040. left:453px;
  7041. top:0px;
  7042. width:433px;
  7043. height:865px;
  7044. display:flex;
  7045. }
  7046. #u165644 .text {
  7047. position:absolute;
  7048. align-self:center;
  7049. padding:2px 2px 2px 2px;
  7050. box-sizing:border-box;
  7051. width:100%;
  7052. }
  7053. #u165644_text {
  7054. border-width:0px;
  7055. word-wrap:break-word;
  7056. text-transform:none;
  7057. visibility:hidden;
  7058. }
  7059. #u165645_div {
  7060. border-width:0px;
  7061. position:absolute;
  7062. left:0px;
  7063. top:0px;
  7064. width:375px;
  7065. height:40px;
  7066. background:inherit;
  7067. background-color:rgba(255, 255, 255, 1);
  7068. box-sizing:border-box;
  7069. border-width:1px;
  7070. border-style:solid;
  7071. border-color:rgba(215, 215, 215, 1);
  7072. border-left:0px;
  7073. border-top:0px;
  7074. border-right:0px;
  7075. border-radius:0px;
  7076. border-bottom-right-radius:0px;
  7077. border-bottom-left-radius:0px;
  7078. -moz-box-shadow:none;
  7079. -webkit-box-shadow:none;
  7080. box-shadow:none;
  7081. }
  7082. #u165645 {
  7083. border-width:0px;
  7084. position:absolute;
  7085. left:482px;
  7086. top:67px;
  7087. width:375px;
  7088. height:40px;
  7089. display:flex;
  7090. }
  7091. #u165645 .text {
  7092. position:absolute;
  7093. align-self:center;
  7094. padding:2px 2px 2px 2px;
  7095. box-sizing:border-box;
  7096. width:100%;
  7097. }
  7098. #u165645_text {
  7099. border-width:0px;
  7100. word-wrap:break-word;
  7101. text-transform:none;
  7102. visibility:hidden;
  7103. }
  7104. #u165646 {
  7105. border-width:0px;
  7106. position:absolute;
  7107. left:0px;
  7108. top:0px;
  7109. width:0px;
  7110. height:0px;
  7111. }
  7112. #u165647_div {
  7113. border-width:0px;
  7114. position:absolute;
  7115. left:0px;
  7116. top:0px;
  7117. width:88px;
  7118. height:32px;
  7119. background:inherit;
  7120. background-color:rgba(255, 255, 255, 1);
  7121. box-sizing:border-box;
  7122. border-width:1px;
  7123. border-style:solid;
  7124. border-color:rgba(242, 242, 242, 1);
  7125. border-radius:33px;
  7126. -moz-box-shadow:none;
  7127. -webkit-box-shadow:none;
  7128. box-shadow:none;
  7129. }
  7130. #u165647 {
  7131. border-width:0px;
  7132. position:absolute;
  7133. left:762px;
  7134. top:71px;
  7135. width:88px;
  7136. height:32px;
  7137. display:flex;
  7138. }
  7139. #u165647 .text {
  7140. position:absolute;
  7141. align-self:center;
  7142. padding:2px 2px 2px 2px;
  7143. box-sizing:border-box;
  7144. width:100%;
  7145. }
  7146. #u165647_text {
  7147. border-width:0px;
  7148. word-wrap:break-word;
  7149. text-transform:none;
  7150. visibility:hidden;
  7151. }
  7152. #u165648 {
  7153. border-width:0px;
  7154. position:absolute;
  7155. left:0px;
  7156. top:0px;
  7157. width:0px;
  7158. height:0px;
  7159. }
  7160. #u165649_img {
  7161. border-width:0px;
  7162. position:absolute;
  7163. left:0px;
  7164. top:0px;
  7165. width:18px;
  7166. height:18px;
  7167. }
  7168. #u165649 {
  7169. border-width:0px;
  7170. position:absolute;
  7171. left:825px;
  7172. top:78px;
  7173. width:18px;
  7174. height:18px;
  7175. display:flex;
  7176. }
  7177. #u165649 .text {
  7178. position:absolute;
  7179. align-self:center;
  7180. padding:2px 2px 2px 2px;
  7181. box-sizing:border-box;
  7182. width:100%;
  7183. }
  7184. #u165649_text {
  7185. border-width:0px;
  7186. word-wrap:break-word;
  7187. text-transform:none;
  7188. visibility:hidden;
  7189. }
  7190. #u165650_img {
  7191. border-width:0px;
  7192. position:absolute;
  7193. left:0px;
  7194. top:0px;
  7195. width:6px;
  7196. height:6px;
  7197. }
  7198. #u165650 {
  7199. border-width:0px;
  7200. position:absolute;
  7201. left:831px;
  7202. top:84px;
  7203. width:6px;
  7204. height:6px;
  7205. display:flex;
  7206. }
  7207. #u165650 .text {
  7208. position:absolute;
  7209. align-self:center;
  7210. padding:2px 2px 2px 2px;
  7211. box-sizing:border-box;
  7212. width:100%;
  7213. }
  7214. #u165650_text {
  7215. border-width:0px;
  7216. word-wrap:break-word;
  7217. text-transform:none;
  7218. visibility:hidden;
  7219. }
  7220. #u165651 {
  7221. border-width:0px;
  7222. position:absolute;
  7223. left:0px;
  7224. top:0px;
  7225. width:0px;
  7226. height:0px;
  7227. }
  7228. #u165652_img {
  7229. border-width:0px;
  7230. position:absolute;
  7231. left:0px;
  7232. top:0px;
  7233. width:5px;
  7234. height:5px;
  7235. }
  7236. #u165652 {
  7237. border-width:0px;
  7238. position:absolute;
  7239. left:776px;
  7240. top:85px;
  7241. width:5px;
  7242. height:5px;
  7243. display:flex;
  7244. }
  7245. #u165652 .text {
  7246. position:absolute;
  7247. align-self:center;
  7248. padding:2px 2px 2px 2px;
  7249. box-sizing:border-box;
  7250. width:100%;
  7251. }
  7252. #u165652_text {
  7253. border-width:0px;
  7254. word-wrap:break-word;
  7255. text-transform:none;
  7256. visibility:hidden;
  7257. }
  7258. #u165653_img {
  7259. border-width:0px;
  7260. position:absolute;
  7261. left:0px;
  7262. top:0px;
  7263. width:5px;
  7264. height:5px;
  7265. }
  7266. #u165653 {
  7267. border-width:0px;
  7268. position:absolute;
  7269. left:792px;
  7270. top:85px;
  7271. width:5px;
  7272. height:5px;
  7273. display:flex;
  7274. }
  7275. #u165653 .text {
  7276. position:absolute;
  7277. align-self:center;
  7278. padding:2px 2px 2px 2px;
  7279. box-sizing:border-box;
  7280. width:100%;
  7281. }
  7282. #u165653_text {
  7283. border-width:0px;
  7284. word-wrap:break-word;
  7285. text-transform:none;
  7286. visibility:hidden;
  7287. }
  7288. #u165654_img {
  7289. border-width:0px;
  7290. position:absolute;
  7291. left:0px;
  7292. top:0px;
  7293. width:7px;
  7294. height:7px;
  7295. }
  7296. #u165654 {
  7297. border-width:0px;
  7298. position:absolute;
  7299. left:783px;
  7300. top:84px;
  7301. width:7px;
  7302. height:7px;
  7303. display:flex;
  7304. }
  7305. #u165654 .text {
  7306. position:absolute;
  7307. align-self:center;
  7308. padding:2px 2px 2px 2px;
  7309. box-sizing:border-box;
  7310. width:100%;
  7311. }
  7312. #u165654_text {
  7313. border-width:0px;
  7314. word-wrap:break-word;
  7315. text-transform:none;
  7316. visibility:hidden;
  7317. }
  7318. #u165655_img {
  7319. border-width:0px;
  7320. position:absolute;
  7321. left:0px;
  7322. top:0px;
  7323. width:19px;
  7324. height:2px;
  7325. }
  7326. #u165655 {
  7327. border-width:0px;
  7328. position:absolute;
  7329. left:800px;
  7330. top:87px;
  7331. width:18px;
  7332. height:1px;
  7333. display:flex;
  7334. -webkit-transform:rotate(90deg);
  7335. -moz-transform:rotate(90deg);
  7336. -ms-transform:rotate(90deg);
  7337. transform:rotate(90deg);
  7338. }
  7339. #u165655 .text {
  7340. position:absolute;
  7341. align-self:center;
  7342. padding:2px 2px 2px 2px;
  7343. box-sizing:border-box;
  7344. width:100%;
  7345. }
  7346. #u165655_text {
  7347. border-width:0px;
  7348. word-wrap:break-word;
  7349. text-transform:none;
  7350. visibility:hidden;
  7351. }
  7352. #u165656_img {
  7353. border-width:0px;
  7354. position:absolute;
  7355. left:0px;
  7356. top:0px;
  7357. width:375px;
  7358. height:44px;
  7359. }
  7360. #u165656 {
  7361. border-width:0px;
  7362. position:absolute;
  7363. left:482px;
  7364. top:24px;
  7365. width:375px;
  7366. height:44px;
  7367. display:flex;
  7368. }
  7369. #u165656 .text {
  7370. position:absolute;
  7371. align-self:center;
  7372. padding:2px 2px 2px 2px;
  7373. box-sizing:border-box;
  7374. width:100%;
  7375. }
  7376. #u165656_text {
  7377. border-width:0px;
  7378. word-wrap:break-word;
  7379. text-transform:none;
  7380. visibility:hidden;
  7381. }
  7382. #u165657_div {
  7383. border-width:0px;
  7384. position:absolute;
  7385. left:0px;
  7386. top:0px;
  7387. width:375px;
  7388. height:50px;
  7389. background:inherit;
  7390. background-color:rgba(255, 255, 255, 1);
  7391. box-sizing:border-box;
  7392. border-width:1px;
  7393. border-style:solid;
  7394. border-color:rgba(242, 242, 242, 1);
  7395. border-radius:26px;
  7396. border-top-left-radius:0px;
  7397. border-top-right-radius:0px;
  7398. -moz-box-shadow:none;
  7399. -webkit-box-shadow:none;
  7400. box-shadow:none;
  7401. }
  7402. #u165657 {
  7403. border-width:0px;
  7404. position:absolute;
  7405. left:482px;
  7406. top:788px;
  7407. width:375px;
  7408. height:50px;
  7409. display:flex;
  7410. }
  7411. #u165657 .text {
  7412. position:absolute;
  7413. align-self:center;
  7414. padding:2px 2px 2px 2px;
  7415. box-sizing:border-box;
  7416. width:100%;
  7417. }
  7418. #u165657_text {
  7419. border-width:0px;
  7420. word-wrap:break-word;
  7421. text-transform:none;
  7422. visibility:hidden;
  7423. }
  7424. #u165658 {
  7425. border-width:0px;
  7426. position:absolute;
  7427. left:0px;
  7428. top:0px;
  7429. width:0px;
  7430. height:0px;
  7431. }
  7432. #u165659_img {
  7433. border-width:0px;
  7434. position:absolute;
  7435. left:0px;
  7436. top:0px;
  7437. width:24px;
  7438. height:24px;
  7439. }
  7440. #u165659 {
  7441. border-width:0px;
  7442. position:absolute;
  7443. left:522px;
  7444. top:792px;
  7445. width:24px;
  7446. height:24px;
  7447. display:flex;
  7448. font-size:8px;
  7449. }
  7450. #u165659 .text {
  7451. position:absolute;
  7452. align-self:center;
  7453. padding:2px 2px 2px 2px;
  7454. box-sizing:border-box;
  7455. width:100%;
  7456. }
  7457. #u165659_text {
  7458. border-width:0px;
  7459. word-wrap:break-word;
  7460. text-transform:none;
  7461. }
  7462. #u165660_div {
  7463. border-width:0px;
  7464. position:absolute;
  7465. left:0px;
  7466. top:0px;
  7467. width:25px;
  7468. height:17px;
  7469. background:inherit;
  7470. background-color:rgba(255, 255, 255, 0);
  7471. border:none;
  7472. border-radius:0px;
  7473. -moz-box-shadow:none;
  7474. -webkit-box-shadow:none;
  7475. box-shadow:none;
  7476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7477. font-weight:400;
  7478. font-style:normal;
  7479. font-size:12px;
  7480. }
  7481. #u165660 {
  7482. border-width:0px;
  7483. position:absolute;
  7484. left:522px;
  7485. top:817px;
  7486. width:25px;
  7487. height:17px;
  7488. display:flex;
  7489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7490. font-weight:400;
  7491. font-style:normal;
  7492. font-size:12px;
  7493. }
  7494. #u165660 .text {
  7495. position:absolute;
  7496. align-self:flex-start;
  7497. padding:0px 0px 0px 0px;
  7498. box-sizing:border-box;
  7499. width:100%;
  7500. }
  7501. #u165660_text {
  7502. border-width:0px;
  7503. white-space:nowrap;
  7504. text-transform:none;
  7505. }
  7506. #u165661 {
  7507. border-width:0px;
  7508. position:absolute;
  7509. left:0px;
  7510. top:0px;
  7511. width:0px;
  7512. height:0px;
  7513. }
  7514. #u165662_img {
  7515. border-width:0px;
  7516. position:absolute;
  7517. left:0px;
  7518. top:0px;
  7519. width:24px;
  7520. height:24px;
  7521. }
  7522. #u165662 {
  7523. border-width:0px;
  7524. position:absolute;
  7525. left:792px;
  7526. top:794px;
  7527. width:24px;
  7528. height:24px;
  7529. display:flex;
  7530. font-size:8px;
  7531. }
  7532. #u165662 .text {
  7533. position:absolute;
  7534. align-self:center;
  7535. padding:2px 2px 2px 2px;
  7536. box-sizing:border-box;
  7537. width:100%;
  7538. }
  7539. #u165662_text {
  7540. border-width:0px;
  7541. word-wrap:break-word;
  7542. text-transform:none;
  7543. }
  7544. #u165663_div {
  7545. border-width:0px;
  7546. position:absolute;
  7547. left:0px;
  7548. top:0px;
  7549. width:25px;
  7550. height:17px;
  7551. background:inherit;
  7552. background-color:rgba(255, 255, 255, 0);
  7553. border:none;
  7554. border-radius:0px;
  7555. -moz-box-shadow:none;
  7556. -webkit-box-shadow:none;
  7557. box-shadow:none;
  7558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7559. font-weight:400;
  7560. font-style:normal;
  7561. font-size:12px;
  7562. }
  7563. #u165663 {
  7564. border-width:0px;
  7565. position:absolute;
  7566. left:792px;
  7567. top:819px;
  7568. width:25px;
  7569. height:17px;
  7570. display:flex;
  7571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7572. font-weight:400;
  7573. font-style:normal;
  7574. font-size:12px;
  7575. }
  7576. #u165663 .text {
  7577. position:absolute;
  7578. align-self:flex-start;
  7579. padding:0px 0px 0px 0px;
  7580. box-sizing:border-box;
  7581. width:100%;
  7582. }
  7583. #u165663_text {
  7584. border-width:0px;
  7585. white-space:nowrap;
  7586. text-transform:none;
  7587. }
  7588. #u165664_div {
  7589. border-width:0px;
  7590. position:absolute;
  7591. left:0px;
  7592. top:0px;
  7593. width:375px;
  7594. height:681px;
  7595. background:inherit;
  7596. background-color:rgba(242, 242, 242, 0.462745098039216);
  7597. border:none;
  7598. border-radius:0px;
  7599. -moz-box-shadow:none;
  7600. -webkit-box-shadow:none;
  7601. box-shadow:none;
  7602. }
  7603. #u165664 {
  7604. border-width:0px;
  7605. position:absolute;
  7606. left:482px;
  7607. top:107px;
  7608. width:375px;
  7609. height:681px;
  7610. display:flex;
  7611. }
  7612. #u165664 .text {
  7613. position:absolute;
  7614. align-self:center;
  7615. padding:2px 2px 2px 2px;
  7616. box-sizing:border-box;
  7617. width:100%;
  7618. }
  7619. #u165664_text {
  7620. border-width:0px;
  7621. word-wrap:break-word;
  7622. text-transform:none;
  7623. visibility:hidden;
  7624. }
  7625. #u165665 {
  7626. border-width:0px;
  7627. position:absolute;
  7628. left:0px;
  7629. top:0px;
  7630. width:0px;
  7631. height:0px;
  7632. }
  7633. #u165666_img {
  7634. border-width:0px;
  7635. position:absolute;
  7636. left:0px;
  7637. top:0px;
  7638. width:24px;
  7639. height:24px;
  7640. }
  7641. #u165666 {
  7642. border-width:0px;
  7643. position:absolute;
  7644. left:704px;
  7645. top:792px;
  7646. width:24px;
  7647. height:24px;
  7648. display:flex;
  7649. font-size:8px;
  7650. }
  7651. #u165666 .text {
  7652. position:absolute;
  7653. align-self:center;
  7654. padding:2px 2px 2px 2px;
  7655. box-sizing:border-box;
  7656. width:100%;
  7657. }
  7658. #u165666_text {
  7659. border-width:0px;
  7660. word-wrap:break-word;
  7661. text-transform:none;
  7662. }
  7663. #u165667_div {
  7664. border-width:0px;
  7665. position:absolute;
  7666. left:0px;
  7667. top:0px;
  7668. width:37px;
  7669. height:17px;
  7670. background:inherit;
  7671. background-color:rgba(255, 255, 255, 0);
  7672. border:none;
  7673. border-radius:0px;
  7674. -moz-box-shadow:none;
  7675. -webkit-box-shadow:none;
  7676. box-shadow:none;
  7677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7678. font-weight:400;
  7679. font-style:normal;
  7680. font-size:12px;
  7681. }
  7682. #u165667 {
  7683. border-width:0px;
  7684. position:absolute;
  7685. left:698px;
  7686. top:817px;
  7687. width:37px;
  7688. height:17px;
  7689. display:flex;
  7690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7691. font-weight:400;
  7692. font-style:normal;
  7693. font-size:12px;
  7694. }
  7695. #u165667 .text {
  7696. position:absolute;
  7697. align-self:flex-start;
  7698. padding:0px 0px 0px 0px;
  7699. box-sizing:border-box;
  7700. width:100%;
  7701. }
  7702. #u165667_text {
  7703. border-width:0px;
  7704. white-space:nowrap;
  7705. text-transform:none;
  7706. }
  7707. #u165668 {
  7708. border-width:0px;
  7709. position:absolute;
  7710. left:0px;
  7711. top:0px;
  7712. width:0px;
  7713. height:0px;
  7714. }
  7715. #u165669_img {
  7716. border-width:0px;
  7717. position:absolute;
  7718. left:0px;
  7719. top:0px;
  7720. width:24px;
  7721. height:24px;
  7722. }
  7723. #u165669 {
  7724. border-width:0px;
  7725. position:absolute;
  7726. left:610px;
  7727. top:792px;
  7728. width:24px;
  7729. height:24px;
  7730. display:flex;
  7731. font-size:8px;
  7732. }
  7733. #u165669 .text {
  7734. position:absolute;
  7735. align-self:center;
  7736. padding:2px 2px 2px 2px;
  7737. box-sizing:border-box;
  7738. width:100%;
  7739. }
  7740. #u165669_text {
  7741. border-width:0px;
  7742. word-wrap:break-word;
  7743. text-transform:none;
  7744. }
  7745. #u165670_div {
  7746. border-width:0px;
  7747. position:absolute;
  7748. left:0px;
  7749. top:0px;
  7750. width:37px;
  7751. height:17px;
  7752. background:inherit;
  7753. background-color:rgba(255, 255, 255, 0);
  7754. border:none;
  7755. border-radius:0px;
  7756. -moz-box-shadow:none;
  7757. -webkit-box-shadow:none;
  7758. box-shadow:none;
  7759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7760. font-weight:400;
  7761. font-style:normal;
  7762. font-size:12px;
  7763. }
  7764. #u165670 {
  7765. border-width:0px;
  7766. position:absolute;
  7767. left:604px;
  7768. top:817px;
  7769. width:37px;
  7770. height:17px;
  7771. display:flex;
  7772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7773. font-weight:400;
  7774. font-style:normal;
  7775. font-size:12px;
  7776. }
  7777. #u165670 .text {
  7778. position:absolute;
  7779. align-self:flex-start;
  7780. padding:0px 0px 0px 0px;
  7781. box-sizing:border-box;
  7782. width:100%;
  7783. }
  7784. #u165670_text {
  7785. border-width:0px;
  7786. white-space:nowrap;
  7787. text-transform:none;
  7788. }
  7789. #u165671_img {
  7790. border-width:0px;
  7791. position:absolute;
  7792. left:0px;
  7793. top:0px;
  7794. width:375px;
  7795. height:769px;
  7796. }
  7797. #u165671 {
  7798. border-width:0px;
  7799. position:absolute;
  7800. left:482px;
  7801. top:70px;
  7802. width:375px;
  7803. height:769px;
  7804. display:flex;
  7805. }
  7806. #u165671 .text {
  7807. position:absolute;
  7808. align-self:center;
  7809. padding:2px 2px 2px 2px;
  7810. box-sizing:border-box;
  7811. width:100%;
  7812. }
  7813. #u165671_text {
  7814. border-width:0px;
  7815. word-wrap:break-word;
  7816. text-transform:none;
  7817. visibility:hidden;
  7818. }
  7819. #u165672_div {
  7820. border-width:0px;
  7821. position:absolute;
  7822. left:0px;
  7823. top:0px;
  7824. width:375px;
  7825. height:769px;
  7826. background:inherit;
  7827. background-color:rgba(255, 255, 255, 1);
  7828. border:none;
  7829. border-top:0px;
  7830. border-radius:24px;
  7831. border-top-left-radius:0px;
  7832. border-top-right-radius:0px;
  7833. -moz-box-shadow:none;
  7834. -webkit-box-shadow:none;
  7835. box-shadow:none;
  7836. }
  7837. #u165672 {
  7838. border-width:0px;
  7839. position:absolute;
  7840. left:482px;
  7841. top:70px;
  7842. width:375px;
  7843. height:769px;
  7844. display:flex;
  7845. }
  7846. #u165672 .text {
  7847. position:absolute;
  7848. align-self:center;
  7849. padding:2px 2px 2px 2px;
  7850. box-sizing:border-box;
  7851. width:100%;
  7852. }
  7853. #u165672_text {
  7854. border-width:0px;
  7855. word-wrap:break-word;
  7856. text-transform:none;
  7857. visibility:hidden;
  7858. }
  7859. #u165673_div {
  7860. border-width:0px;
  7861. position:absolute;
  7862. left:0px;
  7863. top:0px;
  7864. width:345px;
  7865. height:449px;
  7866. background:inherit;
  7867. background-color:rgba(255, 255, 255, 1);
  7868. border:none;
  7869. border-bottom:0px;
  7870. border-radius:10px;
  7871. border-bottom-right-radius:0px;
  7872. border-bottom-left-radius:0px;
  7873. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7874. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7875. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7876. }
  7877. #u165673 {
  7878. border-width:0px;
  7879. position:absolute;
  7880. left:497px;
  7881. top:302px;
  7882. width:345px;
  7883. height:449px;
  7884. display:flex;
  7885. }
  7886. #u165673 .text {
  7887. position:absolute;
  7888. align-self:center;
  7889. padding:2px 2px 2px 2px;
  7890. box-sizing:border-box;
  7891. width:100%;
  7892. }
  7893. #u165673_text {
  7894. border-width:0px;
  7895. word-wrap:break-word;
  7896. text-transform:none;
  7897. visibility:hidden;
  7898. }
  7899. #u165674_div {
  7900. border-width:0px;
  7901. position:absolute;
  7902. left:0px;
  7903. top:0px;
  7904. width:334px;
  7905. height:40px;
  7906. background:inherit;
  7907. background-color:rgba(41, 143, 255, 1);
  7908. border:none;
  7909. border-radius:82px;
  7910. -moz-box-shadow:none;
  7911. -webkit-box-shadow:none;
  7912. box-shadow:none;
  7913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7914. font-weight:400;
  7915. font-style:normal;
  7916. font-size:18px;
  7917. color:#FFFFFF;
  7918. }
  7919. #u165674 {
  7920. border-width:0px;
  7921. position:absolute;
  7922. left:500px;
  7923. top:768px;
  7924. width:334px;
  7925. height:40px;
  7926. display:flex;
  7927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7928. font-weight:400;
  7929. font-style:normal;
  7930. font-size:18px;
  7931. color:#FFFFFF;
  7932. }
  7933. #u165674 .text {
  7934. position:absolute;
  7935. align-self:center;
  7936. padding:2px 2px 2px 2px;
  7937. box-sizing:border-box;
  7938. width:100%;
  7939. }
  7940. #u165674_text {
  7941. border-width:0px;
  7942. word-wrap:break-word;
  7943. text-transform:none;
  7944. }
  7945. #u165675 {
  7946. border-width:0px;
  7947. position:absolute;
  7948. left:0px;
  7949. top:0px;
  7950. width:0px;
  7951. height:0px;
  7952. }
  7953. #u165676_div {
  7954. border-width:0px;
  7955. position:absolute;
  7956. left:0px;
  7957. top:0px;
  7958. width:269px;
  7959. height:30px;
  7960. background:inherit;
  7961. background-color:rgba(255, 255, 255, 0);
  7962. border:none;
  7963. border-left:0px;
  7964. border-top:0px;
  7965. border-right:0px;
  7966. border-radius:0px;
  7967. border-bottom-right-radius:0px;
  7968. border-bottom-left-radius:0px;
  7969. -moz-box-shadow:none;
  7970. -webkit-box-shadow:none;
  7971. box-shadow:none;
  7972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7973. font-weight:400;
  7974. font-style:normal;
  7975. font-size:14px;
  7976. color:#555555;
  7977. line-height:30px;
  7978. }
  7979. #u165676 {
  7980. border-width:0px;
  7981. position:absolute;
  7982. left:511px;
  7983. top:353px;
  7984. width:269px;
  7985. height:30px;
  7986. display:flex;
  7987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7988. font-weight:400;
  7989. font-style:normal;
  7990. font-size:14px;
  7991. color:#555555;
  7992. line-height:30px;
  7993. }
  7994. #u165676 .text {
  7995. position:absolute;
  7996. align-self:flex-start;
  7997. padding:0px 0px 0px 0px;
  7998. box-sizing:border-box;
  7999. width:100%;
  8000. }
  8001. #u165676_text {
  8002. border-width:0px;
  8003. white-space:nowrap;
  8004. text-transform:none;
  8005. }
  8006. #u165677_img {
  8007. border-width:0px;
  8008. position:absolute;
  8009. left:0px;
  8010. top:0px;
  8011. width:14px;
  8012. height:14px;
  8013. }
  8014. #u165677 {
  8015. border-width:0px;
  8016. position:absolute;
  8017. left:807px;
  8018. top:361px;
  8019. width:14px;
  8020. height:14px;
  8021. display:flex;
  8022. }
  8023. #u165677 .text {
  8024. position:absolute;
  8025. align-self:center;
  8026. padding:2px 2px 2px 2px;
  8027. box-sizing:border-box;
  8028. width:100%;
  8029. }
  8030. #u165677_text {
  8031. border-width:0px;
  8032. word-wrap:break-word;
  8033. text-transform:none;
  8034. visibility:hidden;
  8035. }
  8036. #u165678_div {
  8037. border-width:0px;
  8038. position:absolute;
  8039. left:0px;
  8040. top:0px;
  8041. width:55px;
  8042. height:30px;
  8043. background:inherit;
  8044. background-color:rgba(255, 255, 255, 0);
  8045. border:none;
  8046. border-left:0px;
  8047. border-top:0px;
  8048. border-right:0px;
  8049. border-radius:0px;
  8050. border-bottom-right-radius:0px;
  8051. border-bottom-left-radius:0px;
  8052. -moz-box-shadow:none;
  8053. -webkit-box-shadow:none;
  8054. box-shadow:none;
  8055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8056. font-weight:400;
  8057. font-style:normal;
  8058. font-size:18px;
  8059. line-height:30px;
  8060. }
  8061. #u165678 {
  8062. border-width:0px;
  8063. position:absolute;
  8064. left:640px;
  8065. top:77px;
  8066. width:55px;
  8067. height:30px;
  8068. display:flex;
  8069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8070. font-weight:400;
  8071. font-style:normal;
  8072. font-size:18px;
  8073. line-height:30px;
  8074. }
  8075. #u165678 .text {
  8076. position:absolute;
  8077. align-self:center;
  8078. padding:0px 0px 0px 0px;
  8079. box-sizing:border-box;
  8080. width:100%;
  8081. }
  8082. #u165678_text {
  8083. border-width:0px;
  8084. white-space:nowrap;
  8085. text-transform:none;
  8086. }
  8087. #u165679_img {
  8088. border-width:0px;
  8089. position:absolute;
  8090. left:0px;
  8091. top:0px;
  8092. width:15px;
  8093. height:15px;
  8094. }
  8095. #u165679 {
  8096. border-width:0px;
  8097. position:absolute;
  8098. left:500px;
  8099. top:84px;
  8100. width:15px;
  8101. height:15px;
  8102. display:flex;
  8103. }
  8104. #u165679 .text {
  8105. position:absolute;
  8106. align-self:center;
  8107. padding:2px 2px 2px 2px;
  8108. box-sizing:border-box;
  8109. width:100%;
  8110. }
  8111. #u165679_text {
  8112. border-width:0px;
  8113. word-wrap:break-word;
  8114. text-transform:none;
  8115. visibility:hidden;
  8116. }
  8117. #u165680_div {
  8118. border-width:0px;
  8119. position:absolute;
  8120. left:0px;
  8121. top:0px;
  8122. width:61px;
  8123. height:210px;
  8124. background:inherit;
  8125. background-color:rgba(255, 255, 255, 0);
  8126. border:none;
  8127. border-left:0px;
  8128. border-top:0px;
  8129. border-right:0px;
  8130. border-radius:0px;
  8131. border-bottom-right-radius:0px;
  8132. border-bottom-left-radius:0px;
  8133. -moz-box-shadow:none;
  8134. -webkit-box-shadow:none;
  8135. box-shadow:none;
  8136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8137. font-weight:400;
  8138. font-style:normal;
  8139. font-size:12px;
  8140. color:#7F7F7F;
  8141. line-height:30px;
  8142. }
  8143. #u165680 {
  8144. border-width:0px;
  8145. position:absolute;
  8146. left:515px;
  8147. top:476px;
  8148. width:61px;
  8149. height:210px;
  8150. display:flex;
  8151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8152. font-weight:400;
  8153. font-style:normal;
  8154. font-size:12px;
  8155. color:#7F7F7F;
  8156. line-height:30px;
  8157. }
  8158. #u165680 .text {
  8159. position:absolute;
  8160. align-self:flex-start;
  8161. padding:0px 0px 0px 0px;
  8162. box-sizing:border-box;
  8163. width:100%;
  8164. }
  8165. #u165680_text {
  8166. border-width:0px;
  8167. white-space:nowrap;
  8168. text-transform:none;
  8169. }
  8170. #u165681_img {
  8171. border-width:0px;
  8172. position:absolute;
  8173. left:0px;
  8174. top:0px;
  8175. width:70px;
  8176. height:30px;
  8177. }
  8178. #u165681 {
  8179. border-width:0px;
  8180. position:absolute;
  8181. left:787px;
  8182. top:77px;
  8183. width:70px;
  8184. height:30px;
  8185. display:flex;
  8186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8187. font-weight:400;
  8188. font-style:normal;
  8189. font-size:12px;
  8190. color:#298FFF;
  8191. }
  8192. #u165681 .text {
  8193. position:absolute;
  8194. align-self:center;
  8195. padding:2px 2px 2px 10px;
  8196. box-sizing:border-box;
  8197. width:100%;
  8198. }
  8199. #u165681_text {
  8200. border-width:0px;
  8201. word-wrap:break-word;
  8202. text-transform:none;
  8203. }
  8204. #u165682 {
  8205. border-width:0px;
  8206. position:absolute;
  8207. left:0px;
  8208. top:0px;
  8209. width:0px;
  8210. height:0px;
  8211. }
  8212. #u165683_div {
  8213. border-width:0px;
  8214. position:absolute;
  8215. left:0px;
  8216. top:0px;
  8217. width:100px;
  8218. height:71px;
  8219. background:inherit;
  8220. background-color:rgba(242, 242, 242, 0.498039215686275);
  8221. border:none;
  8222. border-radius:4px;
  8223. -moz-box-shadow:none;
  8224. -webkit-box-shadow:none;
  8225. box-shadow:none;
  8226. }
  8227. #u165683 {
  8228. border-width:0px;
  8229. position:absolute;
  8230. left:511px;
  8231. top:399px;
  8232. width:100px;
  8233. height:71px;
  8234. display:flex;
  8235. }
  8236. #u165683 .text {
  8237. position:absolute;
  8238. align-self:center;
  8239. padding:2px 2px 2px 2px;
  8240. box-sizing:border-box;
  8241. width:100%;
  8242. }
  8243. #u165683_text {
  8244. border-width:0px;
  8245. word-wrap:break-word;
  8246. text-transform:none;
  8247. visibility:hidden;
  8248. }
  8249. #u165684_div {
  8250. border-width:0px;
  8251. position:absolute;
  8252. left:0px;
  8253. top:0px;
  8254. width:81px;
  8255. height:27px;
  8256. background:inherit;
  8257. background-color:rgba(255, 255, 255, 0);
  8258. border:none;
  8259. border-left:0px;
  8260. border-top:0px;
  8261. border-right:0px;
  8262. border-radius:0px;
  8263. border-bottom-right-radius:0px;
  8264. border-bottom-left-radius:0px;
  8265. -moz-box-shadow:none;
  8266. -webkit-box-shadow:none;
  8267. box-shadow:none;
  8268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8269. font-weight:400;
  8270. font-style:normal;
  8271. font-size:12px;
  8272. color:#7F7F7F;
  8273. text-align:center;
  8274. line-height:30px;
  8275. }
  8276. #u165684 {
  8277. border-width:0px;
  8278. position:absolute;
  8279. left:521px;
  8280. top:434px;
  8281. width:81px;
  8282. height:27px;
  8283. display:flex;
  8284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8285. font-weight:400;
  8286. font-style:normal;
  8287. font-size:12px;
  8288. color:#7F7F7F;
  8289. text-align:center;
  8290. line-height:30px;
  8291. }
  8292. #u165684 .text {
  8293. position:absolute;
  8294. align-self:flex-start;
  8295. padding:0px 0px 0px 0px;
  8296. box-sizing:border-box;
  8297. width:100%;
  8298. }
  8299. #u165684_text {
  8300. border-width:0px;
  8301. word-wrap:break-word;
  8302. text-transform:none;
  8303. }
  8304. #u165685_div {
  8305. border-width:0px;
  8306. position:absolute;
  8307. left:0px;
  8308. top:0px;
  8309. width:70px;
  8310. height:27px;
  8311. background:inherit;
  8312. background-color:rgba(255, 255, 255, 0);
  8313. border:none;
  8314. border-left:0px;
  8315. border-top:0px;
  8316. border-right:0px;
  8317. border-radius:0px;
  8318. border-bottom-right-radius:0px;
  8319. border-bottom-left-radius:0px;
  8320. -moz-box-shadow:none;
  8321. -webkit-box-shadow:none;
  8322. box-shadow:none;
  8323. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8324. font-weight:500;
  8325. font-style:normal;
  8326. font-size:18px;
  8327. color:#298FFF;
  8328. text-align:center;
  8329. line-height:30px;
  8330. }
  8331. #u165685 {
  8332. border-width:0px;
  8333. position:absolute;
  8334. left:526px;
  8335. top:407px;
  8336. width:70px;
  8337. height:27px;
  8338. display:flex;
  8339. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8340. font-weight:500;
  8341. font-style:normal;
  8342. font-size:18px;
  8343. color:#298FFF;
  8344. text-align:center;
  8345. line-height:30px;
  8346. }
  8347. #u165685 .text {
  8348. position:absolute;
  8349. align-self:flex-start;
  8350. padding:0px 0px 0px 0px;
  8351. box-sizing:border-box;
  8352. width:100%;
  8353. }
  8354. #u165685_text {
  8355. border-width:0px;
  8356. word-wrap:break-word;
  8357. text-transform:none;
  8358. }
  8359. #u165686 {
  8360. border-width:0px;
  8361. position:absolute;
  8362. left:0px;
  8363. top:0px;
  8364. width:0px;
  8365. height:0px;
  8366. }
  8367. #u165687_div {
  8368. border-width:0px;
  8369. position:absolute;
  8370. left:0px;
  8371. top:0px;
  8372. width:100px;
  8373. height:71px;
  8374. background:inherit;
  8375. background-color:rgba(242, 242, 242, 0.498039215686275);
  8376. border:none;
  8377. border-radius:4px;
  8378. -moz-box-shadow:none;
  8379. -webkit-box-shadow:none;
  8380. box-shadow:none;
  8381. }
  8382. #u165687 {
  8383. border-width:0px;
  8384. position:absolute;
  8385. left:621px;
  8386. top:399px;
  8387. width:100px;
  8388. height:71px;
  8389. display:flex;
  8390. }
  8391. #u165687 .text {
  8392. position:absolute;
  8393. align-self:center;
  8394. padding:2px 2px 2px 2px;
  8395. box-sizing:border-box;
  8396. width:100%;
  8397. }
  8398. #u165687_text {
  8399. border-width:0px;
  8400. word-wrap:break-word;
  8401. text-transform:none;
  8402. visibility:hidden;
  8403. }
  8404. #u165688_div {
  8405. border-width:0px;
  8406. position:absolute;
  8407. left:0px;
  8408. top:0px;
  8409. width:81px;
  8410. height:27px;
  8411. background:inherit;
  8412. background-color:rgba(255, 255, 255, 0);
  8413. border:none;
  8414. border-left:0px;
  8415. border-top:0px;
  8416. border-right:0px;
  8417. border-radius:0px;
  8418. border-bottom-right-radius:0px;
  8419. border-bottom-left-radius:0px;
  8420. -moz-box-shadow:none;
  8421. -webkit-box-shadow:none;
  8422. box-shadow:none;
  8423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8424. font-weight:400;
  8425. font-style:normal;
  8426. font-size:12px;
  8427. color:#7F7F7F;
  8428. text-align:center;
  8429. line-height:30px;
  8430. }
  8431. #u165688 {
  8432. border-width:0px;
  8433. position:absolute;
  8434. left:631px;
  8435. top:434px;
  8436. width:81px;
  8437. height:27px;
  8438. display:flex;
  8439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8440. font-weight:400;
  8441. font-style:normal;
  8442. font-size:12px;
  8443. color:#7F7F7F;
  8444. text-align:center;
  8445. line-height:30px;
  8446. }
  8447. #u165688 .text {
  8448. position:absolute;
  8449. align-self:flex-start;
  8450. padding:0px 0px 0px 0px;
  8451. box-sizing:border-box;
  8452. width:100%;
  8453. }
  8454. #u165688_text {
  8455. border-width:0px;
  8456. word-wrap:break-word;
  8457. text-transform:none;
  8458. }
  8459. #u165689_div {
  8460. border-width:0px;
  8461. position:absolute;
  8462. left:0px;
  8463. top:0px;
  8464. width:70px;
  8465. height:27px;
  8466. background:inherit;
  8467. background-color:rgba(255, 255, 255, 0);
  8468. border:none;
  8469. border-left:0px;
  8470. border-top:0px;
  8471. border-right:0px;
  8472. border-radius:0px;
  8473. border-bottom-right-radius:0px;
  8474. border-bottom-left-radius:0px;
  8475. -moz-box-shadow:none;
  8476. -webkit-box-shadow:none;
  8477. box-shadow:none;
  8478. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8479. font-weight:500;
  8480. font-style:normal;
  8481. font-size:18px;
  8482. color:#298FFF;
  8483. text-align:center;
  8484. line-height:30px;
  8485. }
  8486. #u165689 {
  8487. border-width:0px;
  8488. position:absolute;
  8489. left:636px;
  8490. top:407px;
  8491. width:70px;
  8492. height:27px;
  8493. display:flex;
  8494. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8495. font-weight:500;
  8496. font-style:normal;
  8497. font-size:18px;
  8498. color:#298FFF;
  8499. text-align:center;
  8500. line-height:30px;
  8501. }
  8502. #u165689 .text {
  8503. position:absolute;
  8504. align-self:flex-start;
  8505. padding:0px 0px 0px 0px;
  8506. box-sizing:border-box;
  8507. width:100%;
  8508. }
  8509. #u165689_text {
  8510. border-width:0px;
  8511. word-wrap:break-word;
  8512. text-transform:none;
  8513. }
  8514. #u165690 {
  8515. border-width:0px;
  8516. position:absolute;
  8517. left:0px;
  8518. top:0px;
  8519. width:0px;
  8520. height:0px;
  8521. }
  8522. #u165691_div {
  8523. border-width:0px;
  8524. position:absolute;
  8525. left:0px;
  8526. top:0px;
  8527. width:100px;
  8528. height:71px;
  8529. background:inherit;
  8530. background-color:rgba(242, 242, 242, 0.498039215686275);
  8531. border:none;
  8532. border-radius:4px;
  8533. -moz-box-shadow:none;
  8534. -webkit-box-shadow:none;
  8535. box-shadow:none;
  8536. }
  8537. #u165691 {
  8538. border-width:0px;
  8539. position:absolute;
  8540. left:727px;
  8541. top:399px;
  8542. width:100px;
  8543. height:71px;
  8544. display:flex;
  8545. }
  8546. #u165691 .text {
  8547. position:absolute;
  8548. align-self:center;
  8549. padding:2px 2px 2px 2px;
  8550. box-sizing:border-box;
  8551. width:100%;
  8552. }
  8553. #u165691_text {
  8554. border-width:0px;
  8555. word-wrap:break-word;
  8556. text-transform:none;
  8557. visibility:hidden;
  8558. }
  8559. #u165692_div {
  8560. border-width:0px;
  8561. position:absolute;
  8562. left:0px;
  8563. top:0px;
  8564. width:81px;
  8565. height:27px;
  8566. background:inherit;
  8567. background-color:rgba(255, 255, 255, 0);
  8568. border:none;
  8569. border-left:0px;
  8570. border-top:0px;
  8571. border-right:0px;
  8572. border-radius:0px;
  8573. border-bottom-right-radius:0px;
  8574. border-bottom-left-radius:0px;
  8575. -moz-box-shadow:none;
  8576. -webkit-box-shadow:none;
  8577. box-shadow:none;
  8578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8579. font-weight:400;
  8580. font-style:normal;
  8581. font-size:12px;
  8582. color:#7F7F7F;
  8583. text-align:center;
  8584. line-height:30px;
  8585. }
  8586. #u165692 {
  8587. border-width:0px;
  8588. position:absolute;
  8589. left:737px;
  8590. top:433px;
  8591. width:81px;
  8592. height:27px;
  8593. display:flex;
  8594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8595. font-weight:400;
  8596. font-style:normal;
  8597. font-size:12px;
  8598. color:#7F7F7F;
  8599. text-align:center;
  8600. line-height:30px;
  8601. }
  8602. #u165692 .text {
  8603. position:absolute;
  8604. align-self:flex-start;
  8605. padding:0px 0px 0px 0px;
  8606. box-sizing:border-box;
  8607. width:100%;
  8608. }
  8609. #u165692_text {
  8610. border-width:0px;
  8611. word-wrap:break-word;
  8612. text-transform:none;
  8613. }
  8614. #u165693_div {
  8615. border-width:0px;
  8616. position:absolute;
  8617. left:0px;
  8618. top:0px;
  8619. width:70px;
  8620. height:27px;
  8621. background:inherit;
  8622. background-color:rgba(255, 255, 255, 0);
  8623. border:none;
  8624. border-left:0px;
  8625. border-top:0px;
  8626. border-right:0px;
  8627. border-radius:0px;
  8628. border-bottom-right-radius:0px;
  8629. border-bottom-left-radius:0px;
  8630. -moz-box-shadow:none;
  8631. -webkit-box-shadow:none;
  8632. box-shadow:none;
  8633. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8634. font-weight:500;
  8635. font-style:normal;
  8636. font-size:18px;
  8637. color:#298FFF;
  8638. text-align:center;
  8639. line-height:30px;
  8640. }
  8641. #u165693 {
  8642. border-width:0px;
  8643. position:absolute;
  8644. left:743px;
  8645. top:407px;
  8646. width:70px;
  8647. height:27px;
  8648. display:flex;
  8649. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8650. font-weight:500;
  8651. font-style:normal;
  8652. font-size:18px;
  8653. color:#298FFF;
  8654. text-align:center;
  8655. line-height:30px;
  8656. }
  8657. #u165693 .text {
  8658. position:absolute;
  8659. align-self:flex-start;
  8660. padding:0px 0px 0px 0px;
  8661. box-sizing:border-box;
  8662. width:100%;
  8663. }
  8664. #u165693_text {
  8665. border-width:0px;
  8666. word-wrap:break-word;
  8667. text-transform:none;
  8668. }
  8669. #u165694_img {
  8670. border-width:0px;
  8671. position:absolute;
  8672. left:0px;
  8673. top:0px;
  8674. width:380px;
  8675. height:170px;
  8676. }
  8677. #u165694 {
  8678. border-width:0px;
  8679. position:absolute;
  8680. left:482px;
  8681. top:114px;
  8682. width:380px;
  8683. height:170px;
  8684. display:flex;
  8685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8686. font-weight:400;
  8687. font-style:normal;
  8688. font-size:28px;
  8689. color:#FFFFFF;
  8690. }
  8691. #u165694 .text {
  8692. position:absolute;
  8693. align-self:center;
  8694. padding:2px 2px 2px 2px;
  8695. box-sizing:border-box;
  8696. width:100%;
  8697. }
  8698. #u165694_text {
  8699. border-width:0px;
  8700. word-wrap:break-word;
  8701. text-transform:none;
  8702. }
  8703. #u165695_div {
  8704. border-width:0px;
  8705. position:absolute;
  8706. left:0px;
  8707. top:0px;
  8708. width:85px;
  8709. height:30px;
  8710. background:inherit;
  8711. background-color:rgba(255, 255, 255, 0);
  8712. border:none;
  8713. border-left:0px;
  8714. border-top:0px;
  8715. border-right:0px;
  8716. border-radius:0px;
  8717. border-bottom-right-radius:0px;
  8718. border-bottom-left-radius:0px;
  8719. -moz-box-shadow:none;
  8720. -webkit-box-shadow:none;
  8721. box-shadow:none;
  8722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8723. font-weight:400;
  8724. font-style:normal;
  8725. font-size:14px;
  8726. color:#00BFBF;
  8727. line-height:30px;
  8728. }
  8729. #u165695 {
  8730. border-width:0px;
  8731. position:absolute;
  8732. left:545px;
  8733. top:314px;
  8734. width:85px;
  8735. height:30px;
  8736. display:flex;
  8737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8738. font-weight:400;
  8739. font-style:normal;
  8740. font-size:14px;
  8741. color:#00BFBF;
  8742. line-height:30px;
  8743. }
  8744. #u165695 .text {
  8745. position:absolute;
  8746. align-self:flex-start;
  8747. padding:0px 0px 0px 0px;
  8748. box-sizing:border-box;
  8749. width:100%;
  8750. }
  8751. #u165695_text {
  8752. border-width:0px;
  8753. white-space:nowrap;
  8754. text-transform:none;
  8755. }
  8756. #u165696_div {
  8757. border-width:0px;
  8758. position:absolute;
  8759. left:0px;
  8760. top:0px;
  8761. width:25px;
  8762. height:30px;
  8763. background:inherit;
  8764. background-color:rgba(255, 255, 255, 0);
  8765. border:none;
  8766. border-left:0px;
  8767. border-top:0px;
  8768. border-right:0px;
  8769. border-radius:0px;
  8770. border-bottom-right-radius:0px;
  8771. border-bottom-left-radius:0px;
  8772. -moz-box-shadow:none;
  8773. -webkit-box-shadow:none;
  8774. box-shadow:none;
  8775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8776. font-weight:400;
  8777. font-style:normal;
  8778. font-size:12px;
  8779. color:#298FFF;
  8780. line-height:30px;
  8781. }
  8782. #u165696 {
  8783. border-width:0px;
  8784. position:absolute;
  8785. left:800px;
  8786. top:314px;
  8787. width:25px;
  8788. height:30px;
  8789. display:flex;
  8790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8791. font-weight:400;
  8792. font-style:normal;
  8793. font-size:12px;
  8794. color:#298FFF;
  8795. line-height:30px;
  8796. }
  8797. #u165696 .text {
  8798. position:absolute;
  8799. align-self:flex-start;
  8800. padding:0px 0px 0px 0px;
  8801. box-sizing:border-box;
  8802. width:100%;
  8803. }
  8804. #u165696_text {
  8805. border-width:0px;
  8806. white-space:nowrap;
  8807. text-transform:none;
  8808. }
  8809. #u165697_img {
  8810. border-width:0px;
  8811. position:absolute;
  8812. left:0px;
  8813. top:0px;
  8814. width:317px;
  8815. height:2px;
  8816. }
  8817. #u165697 {
  8818. border-width:0px;
  8819. position:absolute;
  8820. left:511px;
  8821. top:388px;
  8822. width:316px;
  8823. height:1px;
  8824. display:flex;
  8825. }
  8826. #u165697 .text {
  8827. position:absolute;
  8828. align-self:center;
  8829. padding:2px 2px 2px 2px;
  8830. box-sizing:border-box;
  8831. width:100%;
  8832. }
  8833. #u165697_text {
  8834. border-width:0px;
  8835. word-wrap:break-word;
  8836. text-transform:none;
  8837. visibility:hidden;
  8838. }
  8839. #u165698_div {
  8840. border-width:0px;
  8841. position:absolute;
  8842. left:0px;
  8843. top:0px;
  8844. width:175px;
  8845. height:210px;
  8846. background:inherit;
  8847. background-color:rgba(255, 255, 255, 0);
  8848. border:none;
  8849. border-left:0px;
  8850. border-top:0px;
  8851. border-right:0px;
  8852. border-radius:0px;
  8853. border-bottom-right-radius:0px;
  8854. border-bottom-left-radius:0px;
  8855. -moz-box-shadow:none;
  8856. -webkit-box-shadow:none;
  8857. box-shadow:none;
  8858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8859. font-weight:400;
  8860. font-style:normal;
  8861. font-size:12px;
  8862. text-align:right;
  8863. line-height:30px;
  8864. }
  8865. #u165698 {
  8866. border-width:0px;
  8867. position:absolute;
  8868. left:646px;
  8869. top:476px;
  8870. width:175px;
  8871. height:210px;
  8872. display:flex;
  8873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8874. font-weight:400;
  8875. font-style:normal;
  8876. font-size:12px;
  8877. text-align:right;
  8878. line-height:30px;
  8879. }
  8880. #u165698 .text {
  8881. position:absolute;
  8882. align-self:flex-start;
  8883. padding:0px 0px 0px 0px;
  8884. box-sizing:border-box;
  8885. width:100%;
  8886. }
  8887. #u165698_text {
  8888. border-width:0px;
  8889. white-space:nowrap;
  8890. text-transform:none;
  8891. }
  8892. #u165699_div {
  8893. border-width:0px;
  8894. position:absolute;
  8895. left:0px;
  8896. top:0px;
  8897. width:20px;
  8898. height:30px;
  8899. background:inherit;
  8900. background-color:rgba(255, 255, 255, 0);
  8901. border:none;
  8902. border-left:0px;
  8903. border-top:0px;
  8904. border-right:0px;
  8905. border-radius:0px;
  8906. border-bottom-right-radius:0px;
  8907. border-bottom-left-radius:0px;
  8908. -moz-box-shadow:none;
  8909. -webkit-box-shadow:none;
  8910. box-shadow:none;
  8911. font-family:'AppleColorEmoji', 'Apple Color Emoji', sans-serif;
  8912. font-weight:400;
  8913. font-style:normal;
  8914. font-size:14px;
  8915. color:#D9001B;
  8916. line-height:30px;
  8917. }
  8918. #u165699 {
  8919. border-width:0px;
  8920. position:absolute;
  8921. left:515px;
  8922. top:314px;
  8923. width:20px;
  8924. height:30px;
  8925. display:flex;
  8926. font-family:'AppleColorEmoji', 'Apple Color Emoji', sans-serif;
  8927. font-weight:400;
  8928. font-style:normal;
  8929. font-size:14px;
  8930. color:#D9001B;
  8931. line-height:30px;
  8932. }
  8933. #u165699 .text {
  8934. position:absolute;
  8935. align-self:flex-start;
  8936. padding:0px 0px 0px 0px;
  8937. box-sizing:border-box;
  8938. width:100%;
  8939. }
  8940. #u165699_text {
  8941. border-width:0px;
  8942. white-space:nowrap;
  8943. text-transform:none;
  8944. }
  8945. #u165700_div {
  8946. border-width:0px;
  8947. position:absolute;
  8948. left:0px;
  8949. top:0px;
  8950. width:31px;
  8951. height:14px;
  8952. background:inherit;
  8953. background-color:rgba(215, 215, 215, 1);
  8954. border:none;
  8955. border-radius:2px;
  8956. -moz-box-shadow:none;
  8957. -webkit-box-shadow:none;
  8958. box-shadow:none;
  8959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8960. font-weight:400;
  8961. font-style:normal;
  8962. font-size:10px;
  8963. color:#000000;
  8964. }
  8965. #u165700 {
  8966. border-width:0px;
  8967. position:absolute;
  8968. left:1610px;
  8969. top:246px;
  8970. width:31px;
  8971. height:14px;
  8972. display:flex;
  8973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8974. font-weight:400;
  8975. font-style:normal;
  8976. font-size:10px;
  8977. color:#000000;
  8978. }
  8979. #u165700 .text {
  8980. position:absolute;
  8981. align-self:flex-start;
  8982. padding:0px 0px 0px 0px;
  8983. box-sizing:border-box;
  8984. width:100%;
  8985. }
  8986. #u165700_text {
  8987. border-width:0px;
  8988. white-space:nowrap;
  8989. text-transform:none;
  8990. }
  8991. #u165701_div {
  8992. border-width:0px;
  8993. position:absolute;
  8994. left:0px;
  8995. top:0px;
  8996. width:31px;
  8997. height:14px;
  8998. background:inherit;
  8999. background-color:rgba(215, 215, 215, 1);
  9000. border:none;
  9001. border-radius:2px;
  9002. -moz-box-shadow:none;
  9003. -webkit-box-shadow:none;
  9004. box-shadow:none;
  9005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9006. font-weight:400;
  9007. font-style:normal;
  9008. font-size:10px;
  9009. color:#000000;
  9010. }
  9011. #u165701 {
  9012. border-width:0px;
  9013. position:absolute;
  9014. left:2065px;
  9015. top:246px;
  9016. width:31px;
  9017. height:14px;
  9018. display:flex;
  9019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9020. font-weight:400;
  9021. font-style:normal;
  9022. font-size:10px;
  9023. color:#000000;
  9024. }
  9025. #u165701 .text {
  9026. position:absolute;
  9027. align-self:flex-start;
  9028. padding:0px 0px 0px 0px;
  9029. box-sizing:border-box;
  9030. width:100%;
  9031. }
  9032. #u165701_text {
  9033. border-width:0px;
  9034. white-space:nowrap;
  9035. text-transform:none;
  9036. }
  9037. #u165703_img {
  9038. border-width:0px;
  9039. position:absolute;
  9040. left:0px;
  9041. top:0px;
  9042. width:433px;
  9043. height:865px;
  9044. }
  9045. #u165703 {
  9046. border-width:0px;
  9047. position:absolute;
  9048. left:0px;
  9049. top:0px;
  9050. width:433px;
  9051. height:865px;
  9052. display:flex;
  9053. }
  9054. #u165703 .text {
  9055. position:absolute;
  9056. align-self:center;
  9057. padding:2px 2px 2px 2px;
  9058. box-sizing:border-box;
  9059. width:100%;
  9060. }
  9061. #u165703_text {
  9062. border-width:0px;
  9063. word-wrap:break-word;
  9064. text-transform:none;
  9065. visibility:hidden;
  9066. }
  9067. #u165704_div {
  9068. border-width:0px;
  9069. position:absolute;
  9070. left:0px;
  9071. top:0px;
  9072. width:375px;
  9073. height:40px;
  9074. background:inherit;
  9075. background-color:rgba(255, 255, 255, 1);
  9076. box-sizing:border-box;
  9077. border-width:1px;
  9078. border-style:solid;
  9079. border-color:rgba(215, 215, 215, 1);
  9080. border-left:0px;
  9081. border-top:0px;
  9082. border-right:0px;
  9083. border-radius:0px;
  9084. border-bottom-right-radius:0px;
  9085. border-bottom-left-radius:0px;
  9086. -moz-box-shadow:none;
  9087. -webkit-box-shadow:none;
  9088. box-shadow:none;
  9089. }
  9090. #u165704 {
  9091. border-width:0px;
  9092. position:absolute;
  9093. left:29px;
  9094. top:67px;
  9095. width:375px;
  9096. height:40px;
  9097. display:flex;
  9098. }
  9099. #u165704 .text {
  9100. position:absolute;
  9101. align-self:center;
  9102. padding:2px 2px 2px 2px;
  9103. box-sizing:border-box;
  9104. width:100%;
  9105. }
  9106. #u165704_text {
  9107. border-width:0px;
  9108. word-wrap:break-word;
  9109. text-transform:none;
  9110. visibility:hidden;
  9111. }
  9112. #u165705 {
  9113. border-width:0px;
  9114. position:absolute;
  9115. left:0px;
  9116. top:0px;
  9117. width:0px;
  9118. height:0px;
  9119. }
  9120. #u165706_div {
  9121. border-width:0px;
  9122. position:absolute;
  9123. left:0px;
  9124. top:0px;
  9125. width:88px;
  9126. height:32px;
  9127. background:inherit;
  9128. background-color:rgba(255, 255, 255, 1);
  9129. box-sizing:border-box;
  9130. border-width:1px;
  9131. border-style:solid;
  9132. border-color:rgba(242, 242, 242, 1);
  9133. border-radius:33px;
  9134. -moz-box-shadow:none;
  9135. -webkit-box-shadow:none;
  9136. box-shadow:none;
  9137. }
  9138. #u165706 {
  9139. border-width:0px;
  9140. position:absolute;
  9141. left:309px;
  9142. top:71px;
  9143. width:88px;
  9144. height:32px;
  9145. display:flex;
  9146. }
  9147. #u165706 .text {
  9148. position:absolute;
  9149. align-self:center;
  9150. padding:2px 2px 2px 2px;
  9151. box-sizing:border-box;
  9152. width:100%;
  9153. }
  9154. #u165706_text {
  9155. border-width:0px;
  9156. word-wrap:break-word;
  9157. text-transform:none;
  9158. visibility:hidden;
  9159. }
  9160. #u165707 {
  9161. border-width:0px;
  9162. position:absolute;
  9163. left:0px;
  9164. top:0px;
  9165. width:0px;
  9166. height:0px;
  9167. }
  9168. #u165708_img {
  9169. border-width:0px;
  9170. position:absolute;
  9171. left:0px;
  9172. top:0px;
  9173. width:18px;
  9174. height:18px;
  9175. }
  9176. #u165708 {
  9177. border-width:0px;
  9178. position:absolute;
  9179. left:372px;
  9180. top:78px;
  9181. width:18px;
  9182. height:18px;
  9183. display:flex;
  9184. }
  9185. #u165708 .text {
  9186. position:absolute;
  9187. align-self:center;
  9188. padding:2px 2px 2px 2px;
  9189. box-sizing:border-box;
  9190. width:100%;
  9191. }
  9192. #u165708_text {
  9193. border-width:0px;
  9194. word-wrap:break-word;
  9195. text-transform:none;
  9196. visibility:hidden;
  9197. }
  9198. #u165709_img {
  9199. border-width:0px;
  9200. position:absolute;
  9201. left:0px;
  9202. top:0px;
  9203. width:6px;
  9204. height:6px;
  9205. }
  9206. #u165709 {
  9207. border-width:0px;
  9208. position:absolute;
  9209. left:378px;
  9210. top:84px;
  9211. width:6px;
  9212. height:6px;
  9213. display:flex;
  9214. }
  9215. #u165709 .text {
  9216. position:absolute;
  9217. align-self:center;
  9218. padding:2px 2px 2px 2px;
  9219. box-sizing:border-box;
  9220. width:100%;
  9221. }
  9222. #u165709_text {
  9223. border-width:0px;
  9224. word-wrap:break-word;
  9225. text-transform:none;
  9226. visibility:hidden;
  9227. }
  9228. #u165710 {
  9229. border-width:0px;
  9230. position:absolute;
  9231. left:0px;
  9232. top:0px;
  9233. width:0px;
  9234. height:0px;
  9235. }
  9236. #u165711_img {
  9237. border-width:0px;
  9238. position:absolute;
  9239. left:0px;
  9240. top:0px;
  9241. width:5px;
  9242. height:5px;
  9243. }
  9244. #u165711 {
  9245. border-width:0px;
  9246. position:absolute;
  9247. left:323px;
  9248. top:85px;
  9249. width:5px;
  9250. height:5px;
  9251. display:flex;
  9252. }
  9253. #u165711 .text {
  9254. position:absolute;
  9255. align-self:center;
  9256. padding:2px 2px 2px 2px;
  9257. box-sizing:border-box;
  9258. width:100%;
  9259. }
  9260. #u165711_text {
  9261. border-width:0px;
  9262. word-wrap:break-word;
  9263. text-transform:none;
  9264. visibility:hidden;
  9265. }
  9266. #u165712_img {
  9267. border-width:0px;
  9268. position:absolute;
  9269. left:0px;
  9270. top:0px;
  9271. width:5px;
  9272. height:5px;
  9273. }
  9274. #u165712 {
  9275. border-width:0px;
  9276. position:absolute;
  9277. left:339px;
  9278. top:85px;
  9279. width:5px;
  9280. height:5px;
  9281. display:flex;
  9282. }
  9283. #u165712 .text {
  9284. position:absolute;
  9285. align-self:center;
  9286. padding:2px 2px 2px 2px;
  9287. box-sizing:border-box;
  9288. width:100%;
  9289. }
  9290. #u165712_text {
  9291. border-width:0px;
  9292. word-wrap:break-word;
  9293. text-transform:none;
  9294. visibility:hidden;
  9295. }
  9296. #u165713_img {
  9297. border-width:0px;
  9298. position:absolute;
  9299. left:0px;
  9300. top:0px;
  9301. width:7px;
  9302. height:7px;
  9303. }
  9304. #u165713 {
  9305. border-width:0px;
  9306. position:absolute;
  9307. left:330px;
  9308. top:84px;
  9309. width:7px;
  9310. height:7px;
  9311. display:flex;
  9312. }
  9313. #u165713 .text {
  9314. position:absolute;
  9315. align-self:center;
  9316. padding:2px 2px 2px 2px;
  9317. box-sizing:border-box;
  9318. width:100%;
  9319. }
  9320. #u165713_text {
  9321. border-width:0px;
  9322. word-wrap:break-word;
  9323. text-transform:none;
  9324. visibility:hidden;
  9325. }
  9326. #u165714_img {
  9327. border-width:0px;
  9328. position:absolute;
  9329. left:0px;
  9330. top:0px;
  9331. width:19px;
  9332. height:2px;
  9333. }
  9334. #u165714 {
  9335. border-width:0px;
  9336. position:absolute;
  9337. left:347px;
  9338. top:87px;
  9339. width:18px;
  9340. height:1px;
  9341. display:flex;
  9342. -webkit-transform:rotate(90deg);
  9343. -moz-transform:rotate(90deg);
  9344. -ms-transform:rotate(90deg);
  9345. transform:rotate(90deg);
  9346. }
  9347. #u165714 .text {
  9348. position:absolute;
  9349. align-self:center;
  9350. padding:2px 2px 2px 2px;
  9351. box-sizing:border-box;
  9352. width:100%;
  9353. }
  9354. #u165714_text {
  9355. border-width:0px;
  9356. word-wrap:break-word;
  9357. text-transform:none;
  9358. visibility:hidden;
  9359. }
  9360. #u165715_img {
  9361. border-width:0px;
  9362. position:absolute;
  9363. left:0px;
  9364. top:0px;
  9365. width:375px;
  9366. height:44px;
  9367. }
  9368. #u165715 {
  9369. border-width:0px;
  9370. position:absolute;
  9371. left:29px;
  9372. top:24px;
  9373. width:375px;
  9374. height:44px;
  9375. display:flex;
  9376. }
  9377. #u165715 .text {
  9378. position:absolute;
  9379. align-self:center;
  9380. padding:2px 2px 2px 2px;
  9381. box-sizing:border-box;
  9382. width:100%;
  9383. }
  9384. #u165715_text {
  9385. border-width:0px;
  9386. word-wrap:break-word;
  9387. text-transform:none;
  9388. visibility:hidden;
  9389. }
  9390. #u165716_div {
  9391. border-width:0px;
  9392. position:absolute;
  9393. left:0px;
  9394. top:0px;
  9395. width:375px;
  9396. height:50px;
  9397. background:inherit;
  9398. background-color:rgba(255, 255, 255, 1);
  9399. box-sizing:border-box;
  9400. border-width:1px;
  9401. border-style:solid;
  9402. border-color:rgba(242, 242, 242, 1);
  9403. border-radius:26px;
  9404. border-top-left-radius:0px;
  9405. border-top-right-radius:0px;
  9406. -moz-box-shadow:none;
  9407. -webkit-box-shadow:none;
  9408. box-shadow:none;
  9409. }
  9410. #u165716 {
  9411. border-width:0px;
  9412. position:absolute;
  9413. left:29px;
  9414. top:788px;
  9415. width:375px;
  9416. height:50px;
  9417. display:flex;
  9418. }
  9419. #u165716 .text {
  9420. position:absolute;
  9421. align-self:center;
  9422. padding:2px 2px 2px 2px;
  9423. box-sizing:border-box;
  9424. width:100%;
  9425. }
  9426. #u165716_text {
  9427. border-width:0px;
  9428. word-wrap:break-word;
  9429. text-transform:none;
  9430. visibility:hidden;
  9431. }
  9432. #u165717 {
  9433. border-width:0px;
  9434. position:absolute;
  9435. left:0px;
  9436. top:0px;
  9437. width:0px;
  9438. height:0px;
  9439. }
  9440. #u165718_img {
  9441. border-width:0px;
  9442. position:absolute;
  9443. left:0px;
  9444. top:0px;
  9445. width:24px;
  9446. height:24px;
  9447. }
  9448. #u165718 {
  9449. border-width:0px;
  9450. position:absolute;
  9451. left:69px;
  9452. top:792px;
  9453. width:24px;
  9454. height:24px;
  9455. display:flex;
  9456. font-size:8px;
  9457. }
  9458. #u165718 .text {
  9459. position:absolute;
  9460. align-self:center;
  9461. padding:2px 2px 2px 2px;
  9462. box-sizing:border-box;
  9463. width:100%;
  9464. }
  9465. #u165718_text {
  9466. border-width:0px;
  9467. word-wrap:break-word;
  9468. text-transform:none;
  9469. }
  9470. #u165719_div {
  9471. border-width:0px;
  9472. position:absolute;
  9473. left:0px;
  9474. top:0px;
  9475. width:25px;
  9476. height:17px;
  9477. background:inherit;
  9478. background-color:rgba(255, 255, 255, 0);
  9479. border:none;
  9480. border-radius:0px;
  9481. -moz-box-shadow:none;
  9482. -webkit-box-shadow:none;
  9483. box-shadow:none;
  9484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9485. font-weight:400;
  9486. font-style:normal;
  9487. font-size:12px;
  9488. }
  9489. #u165719 {
  9490. border-width:0px;
  9491. position:absolute;
  9492. left:69px;
  9493. top:817px;
  9494. width:25px;
  9495. height:17px;
  9496. display:flex;
  9497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9498. font-weight:400;
  9499. font-style:normal;
  9500. font-size:12px;
  9501. }
  9502. #u165719 .text {
  9503. position:absolute;
  9504. align-self:flex-start;
  9505. padding:0px 0px 0px 0px;
  9506. box-sizing:border-box;
  9507. width:100%;
  9508. }
  9509. #u165719_text {
  9510. border-width:0px;
  9511. white-space:nowrap;
  9512. text-transform:none;
  9513. }
  9514. #u165720 {
  9515. border-width:0px;
  9516. position:absolute;
  9517. left:0px;
  9518. top:0px;
  9519. width:0px;
  9520. height:0px;
  9521. }
  9522. #u165721_img {
  9523. border-width:0px;
  9524. position:absolute;
  9525. left:0px;
  9526. top:0px;
  9527. width:24px;
  9528. height:24px;
  9529. }
  9530. #u165721 {
  9531. border-width:0px;
  9532. position:absolute;
  9533. left:339px;
  9534. top:794px;
  9535. width:24px;
  9536. height:24px;
  9537. display:flex;
  9538. font-size:8px;
  9539. }
  9540. #u165721 .text {
  9541. position:absolute;
  9542. align-self:center;
  9543. padding:2px 2px 2px 2px;
  9544. box-sizing:border-box;
  9545. width:100%;
  9546. }
  9547. #u165721_text {
  9548. border-width:0px;
  9549. word-wrap:break-word;
  9550. text-transform:none;
  9551. }
  9552. #u165722_div {
  9553. border-width:0px;
  9554. position:absolute;
  9555. left:0px;
  9556. top:0px;
  9557. width:25px;
  9558. height:17px;
  9559. background:inherit;
  9560. background-color:rgba(255, 255, 255, 0);
  9561. border:none;
  9562. border-radius:0px;
  9563. -moz-box-shadow:none;
  9564. -webkit-box-shadow:none;
  9565. box-shadow:none;
  9566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9567. font-weight:400;
  9568. font-style:normal;
  9569. font-size:12px;
  9570. }
  9571. #u165722 {
  9572. border-width:0px;
  9573. position:absolute;
  9574. left:339px;
  9575. top:819px;
  9576. width:25px;
  9577. height:17px;
  9578. display:flex;
  9579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9580. font-weight:400;
  9581. font-style:normal;
  9582. font-size:12px;
  9583. }
  9584. #u165722 .text {
  9585. position:absolute;
  9586. align-self:flex-start;
  9587. padding:0px 0px 0px 0px;
  9588. box-sizing:border-box;
  9589. width:100%;
  9590. }
  9591. #u165722_text {
  9592. border-width:0px;
  9593. white-space:nowrap;
  9594. text-transform:none;
  9595. }
  9596. #u165723_div {
  9597. border-width:0px;
  9598. position:absolute;
  9599. left:0px;
  9600. top:0px;
  9601. width:375px;
  9602. height:681px;
  9603. background:inherit;
  9604. background-color:rgba(242, 242, 242, 0.462745098039216);
  9605. border:none;
  9606. border-radius:0px;
  9607. -moz-box-shadow:none;
  9608. -webkit-box-shadow:none;
  9609. box-shadow:none;
  9610. }
  9611. #u165723 {
  9612. border-width:0px;
  9613. position:absolute;
  9614. left:29px;
  9615. top:107px;
  9616. width:375px;
  9617. height:681px;
  9618. display:flex;
  9619. }
  9620. #u165723 .text {
  9621. position:absolute;
  9622. align-self:center;
  9623. padding:2px 2px 2px 2px;
  9624. box-sizing:border-box;
  9625. width:100%;
  9626. }
  9627. #u165723_text {
  9628. border-width:0px;
  9629. word-wrap:break-word;
  9630. text-transform:none;
  9631. visibility:hidden;
  9632. }
  9633. #u165724 {
  9634. border-width:0px;
  9635. position:absolute;
  9636. left:0px;
  9637. top:0px;
  9638. width:0px;
  9639. height:0px;
  9640. }
  9641. #u165725_img {
  9642. border-width:0px;
  9643. position:absolute;
  9644. left:0px;
  9645. top:0px;
  9646. width:24px;
  9647. height:24px;
  9648. }
  9649. #u165725 {
  9650. border-width:0px;
  9651. position:absolute;
  9652. left:251px;
  9653. top:792px;
  9654. width:24px;
  9655. height:24px;
  9656. display:flex;
  9657. font-size:8px;
  9658. }
  9659. #u165725 .text {
  9660. position:absolute;
  9661. align-self:center;
  9662. padding:2px 2px 2px 2px;
  9663. box-sizing:border-box;
  9664. width:100%;
  9665. }
  9666. #u165725_text {
  9667. border-width:0px;
  9668. word-wrap:break-word;
  9669. text-transform:none;
  9670. }
  9671. #u165726_div {
  9672. border-width:0px;
  9673. position:absolute;
  9674. left:0px;
  9675. top:0px;
  9676. width:37px;
  9677. height:17px;
  9678. background:inherit;
  9679. background-color:rgba(255, 255, 255, 0);
  9680. border:none;
  9681. border-radius:0px;
  9682. -moz-box-shadow:none;
  9683. -webkit-box-shadow:none;
  9684. box-shadow:none;
  9685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9686. font-weight:400;
  9687. font-style:normal;
  9688. font-size:12px;
  9689. }
  9690. #u165726 {
  9691. border-width:0px;
  9692. position:absolute;
  9693. left:245px;
  9694. top:817px;
  9695. width:37px;
  9696. height:17px;
  9697. display:flex;
  9698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9699. font-weight:400;
  9700. font-style:normal;
  9701. font-size:12px;
  9702. }
  9703. #u165726 .text {
  9704. position:absolute;
  9705. align-self:flex-start;
  9706. padding:0px 0px 0px 0px;
  9707. box-sizing:border-box;
  9708. width:100%;
  9709. }
  9710. #u165726_text {
  9711. border-width:0px;
  9712. white-space:nowrap;
  9713. text-transform:none;
  9714. }
  9715. #u165727 {
  9716. border-width:0px;
  9717. position:absolute;
  9718. left:0px;
  9719. top:0px;
  9720. width:0px;
  9721. height:0px;
  9722. }
  9723. #u165728_img {
  9724. border-width:0px;
  9725. position:absolute;
  9726. left:0px;
  9727. top:0px;
  9728. width:24px;
  9729. height:24px;
  9730. }
  9731. #u165728 {
  9732. border-width:0px;
  9733. position:absolute;
  9734. left:157px;
  9735. top:792px;
  9736. width:24px;
  9737. height:24px;
  9738. display:flex;
  9739. font-size:8px;
  9740. }
  9741. #u165728 .text {
  9742. position:absolute;
  9743. align-self:center;
  9744. padding:2px 2px 2px 2px;
  9745. box-sizing:border-box;
  9746. width:100%;
  9747. }
  9748. #u165728_text {
  9749. border-width:0px;
  9750. word-wrap:break-word;
  9751. text-transform:none;
  9752. }
  9753. #u165729_div {
  9754. border-width:0px;
  9755. position:absolute;
  9756. left:0px;
  9757. top:0px;
  9758. width:37px;
  9759. height:17px;
  9760. background:inherit;
  9761. background-color:rgba(255, 255, 255, 0);
  9762. border:none;
  9763. border-radius:0px;
  9764. -moz-box-shadow:none;
  9765. -webkit-box-shadow:none;
  9766. box-shadow:none;
  9767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9768. font-weight:400;
  9769. font-style:normal;
  9770. font-size:12px;
  9771. }
  9772. #u165729 {
  9773. border-width:0px;
  9774. position:absolute;
  9775. left:151px;
  9776. top:817px;
  9777. width:37px;
  9778. height:17px;
  9779. display:flex;
  9780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9781. font-weight:400;
  9782. font-style:normal;
  9783. font-size:12px;
  9784. }
  9785. #u165729 .text {
  9786. position:absolute;
  9787. align-self:flex-start;
  9788. padding:0px 0px 0px 0px;
  9789. box-sizing:border-box;
  9790. width:100%;
  9791. }
  9792. #u165729_text {
  9793. border-width:0px;
  9794. white-space:nowrap;
  9795. text-transform:none;
  9796. }
  9797. #u165730_div {
  9798. border-width:0px;
  9799. position:absolute;
  9800. left:0px;
  9801. top:0px;
  9802. width:375px;
  9803. height:732px;
  9804. background:inherit;
  9805. background-color:rgba(242, 242, 242, 1);
  9806. border:none;
  9807. border-top:0px;
  9808. border-radius:25px;
  9809. border-top-left-radius:0px;
  9810. border-top-right-radius:0px;
  9811. -moz-box-shadow:none;
  9812. -webkit-box-shadow:none;
  9813. box-shadow:none;
  9814. }
  9815. #u165730 {
  9816. border-width:0px;
  9817. position:absolute;
  9818. left:29px;
  9819. top:105px;
  9820. width:375px;
  9821. height:732px;
  9822. display:flex;
  9823. }
  9824. #u165730 .text {
  9825. position:absolute;
  9826. align-self:center;
  9827. padding:2px 2px 2px 2px;
  9828. box-sizing:border-box;
  9829. width:100%;
  9830. }
  9831. #u165730_text {
  9832. border-width:0px;
  9833. word-wrap:break-word;
  9834. text-transform:none;
  9835. visibility:hidden;
  9836. }
  9837. #u165731 {
  9838. border-width:0px;
  9839. position:absolute;
  9840. left:0px;
  9841. top:0px;
  9842. width:0px;
  9843. height:0px;
  9844. }
  9845. #u165732_img {
  9846. border-width:0px;
  9847. position:absolute;
  9848. left:0px;
  9849. top:0px;
  9850. width:11px;
  9851. height:18px;
  9852. }
  9853. #u165732 {
  9854. border-width:0px;
  9855. position:absolute;
  9856. left:40px;
  9857. top:79px;
  9858. width:11px;
  9859. height:18px;
  9860. display:flex;
  9861. }
  9862. #u165732 .text {
  9863. position:absolute;
  9864. align-self:center;
  9865. padding:2px 2px 2px 2px;
  9866. box-sizing:border-box;
  9867. width:100%;
  9868. }
  9869. #u165732_text {
  9870. border-width:0px;
  9871. word-wrap:break-word;
  9872. text-transform:none;
  9873. visibility:hidden;
  9874. }
  9875. #u165733_div {
  9876. border-width:0px;
  9877. position:absolute;
  9878. left:0px;
  9879. top:0px;
  9880. width:57px;
  9881. height:30px;
  9882. background:inherit;
  9883. background-color:rgba(255, 255, 255, 0);
  9884. border:none;
  9885. border-left:0px;
  9886. border-top:0px;
  9887. border-right:0px;
  9888. border-radius:0px;
  9889. border-bottom-right-radius:0px;
  9890. border-bottom-left-radius:0px;
  9891. -moz-box-shadow:none;
  9892. -webkit-box-shadow:none;
  9893. box-shadow:none;
  9894. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9895. font-weight:500;
  9896. font-style:normal;
  9897. font-size:14px;
  9898. line-height:30px;
  9899. }
  9900. #u165733 {
  9901. border-width:0px;
  9902. position:absolute;
  9903. left:182px;
  9904. top:73px;
  9905. width:57px;
  9906. height:30px;
  9907. display:flex;
  9908. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9909. font-weight:500;
  9910. font-style:normal;
  9911. font-size:14px;
  9912. line-height:30px;
  9913. }
  9914. #u165733 .text {
  9915. position:absolute;
  9916. align-self:flex-start;
  9917. padding:0px 0px 0px 0px;
  9918. box-sizing:border-box;
  9919. width:100%;
  9920. }
  9921. #u165733_text {
  9922. border-width:0px;
  9923. white-space:nowrap;
  9924. text-transform:none;
  9925. }
  9926. #u165734 {
  9927. border-width:0px;
  9928. position:absolute;
  9929. left:0px;
  9930. top:0px;
  9931. width:0px;
  9932. height:0px;
  9933. }
  9934. #u165735_img {
  9935. border-width:0px;
  9936. position:absolute;
  9937. left:0px;
  9938. top:0px;
  9939. width:375px;
  9940. height:69px;
  9941. }
  9942. #u165735 {
  9943. border-width:0px;
  9944. position:absolute;
  9945. left:29px;
  9946. top:105px;
  9947. width:375px;
  9948. height:69px;
  9949. display:flex;
  9950. }
  9951. #u165735 .text {
  9952. position:absolute;
  9953. align-self:center;
  9954. padding:2px 2px 2px 2px;
  9955. box-sizing:border-box;
  9956. width:100%;
  9957. }
  9958. #u165735_text {
  9959. border-width:0px;
  9960. word-wrap:break-word;
  9961. text-transform:none;
  9962. visibility:hidden;
  9963. }
  9964. #u165736_div {
  9965. border-width:0px;
  9966. position:absolute;
  9967. left:0px;
  9968. top:0px;
  9969. width:97px;
  9970. height:30px;
  9971. background:inherit;
  9972. background-color:rgba(255, 255, 255, 0);
  9973. border:none;
  9974. border-left:0px;
  9975. border-top:0px;
  9976. border-right:0px;
  9977. border-radius:0px;
  9978. border-bottom-right-radius:0px;
  9979. border-bottom-left-radius:0px;
  9980. -moz-box-shadow:none;
  9981. -webkit-box-shadow:none;
  9982. box-shadow:none;
  9983. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9984. font-weight:500;
  9985. font-style:normal;
  9986. line-height:30px;
  9987. }
  9988. #u165736 {
  9989. border-width:0px;
  9990. position:absolute;
  9991. left:49px;
  9992. top:125px;
  9993. width:97px;
  9994. height:30px;
  9995. display:flex;
  9996. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9997. font-weight:500;
  9998. font-style:normal;
  9999. line-height:30px;
  10000. }
  10001. #u165736 .text {
  10002. position:absolute;
  10003. align-self:flex-start;
  10004. padding:0px 0px 0px 0px;
  10005. box-sizing:border-box;
  10006. width:100%;
  10007. }
  10008. #u165736_text {
  10009. border-width:0px;
  10010. white-space:nowrap;
  10011. text-transform:none;
  10012. }
  10013. #u165737_div {
  10014. border-width:0px;
  10015. position:absolute;
  10016. left:0px;
  10017. top:0px;
  10018. width:73px;
  10019. height:30px;
  10020. background:inherit;
  10021. background-color:rgba(255, 255, 255, 0);
  10022. border:none;
  10023. border-left:0px;
  10024. border-top:0px;
  10025. border-right:0px;
  10026. border-radius:0px;
  10027. border-bottom-right-radius:0px;
  10028. border-bottom-left-radius:0px;
  10029. -moz-box-shadow:none;
  10030. -webkit-box-shadow:none;
  10031. box-shadow:none;
  10032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10033. font-weight:400;
  10034. font-style:normal;
  10035. font-size:18px;
  10036. line-height:30px;
  10037. }
  10038. #u165737 {
  10039. border-width:0px;
  10040. position:absolute;
  10041. left:166px;
  10042. top:125px;
  10043. width:73px;
  10044. height:30px;
  10045. display:flex;
  10046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10047. font-weight:400;
  10048. font-style:normal;
  10049. font-size:18px;
  10050. line-height:30px;
  10051. }
  10052. #u165737 .text {
  10053. position:absolute;
  10054. align-self:flex-start;
  10055. padding:0px 0px 0px 0px;
  10056. box-sizing:border-box;
  10057. width:100%;
  10058. }
  10059. #u165737_text {
  10060. border-width:0px;
  10061. white-space:nowrap;
  10062. text-transform:none;
  10063. }
  10064. #u165738_div {
  10065. border-width:0px;
  10066. position:absolute;
  10067. left:0px;
  10068. top:0px;
  10069. width:73px;
  10070. height:30px;
  10071. background:inherit;
  10072. background-color:rgba(255, 255, 255, 0);
  10073. border:none;
  10074. border-left:0px;
  10075. border-top:0px;
  10076. border-right:0px;
  10077. border-radius:0px;
  10078. border-bottom-right-radius:0px;
  10079. border-bottom-left-radius:0px;
  10080. -moz-box-shadow:none;
  10081. -webkit-box-shadow:none;
  10082. box-shadow:none;
  10083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10084. font-weight:400;
  10085. font-style:normal;
  10086. font-size:18px;
  10087. line-height:30px;
  10088. }
  10089. #u165738 {
  10090. border-width:0px;
  10091. position:absolute;
  10092. left:259px;
  10093. top:125px;
  10094. width:73px;
  10095. height:30px;
  10096. display:flex;
  10097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10098. font-weight:400;
  10099. font-style:normal;
  10100. font-size:18px;
  10101. line-height:30px;
  10102. }
  10103. #u165738 .text {
  10104. position:absolute;
  10105. align-self:flex-start;
  10106. padding:0px 0px 0px 0px;
  10107. box-sizing:border-box;
  10108. width:100%;
  10109. }
  10110. #u165738_text {
  10111. border-width:0px;
  10112. white-space:nowrap;
  10113. text-transform:none;
  10114. }
  10115. #u165739 {
  10116. border-width:0px;
  10117. position:absolute;
  10118. left:0px;
  10119. top:0px;
  10120. width:0px;
  10121. height:0px;
  10122. }
  10123. #u165740_img {
  10124. border-width:0px;
  10125. position:absolute;
  10126. left:0px;
  10127. top:0px;
  10128. width:375px;
  10129. height:40px;
  10130. }
  10131. #u165740 {
  10132. border-width:0px;
  10133. position:absolute;
  10134. left:29px;
  10135. top:174px;
  10136. width:375px;
  10137. height:40px;
  10138. display:flex;
  10139. }
  10140. #u165740 .text {
  10141. position:absolute;
  10142. align-self:center;
  10143. padding:2px 2px 2px 2px;
  10144. box-sizing:border-box;
  10145. width:100%;
  10146. }
  10147. #u165740_text {
  10148. border-width:0px;
  10149. word-wrap:break-word;
  10150. text-transform:none;
  10151. visibility:hidden;
  10152. }
  10153. #u165741_div {
  10154. border-width:0px;
  10155. position:absolute;
  10156. left:0px;
  10157. top:0px;
  10158. width:47px;
  10159. height:40px;
  10160. background:inherit;
  10161. background-color:rgba(255, 255, 255, 1);
  10162. box-sizing:border-box;
  10163. border-width:2px;
  10164. border-style:solid;
  10165. border-color:rgba(0, 137, 254, 1);
  10166. border-left:0px;
  10167. border-top:0px;
  10168. border-right:0px;
  10169. border-radius:0px;
  10170. border-bottom-right-radius:0px;
  10171. border-bottom-left-radius:0px;
  10172. -moz-box-shadow:none;
  10173. -webkit-box-shadow:none;
  10174. box-shadow:none;
  10175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10176. font-weight:400;
  10177. font-style:normal;
  10178. font-size:14px;
  10179. color:#0089FE;
  10180. }
  10181. #u165741 {
  10182. border-width:0px;
  10183. position:absolute;
  10184. left:122px;
  10185. top:174px;
  10186. width:47px;
  10187. height:40px;
  10188. display:flex;
  10189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10190. font-weight:400;
  10191. font-style:normal;
  10192. font-size:14px;
  10193. color:#0089FE;
  10194. }
  10195. #u165741 .text {
  10196. position:absolute;
  10197. align-self:center;
  10198. padding:2px 2px 2px 2px;
  10199. box-sizing:border-box;
  10200. width:100%;
  10201. }
  10202. #u165741_text {
  10203. border-width:0px;
  10204. white-space:nowrap;
  10205. text-transform:none;
  10206. }
  10207. #u165742_div {
  10208. border-width:0px;
  10209. position:absolute;
  10210. left:0px;
  10211. top:0px;
  10212. width:47px;
  10213. height:40px;
  10214. background:inherit;
  10215. background-color:rgba(255, 255, 255, 1);
  10216. border:none;
  10217. border-left:0px;
  10218. border-top:0px;
  10219. border-right:0px;
  10220. border-radius:0px;
  10221. border-bottom-right-radius:0px;
  10222. border-bottom-left-radius:0px;
  10223. -moz-box-shadow:none;
  10224. -webkit-box-shadow:none;
  10225. box-shadow:none;
  10226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10227. font-weight:400;
  10228. font-style:normal;
  10229. font-size:14px;
  10230. }
  10231. #u165742 {
  10232. border-width:0px;
  10233. position:absolute;
  10234. left:210px;
  10235. top:174px;
  10236. width:47px;
  10237. height:40px;
  10238. display:flex;
  10239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10240. font-weight:400;
  10241. font-style:normal;
  10242. font-size:14px;
  10243. }
  10244. #u165742 .text {
  10245. position:absolute;
  10246. align-self:center;
  10247. padding:2px 2px 2px 2px;
  10248. box-sizing:border-box;
  10249. width:100%;
  10250. }
  10251. #u165742_text {
  10252. border-width:0px;
  10253. white-space:nowrap;
  10254. text-transform:none;
  10255. }
  10256. #u165743_div {
  10257. border-width:0px;
  10258. position:absolute;
  10259. left:0px;
  10260. top:0px;
  10261. width:47px;
  10262. height:40px;
  10263. background:inherit;
  10264. background-color:rgba(255, 255, 255, 1);
  10265. border:none;
  10266. border-left:0px;
  10267. border-top:0px;
  10268. border-right:0px;
  10269. border-radius:0px;
  10270. border-bottom-right-radius:0px;
  10271. border-bottom-left-radius:0px;
  10272. -moz-box-shadow:none;
  10273. -webkit-box-shadow:none;
  10274. box-shadow:none;
  10275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10276. font-weight:400;
  10277. font-style:normal;
  10278. font-size:14px;
  10279. }
  10280. #u165743 {
  10281. border-width:0px;
  10282. position:absolute;
  10283. left:297px;
  10284. top:174px;
  10285. width:47px;
  10286. height:40px;
  10287. display:flex;
  10288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10289. font-weight:400;
  10290. font-style:normal;
  10291. font-size:14px;
  10292. }
  10293. #u165743 .text {
  10294. position:absolute;
  10295. align-self:center;
  10296. padding:2px 2px 2px 2px;
  10297. box-sizing:border-box;
  10298. width:100%;
  10299. }
  10300. #u165743_text {
  10301. border-width:0px;
  10302. white-space:nowrap;
  10303. text-transform:none;
  10304. }
  10305. #u165744_div {
  10306. border-width:0px;
  10307. position:absolute;
  10308. left:0px;
  10309. top:0px;
  10310. width:33px;
  10311. height:40px;
  10312. background:inherit;
  10313. background-color:rgba(255, 255, 255, 1);
  10314. border:none;
  10315. border-left:0px;
  10316. border-top:0px;
  10317. border-right:0px;
  10318. border-radius:0px;
  10319. border-bottom-right-radius:0px;
  10320. border-bottom-left-radius:0px;
  10321. -moz-box-shadow:none;
  10322. -webkit-box-shadow:none;
  10323. box-shadow:none;
  10324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10325. font-weight:400;
  10326. font-style:normal;
  10327. font-size:14px;
  10328. }
  10329. #u165744 {
  10330. border-width:0px;
  10331. position:absolute;
  10332. left:49px;
  10333. top:174px;
  10334. width:33px;
  10335. height:40px;
  10336. display:flex;
  10337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10338. font-weight:400;
  10339. font-style:normal;
  10340. font-size:14px;
  10341. }
  10342. #u165744 .text {
  10343. position:absolute;
  10344. align-self:center;
  10345. padding:2px 2px 2px 2px;
  10346. box-sizing:border-box;
  10347. width:100%;
  10348. }
  10349. #u165744_text {
  10350. border-width:0px;
  10351. white-space:nowrap;
  10352. text-transform:none;
  10353. }
  10354. #u165745 {
  10355. border-width:0px;
  10356. position:absolute;
  10357. left:0px;
  10358. top:0px;
  10359. width:0px;
  10360. height:0px;
  10361. }
  10362. #u165746_div {
  10363. border-width:0px;
  10364. position:absolute;
  10365. left:0px;
  10366. top:0px;
  10367. width:40px;
  10368. height:40px;
  10369. background:inherit;
  10370. background-color:rgba(215, 215, 215, 1);
  10371. border:none;
  10372. border-radius:0px;
  10373. -moz-box-shadow:none;
  10374. -webkit-box-shadow:none;
  10375. box-shadow:none;
  10376. }
  10377. #u165746 {
  10378. border-width:0px;
  10379. position:absolute;
  10380. left:364px;
  10381. top:174px;
  10382. width:40px;
  10383. height:40px;
  10384. display:flex;
  10385. }
  10386. #u165746 .text {
  10387. position:absolute;
  10388. align-self:center;
  10389. padding:2px 2px 2px 2px;
  10390. box-sizing:border-box;
  10391. width:100%;
  10392. }
  10393. #u165746_text {
  10394. border-width:0px;
  10395. word-wrap:break-word;
  10396. text-transform:none;
  10397. visibility:hidden;
  10398. }
  10399. #u165747_img {
  10400. border-width:0px;
  10401. position:absolute;
  10402. left:0px;
  10403. top:0px;
  10404. width:16px;
  10405. height:16px;
  10406. }
  10407. #u165747 {
  10408. border-width:0px;
  10409. position:absolute;
  10410. left:378px;
  10411. top:186px;
  10412. width:16px;
  10413. height:16px;
  10414. display:flex;
  10415. }
  10416. #u165747 .text {
  10417. position:absolute;
  10418. align-self:center;
  10419. padding:2px 2px 2px 2px;
  10420. box-sizing:border-box;
  10421. width:100%;
  10422. }
  10423. #u165747_text {
  10424. border-width:0px;
  10425. word-wrap:break-word;
  10426. text-transform:none;
  10427. visibility:hidden;
  10428. }
  10429. #u165748 {
  10430. border-width:0px;
  10431. position:absolute;
  10432. left:0px;
  10433. top:0px;
  10434. width:0px;
  10435. height:0px;
  10436. }
  10437. #u165749_img {
  10438. border-width:0px;
  10439. position:absolute;
  10440. left:0px;
  10441. top:0px;
  10442. width:355px;
  10443. height:120px;
  10444. }
  10445. #u165749 {
  10446. border-width:0px;
  10447. position:absolute;
  10448. left:39px;
  10449. top:224px;
  10450. width:355px;
  10451. height:120px;
  10452. display:flex;
  10453. }
  10454. #u165749 .text {
  10455. position:absolute;
  10456. align-self:center;
  10457. padding:2px 2px 2px 2px;
  10458. box-sizing:border-box;
  10459. width:100%;
  10460. }
  10461. #u165749_text {
  10462. border-width:0px;
  10463. word-wrap:break-word;
  10464. text-transform:none;
  10465. visibility:hidden;
  10466. }
  10467. #u165750_div {
  10468. border-width:0px;
  10469. position:absolute;
  10470. left:0px;
  10471. top:0px;
  10472. width:225px;
  10473. height:30px;
  10474. background:inherit;
  10475. background-color:rgba(255, 255, 255, 0);
  10476. border:none;
  10477. border-left:0px;
  10478. border-top:0px;
  10479. border-right:0px;
  10480. border-radius:0px;
  10481. border-bottom-right-radius:0px;
  10482. border-bottom-left-radius:0px;
  10483. -moz-box-shadow:none;
  10484. -webkit-box-shadow:none;
  10485. box-shadow:none;
  10486. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10487. font-weight:500;
  10488. font-style:normal;
  10489. font-size:14px;
  10490. line-height:30px;
  10491. }
  10492. #u165750 {
  10493. border-width:0px;
  10494. position:absolute;
  10495. left:44px;
  10496. top:234px;
  10497. width:225px;
  10498. height:30px;
  10499. display:flex;
  10500. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10501. font-weight:500;
  10502. font-style:normal;
  10503. font-size:14px;
  10504. line-height:30px;
  10505. }
  10506. #u165750 .text {
  10507. position:absolute;
  10508. align-self:flex-start;
  10509. padding:0px 0px 0px 0px;
  10510. box-sizing:border-box;
  10511. width:100%;
  10512. }
  10513. #u165750_text {
  10514. border-width:0px;
  10515. white-space:nowrap;
  10516. text-transform:none;
  10517. }
  10518. #u165751_div {
  10519. border-width:0px;
  10520. position:absolute;
  10521. left:0px;
  10522. top:0px;
  10523. width:165px;
  10524. height:68px;
  10525. background:inherit;
  10526. background-color:rgba(255, 255, 255, 0);
  10527. border:none;
  10528. border-left:0px;
  10529. border-top:0px;
  10530. border-right:0px;
  10531. border-radius:0px;
  10532. border-bottom-right-radius:0px;
  10533. border-bottom-left-radius:0px;
  10534. -moz-box-shadow:none;
  10535. -webkit-box-shadow:none;
  10536. box-shadow:none;
  10537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10538. font-weight:400;
  10539. font-style:normal;
  10540. font-size:12px;
  10541. }
  10542. #u165751 {
  10543. border-width:0px;
  10544. position:absolute;
  10545. left:54px;
  10546. top:264px;
  10547. width:165px;
  10548. height:68px;
  10549. display:flex;
  10550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10551. font-weight:400;
  10552. font-style:normal;
  10553. font-size:12px;
  10554. }
  10555. #u165751 .text {
  10556. position:absolute;
  10557. align-self:flex-start;
  10558. padding:0px 0px 0px 0px;
  10559. box-sizing:border-box;
  10560. width:100%;
  10561. }
  10562. #u165751_text {
  10563. border-width:0px;
  10564. white-space:nowrap;
  10565. text-transform:none;
  10566. }
  10567. #u165752_div {
  10568. border-width:0px;
  10569. position:absolute;
  10570. left:0px;
  10571. top:0px;
  10572. width:47px;
  10573. height:25px;
  10574. background:inherit;
  10575. background-color:rgba(255, 255, 255, 0);
  10576. border:none;
  10577. border-left:0px;
  10578. border-top:0px;
  10579. border-right:0px;
  10580. border-radius:0px;
  10581. border-bottom-right-radius:0px;
  10582. border-bottom-left-radius:0px;
  10583. -moz-box-shadow:none;
  10584. -webkit-box-shadow:none;
  10585. box-shadow:none;
  10586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10587. font-weight:400;
  10588. font-style:normal;
  10589. text-align:right;
  10590. }
  10591. #u165752 {
  10592. border-width:0px;
  10593. position:absolute;
  10594. left:332px;
  10595. top:272px;
  10596. width:47px;
  10597. height:25px;
  10598. display:flex;
  10599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10600. font-weight:400;
  10601. font-style:normal;
  10602. text-align:right;
  10603. }
  10604. #u165752 .text {
  10605. position:absolute;
  10606. align-self:flex-start;
  10607. padding:0px 0px 0px 0px;
  10608. box-sizing:border-box;
  10609. width:100%;
  10610. }
  10611. #u165752_text {
  10612. border-width:0px;
  10613. white-space:nowrap;
  10614. text-transform:none;
  10615. }
  10616. #u165753_div {
  10617. border-width:0px;
  10618. position:absolute;
  10619. left:0px;
  10620. top:0px;
  10621. width:41px;
  10622. height:24px;
  10623. background:inherit;
  10624. background-color:rgba(255, 255, 255, 0);
  10625. border:none;
  10626. border-left:0px;
  10627. border-top:0px;
  10628. border-right:0px;
  10629. border-radius:0px;
  10630. border-bottom-right-radius:0px;
  10631. border-bottom-left-radius:0px;
  10632. -moz-box-shadow:none;
  10633. -webkit-box-shadow:none;
  10634. box-shadow:none;
  10635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10636. font-weight:400;
  10637. font-style:normal;
  10638. font-size:10px;
  10639. text-align:right;
  10640. line-height:24px;
  10641. }
  10642. #u165753 {
  10643. border-width:0px;
  10644. position:absolute;
  10645. left:338px;
  10646. top:297px;
  10647. width:41px;
  10648. height:24px;
  10649. display:flex;
  10650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10651. font-weight:400;
  10652. font-style:normal;
  10653. font-size:10px;
  10654. text-align:right;
  10655. line-height:24px;
  10656. }
  10657. #u165753 .text {
  10658. position:absolute;
  10659. align-self:flex-start;
  10660. padding:0px 0px 0px 0px;
  10661. box-sizing:border-box;
  10662. width:100%;
  10663. }
  10664. #u165753_text {
  10665. border-width:0px;
  10666. white-space:nowrap;
  10667. text-transform:none;
  10668. }
  10669. #u165755_img {
  10670. border-width:0px;
  10671. position:absolute;
  10672. left:0px;
  10673. top:0px;
  10674. width:433px;
  10675. height:865px;
  10676. }
  10677. #u165755 {
  10678. border-width:0px;
  10679. position:absolute;
  10680. left:919px;
  10681. top:0px;
  10682. width:433px;
  10683. height:865px;
  10684. display:flex;
  10685. }
  10686. #u165755 .text {
  10687. position:absolute;
  10688. align-self:center;
  10689. padding:2px 2px 2px 2px;
  10690. box-sizing:border-box;
  10691. width:100%;
  10692. }
  10693. #u165755_text {
  10694. border-width:0px;
  10695. word-wrap:break-word;
  10696. text-transform:none;
  10697. visibility:hidden;
  10698. }
  10699. #u165756_div {
  10700. border-width:0px;
  10701. position:absolute;
  10702. left:0px;
  10703. top:0px;
  10704. width:375px;
  10705. height:40px;
  10706. background:inherit;
  10707. background-color:rgba(255, 255, 255, 1);
  10708. box-sizing:border-box;
  10709. border-width:1px;
  10710. border-style:solid;
  10711. border-color:rgba(215, 215, 215, 1);
  10712. border-left:0px;
  10713. border-top:0px;
  10714. border-right:0px;
  10715. border-radius:0px;
  10716. border-bottom-right-radius:0px;
  10717. border-bottom-left-radius:0px;
  10718. -moz-box-shadow:none;
  10719. -webkit-box-shadow:none;
  10720. box-shadow:none;
  10721. }
  10722. #u165756 {
  10723. border-width:0px;
  10724. position:absolute;
  10725. left:948px;
  10726. top:67px;
  10727. width:375px;
  10728. height:40px;
  10729. display:flex;
  10730. }
  10731. #u165756 .text {
  10732. position:absolute;
  10733. align-self:center;
  10734. padding:2px 2px 2px 2px;
  10735. box-sizing:border-box;
  10736. width:100%;
  10737. }
  10738. #u165756_text {
  10739. border-width:0px;
  10740. word-wrap:break-word;
  10741. text-transform:none;
  10742. visibility:hidden;
  10743. }
  10744. #u165757 {
  10745. border-width:0px;
  10746. position:absolute;
  10747. left:0px;
  10748. top:0px;
  10749. width:0px;
  10750. height:0px;
  10751. }
  10752. #u165758_div {
  10753. border-width:0px;
  10754. position:absolute;
  10755. left:0px;
  10756. top:0px;
  10757. width:88px;
  10758. height:32px;
  10759. background:inherit;
  10760. background-color:rgba(255, 255, 255, 1);
  10761. box-sizing:border-box;
  10762. border-width:1px;
  10763. border-style:solid;
  10764. border-color:rgba(242, 242, 242, 1);
  10765. border-radius:33px;
  10766. -moz-box-shadow:none;
  10767. -webkit-box-shadow:none;
  10768. box-shadow:none;
  10769. }
  10770. #u165758 {
  10771. border-width:0px;
  10772. position:absolute;
  10773. left:1228px;
  10774. top:71px;
  10775. width:88px;
  10776. height:32px;
  10777. display:flex;
  10778. }
  10779. #u165758 .text {
  10780. position:absolute;
  10781. align-self:center;
  10782. padding:2px 2px 2px 2px;
  10783. box-sizing:border-box;
  10784. width:100%;
  10785. }
  10786. #u165758_text {
  10787. border-width:0px;
  10788. word-wrap:break-word;
  10789. text-transform:none;
  10790. visibility:hidden;
  10791. }
  10792. #u165759 {
  10793. border-width:0px;
  10794. position:absolute;
  10795. left:0px;
  10796. top:0px;
  10797. width:0px;
  10798. height:0px;
  10799. }
  10800. #u165760_img {
  10801. border-width:0px;
  10802. position:absolute;
  10803. left:0px;
  10804. top:0px;
  10805. width:18px;
  10806. height:18px;
  10807. }
  10808. #u165760 {
  10809. border-width:0px;
  10810. position:absolute;
  10811. left:1291px;
  10812. top:78px;
  10813. width:18px;
  10814. height:18px;
  10815. display:flex;
  10816. }
  10817. #u165760 .text {
  10818. position:absolute;
  10819. align-self:center;
  10820. padding:2px 2px 2px 2px;
  10821. box-sizing:border-box;
  10822. width:100%;
  10823. }
  10824. #u165760_text {
  10825. border-width:0px;
  10826. word-wrap:break-word;
  10827. text-transform:none;
  10828. visibility:hidden;
  10829. }
  10830. #u165761_img {
  10831. border-width:0px;
  10832. position:absolute;
  10833. left:0px;
  10834. top:0px;
  10835. width:6px;
  10836. height:6px;
  10837. }
  10838. #u165761 {
  10839. border-width:0px;
  10840. position:absolute;
  10841. left:1297px;
  10842. top:84px;
  10843. width:6px;
  10844. height:6px;
  10845. display:flex;
  10846. }
  10847. #u165761 .text {
  10848. position:absolute;
  10849. align-self:center;
  10850. padding:2px 2px 2px 2px;
  10851. box-sizing:border-box;
  10852. width:100%;
  10853. }
  10854. #u165761_text {
  10855. border-width:0px;
  10856. word-wrap:break-word;
  10857. text-transform:none;
  10858. visibility:hidden;
  10859. }
  10860. #u165762 {
  10861. border-width:0px;
  10862. position:absolute;
  10863. left:0px;
  10864. top:0px;
  10865. width:0px;
  10866. height:0px;
  10867. }
  10868. #u165763_img {
  10869. border-width:0px;
  10870. position:absolute;
  10871. left:0px;
  10872. top:0px;
  10873. width:5px;
  10874. height:5px;
  10875. }
  10876. #u165763 {
  10877. border-width:0px;
  10878. position:absolute;
  10879. left:1242px;
  10880. top:85px;
  10881. width:5px;
  10882. height:5px;
  10883. display:flex;
  10884. }
  10885. #u165763 .text {
  10886. position:absolute;
  10887. align-self:center;
  10888. padding:2px 2px 2px 2px;
  10889. box-sizing:border-box;
  10890. width:100%;
  10891. }
  10892. #u165763_text {
  10893. border-width:0px;
  10894. word-wrap:break-word;
  10895. text-transform:none;
  10896. visibility:hidden;
  10897. }
  10898. #u165764_img {
  10899. border-width:0px;
  10900. position:absolute;
  10901. left:0px;
  10902. top:0px;
  10903. width:5px;
  10904. height:5px;
  10905. }
  10906. #u165764 {
  10907. border-width:0px;
  10908. position:absolute;
  10909. left:1258px;
  10910. top:85px;
  10911. width:5px;
  10912. height:5px;
  10913. display:flex;
  10914. }
  10915. #u165764 .text {
  10916. position:absolute;
  10917. align-self:center;
  10918. padding:2px 2px 2px 2px;
  10919. box-sizing:border-box;
  10920. width:100%;
  10921. }
  10922. #u165764_text {
  10923. border-width:0px;
  10924. word-wrap:break-word;
  10925. text-transform:none;
  10926. visibility:hidden;
  10927. }
  10928. #u165765_img {
  10929. border-width:0px;
  10930. position:absolute;
  10931. left:0px;
  10932. top:0px;
  10933. width:7px;
  10934. height:7px;
  10935. }
  10936. #u165765 {
  10937. border-width:0px;
  10938. position:absolute;
  10939. left:1249px;
  10940. top:84px;
  10941. width:7px;
  10942. height:7px;
  10943. display:flex;
  10944. }
  10945. #u165765 .text {
  10946. position:absolute;
  10947. align-self:center;
  10948. padding:2px 2px 2px 2px;
  10949. box-sizing:border-box;
  10950. width:100%;
  10951. }
  10952. #u165765_text {
  10953. border-width:0px;
  10954. word-wrap:break-word;
  10955. text-transform:none;
  10956. visibility:hidden;
  10957. }
  10958. #u165766_img {
  10959. border-width:0px;
  10960. position:absolute;
  10961. left:0px;
  10962. top:0px;
  10963. width:19px;
  10964. height:2px;
  10965. }
  10966. #u165766 {
  10967. border-width:0px;
  10968. position:absolute;
  10969. left:1266px;
  10970. top:87px;
  10971. width:18px;
  10972. height:1px;
  10973. display:flex;
  10974. -webkit-transform:rotate(90deg);
  10975. -moz-transform:rotate(90deg);
  10976. -ms-transform:rotate(90deg);
  10977. transform:rotate(90deg);
  10978. }
  10979. #u165766 .text {
  10980. position:absolute;
  10981. align-self:center;
  10982. padding:2px 2px 2px 2px;
  10983. box-sizing:border-box;
  10984. width:100%;
  10985. }
  10986. #u165766_text {
  10987. border-width:0px;
  10988. word-wrap:break-word;
  10989. text-transform:none;
  10990. visibility:hidden;
  10991. }
  10992. #u165767_img {
  10993. border-width:0px;
  10994. position:absolute;
  10995. left:0px;
  10996. top:0px;
  10997. width:375px;
  10998. height:44px;
  10999. }
  11000. #u165767 {
  11001. border-width:0px;
  11002. position:absolute;
  11003. left:948px;
  11004. top:24px;
  11005. width:375px;
  11006. height:44px;
  11007. display:flex;
  11008. }
  11009. #u165767 .text {
  11010. position:absolute;
  11011. align-self:center;
  11012. padding:2px 2px 2px 2px;
  11013. box-sizing:border-box;
  11014. width:100%;
  11015. }
  11016. #u165767_text {
  11017. border-width:0px;
  11018. word-wrap:break-word;
  11019. text-transform:none;
  11020. visibility:hidden;
  11021. }
  11022. #u165768_div {
  11023. border-width:0px;
  11024. position:absolute;
  11025. left:0px;
  11026. top:0px;
  11027. width:375px;
  11028. height:50px;
  11029. background:inherit;
  11030. background-color:rgba(255, 255, 255, 1);
  11031. box-sizing:border-box;
  11032. border-width:1px;
  11033. border-style:solid;
  11034. border-color:rgba(242, 242, 242, 1);
  11035. border-radius:26px;
  11036. border-top-left-radius:0px;
  11037. border-top-right-radius:0px;
  11038. -moz-box-shadow:none;
  11039. -webkit-box-shadow:none;
  11040. box-shadow:none;
  11041. }
  11042. #u165768 {
  11043. border-width:0px;
  11044. position:absolute;
  11045. left:948px;
  11046. top:788px;
  11047. width:375px;
  11048. height:50px;
  11049. display:flex;
  11050. }
  11051. #u165768 .text {
  11052. position:absolute;
  11053. align-self:center;
  11054. padding:2px 2px 2px 2px;
  11055. box-sizing:border-box;
  11056. width:100%;
  11057. }
  11058. #u165768_text {
  11059. border-width:0px;
  11060. word-wrap:break-word;
  11061. text-transform:none;
  11062. visibility:hidden;
  11063. }
  11064. #u165769 {
  11065. border-width:0px;
  11066. position:absolute;
  11067. left:0px;
  11068. top:0px;
  11069. width:0px;
  11070. height:0px;
  11071. }
  11072. #u165770_img {
  11073. border-width:0px;
  11074. position:absolute;
  11075. left:0px;
  11076. top:0px;
  11077. width:24px;
  11078. height:24px;
  11079. }
  11080. #u165770 {
  11081. border-width:0px;
  11082. position:absolute;
  11083. left:988px;
  11084. top:792px;
  11085. width:24px;
  11086. height:24px;
  11087. display:flex;
  11088. font-size:8px;
  11089. }
  11090. #u165770 .text {
  11091. position:absolute;
  11092. align-self:center;
  11093. padding:2px 2px 2px 2px;
  11094. box-sizing:border-box;
  11095. width:100%;
  11096. }
  11097. #u165770_text {
  11098. border-width:0px;
  11099. word-wrap:break-word;
  11100. text-transform:none;
  11101. }
  11102. #u165771_div {
  11103. border-width:0px;
  11104. position:absolute;
  11105. left:0px;
  11106. top:0px;
  11107. width:25px;
  11108. height:17px;
  11109. background:inherit;
  11110. background-color:rgba(255, 255, 255, 0);
  11111. border:none;
  11112. border-radius:0px;
  11113. -moz-box-shadow:none;
  11114. -webkit-box-shadow:none;
  11115. box-shadow:none;
  11116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11117. font-weight:400;
  11118. font-style:normal;
  11119. font-size:12px;
  11120. }
  11121. #u165771 {
  11122. border-width:0px;
  11123. position:absolute;
  11124. left:988px;
  11125. top:817px;
  11126. width:25px;
  11127. height:17px;
  11128. display:flex;
  11129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11130. font-weight:400;
  11131. font-style:normal;
  11132. font-size:12px;
  11133. }
  11134. #u165771 .text {
  11135. position:absolute;
  11136. align-self:flex-start;
  11137. padding:0px 0px 0px 0px;
  11138. box-sizing:border-box;
  11139. width:100%;
  11140. }
  11141. #u165771_text {
  11142. border-width:0px;
  11143. white-space:nowrap;
  11144. text-transform:none;
  11145. }
  11146. #u165772 {
  11147. border-width:0px;
  11148. position:absolute;
  11149. left:0px;
  11150. top:0px;
  11151. width:0px;
  11152. height:0px;
  11153. }
  11154. #u165773_img {
  11155. border-width:0px;
  11156. position:absolute;
  11157. left:0px;
  11158. top:0px;
  11159. width:24px;
  11160. height:24px;
  11161. }
  11162. #u165773 {
  11163. border-width:0px;
  11164. position:absolute;
  11165. left:1258px;
  11166. top:794px;
  11167. width:24px;
  11168. height:24px;
  11169. display:flex;
  11170. font-size:8px;
  11171. }
  11172. #u165773 .text {
  11173. position:absolute;
  11174. align-self:center;
  11175. padding:2px 2px 2px 2px;
  11176. box-sizing:border-box;
  11177. width:100%;
  11178. }
  11179. #u165773_text {
  11180. border-width:0px;
  11181. word-wrap:break-word;
  11182. text-transform:none;
  11183. }
  11184. #u165774_div {
  11185. border-width:0px;
  11186. position:absolute;
  11187. left:0px;
  11188. top:0px;
  11189. width:25px;
  11190. height:17px;
  11191. background:inherit;
  11192. background-color:rgba(255, 255, 255, 0);
  11193. border:none;
  11194. border-radius:0px;
  11195. -moz-box-shadow:none;
  11196. -webkit-box-shadow:none;
  11197. box-shadow:none;
  11198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11199. font-weight:400;
  11200. font-style:normal;
  11201. font-size:12px;
  11202. }
  11203. #u165774 {
  11204. border-width:0px;
  11205. position:absolute;
  11206. left:1258px;
  11207. top:819px;
  11208. width:25px;
  11209. height:17px;
  11210. display:flex;
  11211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11212. font-weight:400;
  11213. font-style:normal;
  11214. font-size:12px;
  11215. }
  11216. #u165774 .text {
  11217. position:absolute;
  11218. align-self:flex-start;
  11219. padding:0px 0px 0px 0px;
  11220. box-sizing:border-box;
  11221. width:100%;
  11222. }
  11223. #u165774_text {
  11224. border-width:0px;
  11225. white-space:nowrap;
  11226. text-transform:none;
  11227. }
  11228. #u165775_div {
  11229. border-width:0px;
  11230. position:absolute;
  11231. left:0px;
  11232. top:0px;
  11233. width:375px;
  11234. height:681px;
  11235. background:inherit;
  11236. background-color:rgba(242, 242, 242, 0.462745098039216);
  11237. border:none;
  11238. border-radius:0px;
  11239. -moz-box-shadow:none;
  11240. -webkit-box-shadow:none;
  11241. box-shadow:none;
  11242. }
  11243. #u165775 {
  11244. border-width:0px;
  11245. position:absolute;
  11246. left:948px;
  11247. top:107px;
  11248. width:375px;
  11249. height:681px;
  11250. display:flex;
  11251. }
  11252. #u165775 .text {
  11253. position:absolute;
  11254. align-self:center;
  11255. padding:2px 2px 2px 2px;
  11256. box-sizing:border-box;
  11257. width:100%;
  11258. }
  11259. #u165775_text {
  11260. border-width:0px;
  11261. word-wrap:break-word;
  11262. text-transform:none;
  11263. visibility:hidden;
  11264. }
  11265. #u165776 {
  11266. border-width:0px;
  11267. position:absolute;
  11268. left:0px;
  11269. top:0px;
  11270. width:0px;
  11271. height:0px;
  11272. }
  11273. #u165777_img {
  11274. border-width:0px;
  11275. position:absolute;
  11276. left:0px;
  11277. top:0px;
  11278. width:24px;
  11279. height:24px;
  11280. }
  11281. #u165777 {
  11282. border-width:0px;
  11283. position:absolute;
  11284. left:1170px;
  11285. top:792px;
  11286. width:24px;
  11287. height:24px;
  11288. display:flex;
  11289. font-size:8px;
  11290. }
  11291. #u165777 .text {
  11292. position:absolute;
  11293. align-self:center;
  11294. padding:2px 2px 2px 2px;
  11295. box-sizing:border-box;
  11296. width:100%;
  11297. }
  11298. #u165777_text {
  11299. border-width:0px;
  11300. word-wrap:break-word;
  11301. text-transform:none;
  11302. }
  11303. #u165778_div {
  11304. border-width:0px;
  11305. position:absolute;
  11306. left:0px;
  11307. top:0px;
  11308. width:37px;
  11309. height:17px;
  11310. background:inherit;
  11311. background-color:rgba(255, 255, 255, 0);
  11312. border:none;
  11313. border-radius:0px;
  11314. -moz-box-shadow:none;
  11315. -webkit-box-shadow:none;
  11316. box-shadow:none;
  11317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11318. font-weight:400;
  11319. font-style:normal;
  11320. font-size:12px;
  11321. }
  11322. #u165778 {
  11323. border-width:0px;
  11324. position:absolute;
  11325. left:1164px;
  11326. top:817px;
  11327. width:37px;
  11328. height:17px;
  11329. display:flex;
  11330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11331. font-weight:400;
  11332. font-style:normal;
  11333. font-size:12px;
  11334. }
  11335. #u165778 .text {
  11336. position:absolute;
  11337. align-self:flex-start;
  11338. padding:0px 0px 0px 0px;
  11339. box-sizing:border-box;
  11340. width:100%;
  11341. }
  11342. #u165778_text {
  11343. border-width:0px;
  11344. white-space:nowrap;
  11345. text-transform:none;
  11346. }
  11347. #u165779 {
  11348. border-width:0px;
  11349. position:absolute;
  11350. left:0px;
  11351. top:0px;
  11352. width:0px;
  11353. height:0px;
  11354. }
  11355. #u165780_img {
  11356. border-width:0px;
  11357. position:absolute;
  11358. left:0px;
  11359. top:0px;
  11360. width:24px;
  11361. height:24px;
  11362. }
  11363. #u165780 {
  11364. border-width:0px;
  11365. position:absolute;
  11366. left:1076px;
  11367. top:792px;
  11368. width:24px;
  11369. height:24px;
  11370. display:flex;
  11371. font-size:8px;
  11372. }
  11373. #u165780 .text {
  11374. position:absolute;
  11375. align-self:center;
  11376. padding:2px 2px 2px 2px;
  11377. box-sizing:border-box;
  11378. width:100%;
  11379. }
  11380. #u165780_text {
  11381. border-width:0px;
  11382. word-wrap:break-word;
  11383. text-transform:none;
  11384. }
  11385. #u165781_div {
  11386. border-width:0px;
  11387. position:absolute;
  11388. left:0px;
  11389. top:0px;
  11390. width:37px;
  11391. height:17px;
  11392. background:inherit;
  11393. background-color:rgba(255, 255, 255, 0);
  11394. border:none;
  11395. border-radius:0px;
  11396. -moz-box-shadow:none;
  11397. -webkit-box-shadow:none;
  11398. box-shadow:none;
  11399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11400. font-weight:400;
  11401. font-style:normal;
  11402. font-size:12px;
  11403. }
  11404. #u165781 {
  11405. border-width:0px;
  11406. position:absolute;
  11407. left:1070px;
  11408. top:817px;
  11409. width:37px;
  11410. height:17px;
  11411. display:flex;
  11412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11413. font-weight:400;
  11414. font-style:normal;
  11415. font-size:12px;
  11416. }
  11417. #u165781 .text {
  11418. position:absolute;
  11419. align-self:flex-start;
  11420. padding:0px 0px 0px 0px;
  11421. box-sizing:border-box;
  11422. width:100%;
  11423. }
  11424. #u165781_text {
  11425. border-width:0px;
  11426. white-space:nowrap;
  11427. text-transform:none;
  11428. }
  11429. #u165782_div {
  11430. border-width:0px;
  11431. position:absolute;
  11432. left:0px;
  11433. top:0px;
  11434. width:375px;
  11435. height:732px;
  11436. background:inherit;
  11437. background-color:rgba(242, 242, 242, 1);
  11438. border:none;
  11439. border-top:0px;
  11440. border-radius:25px;
  11441. border-top-left-radius:0px;
  11442. border-top-right-radius:0px;
  11443. -moz-box-shadow:none;
  11444. -webkit-box-shadow:none;
  11445. box-shadow:none;
  11446. }
  11447. #u165782 {
  11448. border-width:0px;
  11449. position:absolute;
  11450. left:948px;
  11451. top:105px;
  11452. width:375px;
  11453. height:732px;
  11454. display:flex;
  11455. }
  11456. #u165782 .text {
  11457. position:absolute;
  11458. align-self:center;
  11459. padding:2px 2px 2px 2px;
  11460. box-sizing:border-box;
  11461. width:100%;
  11462. }
  11463. #u165782_text {
  11464. border-width:0px;
  11465. word-wrap:break-word;
  11466. text-transform:none;
  11467. visibility:hidden;
  11468. }
  11469. #u165783 {
  11470. border-width:0px;
  11471. position:absolute;
  11472. left:0px;
  11473. top:0px;
  11474. width:0px;
  11475. height:0px;
  11476. }
  11477. #u165784_img {
  11478. border-width:0px;
  11479. position:absolute;
  11480. left:0px;
  11481. top:0px;
  11482. width:11px;
  11483. height:18px;
  11484. }
  11485. #u165784 {
  11486. border-width:0px;
  11487. position:absolute;
  11488. left:959px;
  11489. top:79px;
  11490. width:11px;
  11491. height:18px;
  11492. display:flex;
  11493. }
  11494. #u165784 .text {
  11495. position:absolute;
  11496. align-self:center;
  11497. padding:2px 2px 2px 2px;
  11498. box-sizing:border-box;
  11499. width:100%;
  11500. }
  11501. #u165784_text {
  11502. border-width:0px;
  11503. word-wrap:break-word;
  11504. text-transform:none;
  11505. visibility:hidden;
  11506. }
  11507. #u165785_div {
  11508. border-width:0px;
  11509. position:absolute;
  11510. left:0px;
  11511. top:0px;
  11512. width:57px;
  11513. height:30px;
  11514. background:inherit;
  11515. background-color:rgba(255, 255, 255, 0);
  11516. border:none;
  11517. border-left:0px;
  11518. border-top:0px;
  11519. border-right:0px;
  11520. border-radius:0px;
  11521. border-bottom-right-radius:0px;
  11522. border-bottom-left-radius:0px;
  11523. -moz-box-shadow:none;
  11524. -webkit-box-shadow:none;
  11525. box-shadow:none;
  11526. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11527. font-weight:500;
  11528. font-style:normal;
  11529. font-size:14px;
  11530. line-height:30px;
  11531. }
  11532. #u165785 {
  11533. border-width:0px;
  11534. position:absolute;
  11535. left:1101px;
  11536. top:75px;
  11537. width:57px;
  11538. height:30px;
  11539. display:flex;
  11540. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11541. font-weight:500;
  11542. font-style:normal;
  11543. font-size:14px;
  11544. line-height:30px;
  11545. }
  11546. #u165785 .text {
  11547. position:absolute;
  11548. align-self:flex-start;
  11549. padding:0px 0px 0px 0px;
  11550. box-sizing:border-box;
  11551. width:100%;
  11552. }
  11553. #u165785_text {
  11554. border-width:0px;
  11555. white-space:nowrap;
  11556. text-transform:none;
  11557. }
  11558. #u165786 {
  11559. border-width:0px;
  11560. position:absolute;
  11561. left:0px;
  11562. top:0px;
  11563. width:0px;
  11564. height:0px;
  11565. }
  11566. #u165787_img {
  11567. border-width:0px;
  11568. position:absolute;
  11569. left:0px;
  11570. top:0px;
  11571. width:375px;
  11572. height:69px;
  11573. }
  11574. #u165787 {
  11575. border-width:0px;
  11576. position:absolute;
  11577. left:948px;
  11578. top:105px;
  11579. width:375px;
  11580. height:69px;
  11581. display:flex;
  11582. }
  11583. #u165787 .text {
  11584. position:absolute;
  11585. align-self:center;
  11586. padding:2px 2px 2px 2px;
  11587. box-sizing:border-box;
  11588. width:100%;
  11589. }
  11590. #u165787_text {
  11591. border-width:0px;
  11592. word-wrap:break-word;
  11593. text-transform:none;
  11594. visibility:hidden;
  11595. }
  11596. #u165788_div {
  11597. border-width:0px;
  11598. position:absolute;
  11599. left:0px;
  11600. top:0px;
  11601. width:97px;
  11602. height:30px;
  11603. background:inherit;
  11604. background-color:rgba(255, 255, 255, 0);
  11605. border:none;
  11606. border-left:0px;
  11607. border-top:0px;
  11608. border-right:0px;
  11609. border-radius:0px;
  11610. border-bottom-right-radius:0px;
  11611. border-bottom-left-radius:0px;
  11612. -moz-box-shadow:none;
  11613. -webkit-box-shadow:none;
  11614. box-shadow:none;
  11615. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11616. font-weight:500;
  11617. font-style:normal;
  11618. line-height:30px;
  11619. }
  11620. #u165788 {
  11621. border-width:0px;
  11622. position:absolute;
  11623. left:968px;
  11624. top:125px;
  11625. width:97px;
  11626. height:30px;
  11627. display:flex;
  11628. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11629. font-weight:500;
  11630. font-style:normal;
  11631. line-height:30px;
  11632. }
  11633. #u165788 .text {
  11634. position:absolute;
  11635. align-self:flex-start;
  11636. padding:0px 0px 0px 0px;
  11637. box-sizing:border-box;
  11638. width:100%;
  11639. }
  11640. #u165788_text {
  11641. border-width:0px;
  11642. white-space:nowrap;
  11643. text-transform:none;
  11644. }
  11645. #u165789_div {
  11646. border-width:0px;
  11647. position:absolute;
  11648. left:0px;
  11649. top:0px;
  11650. width:73px;
  11651. height:30px;
  11652. background:inherit;
  11653. background-color:rgba(255, 255, 255, 0);
  11654. border:none;
  11655. border-left:0px;
  11656. border-top:0px;
  11657. border-right:0px;
  11658. border-radius:0px;
  11659. border-bottom-right-radius:0px;
  11660. border-bottom-left-radius:0px;
  11661. -moz-box-shadow:none;
  11662. -webkit-box-shadow:none;
  11663. box-shadow:none;
  11664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11665. font-weight:400;
  11666. font-style:normal;
  11667. font-size:18px;
  11668. line-height:30px;
  11669. }
  11670. #u165789 {
  11671. border-width:0px;
  11672. position:absolute;
  11673. left:1085px;
  11674. top:125px;
  11675. width:73px;
  11676. height:30px;
  11677. display:flex;
  11678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11679. font-weight:400;
  11680. font-style:normal;
  11681. font-size:18px;
  11682. line-height:30px;
  11683. }
  11684. #u165789 .text {
  11685. position:absolute;
  11686. align-self:flex-start;
  11687. padding:0px 0px 0px 0px;
  11688. box-sizing:border-box;
  11689. width:100%;
  11690. }
  11691. #u165789_text {
  11692. border-width:0px;
  11693. white-space:nowrap;
  11694. text-transform:none;
  11695. }
  11696. #u165790_div {
  11697. border-width:0px;
  11698. position:absolute;
  11699. left:0px;
  11700. top:0px;
  11701. width:73px;
  11702. height:30px;
  11703. background:inherit;
  11704. background-color:rgba(255, 255, 255, 0);
  11705. border:none;
  11706. border-left:0px;
  11707. border-top:0px;
  11708. border-right:0px;
  11709. border-radius:0px;
  11710. border-bottom-right-radius:0px;
  11711. border-bottom-left-radius:0px;
  11712. -moz-box-shadow:none;
  11713. -webkit-box-shadow:none;
  11714. box-shadow:none;
  11715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11716. font-weight:400;
  11717. font-style:normal;
  11718. font-size:18px;
  11719. line-height:30px;
  11720. }
  11721. #u165790 {
  11722. border-width:0px;
  11723. position:absolute;
  11724. left:1178px;
  11725. top:125px;
  11726. width:73px;
  11727. height:30px;
  11728. display:flex;
  11729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11730. font-weight:400;
  11731. font-style:normal;
  11732. font-size:18px;
  11733. line-height:30px;
  11734. }
  11735. #u165790 .text {
  11736. position:absolute;
  11737. align-self:flex-start;
  11738. padding:0px 0px 0px 0px;
  11739. box-sizing:border-box;
  11740. width:100%;
  11741. }
  11742. #u165790_text {
  11743. border-width:0px;
  11744. white-space:nowrap;
  11745. text-transform:none;
  11746. }
  11747. #u165791 {
  11748. border-width:0px;
  11749. position:absolute;
  11750. left:0px;
  11751. top:0px;
  11752. width:0px;
  11753. height:0px;
  11754. }
  11755. #u165792_img {
  11756. border-width:0px;
  11757. position:absolute;
  11758. left:0px;
  11759. top:0px;
  11760. width:375px;
  11761. height:40px;
  11762. }
  11763. #u165792 {
  11764. border-width:0px;
  11765. position:absolute;
  11766. left:948px;
  11767. top:174px;
  11768. width:375px;
  11769. height:40px;
  11770. display:flex;
  11771. }
  11772. #u165792 .text {
  11773. position:absolute;
  11774. align-self:center;
  11775. padding:2px 2px 2px 2px;
  11776. box-sizing:border-box;
  11777. width:100%;
  11778. }
  11779. #u165792_text {
  11780. border-width:0px;
  11781. word-wrap:break-word;
  11782. text-transform:none;
  11783. visibility:hidden;
  11784. }
  11785. #u165793_div {
  11786. border-width:0px;
  11787. position:absolute;
  11788. left:0px;
  11789. top:0px;
  11790. width:47px;
  11791. height:40px;
  11792. background:inherit;
  11793. background-color:rgba(255, 255, 255, 1);
  11794. border:none;
  11795. border-left:0px;
  11796. border-top:0px;
  11797. border-right:0px;
  11798. border-radius:0px;
  11799. border-bottom-right-radius:0px;
  11800. border-bottom-left-radius:0px;
  11801. -moz-box-shadow:none;
  11802. -webkit-box-shadow:none;
  11803. box-shadow:none;
  11804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11805. font-weight:400;
  11806. font-style:normal;
  11807. font-size:14px;
  11808. }
  11809. #u165793 {
  11810. border-width:0px;
  11811. position:absolute;
  11812. left:1041px;
  11813. top:174px;
  11814. width:47px;
  11815. height:40px;
  11816. display:flex;
  11817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11818. font-weight:400;
  11819. font-style:normal;
  11820. font-size:14px;
  11821. }
  11822. #u165793 .text {
  11823. position:absolute;
  11824. align-self:center;
  11825. padding:2px 2px 2px 2px;
  11826. box-sizing:border-box;
  11827. width:100%;
  11828. }
  11829. #u165793_text {
  11830. border-width:0px;
  11831. white-space:nowrap;
  11832. text-transform:none;
  11833. }
  11834. #u165794_div {
  11835. border-width:0px;
  11836. position:absolute;
  11837. left:0px;
  11838. top:0px;
  11839. width:47px;
  11840. height:40px;
  11841. background:inherit;
  11842. background-color:rgba(255, 255, 255, 1);
  11843. border:none;
  11844. border-left:0px;
  11845. border-top:0px;
  11846. border-right:0px;
  11847. border-radius:0px;
  11848. border-bottom-right-radius:0px;
  11849. border-bottom-left-radius:0px;
  11850. -moz-box-shadow:none;
  11851. -webkit-box-shadow:none;
  11852. box-shadow:none;
  11853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11854. font-weight:400;
  11855. font-style:normal;
  11856. font-size:14px;
  11857. }
  11858. #u165794 {
  11859. border-width:0px;
  11860. position:absolute;
  11861. left:1129px;
  11862. top:174px;
  11863. width:47px;
  11864. height:40px;
  11865. display:flex;
  11866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11867. font-weight:400;
  11868. font-style:normal;
  11869. font-size:14px;
  11870. }
  11871. #u165794 .text {
  11872. position:absolute;
  11873. align-self:center;
  11874. padding:2px 2px 2px 2px;
  11875. box-sizing:border-box;
  11876. width:100%;
  11877. }
  11878. #u165794_text {
  11879. border-width:0px;
  11880. white-space:nowrap;
  11881. text-transform:none;
  11882. }
  11883. #u165795_div {
  11884. border-width:0px;
  11885. position:absolute;
  11886. left:0px;
  11887. top:0px;
  11888. width:47px;
  11889. height:40px;
  11890. background:inherit;
  11891. background-color:rgba(255, 255, 255, 1);
  11892. box-sizing:border-box;
  11893. border-width:2px;
  11894. border-style:solid;
  11895. border-color:rgba(0, 137, 254, 1);
  11896. border-left:0px;
  11897. border-top:0px;
  11898. border-right:0px;
  11899. border-radius:0px;
  11900. border-bottom-right-radius:0px;
  11901. border-bottom-left-radius:0px;
  11902. -moz-box-shadow:none;
  11903. -webkit-box-shadow:none;
  11904. box-shadow:none;
  11905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11906. font-weight:400;
  11907. font-style:normal;
  11908. font-size:14px;
  11909. color:#0089FE;
  11910. }
  11911. #u165795 {
  11912. border-width:0px;
  11913. position:absolute;
  11914. left:1216px;
  11915. top:174px;
  11916. width:47px;
  11917. height:40px;
  11918. display:flex;
  11919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11920. font-weight:400;
  11921. font-style:normal;
  11922. font-size:14px;
  11923. color:#0089FE;
  11924. }
  11925. #u165795 .text {
  11926. position:absolute;
  11927. align-self:center;
  11928. padding:2px 2px 2px 2px;
  11929. box-sizing:border-box;
  11930. width:100%;
  11931. }
  11932. #u165795_text {
  11933. border-width:0px;
  11934. white-space:nowrap;
  11935. text-transform:none;
  11936. }
  11937. #u165796_div {
  11938. border-width:0px;
  11939. position:absolute;
  11940. left:0px;
  11941. top:0px;
  11942. width:33px;
  11943. height:40px;
  11944. background:inherit;
  11945. background-color:rgba(255, 255, 255, 1);
  11946. border:none;
  11947. border-left:0px;
  11948. border-top:0px;
  11949. border-right:0px;
  11950. border-radius:0px;
  11951. border-bottom-right-radius:0px;
  11952. border-bottom-left-radius:0px;
  11953. -moz-box-shadow:none;
  11954. -webkit-box-shadow:none;
  11955. box-shadow:none;
  11956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11957. font-weight:400;
  11958. font-style:normal;
  11959. font-size:14px;
  11960. }
  11961. #u165796 {
  11962. border-width:0px;
  11963. position:absolute;
  11964. left:968px;
  11965. top:174px;
  11966. width:33px;
  11967. height:40px;
  11968. display:flex;
  11969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11970. font-weight:400;
  11971. font-style:normal;
  11972. font-size:14px;
  11973. }
  11974. #u165796 .text {
  11975. position:absolute;
  11976. align-self:center;
  11977. padding:2px 2px 2px 2px;
  11978. box-sizing:border-box;
  11979. width:100%;
  11980. }
  11981. #u165796_text {
  11982. border-width:0px;
  11983. white-space:nowrap;
  11984. text-transform:none;
  11985. }
  11986. #u165797 {
  11987. border-width:0px;
  11988. position:absolute;
  11989. left:0px;
  11990. top:0px;
  11991. width:0px;
  11992. height:0px;
  11993. }
  11994. #u165798_div {
  11995. border-width:0px;
  11996. position:absolute;
  11997. left:0px;
  11998. top:0px;
  11999. width:40px;
  12000. height:40px;
  12001. background:inherit;
  12002. background-color:rgba(215, 215, 215, 1);
  12003. border:none;
  12004. border-radius:0px;
  12005. -moz-box-shadow:none;
  12006. -webkit-box-shadow:none;
  12007. box-shadow:none;
  12008. }
  12009. #u165798 {
  12010. border-width:0px;
  12011. position:absolute;
  12012. left:1283px;
  12013. top:174px;
  12014. width:40px;
  12015. height:40px;
  12016. display:flex;
  12017. }
  12018. #u165798 .text {
  12019. position:absolute;
  12020. align-self:center;
  12021. padding:2px 2px 2px 2px;
  12022. box-sizing:border-box;
  12023. width:100%;
  12024. }
  12025. #u165798_text {
  12026. border-width:0px;
  12027. word-wrap:break-word;
  12028. text-transform:none;
  12029. visibility:hidden;
  12030. }
  12031. #u165799_img {
  12032. border-width:0px;
  12033. position:absolute;
  12034. left:0px;
  12035. top:0px;
  12036. width:16px;
  12037. height:16px;
  12038. }
  12039. #u165799 {
  12040. border-width:0px;
  12041. position:absolute;
  12042. left:1297px;
  12043. top:186px;
  12044. width:16px;
  12045. height:16px;
  12046. display:flex;
  12047. }
  12048. #u165799 .text {
  12049. position:absolute;
  12050. align-self:center;
  12051. padding:2px 2px 2px 2px;
  12052. box-sizing:border-box;
  12053. width:100%;
  12054. }
  12055. #u165799_text {
  12056. border-width:0px;
  12057. word-wrap:break-word;
  12058. text-transform:none;
  12059. visibility:hidden;
  12060. }
  12061. #u165800 {
  12062. border-width:0px;
  12063. position:absolute;
  12064. left:0px;
  12065. top:0px;
  12066. width:0px;
  12067. height:0px;
  12068. }
  12069. #u165801_img {
  12070. border-width:0px;
  12071. position:absolute;
  12072. left:0px;
  12073. top:0px;
  12074. width:355px;
  12075. height:140px;
  12076. }
  12077. #u165801 {
  12078. border-width:0px;
  12079. position:absolute;
  12080. left:958px;
  12081. top:224px;
  12082. width:355px;
  12083. height:140px;
  12084. display:flex;
  12085. }
  12086. #u165801 .text {
  12087. position:absolute;
  12088. align-self:center;
  12089. padding:2px 2px 2px 2px;
  12090. box-sizing:border-box;
  12091. width:100%;
  12092. }
  12093. #u165801_text {
  12094. border-width:0px;
  12095. word-wrap:break-word;
  12096. text-transform:none;
  12097. visibility:hidden;
  12098. }
  12099. #u165802_div {
  12100. border-width:0px;
  12101. position:absolute;
  12102. left:0px;
  12103. top:0px;
  12104. width:225px;
  12105. height:30px;
  12106. background:inherit;
  12107. background-color:rgba(255, 255, 255, 0);
  12108. border:none;
  12109. border-left:0px;
  12110. border-top:0px;
  12111. border-right:0px;
  12112. border-radius:0px;
  12113. border-bottom-right-radius:0px;
  12114. border-bottom-left-radius:0px;
  12115. -moz-box-shadow:none;
  12116. -webkit-box-shadow:none;
  12117. box-shadow:none;
  12118. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12119. font-weight:500;
  12120. font-style:normal;
  12121. font-size:14px;
  12122. line-height:30px;
  12123. }
  12124. #u165802 {
  12125. border-width:0px;
  12126. position:absolute;
  12127. left:963px;
  12128. top:234px;
  12129. width:225px;
  12130. height:30px;
  12131. display:flex;
  12132. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12133. font-weight:500;
  12134. font-style:normal;
  12135. font-size:14px;
  12136. line-height:30px;
  12137. }
  12138. #u165802 .text {
  12139. position:absolute;
  12140. align-self:flex-start;
  12141. padding:0px 0px 0px 0px;
  12142. box-sizing:border-box;
  12143. width:100%;
  12144. }
  12145. #u165802_text {
  12146. border-width:0px;
  12147. white-space:nowrap;
  12148. text-transform:none;
  12149. }
  12150. #u165803_div {
  12151. border-width:0px;
  12152. position:absolute;
  12153. left:0px;
  12154. top:0px;
  12155. width:165px;
  12156. height:68px;
  12157. background:inherit;
  12158. background-color:rgba(255, 255, 255, 0);
  12159. border:none;
  12160. border-left:0px;
  12161. border-top:0px;
  12162. border-right:0px;
  12163. border-radius:0px;
  12164. border-bottom-right-radius:0px;
  12165. border-bottom-left-radius:0px;
  12166. -moz-box-shadow:none;
  12167. -webkit-box-shadow:none;
  12168. box-shadow:none;
  12169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12170. font-weight:400;
  12171. font-style:normal;
  12172. font-size:12px;
  12173. color:#7F7F7F;
  12174. }
  12175. #u165803 {
  12176. border-width:0px;
  12177. position:absolute;
  12178. left:973px;
  12179. top:264px;
  12180. width:165px;
  12181. height:68px;
  12182. display:flex;
  12183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12184. font-weight:400;
  12185. font-style:normal;
  12186. font-size:12px;
  12187. color:#7F7F7F;
  12188. }
  12189. #u165803 .text {
  12190. position:absolute;
  12191. align-self:flex-start;
  12192. padding:0px 0px 0px 0px;
  12193. box-sizing:border-box;
  12194. width:100%;
  12195. }
  12196. #u165803_text {
  12197. border-width:0px;
  12198. white-space:nowrap;
  12199. text-transform:none;
  12200. }
  12201. #u165804_div {
  12202. border-width:0px;
  12203. position:absolute;
  12204. left:0px;
  12205. top:0px;
  12206. width:57px;
  12207. height:25px;
  12208. background:inherit;
  12209. background-color:rgba(255, 255, 255, 0);
  12210. border:none;
  12211. border-left:0px;
  12212. border-top:0px;
  12213. border-right:0px;
  12214. border-radius:0px;
  12215. border-bottom-right-radius:0px;
  12216. border-bottom-left-radius:0px;
  12217. -moz-box-shadow:none;
  12218. -webkit-box-shadow:none;
  12219. box-shadow:none;
  12220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12221. font-weight:400;
  12222. font-style:normal;
  12223. text-align:right;
  12224. }
  12225. #u165804 {
  12226. border-width:0px;
  12227. position:absolute;
  12228. left:1241px;
  12229. top:282px;
  12230. width:57px;
  12231. height:25px;
  12232. display:flex;
  12233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12234. font-weight:400;
  12235. font-style:normal;
  12236. text-align:right;
  12237. }
  12238. #u165804 .text {
  12239. position:absolute;
  12240. align-self:flex-start;
  12241. padding:0px 0px 0px 0px;
  12242. box-sizing:border-box;
  12243. width:100%;
  12244. }
  12245. #u165804_text {
  12246. border-width:0px;
  12247. white-space:nowrap;
  12248. text-transform:none;
  12249. }
  12250. #u165805_div {
  12251. border-width:0px;
  12252. position:absolute;
  12253. left:0px;
  12254. top:0px;
  12255. width:132px;
  12256. height:24px;
  12257. background:inherit;
  12258. background-color:rgba(255, 255, 255, 0);
  12259. border:none;
  12260. border-left:0px;
  12261. border-top:0px;
  12262. border-right:0px;
  12263. border-radius:0px;
  12264. border-bottom-right-radius:0px;
  12265. border-bottom-left-radius:0px;
  12266. -moz-box-shadow:none;
  12267. -webkit-box-shadow:none;
  12268. box-shadow:none;
  12269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12270. font-weight:400;
  12271. font-style:normal;
  12272. font-size:10px;
  12273. color:#AAAAAA;
  12274. text-align:right;
  12275. line-height:24px;
  12276. }
  12277. #u165805 {
  12278. border-width:0px;
  12279. position:absolute;
  12280. left:1166px;
  12281. top:307px;
  12282. width:132px;
  12283. height:24px;
  12284. display:flex;
  12285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12286. font-weight:400;
  12287. font-style:normal;
  12288. font-size:10px;
  12289. color:#AAAAAA;
  12290. text-align:right;
  12291. line-height:24px;
  12292. }
  12293. #u165805 .text {
  12294. position:absolute;
  12295. align-self:flex-start;
  12296. padding:0px 0px 0px 0px;
  12297. box-sizing:border-box;
  12298. width:100%;
  12299. }
  12300. #u165805_text {
  12301. border-width:0px;
  12302. white-space:nowrap;
  12303. text-transform:none;
  12304. }