styles.css 133 KB

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