styles.css 234 KB

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