styles.css 198 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3177px;
  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. #u223433_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u223433 {
  28. border-width:0px;
  29. position:absolute;
  30. left:1823px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u223433 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u223433_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u223434_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. #u223434 {
  73. border-width:0px;
  74. position:absolute;
  75. left:1852px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u223434 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u223434_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u223435 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u223436_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. #u223436 {
  121. border-width:0px;
  122. position:absolute;
  123. left:2132px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u223436 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u223436_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u223437 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u223438_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u223438 {
  159. border-width:0px;
  160. position:absolute;
  161. left:2195px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u223438 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u223438_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u223439_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u223439 {
  189. border-width:0px;
  190. position:absolute;
  191. left:2201px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u223439 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u223439_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u223440 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u223441_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u223441 {
  227. border-width:0px;
  228. position:absolute;
  229. left:2146px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u223441 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u223441_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u223442_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u223442 {
  257. border-width:0px;
  258. position:absolute;
  259. left:2162px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u223442 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u223442_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u223443_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u223443 {
  287. border-width:0px;
  288. position:absolute;
  289. left:2153px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u223443 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u223443_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u223444_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u223444 {
  317. border-width:0px;
  318. position:absolute;
  319. left:2170px;
  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. #u223444 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u223444_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u223445_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u223445 {
  351. border-width:0px;
  352. position:absolute;
  353. left:1852px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u223445 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u223445_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u223446_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. #u223446 {
  393. border-width:0px;
  394. position:absolute;
  395. left:1852px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u223446 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u223446_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u223447 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u223448_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u223448 {
  431. border-width:0px;
  432. position:absolute;
  433. left:1892px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u223448 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u223448_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u223449_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. #u223449 {
  472. border-width:0px;
  473. position:absolute;
  474. left:1892px;
  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. #u223449 .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. #u223449_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u223450 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u223451_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u223451 {
  513. border-width:0px;
  514. position:absolute;
  515. left:2162px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u223451 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u223451_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u223452_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. #u223452 {
  554. border-width:0px;
  555. position:absolute;
  556. left:2162px;
  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. #u223452 .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. #u223452_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u223453_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. #u223453 {
  594. border-width:0px;
  595. position:absolute;
  596. left:1852px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u223453 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u223453_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u223454 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u223455_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u223455 {
  632. border-width:0px;
  633. position:absolute;
  634. left:2074px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u223455 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u223455_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u223456_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. #u223456 {
  673. border-width:0px;
  674. position:absolute;
  675. left:2068px;
  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. #u223456 .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. #u223456_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u223457 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u223458_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u223458 {
  714. border-width:0px;
  715. position:absolute;
  716. left:1980px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u223458 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u223458_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u223459_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. #u223459 {
  755. border-width:0px;
  756. position:absolute;
  757. left:1974px;
  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. #u223459 .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. #u223459_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u223460_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. #u223460 {
  803. border-width:0px;
  804. position:absolute;
  805. left:1852px;
  806. top:67px;
  807. width:375px;
  808. height:40px;
  809. display:flex;
  810. }
  811. #u223460 .text {
  812. position:absolute;
  813. align-self:center;
  814. padding:2px 2px 2px 2px;
  815. box-sizing:border-box;
  816. width:100%;
  817. }
  818. #u223460_text {
  819. border-width:0px;
  820. word-wrap:break-word;
  821. text-transform:none;
  822. visibility:hidden;
  823. }
  824. #u223461_img {
  825. border-width:0px;
  826. position:absolute;
  827. left:0px;
  828. top:0px;
  829. width:375px;
  830. height:44px;
  831. }
  832. #u223461 {
  833. border-width:0px;
  834. position:absolute;
  835. left:1852px;
  836. top:24px;
  837. width:375px;
  838. height:44px;
  839. display:flex;
  840. }
  841. #u223461 .text {
  842. position:absolute;
  843. align-self:center;
  844. padding:2px 2px 2px 2px;
  845. box-sizing:border-box;
  846. width:100%;
  847. }
  848. #u223461_text {
  849. border-width:0px;
  850. word-wrap:break-word;
  851. text-transform:none;
  852. visibility:hidden;
  853. }
  854. #u223462 {
  855. border-width:0px;
  856. position:absolute;
  857. left:0px;
  858. top:0px;
  859. width:0px;
  860. height:0px;
  861. }
  862. #u223463_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. #u223463 {
  881. border-width:0px;
  882. position:absolute;
  883. left:2132px;
  884. top:71px;
  885. width:88px;
  886. height:32px;
  887. display:flex;
  888. }
  889. #u223463 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u223463_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u223464 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u223465_img {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:18px;
  916. height:18px;
  917. }
  918. #u223465 {
  919. border-width:0px;
  920. position:absolute;
  921. left:2195px;
  922. top:78px;
  923. width:18px;
  924. height:18px;
  925. display:flex;
  926. }
  927. #u223465 .text {
  928. position:absolute;
  929. align-self:center;
  930. padding:2px 2px 2px 2px;
  931. box-sizing:border-box;
  932. width:100%;
  933. }
  934. #u223465_text {
  935. border-width:0px;
  936. word-wrap:break-word;
  937. text-transform:none;
  938. visibility:hidden;
  939. }
  940. #u223466_img {
  941. border-width:0px;
  942. position:absolute;
  943. left:0px;
  944. top:0px;
  945. width:6px;
  946. height:6px;
  947. }
  948. #u223466 {
  949. border-width:0px;
  950. position:absolute;
  951. left:2201px;
  952. top:84px;
  953. width:6px;
  954. height:6px;
  955. display:flex;
  956. }
  957. #u223466 .text {
  958. position:absolute;
  959. align-self:center;
  960. padding:2px 2px 2px 2px;
  961. box-sizing:border-box;
  962. width:100%;
  963. }
  964. #u223466_text {
  965. border-width:0px;
  966. word-wrap:break-word;
  967. text-transform:none;
  968. visibility:hidden;
  969. }
  970. #u223467 {
  971. border-width:0px;
  972. position:absolute;
  973. left:0px;
  974. top:0px;
  975. width:0px;
  976. height:0px;
  977. }
  978. #u223468_img {
  979. border-width:0px;
  980. position:absolute;
  981. left:0px;
  982. top:0px;
  983. width:5px;
  984. height:5px;
  985. }
  986. #u223468 {
  987. border-width:0px;
  988. position:absolute;
  989. left:2146px;
  990. top:85px;
  991. width:5px;
  992. height:5px;
  993. display:flex;
  994. }
  995. #u223468 .text {
  996. position:absolute;
  997. align-self:center;
  998. padding:2px 2px 2px 2px;
  999. box-sizing:border-box;
  1000. width:100%;
  1001. }
  1002. #u223468_text {
  1003. border-width:0px;
  1004. word-wrap:break-word;
  1005. text-transform:none;
  1006. visibility:hidden;
  1007. }
  1008. #u223469_img {
  1009. border-width:0px;
  1010. position:absolute;
  1011. left:0px;
  1012. top:0px;
  1013. width:5px;
  1014. height:5px;
  1015. }
  1016. #u223469 {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:2162px;
  1020. top:85px;
  1021. width:5px;
  1022. height:5px;
  1023. display:flex;
  1024. }
  1025. #u223469 .text {
  1026. position:absolute;
  1027. align-self:center;
  1028. padding:2px 2px 2px 2px;
  1029. box-sizing:border-box;
  1030. width:100%;
  1031. }
  1032. #u223469_text {
  1033. border-width:0px;
  1034. word-wrap:break-word;
  1035. text-transform:none;
  1036. visibility:hidden;
  1037. }
  1038. #u223470_img {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:0px;
  1042. top:0px;
  1043. width:7px;
  1044. height:7px;
  1045. }
  1046. #u223470 {
  1047. border-width:0px;
  1048. position:absolute;
  1049. left:2153px;
  1050. top:84px;
  1051. width:7px;
  1052. height:7px;
  1053. display:flex;
  1054. }
  1055. #u223470 .text {
  1056. position:absolute;
  1057. align-self:center;
  1058. padding:2px 2px 2px 2px;
  1059. box-sizing:border-box;
  1060. width:100%;
  1061. }
  1062. #u223470_text {
  1063. border-width:0px;
  1064. word-wrap:break-word;
  1065. text-transform:none;
  1066. visibility:hidden;
  1067. }
  1068. #u223471_img {
  1069. border-width:0px;
  1070. position:absolute;
  1071. left:0px;
  1072. top:0px;
  1073. width:19px;
  1074. height:2px;
  1075. }
  1076. #u223471 {
  1077. border-width:0px;
  1078. position:absolute;
  1079. left:2170px;
  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. #u223471 .text {
  1090. position:absolute;
  1091. align-self:center;
  1092. padding:2px 2px 2px 2px;
  1093. box-sizing:border-box;
  1094. width:100%;
  1095. }
  1096. #u223471_text {
  1097. border-width:0px;
  1098. word-wrap:break-word;
  1099. text-transform:none;
  1100. visibility:hidden;
  1101. }
  1102. #u223472_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. #u223472 {
  1123. border-width:0px;
  1124. position:absolute;
  1125. left:2009px;
  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. #u223472 .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. #u223472_text {
  1144. border-width:0px;
  1145. white-space:nowrap;
  1146. text-transform:none;
  1147. }
  1148. #u223473_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. #u223473 {
  1171. border-width:0px;
  1172. position:absolute;
  1173. left:1867px;
  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. #u223473 .text {
  1184. position:absolute;
  1185. align-self:center;
  1186. padding:2px 2px 2px 2px;
  1187. box-sizing:border-box;
  1188. width:100%;
  1189. }
  1190. #u223473_text {
  1191. border-width:0px;
  1192. word-wrap:break-word;
  1193. text-transform:none;
  1194. visibility:hidden;
  1195. }
  1196. #u223474_img {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:0px;
  1200. top:0px;
  1201. width:23px;
  1202. height:23px;
  1203. }
  1204. #u223474 {
  1205. border-width:0px;
  1206. position:absolute;
  1207. left:1894px;
  1208. top:76px;
  1209. width:23px;
  1210. height:23px;
  1211. display:flex;
  1212. }
  1213. #u223474 .text {
  1214. position:absolute;
  1215. align-self:center;
  1216. padding:2px 2px 2px 2px;
  1217. box-sizing:border-box;
  1218. width:100%;
  1219. }
  1220. #u223474_text {
  1221. border-width:0px;
  1222. word-wrap:break-word;
  1223. text-transform:none;
  1224. visibility:hidden;
  1225. }
  1226. #u223475_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. #u223475 {
  1245. border-width:0px;
  1246. position:absolute;
  1247. left:1852px;
  1248. top:107px;
  1249. width:375px;
  1250. height:731px;
  1251. display:flex;
  1252. }
  1253. #u223475 .text {
  1254. position:absolute;
  1255. align-self:center;
  1256. padding:2px 2px 2px 2px;
  1257. box-sizing:border-box;
  1258. width:100%;
  1259. }
  1260. #u223475_text {
  1261. border-width:0px;
  1262. word-wrap:break-word;
  1263. text-transform:none;
  1264. visibility:hidden;
  1265. }
  1266. #u223476 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:0px;
  1270. top:0px;
  1271. width:0px;
  1272. height:0px;
  1273. }
  1274. #u223477_div {
  1275. border-width:0px;
  1276. position:absolute;
  1277. left:0px;
  1278. top:0px;
  1279. width:375px;
  1280. height:380px;
  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. #u223477 {
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:1852px;
  1293. top:107px;
  1294. width:375px;
  1295. height:380px;
  1296. display:flex;
  1297. }
  1298. #u223477 .text {
  1299. position:absolute;
  1300. align-self:center;
  1301. padding:2px 2px 2px 2px;
  1302. box-sizing:border-box;
  1303. width:100%;
  1304. }
  1305. #u223477_text {
  1306. border-width:0px;
  1307. word-wrap:break-word;
  1308. text-transform:none;
  1309. visibility:hidden;
  1310. }
  1311. #u223478_div {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:0px;
  1315. top:0px;
  1316. width:353px;
  1317. height:160px;
  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-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. line-height:30px;
  1334. }
  1335. #u223478 {
  1336. border-width:0px;
  1337. position:absolute;
  1338. left:1865px;
  1339. top:117px;
  1340. width:353px;
  1341. height:160px;
  1342. display:flex;
  1343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1344. font-weight:400;
  1345. font-style:normal;
  1346. line-height:30px;
  1347. }
  1348. #u223478 .text {
  1349. position:absolute;
  1350. align-self:flex-start;
  1351. padding:5px 10px 5px 0px;
  1352. box-sizing:border-box;
  1353. width:100%;
  1354. }
  1355. #u223478_text {
  1356. border-width:0px;
  1357. word-wrap:break-word;
  1358. text-transform:none;
  1359. }
  1360. #u223479_div {
  1361. border-width:0px;
  1362. position:absolute;
  1363. left:0px;
  1364. top:0px;
  1365. width:353px;
  1366. height:190px;
  1367. background:inherit;
  1368. background-color:rgba(255, 255, 255, 0);
  1369. border:none;
  1370. border-top:0px;
  1371. border-right:0px;
  1372. border-bottom:0px;
  1373. border-radius:0px;
  1374. border-top-left-radius:0px;
  1375. border-bottom-left-radius:0px;
  1376. -moz-box-shadow:none;
  1377. -webkit-box-shadow:none;
  1378. box-shadow:none;
  1379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1380. font-weight:400;
  1381. font-style:normal;
  1382. font-size:12px;
  1383. line-height:30px;
  1384. }
  1385. #u223479 {
  1386. border-width:0px;
  1387. position:absolute;
  1388. left:1865px;
  1389. top:292px;
  1390. width:353px;
  1391. height:190px;
  1392. display:flex;
  1393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1394. font-weight:400;
  1395. font-style:normal;
  1396. font-size:12px;
  1397. line-height:30px;
  1398. }
  1399. #u223479 .text {
  1400. position:absolute;
  1401. align-self:flex-start;
  1402. padding:5px 10px 5px 0px;
  1403. box-sizing:border-box;
  1404. width:100%;
  1405. }
  1406. #u223479_text {
  1407. border-width:0px;
  1408. word-wrap:break-word;
  1409. text-transform:none;
  1410. }
  1411. #u223480_img {
  1412. border-width:0px;
  1413. position:absolute;
  1414. left:0px;
  1415. top:0px;
  1416. width:350px;
  1417. height:2px;
  1418. }
  1419. #u223480 {
  1420. border-width:0px;
  1421. position:absolute;
  1422. left:1865px;
  1423. top:283px;
  1424. width:349px;
  1425. height:1px;
  1426. display:flex;
  1427. }
  1428. #u223480 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:2px 2px 2px 2px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u223480_text {
  1436. border-width:0px;
  1437. word-wrap:break-word;
  1438. text-transform:none;
  1439. visibility:hidden;
  1440. }
  1441. #u223481_div {
  1442. border-width:0px;
  1443. position:absolute;
  1444. left:0px;
  1445. top:0px;
  1446. width:10px;
  1447. height:10px;
  1448. background:inherit;
  1449. background-color:rgba(255, 255, 255, 0);
  1450. box-sizing:border-box;
  1451. border-width:2px;
  1452. border-style:solid;
  1453. border-color:rgba(51, 51, 51, 1);
  1454. border-right:0px;
  1455. border-bottom:0px;
  1456. border-radius:0px;
  1457. border-top-right-radius:0px;
  1458. border-bottom-left-radius:0px;
  1459. -moz-box-shadow:none;
  1460. -webkit-box-shadow:none;
  1461. box-shadow:none;
  1462. }
  1463. #u223481 {
  1464. border-width:0px;
  1465. position:absolute;
  1466. left:2201px;
  1467. top:129px;
  1468. width:10px;
  1469. height:10px;
  1470. display:flex;
  1471. -webkit-transform:rotate(45deg);
  1472. -moz-transform:rotate(45deg);
  1473. -ms-transform:rotate(45deg);
  1474. transform:rotate(45deg);
  1475. }
  1476. #u223481 .text {
  1477. position:absolute;
  1478. align-self:center;
  1479. padding:2px 2px 2px 2px;
  1480. box-sizing:border-box;
  1481. width:100%;
  1482. }
  1483. #u223481_text {
  1484. border-width:0px;
  1485. word-wrap:break-word;
  1486. text-transform:none;
  1487. visibility:hidden;
  1488. }
  1489. #u223482_div {
  1490. border-width:0px;
  1491. position:absolute;
  1492. left:0px;
  1493. top:0px;
  1494. width:37px;
  1495. height:17px;
  1496. background:inherit;
  1497. background-color:rgba(255, 255, 255, 0);
  1498. border:none;
  1499. border-radius:0px;
  1500. -moz-box-shadow:none;
  1501. -webkit-box-shadow:none;
  1502. box-shadow:none;
  1503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1504. font-weight:400;
  1505. font-style:normal;
  1506. font-size:12px;
  1507. color:#1890FF;
  1508. }
  1509. #u223482 {
  1510. border-width:0px;
  1511. position:absolute;
  1512. left:2153px;
  1513. top:124px;
  1514. width:37px;
  1515. height:17px;
  1516. display:flex;
  1517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1518. font-weight:400;
  1519. font-style:normal;
  1520. font-size:12px;
  1521. color:#1890FF;
  1522. }
  1523. #u223482 .text {
  1524. position:absolute;
  1525. align-self:flex-start;
  1526. padding:0px 0px 0px 0px;
  1527. box-sizing:border-box;
  1528. width:100%;
  1529. }
  1530. #u223482_text {
  1531. border-width:0px;
  1532. white-space:nowrap;
  1533. text-transform:none;
  1534. }
  1535. #u223484_img {
  1536. border-width:0px;
  1537. position:absolute;
  1538. left:0px;
  1539. top:0px;
  1540. width:433px;
  1541. height:865px;
  1542. }
  1543. #u223484 {
  1544. border-width:0px;
  1545. position:absolute;
  1546. left:0px;
  1547. top:0px;
  1548. width:433px;
  1549. height:865px;
  1550. display:flex;
  1551. }
  1552. #u223484 .text {
  1553. position:absolute;
  1554. align-self:center;
  1555. padding:2px 2px 2px 2px;
  1556. box-sizing:border-box;
  1557. width:100%;
  1558. }
  1559. #u223484_text {
  1560. border-width:0px;
  1561. word-wrap:break-word;
  1562. text-transform:none;
  1563. visibility:hidden;
  1564. }
  1565. #u223485_div {
  1566. border-width:0px;
  1567. position:absolute;
  1568. left:0px;
  1569. top:0px;
  1570. width:375px;
  1571. height:40px;
  1572. background:inherit;
  1573. background-color:rgba(255, 255, 255, 1);
  1574. box-sizing:border-box;
  1575. border-width:1px;
  1576. border-style:solid;
  1577. border-color:rgba(215, 215, 215, 1);
  1578. border-left:0px;
  1579. border-top:0px;
  1580. border-right:0px;
  1581. border-radius:0px;
  1582. border-bottom-right-radius:0px;
  1583. border-bottom-left-radius:0px;
  1584. -moz-box-shadow:none;
  1585. -webkit-box-shadow:none;
  1586. box-shadow:none;
  1587. }
  1588. #u223485 {
  1589. border-width:0px;
  1590. position:absolute;
  1591. left:29px;
  1592. top:67px;
  1593. width:375px;
  1594. height:40px;
  1595. display:flex;
  1596. }
  1597. #u223485 .text {
  1598. position:absolute;
  1599. align-self:center;
  1600. padding:2px 2px 2px 2px;
  1601. box-sizing:border-box;
  1602. width:100%;
  1603. }
  1604. #u223485_text {
  1605. border-width:0px;
  1606. word-wrap:break-word;
  1607. text-transform:none;
  1608. visibility:hidden;
  1609. }
  1610. #u223486 {
  1611. border-width:0px;
  1612. position:absolute;
  1613. left:0px;
  1614. top:0px;
  1615. width:0px;
  1616. height:0px;
  1617. }
  1618. #u223487_div {
  1619. border-width:0px;
  1620. position:absolute;
  1621. left:0px;
  1622. top:0px;
  1623. width:88px;
  1624. height:32px;
  1625. background:inherit;
  1626. background-color:rgba(255, 255, 255, 1);
  1627. box-sizing:border-box;
  1628. border-width:1px;
  1629. border-style:solid;
  1630. border-color:rgba(242, 242, 242, 1);
  1631. border-radius:33px;
  1632. -moz-box-shadow:none;
  1633. -webkit-box-shadow:none;
  1634. box-shadow:none;
  1635. }
  1636. #u223487 {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:309px;
  1640. top:71px;
  1641. width:88px;
  1642. height:32px;
  1643. display:flex;
  1644. }
  1645. #u223487 .text {
  1646. position:absolute;
  1647. align-self:center;
  1648. padding:2px 2px 2px 2px;
  1649. box-sizing:border-box;
  1650. width:100%;
  1651. }
  1652. #u223487_text {
  1653. border-width:0px;
  1654. word-wrap:break-word;
  1655. text-transform:none;
  1656. visibility:hidden;
  1657. }
  1658. #u223488 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:0px;
  1662. top:0px;
  1663. width:0px;
  1664. height:0px;
  1665. }
  1666. #u223489_img {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:0px;
  1670. top:0px;
  1671. width:18px;
  1672. height:18px;
  1673. }
  1674. #u223489 {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:372px;
  1678. top:78px;
  1679. width:18px;
  1680. height:18px;
  1681. display:flex;
  1682. }
  1683. #u223489 .text {
  1684. position:absolute;
  1685. align-self:center;
  1686. padding:2px 2px 2px 2px;
  1687. box-sizing:border-box;
  1688. width:100%;
  1689. }
  1690. #u223489_text {
  1691. border-width:0px;
  1692. word-wrap:break-word;
  1693. text-transform:none;
  1694. visibility:hidden;
  1695. }
  1696. #u223490_img {
  1697. border-width:0px;
  1698. position:absolute;
  1699. left:0px;
  1700. top:0px;
  1701. width:6px;
  1702. height:6px;
  1703. }
  1704. #u223490 {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:378px;
  1708. top:84px;
  1709. width:6px;
  1710. height:6px;
  1711. display:flex;
  1712. }
  1713. #u223490 .text {
  1714. position:absolute;
  1715. align-self:center;
  1716. padding:2px 2px 2px 2px;
  1717. box-sizing:border-box;
  1718. width:100%;
  1719. }
  1720. #u223490_text {
  1721. border-width:0px;
  1722. word-wrap:break-word;
  1723. text-transform:none;
  1724. visibility:hidden;
  1725. }
  1726. #u223491 {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:0px;
  1730. top:0px;
  1731. width:0px;
  1732. height:0px;
  1733. }
  1734. #u223492_img {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:0px;
  1738. top:0px;
  1739. width:5px;
  1740. height:5px;
  1741. }
  1742. #u223492 {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:323px;
  1746. top:85px;
  1747. width:5px;
  1748. height:5px;
  1749. display:flex;
  1750. }
  1751. #u223492 .text {
  1752. position:absolute;
  1753. align-self:center;
  1754. padding:2px 2px 2px 2px;
  1755. box-sizing:border-box;
  1756. width:100%;
  1757. }
  1758. #u223492_text {
  1759. border-width:0px;
  1760. word-wrap:break-word;
  1761. text-transform:none;
  1762. visibility:hidden;
  1763. }
  1764. #u223493_img {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:0px;
  1768. top:0px;
  1769. width:5px;
  1770. height:5px;
  1771. }
  1772. #u223493 {
  1773. border-width:0px;
  1774. position:absolute;
  1775. left:339px;
  1776. top:85px;
  1777. width:5px;
  1778. height:5px;
  1779. display:flex;
  1780. }
  1781. #u223493 .text {
  1782. position:absolute;
  1783. align-self:center;
  1784. padding:2px 2px 2px 2px;
  1785. box-sizing:border-box;
  1786. width:100%;
  1787. }
  1788. #u223493_text {
  1789. border-width:0px;
  1790. word-wrap:break-word;
  1791. text-transform:none;
  1792. visibility:hidden;
  1793. }
  1794. #u223494_img {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:0px;
  1798. top:0px;
  1799. width:7px;
  1800. height:7px;
  1801. }
  1802. #u223494 {
  1803. border-width:0px;
  1804. position:absolute;
  1805. left:330px;
  1806. top:84px;
  1807. width:7px;
  1808. height:7px;
  1809. display:flex;
  1810. }
  1811. #u223494 .text {
  1812. position:absolute;
  1813. align-self:center;
  1814. padding:2px 2px 2px 2px;
  1815. box-sizing:border-box;
  1816. width:100%;
  1817. }
  1818. #u223494_text {
  1819. border-width:0px;
  1820. word-wrap:break-word;
  1821. text-transform:none;
  1822. visibility:hidden;
  1823. }
  1824. #u223495_img {
  1825. border-width:0px;
  1826. position:absolute;
  1827. left:0px;
  1828. top:0px;
  1829. width:19px;
  1830. height:2px;
  1831. }
  1832. #u223495 {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:347px;
  1836. top:87px;
  1837. width:18px;
  1838. height:1px;
  1839. display:flex;
  1840. -webkit-transform:rotate(90deg);
  1841. -moz-transform:rotate(90deg);
  1842. -ms-transform:rotate(90deg);
  1843. transform:rotate(90deg);
  1844. }
  1845. #u223495 .text {
  1846. position:absolute;
  1847. align-self:center;
  1848. padding:2px 2px 2px 2px;
  1849. box-sizing:border-box;
  1850. width:100%;
  1851. }
  1852. #u223495_text {
  1853. border-width:0px;
  1854. word-wrap:break-word;
  1855. text-transform:none;
  1856. visibility:hidden;
  1857. }
  1858. #u223496_img {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:0px;
  1862. top:0px;
  1863. width:375px;
  1864. height:44px;
  1865. }
  1866. #u223496 {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:29px;
  1870. top:24px;
  1871. width:375px;
  1872. height:44px;
  1873. display:flex;
  1874. }
  1875. #u223496 .text {
  1876. position:absolute;
  1877. align-self:center;
  1878. padding:2px 2px 2px 2px;
  1879. box-sizing:border-box;
  1880. width:100%;
  1881. }
  1882. #u223496_text {
  1883. border-width:0px;
  1884. word-wrap:break-word;
  1885. text-transform:none;
  1886. visibility:hidden;
  1887. }
  1888. #u223497_div {
  1889. border-width:0px;
  1890. position:absolute;
  1891. left:0px;
  1892. top:0px;
  1893. width:375px;
  1894. height:50px;
  1895. background:inherit;
  1896. background-color:rgba(255, 255, 255, 1);
  1897. box-sizing:border-box;
  1898. border-width:1px;
  1899. border-style:solid;
  1900. border-color:rgba(242, 242, 242, 1);
  1901. border-radius:26px;
  1902. border-top-left-radius:0px;
  1903. border-top-right-radius:0px;
  1904. -moz-box-shadow:none;
  1905. -webkit-box-shadow:none;
  1906. box-shadow:none;
  1907. }
  1908. #u223497 {
  1909. border-width:0px;
  1910. position:absolute;
  1911. left:29px;
  1912. top:788px;
  1913. width:375px;
  1914. height:50px;
  1915. display:flex;
  1916. }
  1917. #u223497 .text {
  1918. position:absolute;
  1919. align-self:center;
  1920. padding:2px 2px 2px 2px;
  1921. box-sizing:border-box;
  1922. width:100%;
  1923. }
  1924. #u223497_text {
  1925. border-width:0px;
  1926. word-wrap:break-word;
  1927. text-transform:none;
  1928. visibility:hidden;
  1929. }
  1930. #u223498 {
  1931. border-width:0px;
  1932. position:absolute;
  1933. left:0px;
  1934. top:0px;
  1935. width:0px;
  1936. height:0px;
  1937. }
  1938. #u223499_img {
  1939. border-width:0px;
  1940. position:absolute;
  1941. left:0px;
  1942. top:0px;
  1943. width:24px;
  1944. height:24px;
  1945. }
  1946. #u223499 {
  1947. border-width:0px;
  1948. position:absolute;
  1949. left:69px;
  1950. top:792px;
  1951. width:24px;
  1952. height:24px;
  1953. display:flex;
  1954. font-size:8px;
  1955. }
  1956. #u223499 .text {
  1957. position:absolute;
  1958. align-self:center;
  1959. padding:2px 2px 2px 2px;
  1960. box-sizing:border-box;
  1961. width:100%;
  1962. }
  1963. #u223499_text {
  1964. border-width:0px;
  1965. word-wrap:break-word;
  1966. text-transform:none;
  1967. }
  1968. #u223500_div {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:0px;
  1972. top:0px;
  1973. width:25px;
  1974. height:17px;
  1975. background:inherit;
  1976. background-color:rgba(255, 255, 255, 0);
  1977. border:none;
  1978. border-radius:0px;
  1979. -moz-box-shadow:none;
  1980. -webkit-box-shadow:none;
  1981. box-shadow:none;
  1982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1983. font-weight:400;
  1984. font-style:normal;
  1985. font-size:12px;
  1986. }
  1987. #u223500 {
  1988. border-width:0px;
  1989. position:absolute;
  1990. left:69px;
  1991. top:817px;
  1992. width:25px;
  1993. height:17px;
  1994. display:flex;
  1995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1996. font-weight:400;
  1997. font-style:normal;
  1998. font-size:12px;
  1999. }
  2000. #u223500 .text {
  2001. position:absolute;
  2002. align-self:flex-start;
  2003. padding:0px 0px 0px 0px;
  2004. box-sizing:border-box;
  2005. width:100%;
  2006. }
  2007. #u223500_text {
  2008. border-width:0px;
  2009. white-space:nowrap;
  2010. text-transform:none;
  2011. }
  2012. #u223501 {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:0px;
  2016. top:0px;
  2017. width:0px;
  2018. height:0px;
  2019. }
  2020. #u223502_img {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:0px;
  2024. top:0px;
  2025. width:24px;
  2026. height:24px;
  2027. }
  2028. #u223502 {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:339px;
  2032. top:794px;
  2033. width:24px;
  2034. height:24px;
  2035. display:flex;
  2036. font-size:8px;
  2037. }
  2038. #u223502 .text {
  2039. position:absolute;
  2040. align-self:center;
  2041. padding:2px 2px 2px 2px;
  2042. box-sizing:border-box;
  2043. width:100%;
  2044. }
  2045. #u223502_text {
  2046. border-width:0px;
  2047. word-wrap:break-word;
  2048. text-transform:none;
  2049. }
  2050. #u223503_div {
  2051. border-width:0px;
  2052. position:absolute;
  2053. left:0px;
  2054. top:0px;
  2055. width:25px;
  2056. height:17px;
  2057. background:inherit;
  2058. background-color:rgba(255, 255, 255, 0);
  2059. border:none;
  2060. border-radius:0px;
  2061. -moz-box-shadow:none;
  2062. -webkit-box-shadow:none;
  2063. box-shadow:none;
  2064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2065. font-weight:400;
  2066. font-style:normal;
  2067. font-size:12px;
  2068. }
  2069. #u223503 {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:339px;
  2073. top:819px;
  2074. width:25px;
  2075. height:17px;
  2076. display:flex;
  2077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2078. font-weight:400;
  2079. font-style:normal;
  2080. font-size:12px;
  2081. }
  2082. #u223503 .text {
  2083. position:absolute;
  2084. align-self:flex-start;
  2085. padding:0px 0px 0px 0px;
  2086. box-sizing:border-box;
  2087. width:100%;
  2088. }
  2089. #u223503_text {
  2090. border-width:0px;
  2091. white-space:nowrap;
  2092. text-transform:none;
  2093. }
  2094. #u223504_div {
  2095. border-width:0px;
  2096. position:absolute;
  2097. left:0px;
  2098. top:0px;
  2099. width:375px;
  2100. height:681px;
  2101. background:inherit;
  2102. background-color:rgba(242, 242, 242, 0.462745098039216);
  2103. border:none;
  2104. border-radius:0px;
  2105. -moz-box-shadow:none;
  2106. -webkit-box-shadow:none;
  2107. box-shadow:none;
  2108. }
  2109. #u223504 {
  2110. border-width:0px;
  2111. position:absolute;
  2112. left:29px;
  2113. top:107px;
  2114. width:375px;
  2115. height:681px;
  2116. display:flex;
  2117. }
  2118. #u223504 .text {
  2119. position:absolute;
  2120. align-self:center;
  2121. padding:2px 2px 2px 2px;
  2122. box-sizing:border-box;
  2123. width:100%;
  2124. }
  2125. #u223504_text {
  2126. border-width:0px;
  2127. word-wrap:break-word;
  2128. text-transform:none;
  2129. visibility:hidden;
  2130. }
  2131. #u223505 {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:0px;
  2135. top:0px;
  2136. width:0px;
  2137. height:0px;
  2138. }
  2139. #u223506_img {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:0px;
  2143. top:0px;
  2144. width:24px;
  2145. height:24px;
  2146. }
  2147. #u223506 {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:251px;
  2151. top:792px;
  2152. width:24px;
  2153. height:24px;
  2154. display:flex;
  2155. font-size:8px;
  2156. }
  2157. #u223506 .text {
  2158. position:absolute;
  2159. align-self:center;
  2160. padding:2px 2px 2px 2px;
  2161. box-sizing:border-box;
  2162. width:100%;
  2163. }
  2164. #u223506_text {
  2165. border-width:0px;
  2166. word-wrap:break-word;
  2167. text-transform:none;
  2168. }
  2169. #u223507_div {
  2170. border-width:0px;
  2171. position:absolute;
  2172. left:0px;
  2173. top:0px;
  2174. width:37px;
  2175. height:17px;
  2176. background:inherit;
  2177. background-color:rgba(255, 255, 255, 0);
  2178. border:none;
  2179. border-radius:0px;
  2180. -moz-box-shadow:none;
  2181. -webkit-box-shadow:none;
  2182. box-shadow:none;
  2183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2184. font-weight:400;
  2185. font-style:normal;
  2186. font-size:12px;
  2187. }
  2188. #u223507 {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:245px;
  2192. top:817px;
  2193. width:37px;
  2194. height:17px;
  2195. display:flex;
  2196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2197. font-weight:400;
  2198. font-style:normal;
  2199. font-size:12px;
  2200. }
  2201. #u223507 .text {
  2202. position:absolute;
  2203. align-self:flex-start;
  2204. padding:0px 0px 0px 0px;
  2205. box-sizing:border-box;
  2206. width:100%;
  2207. }
  2208. #u223507_text {
  2209. border-width:0px;
  2210. white-space:nowrap;
  2211. text-transform:none;
  2212. }
  2213. #u223508 {
  2214. border-width:0px;
  2215. position:absolute;
  2216. left:0px;
  2217. top:0px;
  2218. width:0px;
  2219. height:0px;
  2220. }
  2221. #u223509_img {
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:0px;
  2225. top:0px;
  2226. width:24px;
  2227. height:24px;
  2228. }
  2229. #u223509 {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:157px;
  2233. top:792px;
  2234. width:24px;
  2235. height:24px;
  2236. display:flex;
  2237. font-size:8px;
  2238. }
  2239. #u223509 .text {
  2240. position:absolute;
  2241. align-self:center;
  2242. padding:2px 2px 2px 2px;
  2243. box-sizing:border-box;
  2244. width:100%;
  2245. }
  2246. #u223509_text {
  2247. border-width:0px;
  2248. word-wrap:break-word;
  2249. text-transform:none;
  2250. }
  2251. #u223510_div {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:0px;
  2255. top:0px;
  2256. width:37px;
  2257. height:17px;
  2258. background:inherit;
  2259. background-color:rgba(255, 255, 255, 0);
  2260. border:none;
  2261. border-radius:0px;
  2262. -moz-box-shadow:none;
  2263. -webkit-box-shadow:none;
  2264. box-shadow:none;
  2265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2266. font-weight:400;
  2267. font-style:normal;
  2268. font-size:12px;
  2269. }
  2270. #u223510 {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:151px;
  2274. top:817px;
  2275. width:37px;
  2276. height:17px;
  2277. display:flex;
  2278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2279. font-weight:400;
  2280. font-style:normal;
  2281. font-size:12px;
  2282. }
  2283. #u223510 .text {
  2284. position:absolute;
  2285. align-self:flex-start;
  2286. padding:0px 0px 0px 0px;
  2287. box-sizing:border-box;
  2288. width:100%;
  2289. }
  2290. #u223510_text {
  2291. border-width:0px;
  2292. white-space:nowrap;
  2293. text-transform:none;
  2294. }
  2295. #u223511_div {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:0px;
  2299. top:0px;
  2300. width:375px;
  2301. height:40px;
  2302. background:inherit;
  2303. background-color:rgba(255, 255, 255, 1);
  2304. box-sizing:border-box;
  2305. border-width:1px;
  2306. border-style:solid;
  2307. border-color:rgba(215, 215, 215, 1);
  2308. border-left:0px;
  2309. border-top:0px;
  2310. border-right:0px;
  2311. border-radius:0px;
  2312. border-bottom-right-radius:0px;
  2313. border-bottom-left-radius:0px;
  2314. -moz-box-shadow:none;
  2315. -webkit-box-shadow:none;
  2316. box-shadow:none;
  2317. }
  2318. #u223511 {
  2319. border-width:0px;
  2320. position:absolute;
  2321. left:29px;
  2322. top:67px;
  2323. width:375px;
  2324. height:40px;
  2325. display:flex;
  2326. }
  2327. #u223511 .text {
  2328. position:absolute;
  2329. align-self:center;
  2330. padding:2px 2px 2px 2px;
  2331. box-sizing:border-box;
  2332. width:100%;
  2333. }
  2334. #u223511_text {
  2335. border-width:0px;
  2336. word-wrap:break-word;
  2337. text-transform:none;
  2338. visibility:hidden;
  2339. }
  2340. #u223512_img {
  2341. border-width:0px;
  2342. position:absolute;
  2343. left:0px;
  2344. top:0px;
  2345. width:375px;
  2346. height:44px;
  2347. }
  2348. #u223512 {
  2349. border-width:0px;
  2350. position:absolute;
  2351. left:29px;
  2352. top:24px;
  2353. width:375px;
  2354. height:44px;
  2355. display:flex;
  2356. }
  2357. #u223512 .text {
  2358. position:absolute;
  2359. align-self:center;
  2360. padding:2px 2px 2px 2px;
  2361. box-sizing:border-box;
  2362. width:100%;
  2363. }
  2364. #u223512_text {
  2365. border-width:0px;
  2366. word-wrap:break-word;
  2367. text-transform:none;
  2368. visibility:hidden;
  2369. }
  2370. #u223513 {
  2371. border-width:0px;
  2372. position:absolute;
  2373. left:0px;
  2374. top:0px;
  2375. width:0px;
  2376. height:0px;
  2377. }
  2378. #u223514_div {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:0px;
  2382. top:0px;
  2383. width:88px;
  2384. height:32px;
  2385. background:inherit;
  2386. background-color:rgba(255, 255, 255, 1);
  2387. box-sizing:border-box;
  2388. border-width:1px;
  2389. border-style:solid;
  2390. border-color:rgba(242, 242, 242, 1);
  2391. border-radius:33px;
  2392. -moz-box-shadow:none;
  2393. -webkit-box-shadow:none;
  2394. box-shadow:none;
  2395. }
  2396. #u223514 {
  2397. border-width:0px;
  2398. position:absolute;
  2399. left:309px;
  2400. top:71px;
  2401. width:88px;
  2402. height:32px;
  2403. display:flex;
  2404. }
  2405. #u223514 .text {
  2406. position:absolute;
  2407. align-self:center;
  2408. padding:2px 2px 2px 2px;
  2409. box-sizing:border-box;
  2410. width:100%;
  2411. }
  2412. #u223514_text {
  2413. border-width:0px;
  2414. word-wrap:break-word;
  2415. text-transform:none;
  2416. visibility:hidden;
  2417. }
  2418. #u223515 {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:0px;
  2422. top:0px;
  2423. width:0px;
  2424. height:0px;
  2425. }
  2426. #u223516_img {
  2427. border-width:0px;
  2428. position:absolute;
  2429. left:0px;
  2430. top:0px;
  2431. width:18px;
  2432. height:18px;
  2433. }
  2434. #u223516 {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:372px;
  2438. top:78px;
  2439. width:18px;
  2440. height:18px;
  2441. display:flex;
  2442. }
  2443. #u223516 .text {
  2444. position:absolute;
  2445. align-self:center;
  2446. padding:2px 2px 2px 2px;
  2447. box-sizing:border-box;
  2448. width:100%;
  2449. }
  2450. #u223516_text {
  2451. border-width:0px;
  2452. word-wrap:break-word;
  2453. text-transform:none;
  2454. visibility:hidden;
  2455. }
  2456. #u223517_img {
  2457. border-width:0px;
  2458. position:absolute;
  2459. left:0px;
  2460. top:0px;
  2461. width:6px;
  2462. height:6px;
  2463. }
  2464. #u223517 {
  2465. border-width:0px;
  2466. position:absolute;
  2467. left:378px;
  2468. top:84px;
  2469. width:6px;
  2470. height:6px;
  2471. display:flex;
  2472. }
  2473. #u223517 .text {
  2474. position:absolute;
  2475. align-self:center;
  2476. padding:2px 2px 2px 2px;
  2477. box-sizing:border-box;
  2478. width:100%;
  2479. }
  2480. #u223517_text {
  2481. border-width:0px;
  2482. word-wrap:break-word;
  2483. text-transform:none;
  2484. visibility:hidden;
  2485. }
  2486. #u223518 {
  2487. border-width:0px;
  2488. position:absolute;
  2489. left:0px;
  2490. top:0px;
  2491. width:0px;
  2492. height:0px;
  2493. }
  2494. #u223519_img {
  2495. border-width:0px;
  2496. position:absolute;
  2497. left:0px;
  2498. top:0px;
  2499. width:5px;
  2500. height:5px;
  2501. }
  2502. #u223519 {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:323px;
  2506. top:85px;
  2507. width:5px;
  2508. height:5px;
  2509. display:flex;
  2510. }
  2511. #u223519 .text {
  2512. position:absolute;
  2513. align-self:center;
  2514. padding:2px 2px 2px 2px;
  2515. box-sizing:border-box;
  2516. width:100%;
  2517. }
  2518. #u223519_text {
  2519. border-width:0px;
  2520. word-wrap:break-word;
  2521. text-transform:none;
  2522. visibility:hidden;
  2523. }
  2524. #u223520_img {
  2525. border-width:0px;
  2526. position:absolute;
  2527. left:0px;
  2528. top:0px;
  2529. width:5px;
  2530. height:5px;
  2531. }
  2532. #u223520 {
  2533. border-width:0px;
  2534. position:absolute;
  2535. left:339px;
  2536. top:85px;
  2537. width:5px;
  2538. height:5px;
  2539. display:flex;
  2540. }
  2541. #u223520 .text {
  2542. position:absolute;
  2543. align-self:center;
  2544. padding:2px 2px 2px 2px;
  2545. box-sizing:border-box;
  2546. width:100%;
  2547. }
  2548. #u223520_text {
  2549. border-width:0px;
  2550. word-wrap:break-word;
  2551. text-transform:none;
  2552. visibility:hidden;
  2553. }
  2554. #u223521_img {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:0px;
  2558. top:0px;
  2559. width:7px;
  2560. height:7px;
  2561. }
  2562. #u223521 {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:330px;
  2566. top:84px;
  2567. width:7px;
  2568. height:7px;
  2569. display:flex;
  2570. }
  2571. #u223521 .text {
  2572. position:absolute;
  2573. align-self:center;
  2574. padding:2px 2px 2px 2px;
  2575. box-sizing:border-box;
  2576. width:100%;
  2577. }
  2578. #u223521_text {
  2579. border-width:0px;
  2580. word-wrap:break-word;
  2581. text-transform:none;
  2582. visibility:hidden;
  2583. }
  2584. #u223522_img {
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:0px;
  2588. top:0px;
  2589. width:19px;
  2590. height:2px;
  2591. }
  2592. #u223522 {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:347px;
  2596. top:87px;
  2597. width:18px;
  2598. height:1px;
  2599. display:flex;
  2600. -webkit-transform:rotate(90deg);
  2601. -moz-transform:rotate(90deg);
  2602. -ms-transform:rotate(90deg);
  2603. transform:rotate(90deg);
  2604. }
  2605. #u223522 .text {
  2606. position:absolute;
  2607. align-self:center;
  2608. padding:2px 2px 2px 2px;
  2609. box-sizing:border-box;
  2610. width:100%;
  2611. }
  2612. #u223522_text {
  2613. border-width:0px;
  2614. word-wrap:break-word;
  2615. text-transform:none;
  2616. visibility:hidden;
  2617. }
  2618. #u223523_div {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:0px;
  2622. top:0px;
  2623. width:65px;
  2624. height:22px;
  2625. background:inherit;
  2626. background-color:rgba(255, 255, 255, 0);
  2627. border:none;
  2628. border-radius:0px;
  2629. -moz-box-shadow:none;
  2630. -webkit-box-shadow:none;
  2631. box-shadow:none;
  2632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2633. font-weight:400;
  2634. font-style:normal;
  2635. font-size:16px;
  2636. color:#000000;
  2637. }
  2638. #u223523 {
  2639. border-width:0px;
  2640. position:absolute;
  2641. left:186px;
  2642. top:78px;
  2643. width:65px;
  2644. height:22px;
  2645. display:flex;
  2646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2647. font-weight:400;
  2648. font-style:normal;
  2649. font-size:16px;
  2650. color:#000000;
  2651. }
  2652. #u223523 .text {
  2653. position:absolute;
  2654. align-self:flex-start;
  2655. padding:0px 0px 0px 0px;
  2656. box-sizing:border-box;
  2657. width:100%;
  2658. }
  2659. #u223523_text {
  2660. border-width:0px;
  2661. white-space:nowrap;
  2662. text-transform:none;
  2663. }
  2664. #u223524_div {
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:0px;
  2668. top:0px;
  2669. width:12px;
  2670. height:12px;
  2671. background:inherit;
  2672. background-color:rgba(255, 255, 255, 0);
  2673. box-sizing:border-box;
  2674. border-width:2px;
  2675. border-style:solid;
  2676. border-color:rgba(51, 51, 51, 1);
  2677. border-right:0px;
  2678. border-bottom:0px;
  2679. border-radius:0px;
  2680. border-top-right-radius:0px;
  2681. border-bottom-left-radius:0px;
  2682. -moz-box-shadow:none;
  2683. -webkit-box-shadow:none;
  2684. box-shadow:none;
  2685. }
  2686. #u223524 {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:44px;
  2690. top:81px;
  2691. width:12px;
  2692. height:12px;
  2693. display:flex;
  2694. -webkit-transform:rotate(315deg);
  2695. -moz-transform:rotate(315deg);
  2696. -ms-transform:rotate(315deg);
  2697. transform:rotate(315deg);
  2698. }
  2699. #u223524 .text {
  2700. position:absolute;
  2701. align-self:center;
  2702. padding:2px 2px 2px 2px;
  2703. box-sizing:border-box;
  2704. width:100%;
  2705. }
  2706. #u223524_text {
  2707. border-width:0px;
  2708. word-wrap:break-word;
  2709. text-transform:none;
  2710. visibility:hidden;
  2711. }
  2712. #u223525_img {
  2713. border-width:0px;
  2714. position:absolute;
  2715. left:0px;
  2716. top:0px;
  2717. width:23px;
  2718. height:23px;
  2719. }
  2720. #u223525 {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:71px;
  2724. top:76px;
  2725. width:23px;
  2726. height:23px;
  2727. display:flex;
  2728. }
  2729. #u223525 .text {
  2730. position:absolute;
  2731. align-self:center;
  2732. padding:2px 2px 2px 2px;
  2733. box-sizing:border-box;
  2734. width:100%;
  2735. }
  2736. #u223525_text {
  2737. border-width:0px;
  2738. word-wrap:break-word;
  2739. text-transform:none;
  2740. visibility:hidden;
  2741. }
  2742. #u223526_div {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:0px;
  2746. top:0px;
  2747. width:375px;
  2748. height:731px;
  2749. background:inherit;
  2750. background-color:rgba(242, 242, 242, 0.996078431372549);
  2751. border:none;
  2752. border-top:0px;
  2753. border-radius:23px;
  2754. border-top-left-radius:0px;
  2755. border-top-right-radius:0px;
  2756. -moz-box-shadow:none;
  2757. -webkit-box-shadow:none;
  2758. box-shadow:none;
  2759. }
  2760. #u223526 {
  2761. border-width:0px;
  2762. position:absolute;
  2763. left:29px;
  2764. top:107px;
  2765. width:375px;
  2766. height:731px;
  2767. display:flex;
  2768. }
  2769. #u223526 .text {
  2770. position:absolute;
  2771. align-self:center;
  2772. padding:2px 2px 2px 2px;
  2773. box-sizing:border-box;
  2774. width:100%;
  2775. }
  2776. #u223526_text {
  2777. border-width:0px;
  2778. word-wrap:break-word;
  2779. text-transform:none;
  2780. visibility:hidden;
  2781. }
  2782. #u223527 {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:0px;
  2786. top:0px;
  2787. width:0px;
  2788. height:0px;
  2789. }
  2790. #u223528_div {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:0px;
  2794. top:0px;
  2795. width:375px;
  2796. height:380px;
  2797. background:inherit;
  2798. background-color:rgba(255, 255, 255, 1);
  2799. border:none;
  2800. border-radius:0px;
  2801. -moz-box-shadow:none;
  2802. -webkit-box-shadow:none;
  2803. box-shadow:none;
  2804. }
  2805. #u223528 {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:29px;
  2809. top:107px;
  2810. width:375px;
  2811. height:380px;
  2812. display:flex;
  2813. }
  2814. #u223528 .text {
  2815. position:absolute;
  2816. align-self:center;
  2817. padding:2px 2px 2px 2px;
  2818. box-sizing:border-box;
  2819. width:100%;
  2820. }
  2821. #u223528_text {
  2822. border-width:0px;
  2823. word-wrap:break-word;
  2824. text-transform:none;
  2825. visibility:hidden;
  2826. }
  2827. #u223529_div {
  2828. border-width:0px;
  2829. position:absolute;
  2830. left:0px;
  2831. top:0px;
  2832. width:353px;
  2833. height:160px;
  2834. background:inherit;
  2835. background-color:rgba(255, 255, 255, 0);
  2836. border:none;
  2837. border-top:0px;
  2838. border-right:0px;
  2839. border-bottom:0px;
  2840. border-radius:0px;
  2841. border-top-left-radius:0px;
  2842. border-bottom-left-radius:0px;
  2843. -moz-box-shadow:none;
  2844. -webkit-box-shadow:none;
  2845. box-shadow:none;
  2846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2847. font-weight:400;
  2848. font-style:normal;
  2849. line-height:30px;
  2850. }
  2851. #u223529 {
  2852. border-width:0px;
  2853. position:absolute;
  2854. left:42px;
  2855. top:117px;
  2856. width:353px;
  2857. height:160px;
  2858. display:flex;
  2859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2860. font-weight:400;
  2861. font-style:normal;
  2862. line-height:30px;
  2863. }
  2864. #u223529 .text {
  2865. position:absolute;
  2866. align-self:flex-start;
  2867. padding:5px 10px 5px 0px;
  2868. box-sizing:border-box;
  2869. width:100%;
  2870. }
  2871. #u223529_text {
  2872. border-width:0px;
  2873. word-wrap:break-word;
  2874. text-transform:none;
  2875. }
  2876. #u223530_div {
  2877. border-width:0px;
  2878. position:absolute;
  2879. left:0px;
  2880. top:0px;
  2881. width:353px;
  2882. height:190px;
  2883. background:inherit;
  2884. background-color:rgba(255, 255, 255, 0);
  2885. border:none;
  2886. border-top:0px;
  2887. border-right:0px;
  2888. border-bottom:0px;
  2889. border-radius:0px;
  2890. border-top-left-radius:0px;
  2891. border-bottom-left-radius:0px;
  2892. -moz-box-shadow:none;
  2893. -webkit-box-shadow:none;
  2894. box-shadow:none;
  2895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2896. font-weight:400;
  2897. font-style:normal;
  2898. font-size:12px;
  2899. line-height:30px;
  2900. }
  2901. #u223530 {
  2902. border-width:0px;
  2903. position:absolute;
  2904. left:42px;
  2905. top:292px;
  2906. width:353px;
  2907. height:190px;
  2908. display:flex;
  2909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2910. font-weight:400;
  2911. font-style:normal;
  2912. font-size:12px;
  2913. line-height:30px;
  2914. }
  2915. #u223530 .text {
  2916. position:absolute;
  2917. align-self:flex-start;
  2918. padding:5px 10px 5px 0px;
  2919. box-sizing:border-box;
  2920. width:100%;
  2921. }
  2922. #u223530_text {
  2923. border-width:0px;
  2924. word-wrap:break-word;
  2925. text-transform:none;
  2926. }
  2927. #u223531_img {
  2928. border-width:0px;
  2929. position:absolute;
  2930. left:0px;
  2931. top:0px;
  2932. width:350px;
  2933. height:2px;
  2934. }
  2935. #u223531 {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:42px;
  2939. top:283px;
  2940. width:349px;
  2941. height:1px;
  2942. display:flex;
  2943. }
  2944. #u223531 .text {
  2945. position:absolute;
  2946. align-self:center;
  2947. padding:2px 2px 2px 2px;
  2948. box-sizing:border-box;
  2949. width:100%;
  2950. }
  2951. #u223531_text {
  2952. border-width:0px;
  2953. word-wrap:break-word;
  2954. text-transform:none;
  2955. visibility:hidden;
  2956. }
  2957. #u223532_div {
  2958. border-width:0px;
  2959. position:absolute;
  2960. left:0px;
  2961. top:0px;
  2962. width:10px;
  2963. height:10px;
  2964. background:inherit;
  2965. background-color:rgba(255, 255, 255, 0);
  2966. box-sizing:border-box;
  2967. border-width:2px;
  2968. border-style:solid;
  2969. border-color:rgba(51, 51, 51, 1);
  2970. border-right:0px;
  2971. border-bottom:0px;
  2972. border-radius:0px;
  2973. border-top-right-radius:0px;
  2974. border-bottom-left-radius:0px;
  2975. -moz-box-shadow:none;
  2976. -webkit-box-shadow:none;
  2977. box-shadow:none;
  2978. }
  2979. #u223532 {
  2980. border-width:0px;
  2981. position:absolute;
  2982. left:378px;
  2983. top:129px;
  2984. width:10px;
  2985. height:10px;
  2986. display:flex;
  2987. -webkit-transform:rotate(45deg);
  2988. -moz-transform:rotate(45deg);
  2989. -ms-transform:rotate(45deg);
  2990. transform:rotate(45deg);
  2991. }
  2992. #u223532 .text {
  2993. position:absolute;
  2994. align-self:center;
  2995. padding:2px 2px 2px 2px;
  2996. box-sizing:border-box;
  2997. width:100%;
  2998. }
  2999. #u223532_text {
  3000. border-width:0px;
  3001. word-wrap:break-word;
  3002. text-transform:none;
  3003. visibility:hidden;
  3004. }
  3005. #u223533_div {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:0px;
  3009. top:0px;
  3010. width:37px;
  3011. height:17px;
  3012. background:inherit;
  3013. background-color:rgba(255, 255, 255, 0);
  3014. border:none;
  3015. border-radius:0px;
  3016. -moz-box-shadow:none;
  3017. -webkit-box-shadow:none;
  3018. box-shadow:none;
  3019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3020. font-weight:400;
  3021. font-style:normal;
  3022. font-size:12px;
  3023. color:#1890FF;
  3024. }
  3025. #u223533 {
  3026. border-width:0px;
  3027. position:absolute;
  3028. left:330px;
  3029. top:124px;
  3030. width:37px;
  3031. height:17px;
  3032. display:flex;
  3033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3034. font-weight:400;
  3035. font-style:normal;
  3036. font-size:12px;
  3037. color:#1890FF;
  3038. }
  3039. #u223533 .text {
  3040. position:absolute;
  3041. align-self:flex-start;
  3042. padding:0px 0px 0px 0px;
  3043. box-sizing:border-box;
  3044. width:100%;
  3045. }
  3046. #u223533_text {
  3047. border-width:0px;
  3048. white-space:nowrap;
  3049. text-transform:none;
  3050. }
  3051. #u223535_img {
  3052. border-width:0px;
  3053. position:absolute;
  3054. left:0px;
  3055. top:0px;
  3056. width:433px;
  3057. height:865px;
  3058. }
  3059. #u223535 {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:455px;
  3063. top:0px;
  3064. width:433px;
  3065. height:865px;
  3066. display:flex;
  3067. }
  3068. #u223535 .text {
  3069. position:absolute;
  3070. align-self:center;
  3071. padding:2px 2px 2px 2px;
  3072. box-sizing:border-box;
  3073. width:100%;
  3074. }
  3075. #u223535_text {
  3076. border-width:0px;
  3077. word-wrap:break-word;
  3078. text-transform:none;
  3079. visibility:hidden;
  3080. }
  3081. #u223536_div {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:0px;
  3085. top:0px;
  3086. width:375px;
  3087. height:40px;
  3088. background:inherit;
  3089. background-color:rgba(255, 255, 255, 1);
  3090. box-sizing:border-box;
  3091. border-width:1px;
  3092. border-style:solid;
  3093. border-color:rgba(215, 215, 215, 1);
  3094. border-left:0px;
  3095. border-top:0px;
  3096. border-right:0px;
  3097. border-radius:0px;
  3098. border-bottom-right-radius:0px;
  3099. border-bottom-left-radius:0px;
  3100. -moz-box-shadow:none;
  3101. -webkit-box-shadow:none;
  3102. box-shadow:none;
  3103. }
  3104. #u223536 {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:484px;
  3108. top:67px;
  3109. width:375px;
  3110. height:40px;
  3111. display:flex;
  3112. }
  3113. #u223536 .text {
  3114. position:absolute;
  3115. align-self:center;
  3116. padding:2px 2px 2px 2px;
  3117. box-sizing:border-box;
  3118. width:100%;
  3119. }
  3120. #u223536_text {
  3121. border-width:0px;
  3122. word-wrap:break-word;
  3123. text-transform:none;
  3124. visibility:hidden;
  3125. }
  3126. #u223537 {
  3127. border-width:0px;
  3128. position:absolute;
  3129. left:0px;
  3130. top:0px;
  3131. width:0px;
  3132. height:0px;
  3133. }
  3134. #u223538_div {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:0px;
  3138. top:0px;
  3139. width:88px;
  3140. height:32px;
  3141. background:inherit;
  3142. background-color:rgba(255, 255, 255, 1);
  3143. box-sizing:border-box;
  3144. border-width:1px;
  3145. border-style:solid;
  3146. border-color:rgba(242, 242, 242, 1);
  3147. border-radius:33px;
  3148. -moz-box-shadow:none;
  3149. -webkit-box-shadow:none;
  3150. box-shadow:none;
  3151. }
  3152. #u223538 {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:764px;
  3156. top:71px;
  3157. width:88px;
  3158. height:32px;
  3159. display:flex;
  3160. }
  3161. #u223538 .text {
  3162. position:absolute;
  3163. align-self:center;
  3164. padding:2px 2px 2px 2px;
  3165. box-sizing:border-box;
  3166. width:100%;
  3167. }
  3168. #u223538_text {
  3169. border-width:0px;
  3170. word-wrap:break-word;
  3171. text-transform:none;
  3172. visibility:hidden;
  3173. }
  3174. #u223539 {
  3175. border-width:0px;
  3176. position:absolute;
  3177. left:0px;
  3178. top:0px;
  3179. width:0px;
  3180. height:0px;
  3181. }
  3182. #u223540_img {
  3183. border-width:0px;
  3184. position:absolute;
  3185. left:0px;
  3186. top:0px;
  3187. width:18px;
  3188. height:18px;
  3189. }
  3190. #u223540 {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:827px;
  3194. top:78px;
  3195. width:18px;
  3196. height:18px;
  3197. display:flex;
  3198. }
  3199. #u223540 .text {
  3200. position:absolute;
  3201. align-self:center;
  3202. padding:2px 2px 2px 2px;
  3203. box-sizing:border-box;
  3204. width:100%;
  3205. }
  3206. #u223540_text {
  3207. border-width:0px;
  3208. word-wrap:break-word;
  3209. text-transform:none;
  3210. visibility:hidden;
  3211. }
  3212. #u223541_img {
  3213. border-width:0px;
  3214. position:absolute;
  3215. left:0px;
  3216. top:0px;
  3217. width:6px;
  3218. height:6px;
  3219. }
  3220. #u223541 {
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:833px;
  3224. top:84px;
  3225. width:6px;
  3226. height:6px;
  3227. display:flex;
  3228. }
  3229. #u223541 .text {
  3230. position:absolute;
  3231. align-self:center;
  3232. padding:2px 2px 2px 2px;
  3233. box-sizing:border-box;
  3234. width:100%;
  3235. }
  3236. #u223541_text {
  3237. border-width:0px;
  3238. word-wrap:break-word;
  3239. text-transform:none;
  3240. visibility:hidden;
  3241. }
  3242. #u223542 {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:0px;
  3246. top:0px;
  3247. width:0px;
  3248. height:0px;
  3249. }
  3250. #u223543_img {
  3251. border-width:0px;
  3252. position:absolute;
  3253. left:0px;
  3254. top:0px;
  3255. width:5px;
  3256. height:5px;
  3257. }
  3258. #u223543 {
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:778px;
  3262. top:85px;
  3263. width:5px;
  3264. height:5px;
  3265. display:flex;
  3266. }
  3267. #u223543 .text {
  3268. position:absolute;
  3269. align-self:center;
  3270. padding:2px 2px 2px 2px;
  3271. box-sizing:border-box;
  3272. width:100%;
  3273. }
  3274. #u223543_text {
  3275. border-width:0px;
  3276. word-wrap:break-word;
  3277. text-transform:none;
  3278. visibility:hidden;
  3279. }
  3280. #u223544_img {
  3281. border-width:0px;
  3282. position:absolute;
  3283. left:0px;
  3284. top:0px;
  3285. width:5px;
  3286. height:5px;
  3287. }
  3288. #u223544 {
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:794px;
  3292. top:85px;
  3293. width:5px;
  3294. height:5px;
  3295. display:flex;
  3296. }
  3297. #u223544 .text {
  3298. position:absolute;
  3299. align-self:center;
  3300. padding:2px 2px 2px 2px;
  3301. box-sizing:border-box;
  3302. width:100%;
  3303. }
  3304. #u223544_text {
  3305. border-width:0px;
  3306. word-wrap:break-word;
  3307. text-transform:none;
  3308. visibility:hidden;
  3309. }
  3310. #u223545_img {
  3311. border-width:0px;
  3312. position:absolute;
  3313. left:0px;
  3314. top:0px;
  3315. width:7px;
  3316. height:7px;
  3317. }
  3318. #u223545 {
  3319. border-width:0px;
  3320. position:absolute;
  3321. left:785px;
  3322. top:84px;
  3323. width:7px;
  3324. height:7px;
  3325. display:flex;
  3326. }
  3327. #u223545 .text {
  3328. position:absolute;
  3329. align-self:center;
  3330. padding:2px 2px 2px 2px;
  3331. box-sizing:border-box;
  3332. width:100%;
  3333. }
  3334. #u223545_text {
  3335. border-width:0px;
  3336. word-wrap:break-word;
  3337. text-transform:none;
  3338. visibility:hidden;
  3339. }
  3340. #u223546_img {
  3341. border-width:0px;
  3342. position:absolute;
  3343. left:0px;
  3344. top:0px;
  3345. width:19px;
  3346. height:2px;
  3347. }
  3348. #u223546 {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:802px;
  3352. top:87px;
  3353. width:18px;
  3354. height:1px;
  3355. display:flex;
  3356. -webkit-transform:rotate(90deg);
  3357. -moz-transform:rotate(90deg);
  3358. -ms-transform:rotate(90deg);
  3359. transform:rotate(90deg);
  3360. }
  3361. #u223546 .text {
  3362. position:absolute;
  3363. align-self:center;
  3364. padding:2px 2px 2px 2px;
  3365. box-sizing:border-box;
  3366. width:100%;
  3367. }
  3368. #u223546_text {
  3369. border-width:0px;
  3370. word-wrap:break-word;
  3371. text-transform:none;
  3372. visibility:hidden;
  3373. }
  3374. #u223547_img {
  3375. border-width:0px;
  3376. position:absolute;
  3377. left:0px;
  3378. top:0px;
  3379. width:375px;
  3380. height:44px;
  3381. }
  3382. #u223547 {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:484px;
  3386. top:24px;
  3387. width:375px;
  3388. height:44px;
  3389. display:flex;
  3390. }
  3391. #u223547 .text {
  3392. position:absolute;
  3393. align-self:center;
  3394. padding:2px 2px 2px 2px;
  3395. box-sizing:border-box;
  3396. width:100%;
  3397. }
  3398. #u223547_text {
  3399. border-width:0px;
  3400. word-wrap:break-word;
  3401. text-transform:none;
  3402. visibility:hidden;
  3403. }
  3404. #u223548_div {
  3405. border-width:0px;
  3406. position:absolute;
  3407. left:0px;
  3408. top:0px;
  3409. width:375px;
  3410. height:50px;
  3411. background:inherit;
  3412. background-color:rgba(255, 255, 255, 1);
  3413. box-sizing:border-box;
  3414. border-width:1px;
  3415. border-style:solid;
  3416. border-color:rgba(242, 242, 242, 1);
  3417. border-radius:26px;
  3418. border-top-left-radius:0px;
  3419. border-top-right-radius:0px;
  3420. -moz-box-shadow:none;
  3421. -webkit-box-shadow:none;
  3422. box-shadow:none;
  3423. }
  3424. #u223548 {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:484px;
  3428. top:788px;
  3429. width:375px;
  3430. height:50px;
  3431. display:flex;
  3432. }
  3433. #u223548 .text {
  3434. position:absolute;
  3435. align-self:center;
  3436. padding:2px 2px 2px 2px;
  3437. box-sizing:border-box;
  3438. width:100%;
  3439. }
  3440. #u223548_text {
  3441. border-width:0px;
  3442. word-wrap:break-word;
  3443. text-transform:none;
  3444. visibility:hidden;
  3445. }
  3446. #u223549 {
  3447. border-width:0px;
  3448. position:absolute;
  3449. left:0px;
  3450. top:0px;
  3451. width:0px;
  3452. height:0px;
  3453. }
  3454. #u223550_img {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:0px;
  3458. top:0px;
  3459. width:24px;
  3460. height:24px;
  3461. }
  3462. #u223550 {
  3463. border-width:0px;
  3464. position:absolute;
  3465. left:524px;
  3466. top:792px;
  3467. width:24px;
  3468. height:24px;
  3469. display:flex;
  3470. font-size:8px;
  3471. }
  3472. #u223550 .text {
  3473. position:absolute;
  3474. align-self:center;
  3475. padding:2px 2px 2px 2px;
  3476. box-sizing:border-box;
  3477. width:100%;
  3478. }
  3479. #u223550_text {
  3480. border-width:0px;
  3481. word-wrap:break-word;
  3482. text-transform:none;
  3483. }
  3484. #u223551_div {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:0px;
  3488. top:0px;
  3489. width:25px;
  3490. height:17px;
  3491. background:inherit;
  3492. background-color:rgba(255, 255, 255, 0);
  3493. border:none;
  3494. border-radius:0px;
  3495. -moz-box-shadow:none;
  3496. -webkit-box-shadow:none;
  3497. box-shadow:none;
  3498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3499. font-weight:400;
  3500. font-style:normal;
  3501. font-size:12px;
  3502. }
  3503. #u223551 {
  3504. border-width:0px;
  3505. position:absolute;
  3506. left:524px;
  3507. top:817px;
  3508. width:25px;
  3509. height:17px;
  3510. display:flex;
  3511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3512. font-weight:400;
  3513. font-style:normal;
  3514. font-size:12px;
  3515. }
  3516. #u223551 .text {
  3517. position:absolute;
  3518. align-self:flex-start;
  3519. padding:0px 0px 0px 0px;
  3520. box-sizing:border-box;
  3521. width:100%;
  3522. }
  3523. #u223551_text {
  3524. border-width:0px;
  3525. white-space:nowrap;
  3526. text-transform:none;
  3527. }
  3528. #u223552 {
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:0px;
  3532. top:0px;
  3533. width:0px;
  3534. height:0px;
  3535. }
  3536. #u223553_img {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:0px;
  3540. top:0px;
  3541. width:24px;
  3542. height:24px;
  3543. }
  3544. #u223553 {
  3545. border-width:0px;
  3546. position:absolute;
  3547. left:794px;
  3548. top:794px;
  3549. width:24px;
  3550. height:24px;
  3551. display:flex;
  3552. font-size:8px;
  3553. }
  3554. #u223553 .text {
  3555. position:absolute;
  3556. align-self:center;
  3557. padding:2px 2px 2px 2px;
  3558. box-sizing:border-box;
  3559. width:100%;
  3560. }
  3561. #u223553_text {
  3562. border-width:0px;
  3563. word-wrap:break-word;
  3564. text-transform:none;
  3565. }
  3566. #u223554_div {
  3567. border-width:0px;
  3568. position:absolute;
  3569. left:0px;
  3570. top:0px;
  3571. width:25px;
  3572. height:17px;
  3573. background:inherit;
  3574. background-color:rgba(255, 255, 255, 0);
  3575. border:none;
  3576. border-radius:0px;
  3577. -moz-box-shadow:none;
  3578. -webkit-box-shadow:none;
  3579. box-shadow:none;
  3580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3581. font-weight:400;
  3582. font-style:normal;
  3583. font-size:12px;
  3584. }
  3585. #u223554 {
  3586. border-width:0px;
  3587. position:absolute;
  3588. left:794px;
  3589. top:819px;
  3590. width:25px;
  3591. height:17px;
  3592. display:flex;
  3593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3594. font-weight:400;
  3595. font-style:normal;
  3596. font-size:12px;
  3597. }
  3598. #u223554 .text {
  3599. position:absolute;
  3600. align-self:flex-start;
  3601. padding:0px 0px 0px 0px;
  3602. box-sizing:border-box;
  3603. width:100%;
  3604. }
  3605. #u223554_text {
  3606. border-width:0px;
  3607. white-space:nowrap;
  3608. text-transform:none;
  3609. }
  3610. #u223555_div {
  3611. border-width:0px;
  3612. position:absolute;
  3613. left:0px;
  3614. top:0px;
  3615. width:375px;
  3616. height:681px;
  3617. background:inherit;
  3618. background-color:rgba(242, 242, 242, 0.462745098039216);
  3619. border:none;
  3620. border-radius:0px;
  3621. -moz-box-shadow:none;
  3622. -webkit-box-shadow:none;
  3623. box-shadow:none;
  3624. }
  3625. #u223555 {
  3626. border-width:0px;
  3627. position:absolute;
  3628. left:484px;
  3629. top:107px;
  3630. width:375px;
  3631. height:681px;
  3632. display:flex;
  3633. }
  3634. #u223555 .text {
  3635. position:absolute;
  3636. align-self:center;
  3637. padding:2px 2px 2px 2px;
  3638. box-sizing:border-box;
  3639. width:100%;
  3640. }
  3641. #u223555_text {
  3642. border-width:0px;
  3643. word-wrap:break-word;
  3644. text-transform:none;
  3645. visibility:hidden;
  3646. }
  3647. #u223556 {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:0px;
  3651. top:0px;
  3652. width:0px;
  3653. height:0px;
  3654. }
  3655. #u223557_img {
  3656. border-width:0px;
  3657. position:absolute;
  3658. left:0px;
  3659. top:0px;
  3660. width:24px;
  3661. height:24px;
  3662. }
  3663. #u223557 {
  3664. border-width:0px;
  3665. position:absolute;
  3666. left:706px;
  3667. top:792px;
  3668. width:24px;
  3669. height:24px;
  3670. display:flex;
  3671. font-size:8px;
  3672. }
  3673. #u223557 .text {
  3674. position:absolute;
  3675. align-self:center;
  3676. padding:2px 2px 2px 2px;
  3677. box-sizing:border-box;
  3678. width:100%;
  3679. }
  3680. #u223557_text {
  3681. border-width:0px;
  3682. word-wrap:break-word;
  3683. text-transform:none;
  3684. }
  3685. #u223558_div {
  3686. border-width:0px;
  3687. position:absolute;
  3688. left:0px;
  3689. top:0px;
  3690. width:37px;
  3691. height:17px;
  3692. background:inherit;
  3693. background-color:rgba(255, 255, 255, 0);
  3694. border:none;
  3695. border-radius:0px;
  3696. -moz-box-shadow:none;
  3697. -webkit-box-shadow:none;
  3698. box-shadow:none;
  3699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3700. font-weight:400;
  3701. font-style:normal;
  3702. font-size:12px;
  3703. }
  3704. #u223558 {
  3705. border-width:0px;
  3706. position:absolute;
  3707. left:700px;
  3708. top:817px;
  3709. width:37px;
  3710. height:17px;
  3711. display:flex;
  3712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3713. font-weight:400;
  3714. font-style:normal;
  3715. font-size:12px;
  3716. }
  3717. #u223558 .text {
  3718. position:absolute;
  3719. align-self:flex-start;
  3720. padding:0px 0px 0px 0px;
  3721. box-sizing:border-box;
  3722. width:100%;
  3723. }
  3724. #u223558_text {
  3725. border-width:0px;
  3726. white-space:nowrap;
  3727. text-transform:none;
  3728. }
  3729. #u223559 {
  3730. border-width:0px;
  3731. position:absolute;
  3732. left:0px;
  3733. top:0px;
  3734. width:0px;
  3735. height:0px;
  3736. }
  3737. #u223560_img {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:0px;
  3741. top:0px;
  3742. width:24px;
  3743. height:24px;
  3744. }
  3745. #u223560 {
  3746. border-width:0px;
  3747. position:absolute;
  3748. left:612px;
  3749. top:792px;
  3750. width:24px;
  3751. height:24px;
  3752. display:flex;
  3753. font-size:8px;
  3754. }
  3755. #u223560 .text {
  3756. position:absolute;
  3757. align-self:center;
  3758. padding:2px 2px 2px 2px;
  3759. box-sizing:border-box;
  3760. width:100%;
  3761. }
  3762. #u223560_text {
  3763. border-width:0px;
  3764. word-wrap:break-word;
  3765. text-transform:none;
  3766. }
  3767. #u223561_div {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:0px;
  3771. top:0px;
  3772. width:37px;
  3773. height:17px;
  3774. background:inherit;
  3775. background-color:rgba(255, 255, 255, 0);
  3776. border:none;
  3777. border-radius:0px;
  3778. -moz-box-shadow:none;
  3779. -webkit-box-shadow:none;
  3780. box-shadow:none;
  3781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3782. font-weight:400;
  3783. font-style:normal;
  3784. font-size:12px;
  3785. }
  3786. #u223561 {
  3787. border-width:0px;
  3788. position:absolute;
  3789. left:606px;
  3790. top:817px;
  3791. width:37px;
  3792. height:17px;
  3793. display:flex;
  3794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3795. font-weight:400;
  3796. font-style:normal;
  3797. font-size:12px;
  3798. }
  3799. #u223561 .text {
  3800. position:absolute;
  3801. align-self:flex-start;
  3802. padding:0px 0px 0px 0px;
  3803. box-sizing:border-box;
  3804. width:100%;
  3805. }
  3806. #u223561_text {
  3807. border-width:0px;
  3808. white-space:nowrap;
  3809. text-transform:none;
  3810. }
  3811. #u223562_div {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:0px;
  3815. top:0px;
  3816. width:375px;
  3817. height:40px;
  3818. background:inherit;
  3819. background-color:rgba(255, 255, 255, 1);
  3820. box-sizing:border-box;
  3821. border-width:1px;
  3822. border-style:solid;
  3823. border-color:rgba(215, 215, 215, 1);
  3824. border-left:0px;
  3825. border-top:0px;
  3826. border-right:0px;
  3827. border-radius:0px;
  3828. border-bottom-right-radius:0px;
  3829. border-bottom-left-radius:0px;
  3830. -moz-box-shadow:none;
  3831. -webkit-box-shadow:none;
  3832. box-shadow:none;
  3833. }
  3834. #u223562 {
  3835. border-width:0px;
  3836. position:absolute;
  3837. left:484px;
  3838. top:67px;
  3839. width:375px;
  3840. height:40px;
  3841. display:flex;
  3842. }
  3843. #u223562 .text {
  3844. position:absolute;
  3845. align-self:center;
  3846. padding:2px 2px 2px 2px;
  3847. box-sizing:border-box;
  3848. width:100%;
  3849. }
  3850. #u223562_text {
  3851. border-width:0px;
  3852. word-wrap:break-word;
  3853. text-transform:none;
  3854. visibility:hidden;
  3855. }
  3856. #u223563_img {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:0px;
  3860. top:0px;
  3861. width:375px;
  3862. height:44px;
  3863. }
  3864. #u223563 {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:484px;
  3868. top:24px;
  3869. width:375px;
  3870. height:44px;
  3871. display:flex;
  3872. }
  3873. #u223563 .text {
  3874. position:absolute;
  3875. align-self:center;
  3876. padding:2px 2px 2px 2px;
  3877. box-sizing:border-box;
  3878. width:100%;
  3879. }
  3880. #u223563_text {
  3881. border-width:0px;
  3882. word-wrap:break-word;
  3883. text-transform:none;
  3884. visibility:hidden;
  3885. }
  3886. #u223564 {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:0px;
  3890. top:0px;
  3891. width:0px;
  3892. height:0px;
  3893. }
  3894. #u223565_div {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:0px;
  3898. top:0px;
  3899. width:88px;
  3900. height:32px;
  3901. background:inherit;
  3902. background-color:rgba(255, 255, 255, 1);
  3903. box-sizing:border-box;
  3904. border-width:1px;
  3905. border-style:solid;
  3906. border-color:rgba(242, 242, 242, 1);
  3907. border-radius:33px;
  3908. -moz-box-shadow:none;
  3909. -webkit-box-shadow:none;
  3910. box-shadow:none;
  3911. }
  3912. #u223565 {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:764px;
  3916. top:71px;
  3917. width:88px;
  3918. height:32px;
  3919. display:flex;
  3920. }
  3921. #u223565 .text {
  3922. position:absolute;
  3923. align-self:center;
  3924. padding:2px 2px 2px 2px;
  3925. box-sizing:border-box;
  3926. width:100%;
  3927. }
  3928. #u223565_text {
  3929. border-width:0px;
  3930. word-wrap:break-word;
  3931. text-transform:none;
  3932. visibility:hidden;
  3933. }
  3934. #u223566 {
  3935. border-width:0px;
  3936. position:absolute;
  3937. left:0px;
  3938. top:0px;
  3939. width:0px;
  3940. height:0px;
  3941. }
  3942. #u223567_img {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:0px;
  3946. top:0px;
  3947. width:18px;
  3948. height:18px;
  3949. }
  3950. #u223567 {
  3951. border-width:0px;
  3952. position:absolute;
  3953. left:827px;
  3954. top:78px;
  3955. width:18px;
  3956. height:18px;
  3957. display:flex;
  3958. }
  3959. #u223567 .text {
  3960. position:absolute;
  3961. align-self:center;
  3962. padding:2px 2px 2px 2px;
  3963. box-sizing:border-box;
  3964. width:100%;
  3965. }
  3966. #u223567_text {
  3967. border-width:0px;
  3968. word-wrap:break-word;
  3969. text-transform:none;
  3970. visibility:hidden;
  3971. }
  3972. #u223568_img {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:0px;
  3976. top:0px;
  3977. width:6px;
  3978. height:6px;
  3979. }
  3980. #u223568 {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:833px;
  3984. top:84px;
  3985. width:6px;
  3986. height:6px;
  3987. display:flex;
  3988. }
  3989. #u223568 .text {
  3990. position:absolute;
  3991. align-self:center;
  3992. padding:2px 2px 2px 2px;
  3993. box-sizing:border-box;
  3994. width:100%;
  3995. }
  3996. #u223568_text {
  3997. border-width:0px;
  3998. word-wrap:break-word;
  3999. text-transform:none;
  4000. visibility:hidden;
  4001. }
  4002. #u223569 {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:0px;
  4006. top:0px;
  4007. width:0px;
  4008. height:0px;
  4009. }
  4010. #u223570_img {
  4011. border-width:0px;
  4012. position:absolute;
  4013. left:0px;
  4014. top:0px;
  4015. width:5px;
  4016. height:5px;
  4017. }
  4018. #u223570 {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:778px;
  4022. top:85px;
  4023. width:5px;
  4024. height:5px;
  4025. display:flex;
  4026. }
  4027. #u223570 .text {
  4028. position:absolute;
  4029. align-self:center;
  4030. padding:2px 2px 2px 2px;
  4031. box-sizing:border-box;
  4032. width:100%;
  4033. }
  4034. #u223570_text {
  4035. border-width:0px;
  4036. word-wrap:break-word;
  4037. text-transform:none;
  4038. visibility:hidden;
  4039. }
  4040. #u223571_img {
  4041. border-width:0px;
  4042. position:absolute;
  4043. left:0px;
  4044. top:0px;
  4045. width:5px;
  4046. height:5px;
  4047. }
  4048. #u223571 {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:794px;
  4052. top:85px;
  4053. width:5px;
  4054. height:5px;
  4055. display:flex;
  4056. }
  4057. #u223571 .text {
  4058. position:absolute;
  4059. align-self:center;
  4060. padding:2px 2px 2px 2px;
  4061. box-sizing:border-box;
  4062. width:100%;
  4063. }
  4064. #u223571_text {
  4065. border-width:0px;
  4066. word-wrap:break-word;
  4067. text-transform:none;
  4068. visibility:hidden;
  4069. }
  4070. #u223572_img {
  4071. border-width:0px;
  4072. position:absolute;
  4073. left:0px;
  4074. top:0px;
  4075. width:7px;
  4076. height:7px;
  4077. }
  4078. #u223572 {
  4079. border-width:0px;
  4080. position:absolute;
  4081. left:785px;
  4082. top:84px;
  4083. width:7px;
  4084. height:7px;
  4085. display:flex;
  4086. }
  4087. #u223572 .text {
  4088. position:absolute;
  4089. align-self:center;
  4090. padding:2px 2px 2px 2px;
  4091. box-sizing:border-box;
  4092. width:100%;
  4093. }
  4094. #u223572_text {
  4095. border-width:0px;
  4096. word-wrap:break-word;
  4097. text-transform:none;
  4098. visibility:hidden;
  4099. }
  4100. #u223573_img {
  4101. border-width:0px;
  4102. position:absolute;
  4103. left:0px;
  4104. top:0px;
  4105. width:19px;
  4106. height:2px;
  4107. }
  4108. #u223573 {
  4109. border-width:0px;
  4110. position:absolute;
  4111. left:802px;
  4112. top:87px;
  4113. width:18px;
  4114. height:1px;
  4115. display:flex;
  4116. -webkit-transform:rotate(90deg);
  4117. -moz-transform:rotate(90deg);
  4118. -ms-transform:rotate(90deg);
  4119. transform:rotate(90deg);
  4120. }
  4121. #u223573 .text {
  4122. position:absolute;
  4123. align-self:center;
  4124. padding:2px 2px 2px 2px;
  4125. box-sizing:border-box;
  4126. width:100%;
  4127. }
  4128. #u223573_text {
  4129. border-width:0px;
  4130. word-wrap:break-word;
  4131. text-transform:none;
  4132. visibility:hidden;
  4133. }
  4134. #u223574_div {
  4135. border-width:0px;
  4136. position:absolute;
  4137. left:0px;
  4138. top:0px;
  4139. width:65px;
  4140. height:22px;
  4141. background:inherit;
  4142. background-color:rgba(255, 255, 255, 0);
  4143. border:none;
  4144. border-radius:0px;
  4145. -moz-box-shadow:none;
  4146. -webkit-box-shadow:none;
  4147. box-shadow:none;
  4148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4149. font-weight:400;
  4150. font-style:normal;
  4151. font-size:16px;
  4152. color:#000000;
  4153. }
  4154. #u223574 {
  4155. border-width:0px;
  4156. position:absolute;
  4157. left:641px;
  4158. top:78px;
  4159. width:65px;
  4160. height:22px;
  4161. display:flex;
  4162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4163. font-weight:400;
  4164. font-style:normal;
  4165. font-size:16px;
  4166. color:#000000;
  4167. }
  4168. #u223574 .text {
  4169. position:absolute;
  4170. align-self:flex-start;
  4171. padding:0px 0px 0px 0px;
  4172. box-sizing:border-box;
  4173. width:100%;
  4174. }
  4175. #u223574_text {
  4176. border-width:0px;
  4177. white-space:nowrap;
  4178. text-transform:none;
  4179. }
  4180. #u223575_div {
  4181. border-width:0px;
  4182. position:absolute;
  4183. left:0px;
  4184. top:0px;
  4185. width:12px;
  4186. height:12px;
  4187. background:inherit;
  4188. background-color:rgba(255, 255, 255, 0);
  4189. box-sizing:border-box;
  4190. border-width:2px;
  4191. border-style:solid;
  4192. border-color:rgba(51, 51, 51, 1);
  4193. border-right:0px;
  4194. border-bottom:0px;
  4195. border-radius:0px;
  4196. border-top-right-radius:0px;
  4197. border-bottom-left-radius:0px;
  4198. -moz-box-shadow:none;
  4199. -webkit-box-shadow:none;
  4200. box-shadow:none;
  4201. }
  4202. #u223575 {
  4203. border-width:0px;
  4204. position:absolute;
  4205. left:499px;
  4206. top:81px;
  4207. width:12px;
  4208. height:12px;
  4209. display:flex;
  4210. -webkit-transform:rotate(315deg);
  4211. -moz-transform:rotate(315deg);
  4212. -ms-transform:rotate(315deg);
  4213. transform:rotate(315deg);
  4214. }
  4215. #u223575 .text {
  4216. position:absolute;
  4217. align-self:center;
  4218. padding:2px 2px 2px 2px;
  4219. box-sizing:border-box;
  4220. width:100%;
  4221. }
  4222. #u223575_text {
  4223. border-width:0px;
  4224. word-wrap:break-word;
  4225. text-transform:none;
  4226. visibility:hidden;
  4227. }
  4228. #u223576_img {
  4229. border-width:0px;
  4230. position:absolute;
  4231. left:0px;
  4232. top:0px;
  4233. width:23px;
  4234. height:23px;
  4235. }
  4236. #u223576 {
  4237. border-width:0px;
  4238. position:absolute;
  4239. left:526px;
  4240. top:76px;
  4241. width:23px;
  4242. height:23px;
  4243. display:flex;
  4244. }
  4245. #u223576 .text {
  4246. position:absolute;
  4247. align-self:center;
  4248. padding:2px 2px 2px 2px;
  4249. box-sizing:border-box;
  4250. width:100%;
  4251. }
  4252. #u223576_text {
  4253. border-width:0px;
  4254. word-wrap:break-word;
  4255. text-transform:none;
  4256. visibility:hidden;
  4257. }
  4258. #u223577_div {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:0px;
  4262. top:0px;
  4263. width:375px;
  4264. height:731px;
  4265. background:inherit;
  4266. background-color:rgba(242, 242, 242, 0.996078431372549);
  4267. border:none;
  4268. border-top:0px;
  4269. border-radius:23px;
  4270. border-top-left-radius:0px;
  4271. border-top-right-radius:0px;
  4272. -moz-box-shadow:none;
  4273. -webkit-box-shadow:none;
  4274. box-shadow:none;
  4275. }
  4276. #u223577 {
  4277. border-width:0px;
  4278. position:absolute;
  4279. left:484px;
  4280. top:107px;
  4281. width:375px;
  4282. height:731px;
  4283. display:flex;
  4284. }
  4285. #u223577 .text {
  4286. position:absolute;
  4287. align-self:center;
  4288. padding:2px 2px 2px 2px;
  4289. box-sizing:border-box;
  4290. width:100%;
  4291. }
  4292. #u223577_text {
  4293. border-width:0px;
  4294. word-wrap:break-word;
  4295. text-transform:none;
  4296. visibility:hidden;
  4297. }
  4298. #u223578 {
  4299. border-width:0px;
  4300. position:absolute;
  4301. left:0px;
  4302. top:0px;
  4303. width:0px;
  4304. height:0px;
  4305. }
  4306. #u223579_div {
  4307. border-width:0px;
  4308. position:absolute;
  4309. left:0px;
  4310. top:0px;
  4311. width:375px;
  4312. height:380px;
  4313. background:inherit;
  4314. background-color:rgba(255, 255, 255, 1);
  4315. border:none;
  4316. border-radius:0px;
  4317. -moz-box-shadow:none;
  4318. -webkit-box-shadow:none;
  4319. box-shadow:none;
  4320. }
  4321. #u223579 {
  4322. border-width:0px;
  4323. position:absolute;
  4324. left:484px;
  4325. top:107px;
  4326. width:375px;
  4327. height:380px;
  4328. display:flex;
  4329. }
  4330. #u223579 .text {
  4331. position:absolute;
  4332. align-self:center;
  4333. padding:2px 2px 2px 2px;
  4334. box-sizing:border-box;
  4335. width:100%;
  4336. }
  4337. #u223579_text {
  4338. border-width:0px;
  4339. word-wrap:break-word;
  4340. text-transform:none;
  4341. visibility:hidden;
  4342. }
  4343. #u223580_div {
  4344. border-width:0px;
  4345. position:absolute;
  4346. left:0px;
  4347. top:0px;
  4348. width:353px;
  4349. height:160px;
  4350. background:inherit;
  4351. background-color:rgba(255, 255, 255, 0);
  4352. border:none;
  4353. border-top:0px;
  4354. border-right:0px;
  4355. border-bottom:0px;
  4356. border-radius:0px;
  4357. border-top-left-radius:0px;
  4358. border-bottom-left-radius:0px;
  4359. -moz-box-shadow:none;
  4360. -webkit-box-shadow:none;
  4361. box-shadow:none;
  4362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4363. font-weight:400;
  4364. font-style:normal;
  4365. line-height:30px;
  4366. }
  4367. #u223580 {
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:497px;
  4371. top:117px;
  4372. width:353px;
  4373. height:160px;
  4374. display:flex;
  4375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4376. font-weight:400;
  4377. font-style:normal;
  4378. line-height:30px;
  4379. }
  4380. #u223580 .text {
  4381. position:absolute;
  4382. align-self:flex-start;
  4383. padding:5px 10px 5px 0px;
  4384. box-sizing:border-box;
  4385. width:100%;
  4386. }
  4387. #u223580_text {
  4388. border-width:0px;
  4389. word-wrap:break-word;
  4390. text-transform:none;
  4391. }
  4392. #u223581_div {
  4393. border-width:0px;
  4394. position:absolute;
  4395. left:0px;
  4396. top:0px;
  4397. width:353px;
  4398. height:190px;
  4399. background:inherit;
  4400. background-color:rgba(255, 255, 255, 0);
  4401. border:none;
  4402. border-top:0px;
  4403. border-right:0px;
  4404. border-bottom:0px;
  4405. border-radius:0px;
  4406. border-top-left-radius:0px;
  4407. border-bottom-left-radius:0px;
  4408. -moz-box-shadow:none;
  4409. -webkit-box-shadow:none;
  4410. box-shadow:none;
  4411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4412. font-weight:400;
  4413. font-style:normal;
  4414. font-size:12px;
  4415. line-height:30px;
  4416. }
  4417. #u223581 {
  4418. border-width:0px;
  4419. position:absolute;
  4420. left:497px;
  4421. top:292px;
  4422. width:353px;
  4423. height:190px;
  4424. display:flex;
  4425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4426. font-weight:400;
  4427. font-style:normal;
  4428. font-size:12px;
  4429. line-height:30px;
  4430. }
  4431. #u223581 .text {
  4432. position:absolute;
  4433. align-self:flex-start;
  4434. padding:5px 10px 5px 0px;
  4435. box-sizing:border-box;
  4436. width:100%;
  4437. }
  4438. #u223581_text {
  4439. border-width:0px;
  4440. word-wrap:break-word;
  4441. text-transform:none;
  4442. }
  4443. #u223582_img {
  4444. border-width:0px;
  4445. position:absolute;
  4446. left:0px;
  4447. top:0px;
  4448. width:350px;
  4449. height:2px;
  4450. }
  4451. #u223582 {
  4452. border-width:0px;
  4453. position:absolute;
  4454. left:497px;
  4455. top:283px;
  4456. width:349px;
  4457. height:1px;
  4458. display:flex;
  4459. }
  4460. #u223582 .text {
  4461. position:absolute;
  4462. align-self:center;
  4463. padding:2px 2px 2px 2px;
  4464. box-sizing:border-box;
  4465. width:100%;
  4466. }
  4467. #u223582_text {
  4468. border-width:0px;
  4469. word-wrap:break-word;
  4470. text-transform:none;
  4471. visibility:hidden;
  4472. }
  4473. #u223583_div {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:0px;
  4477. top:0px;
  4478. width:10px;
  4479. height:10px;
  4480. background:inherit;
  4481. background-color:rgba(255, 255, 255, 0);
  4482. box-sizing:border-box;
  4483. border-width:2px;
  4484. border-style:solid;
  4485. border-color:rgba(51, 51, 51, 1);
  4486. border-right:0px;
  4487. border-bottom:0px;
  4488. border-radius:0px;
  4489. border-top-right-radius:0px;
  4490. border-bottom-left-radius:0px;
  4491. -moz-box-shadow:none;
  4492. -webkit-box-shadow:none;
  4493. box-shadow:none;
  4494. }
  4495. #u223583 {
  4496. border-width:0px;
  4497. position:absolute;
  4498. left:833px;
  4499. top:129px;
  4500. width:10px;
  4501. height:10px;
  4502. display:flex;
  4503. -webkit-transform:rotate(45deg);
  4504. -moz-transform:rotate(45deg);
  4505. -ms-transform:rotate(45deg);
  4506. transform:rotate(45deg);
  4507. }
  4508. #u223583 .text {
  4509. position:absolute;
  4510. align-self:center;
  4511. padding:2px 2px 2px 2px;
  4512. box-sizing:border-box;
  4513. width:100%;
  4514. }
  4515. #u223583_text {
  4516. border-width:0px;
  4517. word-wrap:break-word;
  4518. text-transform:none;
  4519. visibility:hidden;
  4520. }
  4521. #u223584_div {
  4522. border-width:0px;
  4523. position:absolute;
  4524. left:0px;
  4525. top:0px;
  4526. width:37px;
  4527. height:17px;
  4528. background:inherit;
  4529. background-color:rgba(255, 255, 255, 0);
  4530. border:none;
  4531. border-radius:0px;
  4532. -moz-box-shadow:none;
  4533. -webkit-box-shadow:none;
  4534. box-shadow:none;
  4535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4536. font-weight:400;
  4537. font-style:normal;
  4538. font-size:12px;
  4539. color:#1890FF;
  4540. }
  4541. #u223584 {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:785px;
  4545. top:124px;
  4546. width:37px;
  4547. height:17px;
  4548. display:flex;
  4549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4550. font-weight:400;
  4551. font-style:normal;
  4552. font-size:12px;
  4553. color:#1890FF;
  4554. }
  4555. #u223584 .text {
  4556. position:absolute;
  4557. align-self:flex-start;
  4558. padding:0px 0px 0px 0px;
  4559. box-sizing:border-box;
  4560. width:100%;
  4561. }
  4562. #u223584_text {
  4563. border-width:0px;
  4564. white-space:nowrap;
  4565. text-transform:none;
  4566. }
  4567. #u223586_img {
  4568. border-width:0px;
  4569. position:absolute;
  4570. left:0px;
  4571. top:0px;
  4572. width:433px;
  4573. height:865px;
  4574. }
  4575. #u223586 {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:1361px;
  4579. top:0px;
  4580. width:433px;
  4581. height:865px;
  4582. display:flex;
  4583. }
  4584. #u223586 .text {
  4585. position:absolute;
  4586. align-self:center;
  4587. padding:2px 2px 2px 2px;
  4588. box-sizing:border-box;
  4589. width:100%;
  4590. }
  4591. #u223586_text {
  4592. border-width:0px;
  4593. word-wrap:break-word;
  4594. text-transform:none;
  4595. visibility:hidden;
  4596. }
  4597. #u223587_div {
  4598. border-width:0px;
  4599. position:absolute;
  4600. left:0px;
  4601. top:0px;
  4602. width:375px;
  4603. height:40px;
  4604. background:inherit;
  4605. background-color:rgba(255, 255, 255, 1);
  4606. box-sizing:border-box;
  4607. border-width:1px;
  4608. border-style:solid;
  4609. border-color:rgba(215, 215, 215, 1);
  4610. border-left:0px;
  4611. border-top:0px;
  4612. border-right:0px;
  4613. border-radius:0px;
  4614. border-bottom-right-radius:0px;
  4615. border-bottom-left-radius:0px;
  4616. -moz-box-shadow:none;
  4617. -webkit-box-shadow:none;
  4618. box-shadow:none;
  4619. }
  4620. #u223587 {
  4621. border-width:0px;
  4622. position:absolute;
  4623. left:1390px;
  4624. top:67px;
  4625. width:375px;
  4626. height:40px;
  4627. display:flex;
  4628. }
  4629. #u223587 .text {
  4630. position:absolute;
  4631. align-self:center;
  4632. padding:2px 2px 2px 2px;
  4633. box-sizing:border-box;
  4634. width:100%;
  4635. }
  4636. #u223587_text {
  4637. border-width:0px;
  4638. word-wrap:break-word;
  4639. text-transform:none;
  4640. visibility:hidden;
  4641. }
  4642. #u223588 {
  4643. border-width:0px;
  4644. position:absolute;
  4645. left:0px;
  4646. top:0px;
  4647. width:0px;
  4648. height:0px;
  4649. }
  4650. #u223589_div {
  4651. border-width:0px;
  4652. position:absolute;
  4653. left:0px;
  4654. top:0px;
  4655. width:88px;
  4656. height:32px;
  4657. background:inherit;
  4658. background-color:rgba(255, 255, 255, 1);
  4659. box-sizing:border-box;
  4660. border-width:1px;
  4661. border-style:solid;
  4662. border-color:rgba(242, 242, 242, 1);
  4663. border-radius:33px;
  4664. -moz-box-shadow:none;
  4665. -webkit-box-shadow:none;
  4666. box-shadow:none;
  4667. }
  4668. #u223589 {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:1670px;
  4672. top:71px;
  4673. width:88px;
  4674. height:32px;
  4675. display:flex;
  4676. }
  4677. #u223589 .text {
  4678. position:absolute;
  4679. align-self:center;
  4680. padding:2px 2px 2px 2px;
  4681. box-sizing:border-box;
  4682. width:100%;
  4683. }
  4684. #u223589_text {
  4685. border-width:0px;
  4686. word-wrap:break-word;
  4687. text-transform:none;
  4688. visibility:hidden;
  4689. }
  4690. #u223590 {
  4691. border-width:0px;
  4692. position:absolute;
  4693. left:0px;
  4694. top:0px;
  4695. width:0px;
  4696. height:0px;
  4697. }
  4698. #u223591_img {
  4699. border-width:0px;
  4700. position:absolute;
  4701. left:0px;
  4702. top:0px;
  4703. width:18px;
  4704. height:18px;
  4705. }
  4706. #u223591 {
  4707. border-width:0px;
  4708. position:absolute;
  4709. left:1733px;
  4710. top:78px;
  4711. width:18px;
  4712. height:18px;
  4713. display:flex;
  4714. }
  4715. #u223591 .text {
  4716. position:absolute;
  4717. align-self:center;
  4718. padding:2px 2px 2px 2px;
  4719. box-sizing:border-box;
  4720. width:100%;
  4721. }
  4722. #u223591_text {
  4723. border-width:0px;
  4724. word-wrap:break-word;
  4725. text-transform:none;
  4726. visibility:hidden;
  4727. }
  4728. #u223592_img {
  4729. border-width:0px;
  4730. position:absolute;
  4731. left:0px;
  4732. top:0px;
  4733. width:6px;
  4734. height:6px;
  4735. }
  4736. #u223592 {
  4737. border-width:0px;
  4738. position:absolute;
  4739. left:1739px;
  4740. top:84px;
  4741. width:6px;
  4742. height:6px;
  4743. display:flex;
  4744. }
  4745. #u223592 .text {
  4746. position:absolute;
  4747. align-self:center;
  4748. padding:2px 2px 2px 2px;
  4749. box-sizing:border-box;
  4750. width:100%;
  4751. }
  4752. #u223592_text {
  4753. border-width:0px;
  4754. word-wrap:break-word;
  4755. text-transform:none;
  4756. visibility:hidden;
  4757. }
  4758. #u223593 {
  4759. border-width:0px;
  4760. position:absolute;
  4761. left:0px;
  4762. top:0px;
  4763. width:0px;
  4764. height:0px;
  4765. }
  4766. #u223594_img {
  4767. border-width:0px;
  4768. position:absolute;
  4769. left:0px;
  4770. top:0px;
  4771. width:5px;
  4772. height:5px;
  4773. }
  4774. #u223594 {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:1684px;
  4778. top:85px;
  4779. width:5px;
  4780. height:5px;
  4781. display:flex;
  4782. }
  4783. #u223594 .text {
  4784. position:absolute;
  4785. align-self:center;
  4786. padding:2px 2px 2px 2px;
  4787. box-sizing:border-box;
  4788. width:100%;
  4789. }
  4790. #u223594_text {
  4791. border-width:0px;
  4792. word-wrap:break-word;
  4793. text-transform:none;
  4794. visibility:hidden;
  4795. }
  4796. #u223595_img {
  4797. border-width:0px;
  4798. position:absolute;
  4799. left:0px;
  4800. top:0px;
  4801. width:5px;
  4802. height:5px;
  4803. }
  4804. #u223595 {
  4805. border-width:0px;
  4806. position:absolute;
  4807. left:1700px;
  4808. top:85px;
  4809. width:5px;
  4810. height:5px;
  4811. display:flex;
  4812. }
  4813. #u223595 .text {
  4814. position:absolute;
  4815. align-self:center;
  4816. padding:2px 2px 2px 2px;
  4817. box-sizing:border-box;
  4818. width:100%;
  4819. }
  4820. #u223595_text {
  4821. border-width:0px;
  4822. word-wrap:break-word;
  4823. text-transform:none;
  4824. visibility:hidden;
  4825. }
  4826. #u223596_img {
  4827. border-width:0px;
  4828. position:absolute;
  4829. left:0px;
  4830. top:0px;
  4831. width:7px;
  4832. height:7px;
  4833. }
  4834. #u223596 {
  4835. border-width:0px;
  4836. position:absolute;
  4837. left:1691px;
  4838. top:84px;
  4839. width:7px;
  4840. height:7px;
  4841. display:flex;
  4842. }
  4843. #u223596 .text {
  4844. position:absolute;
  4845. align-self:center;
  4846. padding:2px 2px 2px 2px;
  4847. box-sizing:border-box;
  4848. width:100%;
  4849. }
  4850. #u223596_text {
  4851. border-width:0px;
  4852. word-wrap:break-word;
  4853. text-transform:none;
  4854. visibility:hidden;
  4855. }
  4856. #u223597_img {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:0px;
  4860. top:0px;
  4861. width:19px;
  4862. height:2px;
  4863. }
  4864. #u223597 {
  4865. border-width:0px;
  4866. position:absolute;
  4867. left:1708px;
  4868. top:87px;
  4869. width:18px;
  4870. height:1px;
  4871. display:flex;
  4872. -webkit-transform:rotate(90deg);
  4873. -moz-transform:rotate(90deg);
  4874. -ms-transform:rotate(90deg);
  4875. transform:rotate(90deg);
  4876. }
  4877. #u223597 .text {
  4878. position:absolute;
  4879. align-self:center;
  4880. padding:2px 2px 2px 2px;
  4881. box-sizing:border-box;
  4882. width:100%;
  4883. }
  4884. #u223597_text {
  4885. border-width:0px;
  4886. word-wrap:break-word;
  4887. text-transform:none;
  4888. visibility:hidden;
  4889. }
  4890. #u223598_img {
  4891. border-width:0px;
  4892. position:absolute;
  4893. left:0px;
  4894. top:0px;
  4895. width:375px;
  4896. height:44px;
  4897. }
  4898. #u223598 {
  4899. border-width:0px;
  4900. position:absolute;
  4901. left:1390px;
  4902. top:24px;
  4903. width:375px;
  4904. height:44px;
  4905. display:flex;
  4906. }
  4907. #u223598 .text {
  4908. position:absolute;
  4909. align-self:center;
  4910. padding:2px 2px 2px 2px;
  4911. box-sizing:border-box;
  4912. width:100%;
  4913. }
  4914. #u223598_text {
  4915. border-width:0px;
  4916. word-wrap:break-word;
  4917. text-transform:none;
  4918. visibility:hidden;
  4919. }
  4920. #u223599_div {
  4921. border-width:0px;
  4922. position:absolute;
  4923. left:0px;
  4924. top:0px;
  4925. width:375px;
  4926. height:50px;
  4927. background:inherit;
  4928. background-color:rgba(255, 255, 255, 1);
  4929. box-sizing:border-box;
  4930. border-width:1px;
  4931. border-style:solid;
  4932. border-color:rgba(242, 242, 242, 1);
  4933. border-radius:26px;
  4934. border-top-left-radius:0px;
  4935. border-top-right-radius:0px;
  4936. -moz-box-shadow:none;
  4937. -webkit-box-shadow:none;
  4938. box-shadow:none;
  4939. }
  4940. #u223599 {
  4941. border-width:0px;
  4942. position:absolute;
  4943. left:1390px;
  4944. top:788px;
  4945. width:375px;
  4946. height:50px;
  4947. display:flex;
  4948. }
  4949. #u223599 .text {
  4950. position:absolute;
  4951. align-self:center;
  4952. padding:2px 2px 2px 2px;
  4953. box-sizing:border-box;
  4954. width:100%;
  4955. }
  4956. #u223599_text {
  4957. border-width:0px;
  4958. word-wrap:break-word;
  4959. text-transform:none;
  4960. visibility:hidden;
  4961. }
  4962. #u223600 {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:0px;
  4966. top:0px;
  4967. width:0px;
  4968. height:0px;
  4969. }
  4970. #u223601_img {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:0px;
  4974. top:0px;
  4975. width:24px;
  4976. height:24px;
  4977. }
  4978. #u223601 {
  4979. border-width:0px;
  4980. position:absolute;
  4981. left:1430px;
  4982. top:792px;
  4983. width:24px;
  4984. height:24px;
  4985. display:flex;
  4986. font-size:8px;
  4987. }
  4988. #u223601 .text {
  4989. position:absolute;
  4990. align-self:center;
  4991. padding:2px 2px 2px 2px;
  4992. box-sizing:border-box;
  4993. width:100%;
  4994. }
  4995. #u223601_text {
  4996. border-width:0px;
  4997. word-wrap:break-word;
  4998. text-transform:none;
  4999. }
  5000. #u223602_div {
  5001. border-width:0px;
  5002. position:absolute;
  5003. left:0px;
  5004. top:0px;
  5005. width:25px;
  5006. height:17px;
  5007. background:inherit;
  5008. background-color:rgba(255, 255, 255, 0);
  5009. border:none;
  5010. border-radius:0px;
  5011. -moz-box-shadow:none;
  5012. -webkit-box-shadow:none;
  5013. box-shadow:none;
  5014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5015. font-weight:400;
  5016. font-style:normal;
  5017. font-size:12px;
  5018. }
  5019. #u223602 {
  5020. border-width:0px;
  5021. position:absolute;
  5022. left:1430px;
  5023. top:817px;
  5024. width:25px;
  5025. height:17px;
  5026. display:flex;
  5027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5028. font-weight:400;
  5029. font-style:normal;
  5030. font-size:12px;
  5031. }
  5032. #u223602 .text {
  5033. position:absolute;
  5034. align-self:flex-start;
  5035. padding:0px 0px 0px 0px;
  5036. box-sizing:border-box;
  5037. width:100%;
  5038. }
  5039. #u223602_text {
  5040. border-width:0px;
  5041. white-space:nowrap;
  5042. text-transform:none;
  5043. }
  5044. #u223603 {
  5045. border-width:0px;
  5046. position:absolute;
  5047. left:0px;
  5048. top:0px;
  5049. width:0px;
  5050. height:0px;
  5051. }
  5052. #u223604_img {
  5053. border-width:0px;
  5054. position:absolute;
  5055. left:0px;
  5056. top:0px;
  5057. width:24px;
  5058. height:24px;
  5059. }
  5060. #u223604 {
  5061. border-width:0px;
  5062. position:absolute;
  5063. left:1700px;
  5064. top:794px;
  5065. width:24px;
  5066. height:24px;
  5067. display:flex;
  5068. font-size:8px;
  5069. }
  5070. #u223604 .text {
  5071. position:absolute;
  5072. align-self:center;
  5073. padding:2px 2px 2px 2px;
  5074. box-sizing:border-box;
  5075. width:100%;
  5076. }
  5077. #u223604_text {
  5078. border-width:0px;
  5079. word-wrap:break-word;
  5080. text-transform:none;
  5081. }
  5082. #u223605_div {
  5083. border-width:0px;
  5084. position:absolute;
  5085. left:0px;
  5086. top:0px;
  5087. width:25px;
  5088. height:17px;
  5089. background:inherit;
  5090. background-color:rgba(255, 255, 255, 0);
  5091. border:none;
  5092. border-radius:0px;
  5093. -moz-box-shadow:none;
  5094. -webkit-box-shadow:none;
  5095. box-shadow:none;
  5096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5097. font-weight:400;
  5098. font-style:normal;
  5099. font-size:12px;
  5100. }
  5101. #u223605 {
  5102. border-width:0px;
  5103. position:absolute;
  5104. left:1700px;
  5105. top:819px;
  5106. width:25px;
  5107. height:17px;
  5108. display:flex;
  5109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5110. font-weight:400;
  5111. font-style:normal;
  5112. font-size:12px;
  5113. }
  5114. #u223605 .text {
  5115. position:absolute;
  5116. align-self:flex-start;
  5117. padding:0px 0px 0px 0px;
  5118. box-sizing:border-box;
  5119. width:100%;
  5120. }
  5121. #u223605_text {
  5122. border-width:0px;
  5123. white-space:nowrap;
  5124. text-transform:none;
  5125. }
  5126. #u223606_div {
  5127. border-width:0px;
  5128. position:absolute;
  5129. left:0px;
  5130. top:0px;
  5131. width:375px;
  5132. height:681px;
  5133. background:inherit;
  5134. background-color:rgba(242, 242, 242, 0.462745098039216);
  5135. border:none;
  5136. border-radius:0px;
  5137. -moz-box-shadow:none;
  5138. -webkit-box-shadow:none;
  5139. box-shadow:none;
  5140. }
  5141. #u223606 {
  5142. border-width:0px;
  5143. position:absolute;
  5144. left:1390px;
  5145. top:107px;
  5146. width:375px;
  5147. height:681px;
  5148. display:flex;
  5149. }
  5150. #u223606 .text {
  5151. position:absolute;
  5152. align-self:center;
  5153. padding:2px 2px 2px 2px;
  5154. box-sizing:border-box;
  5155. width:100%;
  5156. }
  5157. #u223606_text {
  5158. border-width:0px;
  5159. word-wrap:break-word;
  5160. text-transform:none;
  5161. visibility:hidden;
  5162. }
  5163. #u223607 {
  5164. border-width:0px;
  5165. position:absolute;
  5166. left:0px;
  5167. top:0px;
  5168. width:0px;
  5169. height:0px;
  5170. }
  5171. #u223608_img {
  5172. border-width:0px;
  5173. position:absolute;
  5174. left:0px;
  5175. top:0px;
  5176. width:24px;
  5177. height:24px;
  5178. }
  5179. #u223608 {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:1612px;
  5183. top:792px;
  5184. width:24px;
  5185. height:24px;
  5186. display:flex;
  5187. font-size:8px;
  5188. }
  5189. #u223608 .text {
  5190. position:absolute;
  5191. align-self:center;
  5192. padding:2px 2px 2px 2px;
  5193. box-sizing:border-box;
  5194. width:100%;
  5195. }
  5196. #u223608_text {
  5197. border-width:0px;
  5198. word-wrap:break-word;
  5199. text-transform:none;
  5200. }
  5201. #u223609_div {
  5202. border-width:0px;
  5203. position:absolute;
  5204. left:0px;
  5205. top:0px;
  5206. width:37px;
  5207. height:17px;
  5208. background:inherit;
  5209. background-color:rgba(255, 255, 255, 0);
  5210. border:none;
  5211. border-radius:0px;
  5212. -moz-box-shadow:none;
  5213. -webkit-box-shadow:none;
  5214. box-shadow:none;
  5215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5216. font-weight:400;
  5217. font-style:normal;
  5218. font-size:12px;
  5219. }
  5220. #u223609 {
  5221. border-width:0px;
  5222. position:absolute;
  5223. left:1606px;
  5224. top:817px;
  5225. width:37px;
  5226. height:17px;
  5227. display:flex;
  5228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5229. font-weight:400;
  5230. font-style:normal;
  5231. font-size:12px;
  5232. }
  5233. #u223609 .text {
  5234. position:absolute;
  5235. align-self:flex-start;
  5236. padding:0px 0px 0px 0px;
  5237. box-sizing:border-box;
  5238. width:100%;
  5239. }
  5240. #u223609_text {
  5241. border-width:0px;
  5242. white-space:nowrap;
  5243. text-transform:none;
  5244. }
  5245. #u223610 {
  5246. border-width:0px;
  5247. position:absolute;
  5248. left:0px;
  5249. top:0px;
  5250. width:0px;
  5251. height:0px;
  5252. }
  5253. #u223611_img {
  5254. border-width:0px;
  5255. position:absolute;
  5256. left:0px;
  5257. top:0px;
  5258. width:24px;
  5259. height:24px;
  5260. }
  5261. #u223611 {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:1518px;
  5265. top:792px;
  5266. width:24px;
  5267. height:24px;
  5268. display:flex;
  5269. font-size:8px;
  5270. }
  5271. #u223611 .text {
  5272. position:absolute;
  5273. align-self:center;
  5274. padding:2px 2px 2px 2px;
  5275. box-sizing:border-box;
  5276. width:100%;
  5277. }
  5278. #u223611_text {
  5279. border-width:0px;
  5280. word-wrap:break-word;
  5281. text-transform:none;
  5282. }
  5283. #u223612_div {
  5284. border-width:0px;
  5285. position:absolute;
  5286. left:0px;
  5287. top:0px;
  5288. width:37px;
  5289. height:17px;
  5290. background:inherit;
  5291. background-color:rgba(255, 255, 255, 0);
  5292. border:none;
  5293. border-radius:0px;
  5294. -moz-box-shadow:none;
  5295. -webkit-box-shadow:none;
  5296. box-shadow:none;
  5297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5298. font-weight:400;
  5299. font-style:normal;
  5300. font-size:12px;
  5301. }
  5302. #u223612 {
  5303. border-width:0px;
  5304. position:absolute;
  5305. left:1512px;
  5306. top:817px;
  5307. width:37px;
  5308. height:17px;
  5309. display:flex;
  5310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5311. font-weight:400;
  5312. font-style:normal;
  5313. font-size:12px;
  5314. }
  5315. #u223612 .text {
  5316. position:absolute;
  5317. align-self:flex-start;
  5318. padding:0px 0px 0px 0px;
  5319. box-sizing:border-box;
  5320. width:100%;
  5321. }
  5322. #u223612_text {
  5323. border-width:0px;
  5324. white-space:nowrap;
  5325. text-transform:none;
  5326. }
  5327. #u223613_div {
  5328. border-width:0px;
  5329. position:absolute;
  5330. left:0px;
  5331. top:0px;
  5332. width:375px;
  5333. height:40px;
  5334. background:inherit;
  5335. background-color:rgba(255, 255, 255, 1);
  5336. box-sizing:border-box;
  5337. border-width:1px;
  5338. border-style:solid;
  5339. border-color:rgba(215, 215, 215, 1);
  5340. border-left:0px;
  5341. border-top:0px;
  5342. border-right:0px;
  5343. border-radius:0px;
  5344. border-bottom-right-radius:0px;
  5345. border-bottom-left-radius:0px;
  5346. -moz-box-shadow:none;
  5347. -webkit-box-shadow:none;
  5348. box-shadow:none;
  5349. }
  5350. #u223613 {
  5351. border-width:0px;
  5352. position:absolute;
  5353. left:1390px;
  5354. top:67px;
  5355. width:375px;
  5356. height:40px;
  5357. display:flex;
  5358. }
  5359. #u223613 .text {
  5360. position:absolute;
  5361. align-self:center;
  5362. padding:2px 2px 2px 2px;
  5363. box-sizing:border-box;
  5364. width:100%;
  5365. }
  5366. #u223613_text {
  5367. border-width:0px;
  5368. word-wrap:break-word;
  5369. text-transform:none;
  5370. visibility:hidden;
  5371. }
  5372. #u223614_img {
  5373. border-width:0px;
  5374. position:absolute;
  5375. left:0px;
  5376. top:0px;
  5377. width:375px;
  5378. height:44px;
  5379. }
  5380. #u223614 {
  5381. border-width:0px;
  5382. position:absolute;
  5383. left:1390px;
  5384. top:24px;
  5385. width:375px;
  5386. height:44px;
  5387. display:flex;
  5388. }
  5389. #u223614 .text {
  5390. position:absolute;
  5391. align-self:center;
  5392. padding:2px 2px 2px 2px;
  5393. box-sizing:border-box;
  5394. width:100%;
  5395. }
  5396. #u223614_text {
  5397. border-width:0px;
  5398. word-wrap:break-word;
  5399. text-transform:none;
  5400. visibility:hidden;
  5401. }
  5402. #u223615 {
  5403. border-width:0px;
  5404. position:absolute;
  5405. left:0px;
  5406. top:0px;
  5407. width:0px;
  5408. height:0px;
  5409. }
  5410. #u223616_div {
  5411. border-width:0px;
  5412. position:absolute;
  5413. left:0px;
  5414. top:0px;
  5415. width:88px;
  5416. height:32px;
  5417. background:inherit;
  5418. background-color:rgba(255, 255, 255, 1);
  5419. box-sizing:border-box;
  5420. border-width:1px;
  5421. border-style:solid;
  5422. border-color:rgba(242, 242, 242, 1);
  5423. border-radius:33px;
  5424. -moz-box-shadow:none;
  5425. -webkit-box-shadow:none;
  5426. box-shadow:none;
  5427. }
  5428. #u223616 {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:1670px;
  5432. top:71px;
  5433. width:88px;
  5434. height:32px;
  5435. display:flex;
  5436. }
  5437. #u223616 .text {
  5438. position:absolute;
  5439. align-self:center;
  5440. padding:2px 2px 2px 2px;
  5441. box-sizing:border-box;
  5442. width:100%;
  5443. }
  5444. #u223616_text {
  5445. border-width:0px;
  5446. word-wrap:break-word;
  5447. text-transform:none;
  5448. visibility:hidden;
  5449. }
  5450. #u223617 {
  5451. border-width:0px;
  5452. position:absolute;
  5453. left:0px;
  5454. top:0px;
  5455. width:0px;
  5456. height:0px;
  5457. }
  5458. #u223618_img {
  5459. border-width:0px;
  5460. position:absolute;
  5461. left:0px;
  5462. top:0px;
  5463. width:18px;
  5464. height:18px;
  5465. }
  5466. #u223618 {
  5467. border-width:0px;
  5468. position:absolute;
  5469. left:1733px;
  5470. top:78px;
  5471. width:18px;
  5472. height:18px;
  5473. display:flex;
  5474. }
  5475. #u223618 .text {
  5476. position:absolute;
  5477. align-self:center;
  5478. padding:2px 2px 2px 2px;
  5479. box-sizing:border-box;
  5480. width:100%;
  5481. }
  5482. #u223618_text {
  5483. border-width:0px;
  5484. word-wrap:break-word;
  5485. text-transform:none;
  5486. visibility:hidden;
  5487. }
  5488. #u223619_img {
  5489. border-width:0px;
  5490. position:absolute;
  5491. left:0px;
  5492. top:0px;
  5493. width:6px;
  5494. height:6px;
  5495. }
  5496. #u223619 {
  5497. border-width:0px;
  5498. position:absolute;
  5499. left:1739px;
  5500. top:84px;
  5501. width:6px;
  5502. height:6px;
  5503. display:flex;
  5504. }
  5505. #u223619 .text {
  5506. position:absolute;
  5507. align-self:center;
  5508. padding:2px 2px 2px 2px;
  5509. box-sizing:border-box;
  5510. width:100%;
  5511. }
  5512. #u223619_text {
  5513. border-width:0px;
  5514. word-wrap:break-word;
  5515. text-transform:none;
  5516. visibility:hidden;
  5517. }
  5518. #u223620 {
  5519. border-width:0px;
  5520. position:absolute;
  5521. left:0px;
  5522. top:0px;
  5523. width:0px;
  5524. height:0px;
  5525. }
  5526. #u223621_img {
  5527. border-width:0px;
  5528. position:absolute;
  5529. left:0px;
  5530. top:0px;
  5531. width:5px;
  5532. height:5px;
  5533. }
  5534. #u223621 {
  5535. border-width:0px;
  5536. position:absolute;
  5537. left:1684px;
  5538. top:85px;
  5539. width:5px;
  5540. height:5px;
  5541. display:flex;
  5542. }
  5543. #u223621 .text {
  5544. position:absolute;
  5545. align-self:center;
  5546. padding:2px 2px 2px 2px;
  5547. box-sizing:border-box;
  5548. width:100%;
  5549. }
  5550. #u223621_text {
  5551. border-width:0px;
  5552. word-wrap:break-word;
  5553. text-transform:none;
  5554. visibility:hidden;
  5555. }
  5556. #u223622_img {
  5557. border-width:0px;
  5558. position:absolute;
  5559. left:0px;
  5560. top:0px;
  5561. width:5px;
  5562. height:5px;
  5563. }
  5564. #u223622 {
  5565. border-width:0px;
  5566. position:absolute;
  5567. left:1700px;
  5568. top:85px;
  5569. width:5px;
  5570. height:5px;
  5571. display:flex;
  5572. }
  5573. #u223622 .text {
  5574. position:absolute;
  5575. align-self:center;
  5576. padding:2px 2px 2px 2px;
  5577. box-sizing:border-box;
  5578. width:100%;
  5579. }
  5580. #u223622_text {
  5581. border-width:0px;
  5582. word-wrap:break-word;
  5583. text-transform:none;
  5584. visibility:hidden;
  5585. }
  5586. #u223623_img {
  5587. border-width:0px;
  5588. position:absolute;
  5589. left:0px;
  5590. top:0px;
  5591. width:7px;
  5592. height:7px;
  5593. }
  5594. #u223623 {
  5595. border-width:0px;
  5596. position:absolute;
  5597. left:1691px;
  5598. top:84px;
  5599. width:7px;
  5600. height:7px;
  5601. display:flex;
  5602. }
  5603. #u223623 .text {
  5604. position:absolute;
  5605. align-self:center;
  5606. padding:2px 2px 2px 2px;
  5607. box-sizing:border-box;
  5608. width:100%;
  5609. }
  5610. #u223623_text {
  5611. border-width:0px;
  5612. word-wrap:break-word;
  5613. text-transform:none;
  5614. visibility:hidden;
  5615. }
  5616. #u223624_img {
  5617. border-width:0px;
  5618. position:absolute;
  5619. left:0px;
  5620. top:0px;
  5621. width:19px;
  5622. height:2px;
  5623. }
  5624. #u223624 {
  5625. border-width:0px;
  5626. position:absolute;
  5627. left:1708px;
  5628. top:87px;
  5629. width:18px;
  5630. height:1px;
  5631. display:flex;
  5632. -webkit-transform:rotate(90deg);
  5633. -moz-transform:rotate(90deg);
  5634. -ms-transform:rotate(90deg);
  5635. transform:rotate(90deg);
  5636. }
  5637. #u223624 .text {
  5638. position:absolute;
  5639. align-self:center;
  5640. padding:2px 2px 2px 2px;
  5641. box-sizing:border-box;
  5642. width:100%;
  5643. }
  5644. #u223624_text {
  5645. border-width:0px;
  5646. word-wrap:break-word;
  5647. text-transform:none;
  5648. visibility:hidden;
  5649. }
  5650. #u223625_div {
  5651. border-width:0px;
  5652. position:absolute;
  5653. left:0px;
  5654. top:0px;
  5655. width:65px;
  5656. height:22px;
  5657. background:inherit;
  5658. background-color:rgba(255, 255, 255, 0);
  5659. border:none;
  5660. border-radius:0px;
  5661. -moz-box-shadow:none;
  5662. -webkit-box-shadow:none;
  5663. box-shadow:none;
  5664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5665. font-weight:400;
  5666. font-style:normal;
  5667. font-size:16px;
  5668. color:#000000;
  5669. }
  5670. #u223625 {
  5671. border-width:0px;
  5672. position:absolute;
  5673. left:1547px;
  5674. top:78px;
  5675. width:65px;
  5676. height:22px;
  5677. display:flex;
  5678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5679. font-weight:400;
  5680. font-style:normal;
  5681. font-size:16px;
  5682. color:#000000;
  5683. }
  5684. #u223625 .text {
  5685. position:absolute;
  5686. align-self:flex-start;
  5687. padding:0px 0px 0px 0px;
  5688. box-sizing:border-box;
  5689. width:100%;
  5690. }
  5691. #u223625_text {
  5692. border-width:0px;
  5693. white-space:nowrap;
  5694. text-transform:none;
  5695. }
  5696. #u223626_div {
  5697. border-width:0px;
  5698. position:absolute;
  5699. left:0px;
  5700. top:0px;
  5701. width:12px;
  5702. height:12px;
  5703. background:inherit;
  5704. background-color:rgba(255, 255, 255, 0);
  5705. box-sizing:border-box;
  5706. border-width:2px;
  5707. border-style:solid;
  5708. border-color:rgba(51, 51, 51, 1);
  5709. border-right:0px;
  5710. border-bottom:0px;
  5711. border-radius:0px;
  5712. border-top-right-radius:0px;
  5713. border-bottom-left-radius:0px;
  5714. -moz-box-shadow:none;
  5715. -webkit-box-shadow:none;
  5716. box-shadow:none;
  5717. }
  5718. #u223626 {
  5719. border-width:0px;
  5720. position:absolute;
  5721. left:1503px;
  5722. top:81px;
  5723. width:12px;
  5724. height:12px;
  5725. display:flex;
  5726. -webkit-transform:rotate(315deg);
  5727. -moz-transform:rotate(315deg);
  5728. -ms-transform:rotate(315deg);
  5729. transform:rotate(315deg);
  5730. }
  5731. #u223626 .text {
  5732. position:absolute;
  5733. align-self:center;
  5734. padding:2px 2px 2px 2px;
  5735. box-sizing:border-box;
  5736. width:100%;
  5737. }
  5738. #u223626_text {
  5739. border-width:0px;
  5740. word-wrap:break-word;
  5741. text-transform:none;
  5742. visibility:hidden;
  5743. }
  5744. #u223627_img {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:0px;
  5748. top:0px;
  5749. width:23px;
  5750. height:23px;
  5751. }
  5752. #u223627 {
  5753. border-width:0px;
  5754. position:absolute;
  5755. left:1530px;
  5756. top:76px;
  5757. width:23px;
  5758. height:23px;
  5759. display:flex;
  5760. }
  5761. #u223627 .text {
  5762. position:absolute;
  5763. align-self:center;
  5764. padding:2px 2px 2px 2px;
  5765. box-sizing:border-box;
  5766. width:100%;
  5767. }
  5768. #u223627_text {
  5769. border-width:0px;
  5770. word-wrap:break-word;
  5771. text-transform:none;
  5772. visibility:hidden;
  5773. }
  5774. #u223628_div {
  5775. border-width:0px;
  5776. position:absolute;
  5777. left:0px;
  5778. top:0px;
  5779. width:375px;
  5780. height:731px;
  5781. background:inherit;
  5782. background-color:rgba(242, 242, 242, 0.996078431372549);
  5783. border:none;
  5784. border-top:0px;
  5785. border-radius:23px;
  5786. border-top-left-radius:0px;
  5787. border-top-right-radius:0px;
  5788. -moz-box-shadow:none;
  5789. -webkit-box-shadow:none;
  5790. box-shadow:none;
  5791. }
  5792. #u223628 {
  5793. border-width:0px;
  5794. position:absolute;
  5795. left:1390px;
  5796. top:107px;
  5797. width:375px;
  5798. height:731px;
  5799. display:flex;
  5800. }
  5801. #u223628 .text {
  5802. position:absolute;
  5803. align-self:center;
  5804. padding:2px 2px 2px 2px;
  5805. box-sizing:border-box;
  5806. width:100%;
  5807. }
  5808. #u223628_text {
  5809. border-width:0px;
  5810. word-wrap:break-word;
  5811. text-transform:none;
  5812. visibility:hidden;
  5813. }
  5814. #u223629 {
  5815. border-width:0px;
  5816. position:absolute;
  5817. left:0px;
  5818. top:0px;
  5819. width:0px;
  5820. height:0px;
  5821. }
  5822. #u223630_div {
  5823. border-width:0px;
  5824. position:absolute;
  5825. left:0px;
  5826. top:0px;
  5827. width:375px;
  5828. height:380px;
  5829. background:inherit;
  5830. background-color:rgba(255, 255, 255, 1);
  5831. border:none;
  5832. border-radius:0px;
  5833. -moz-box-shadow:none;
  5834. -webkit-box-shadow:none;
  5835. box-shadow:none;
  5836. }
  5837. #u223630 {
  5838. border-width:0px;
  5839. position:absolute;
  5840. left:1390px;
  5841. top:107px;
  5842. width:375px;
  5843. height:380px;
  5844. display:flex;
  5845. }
  5846. #u223630 .text {
  5847. position:absolute;
  5848. align-self:center;
  5849. padding:2px 2px 2px 2px;
  5850. box-sizing:border-box;
  5851. width:100%;
  5852. }
  5853. #u223630_text {
  5854. border-width:0px;
  5855. word-wrap:break-word;
  5856. text-transform:none;
  5857. visibility:hidden;
  5858. }
  5859. #u223631_div {
  5860. border-width:0px;
  5861. position:absolute;
  5862. left:0px;
  5863. top:0px;
  5864. width:353px;
  5865. height:160px;
  5866. background:inherit;
  5867. background-color:rgba(255, 255, 255, 0);
  5868. border:none;
  5869. border-top:0px;
  5870. border-right:0px;
  5871. border-bottom:0px;
  5872. border-radius:0px;
  5873. border-top-left-radius:0px;
  5874. border-bottom-left-radius:0px;
  5875. -moz-box-shadow:none;
  5876. -webkit-box-shadow:none;
  5877. box-shadow:none;
  5878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5879. font-weight:400;
  5880. font-style:normal;
  5881. line-height:30px;
  5882. }
  5883. #u223631 {
  5884. border-width:0px;
  5885. position:absolute;
  5886. left:1403px;
  5887. top:117px;
  5888. width:353px;
  5889. height:160px;
  5890. display:flex;
  5891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5892. font-weight:400;
  5893. font-style:normal;
  5894. line-height:30px;
  5895. }
  5896. #u223631 .text {
  5897. position:absolute;
  5898. align-self:flex-start;
  5899. padding:5px 10px 5px 0px;
  5900. box-sizing:border-box;
  5901. width:100%;
  5902. }
  5903. #u223631_text {
  5904. border-width:0px;
  5905. word-wrap:break-word;
  5906. text-transform:none;
  5907. }
  5908. #u223632_div {
  5909. border-width:0px;
  5910. position:absolute;
  5911. left:0px;
  5912. top:0px;
  5913. width:353px;
  5914. height:190px;
  5915. background:inherit;
  5916. background-color:rgba(255, 255, 255, 0);
  5917. border:none;
  5918. border-top:0px;
  5919. border-right:0px;
  5920. border-bottom:0px;
  5921. border-radius:0px;
  5922. border-top-left-radius:0px;
  5923. border-bottom-left-radius:0px;
  5924. -moz-box-shadow:none;
  5925. -webkit-box-shadow:none;
  5926. box-shadow:none;
  5927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5928. font-weight:400;
  5929. font-style:normal;
  5930. font-size:12px;
  5931. line-height:30px;
  5932. }
  5933. #u223632 {
  5934. border-width:0px;
  5935. position:absolute;
  5936. left:1403px;
  5937. top:292px;
  5938. width:353px;
  5939. height:190px;
  5940. display:flex;
  5941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5942. font-weight:400;
  5943. font-style:normal;
  5944. font-size:12px;
  5945. line-height:30px;
  5946. }
  5947. #u223632 .text {
  5948. position:absolute;
  5949. align-self:flex-start;
  5950. padding:5px 10px 5px 0px;
  5951. box-sizing:border-box;
  5952. width:100%;
  5953. }
  5954. #u223632_text {
  5955. border-width:0px;
  5956. word-wrap:break-word;
  5957. text-transform:none;
  5958. }
  5959. #u223633_img {
  5960. border-width:0px;
  5961. position:absolute;
  5962. left:0px;
  5963. top:0px;
  5964. width:350px;
  5965. height:2px;
  5966. }
  5967. #u223633 {
  5968. border-width:0px;
  5969. position:absolute;
  5970. left:1403px;
  5971. top:283px;
  5972. width:349px;
  5973. height:1px;
  5974. display:flex;
  5975. }
  5976. #u223633 .text {
  5977. position:absolute;
  5978. align-self:center;
  5979. padding:2px 2px 2px 2px;
  5980. box-sizing:border-box;
  5981. width:100%;
  5982. }
  5983. #u223633_text {
  5984. border-width:0px;
  5985. word-wrap:break-word;
  5986. text-transform:none;
  5987. visibility:hidden;
  5988. }
  5989. #u223634_div {
  5990. border-width:0px;
  5991. position:absolute;
  5992. left:0px;
  5993. top:0px;
  5994. width:10px;
  5995. height:10px;
  5996. background:inherit;
  5997. background-color:rgba(255, 255, 255, 0);
  5998. box-sizing:border-box;
  5999. border-width:2px;
  6000. border-style:solid;
  6001. border-color:rgba(51, 51, 51, 1);
  6002. border-right:0px;
  6003. border-bottom:0px;
  6004. border-radius:0px;
  6005. border-top-right-radius:0px;
  6006. border-bottom-left-radius:0px;
  6007. -moz-box-shadow:none;
  6008. -webkit-box-shadow:none;
  6009. box-shadow:none;
  6010. }
  6011. #u223634 {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:1739px;
  6015. top:129px;
  6016. width:10px;
  6017. height:10px;
  6018. display:flex;
  6019. -webkit-transform:rotate(45deg);
  6020. -moz-transform:rotate(45deg);
  6021. -ms-transform:rotate(45deg);
  6022. transform:rotate(45deg);
  6023. }
  6024. #u223634 .text {
  6025. position:absolute;
  6026. align-self:center;
  6027. padding:2px 2px 2px 2px;
  6028. box-sizing:border-box;
  6029. width:100%;
  6030. }
  6031. #u223634_text {
  6032. border-width:0px;
  6033. word-wrap:break-word;
  6034. text-transform:none;
  6035. visibility:hidden;
  6036. }
  6037. #u223635 {
  6038. border-width:0px;
  6039. position:absolute;
  6040. left:0px;
  6041. top:0px;
  6042. width:0px;
  6043. height:0px;
  6044. }
  6045. #u223636_div {
  6046. border-width:0px;
  6047. position:absolute;
  6048. left:0px;
  6049. top:0px;
  6050. width:375px;
  6051. height:250px;
  6052. background:inherit;
  6053. background-color:rgba(255, 255, 255, 1);
  6054. border:none;
  6055. border-radius:0px;
  6056. -moz-box-shadow:none;
  6057. -webkit-box-shadow:none;
  6058. box-shadow:none;
  6059. }
  6060. #u223636 {
  6061. border-width:0px;
  6062. position:absolute;
  6063. left:1390px;
  6064. top:497px;
  6065. width:375px;
  6066. height:250px;
  6067. display:flex;
  6068. }
  6069. #u223636 .text {
  6070. position:absolute;
  6071. align-self:center;
  6072. padding:2px 2px 2px 2px;
  6073. box-sizing:border-box;
  6074. width:100%;
  6075. }
  6076. #u223636_text {
  6077. border-width:0px;
  6078. word-wrap:break-word;
  6079. text-transform:none;
  6080. visibility:hidden;
  6081. }
  6082. #u223637_div {
  6083. border-width:0px;
  6084. position:absolute;
  6085. left:0px;
  6086. top:0px;
  6087. width:95px;
  6088. height:35px;
  6089. background:inherit;
  6090. background-color:rgba(255, 255, 255, 0);
  6091. border:none;
  6092. border-top:0px;
  6093. border-right:0px;
  6094. border-bottom:0px;
  6095. border-radius:0px;
  6096. border-top-left-radius:0px;
  6097. border-bottom-left-radius:0px;
  6098. -moz-box-shadow:none;
  6099. -webkit-box-shadow:none;
  6100. box-shadow:none;
  6101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6102. font-weight:400;
  6103. font-style:normal;
  6104. font-size:14px;
  6105. line-height:25px;
  6106. }
  6107. #u223637 {
  6108. border-width:0px;
  6109. position:absolute;
  6110. left:1405px;
  6111. top:507px;
  6112. width:95px;
  6113. height:35px;
  6114. display:flex;
  6115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6116. font-weight:400;
  6117. font-style:normal;
  6118. font-size:14px;
  6119. line-height:25px;
  6120. }
  6121. #u223637 .text {
  6122. position:absolute;
  6123. align-self:center;
  6124. padding:5px 10px 5px 0px;
  6125. box-sizing:border-box;
  6126. width:100%;
  6127. }
  6128. #u223637_text {
  6129. border-width:0px;
  6130. white-space:nowrap;
  6131. text-transform:none;
  6132. }
  6133. #u223638_div {
  6134. border-width:0px;
  6135. position:absolute;
  6136. left:0px;
  6137. top:0px;
  6138. width:358px;
  6139. height:190px;
  6140. background:inherit;
  6141. background-color:rgba(255, 255, 255, 0);
  6142. border:none;
  6143. border-top:0px;
  6144. border-right:0px;
  6145. border-bottom:0px;
  6146. border-radius:0px;
  6147. border-top-left-radius:0px;
  6148. border-bottom-left-radius:0px;
  6149. -moz-box-shadow:none;
  6150. -webkit-box-shadow:none;
  6151. box-shadow:none;
  6152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6153. font-weight:400;
  6154. font-style:normal;
  6155. font-size:12px;
  6156. line-height:30px;
  6157. }
  6158. #u223638 {
  6159. border-width:0px;
  6160. position:absolute;
  6161. left:1405px;
  6162. top:546px;
  6163. width:358px;
  6164. height:190px;
  6165. display:flex;
  6166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6167. font-weight:400;
  6168. font-style:normal;
  6169. font-size:12px;
  6170. line-height:30px;
  6171. }
  6172. #u223638 .text {
  6173. position:absolute;
  6174. align-self:flex-start;
  6175. padding:5px 10px 5px 0px;
  6176. box-sizing:border-box;
  6177. width:100%;
  6178. }
  6179. #u223638_text {
  6180. border-width:0px;
  6181. word-wrap:break-word;
  6182. text-transform:none;
  6183. }
  6184. #u223639_div {
  6185. border-width:0px;
  6186. position:absolute;
  6187. left:0px;
  6188. top:0px;
  6189. width:10px;
  6190. height:10px;
  6191. background:inherit;
  6192. background-color:rgba(255, 255, 255, 0);
  6193. box-sizing:border-box;
  6194. border-width:2px;
  6195. border-style:solid;
  6196. border-color:rgba(51, 51, 51, 1);
  6197. border-right:0px;
  6198. border-bottom:0px;
  6199. border-radius:0px;
  6200. border-top-right-radius:0px;
  6201. border-bottom-left-radius:0px;
  6202. -moz-box-shadow:none;
  6203. -webkit-box-shadow:none;
  6204. box-shadow:none;
  6205. }
  6206. #u223639 {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:1739px;
  6210. top:517px;
  6211. width:10px;
  6212. height:10px;
  6213. display:flex;
  6214. -webkit-transform:rotate(45deg);
  6215. -moz-transform:rotate(45deg);
  6216. -ms-transform:rotate(45deg);
  6217. transform:rotate(45deg);
  6218. }
  6219. #u223639 .text {
  6220. position:absolute;
  6221. align-self:center;
  6222. padding:2px 2px 2px 2px;
  6223. box-sizing:border-box;
  6224. width:100%;
  6225. }
  6226. #u223639_text {
  6227. border-width:0px;
  6228. word-wrap:break-word;
  6229. text-transform:none;
  6230. visibility:hidden;
  6231. }
  6232. #u223640_div {
  6233. border-width:0px;
  6234. position:absolute;
  6235. left:0px;
  6236. top:0px;
  6237. width:37px;
  6238. height:17px;
  6239. background:inherit;
  6240. background-color:rgba(255, 255, 255, 0);
  6241. border:none;
  6242. border-radius:0px;
  6243. -moz-box-shadow:none;
  6244. -webkit-box-shadow:none;
  6245. box-shadow:none;
  6246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6247. font-weight:400;
  6248. font-style:normal;
  6249. font-size:12px;
  6250. color:#1890FF;
  6251. }
  6252. #u223640 {
  6253. border-width:0px;
  6254. position:absolute;
  6255. left:1691px;
  6256. top:124px;
  6257. width:37px;
  6258. height:17px;
  6259. display:flex;
  6260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6261. font-weight:400;
  6262. font-style:normal;
  6263. font-size:12px;
  6264. color:#1890FF;
  6265. }
  6266. #u223640 .text {
  6267. position:absolute;
  6268. align-self:flex-start;
  6269. padding:0px 0px 0px 0px;
  6270. box-sizing:border-box;
  6271. width:100%;
  6272. }
  6273. #u223640_text {
  6274. border-width:0px;
  6275. white-space:nowrap;
  6276. text-transform:none;
  6277. }
  6278. #u223641 {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:0px;
  6282. top:0px;
  6283. width:0px;
  6284. height:0px;
  6285. }
  6286. #u223642_div {
  6287. border-width:0px;
  6288. position:absolute;
  6289. left:0px;
  6290. top:0px;
  6291. width:375px;
  6292. height:250px;
  6293. background:inherit;
  6294. background-color:rgba(255, 255, 255, 1);
  6295. border:none;
  6296. border-radius:0px;
  6297. -moz-box-shadow:none;
  6298. -webkit-box-shadow:none;
  6299. box-shadow:none;
  6300. }
  6301. #u223642 {
  6302. border-width:0px;
  6303. position:absolute;
  6304. left:1852px;
  6305. top:497px;
  6306. width:375px;
  6307. height:250px;
  6308. display:flex;
  6309. }
  6310. #u223642 .text {
  6311. position:absolute;
  6312. align-self:center;
  6313. padding:2px 2px 2px 2px;
  6314. box-sizing:border-box;
  6315. width:100%;
  6316. }
  6317. #u223642_text {
  6318. border-width:0px;
  6319. word-wrap:break-word;
  6320. text-transform:none;
  6321. visibility:hidden;
  6322. }
  6323. #u223643_div {
  6324. border-width:0px;
  6325. position:absolute;
  6326. left:0px;
  6327. top:0px;
  6328. width:95px;
  6329. height:35px;
  6330. background:inherit;
  6331. background-color:rgba(255, 255, 255, 0);
  6332. border:none;
  6333. border-top:0px;
  6334. border-right:0px;
  6335. border-bottom:0px;
  6336. border-radius:0px;
  6337. border-top-left-radius:0px;
  6338. border-bottom-left-radius:0px;
  6339. -moz-box-shadow:none;
  6340. -webkit-box-shadow:none;
  6341. box-shadow:none;
  6342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6343. font-weight:400;
  6344. font-style:normal;
  6345. font-size:14px;
  6346. line-height:25px;
  6347. }
  6348. #u223643 {
  6349. border-width:0px;
  6350. position:absolute;
  6351. left:1867px;
  6352. top:507px;
  6353. width:95px;
  6354. height:35px;
  6355. display:flex;
  6356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6357. font-weight:400;
  6358. font-style:normal;
  6359. font-size:14px;
  6360. line-height:25px;
  6361. }
  6362. #u223643 .text {
  6363. position:absolute;
  6364. align-self:center;
  6365. padding:5px 10px 5px 0px;
  6366. box-sizing:border-box;
  6367. width:100%;
  6368. }
  6369. #u223643_text {
  6370. border-width:0px;
  6371. white-space:nowrap;
  6372. text-transform:none;
  6373. }
  6374. #u223644_div {
  6375. border-width:0px;
  6376. position:absolute;
  6377. left:0px;
  6378. top:0px;
  6379. width:358px;
  6380. height:190px;
  6381. background:inherit;
  6382. background-color:rgba(255, 255, 255, 0);
  6383. border:none;
  6384. border-top:0px;
  6385. border-right:0px;
  6386. border-bottom:0px;
  6387. border-radius:0px;
  6388. border-top-left-radius:0px;
  6389. border-bottom-left-radius:0px;
  6390. -moz-box-shadow:none;
  6391. -webkit-box-shadow:none;
  6392. box-shadow:none;
  6393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6394. font-weight:400;
  6395. font-style:normal;
  6396. font-size:12px;
  6397. line-height:30px;
  6398. }
  6399. #u223644 {
  6400. border-width:0px;
  6401. position:absolute;
  6402. left:1867px;
  6403. top:546px;
  6404. width:358px;
  6405. height:190px;
  6406. display:flex;
  6407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6408. font-weight:400;
  6409. font-style:normal;
  6410. font-size:12px;
  6411. line-height:30px;
  6412. }
  6413. #u223644 .text {
  6414. position:absolute;
  6415. align-self:flex-start;
  6416. padding:5px 10px 5px 0px;
  6417. box-sizing:border-box;
  6418. width:100%;
  6419. }
  6420. #u223644_text {
  6421. border-width:0px;
  6422. word-wrap:break-word;
  6423. text-transform:none;
  6424. }
  6425. #u223645_div {
  6426. border-width:0px;
  6427. position:absolute;
  6428. left:0px;
  6429. top:0px;
  6430. width:10px;
  6431. height:10px;
  6432. background:inherit;
  6433. background-color:rgba(255, 255, 255, 0);
  6434. box-sizing:border-box;
  6435. border-width:2px;
  6436. border-style:solid;
  6437. border-color:rgba(51, 51, 51, 1);
  6438. border-right:0px;
  6439. border-bottom:0px;
  6440. border-radius:0px;
  6441. border-top-right-radius:0px;
  6442. border-bottom-left-radius:0px;
  6443. -moz-box-shadow:none;
  6444. -webkit-box-shadow:none;
  6445. box-shadow:none;
  6446. }
  6447. #u223645 {
  6448. border-width:0px;
  6449. position:absolute;
  6450. left:2201px;
  6451. top:517px;
  6452. width:10px;
  6453. height:10px;
  6454. display:flex;
  6455. -webkit-transform:rotate(45deg);
  6456. -moz-transform:rotate(45deg);
  6457. -ms-transform:rotate(45deg);
  6458. transform:rotate(45deg);
  6459. }
  6460. #u223645 .text {
  6461. position:absolute;
  6462. align-self:center;
  6463. padding:2px 2px 2px 2px;
  6464. box-sizing:border-box;
  6465. width:100%;
  6466. }
  6467. #u223645_text {
  6468. border-width:0px;
  6469. word-wrap:break-word;
  6470. text-transform:none;
  6471. visibility:hidden;
  6472. }
  6473. #u223647_img {
  6474. border-width:0px;
  6475. position:absolute;
  6476. left:0px;
  6477. top:0px;
  6478. width:433px;
  6479. height:865px;
  6480. }
  6481. #u223647 {
  6482. border-width:0px;
  6483. position:absolute;
  6484. left:2286px;
  6485. top:0px;
  6486. width:433px;
  6487. height:865px;
  6488. display:flex;
  6489. }
  6490. #u223647 .text {
  6491. position:absolute;
  6492. align-self:center;
  6493. padding:2px 2px 2px 2px;
  6494. box-sizing:border-box;
  6495. width:100%;
  6496. }
  6497. #u223647_text {
  6498. border-width:0px;
  6499. word-wrap:break-word;
  6500. text-transform:none;
  6501. visibility:hidden;
  6502. }
  6503. #u223648_div {
  6504. border-width:0px;
  6505. position:absolute;
  6506. left:0px;
  6507. top:0px;
  6508. width:375px;
  6509. height:40px;
  6510. background:inherit;
  6511. background-color:rgba(255, 255, 255, 1);
  6512. box-sizing:border-box;
  6513. border-width:1px;
  6514. border-style:solid;
  6515. border-color:rgba(215, 215, 215, 1);
  6516. border-left:0px;
  6517. border-top:0px;
  6518. border-right:0px;
  6519. border-radius:0px;
  6520. border-bottom-right-radius:0px;
  6521. border-bottom-left-radius:0px;
  6522. -moz-box-shadow:none;
  6523. -webkit-box-shadow:none;
  6524. box-shadow:none;
  6525. }
  6526. #u223648 {
  6527. border-width:0px;
  6528. position:absolute;
  6529. left:2315px;
  6530. top:67px;
  6531. width:375px;
  6532. height:40px;
  6533. display:flex;
  6534. }
  6535. #u223648 .text {
  6536. position:absolute;
  6537. align-self:center;
  6538. padding:2px 2px 2px 2px;
  6539. box-sizing:border-box;
  6540. width:100%;
  6541. }
  6542. #u223648_text {
  6543. border-width:0px;
  6544. word-wrap:break-word;
  6545. text-transform:none;
  6546. visibility:hidden;
  6547. }
  6548. #u223649 {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:0px;
  6552. top:0px;
  6553. width:0px;
  6554. height:0px;
  6555. }
  6556. #u223650_div {
  6557. border-width:0px;
  6558. position:absolute;
  6559. left:0px;
  6560. top:0px;
  6561. width:88px;
  6562. height:32px;
  6563. background:inherit;
  6564. background-color:rgba(255, 255, 255, 1);
  6565. box-sizing:border-box;
  6566. border-width:1px;
  6567. border-style:solid;
  6568. border-color:rgba(242, 242, 242, 1);
  6569. border-radius:33px;
  6570. -moz-box-shadow:none;
  6571. -webkit-box-shadow:none;
  6572. box-shadow:none;
  6573. }
  6574. #u223650 {
  6575. border-width:0px;
  6576. position:absolute;
  6577. left:2595px;
  6578. top:71px;
  6579. width:88px;
  6580. height:32px;
  6581. display:flex;
  6582. }
  6583. #u223650 .text {
  6584. position:absolute;
  6585. align-self:center;
  6586. padding:2px 2px 2px 2px;
  6587. box-sizing:border-box;
  6588. width:100%;
  6589. }
  6590. #u223650_text {
  6591. border-width:0px;
  6592. word-wrap:break-word;
  6593. text-transform:none;
  6594. visibility:hidden;
  6595. }
  6596. #u223651 {
  6597. border-width:0px;
  6598. position:absolute;
  6599. left:0px;
  6600. top:0px;
  6601. width:0px;
  6602. height:0px;
  6603. }
  6604. #u223652_img {
  6605. border-width:0px;
  6606. position:absolute;
  6607. left:0px;
  6608. top:0px;
  6609. width:18px;
  6610. height:18px;
  6611. }
  6612. #u223652 {
  6613. border-width:0px;
  6614. position:absolute;
  6615. left:2658px;
  6616. top:78px;
  6617. width:18px;
  6618. height:18px;
  6619. display:flex;
  6620. }
  6621. #u223652 .text {
  6622. position:absolute;
  6623. align-self:center;
  6624. padding:2px 2px 2px 2px;
  6625. box-sizing:border-box;
  6626. width:100%;
  6627. }
  6628. #u223652_text {
  6629. border-width:0px;
  6630. word-wrap:break-word;
  6631. text-transform:none;
  6632. visibility:hidden;
  6633. }
  6634. #u223653_img {
  6635. border-width:0px;
  6636. position:absolute;
  6637. left:0px;
  6638. top:0px;
  6639. width:6px;
  6640. height:6px;
  6641. }
  6642. #u223653 {
  6643. border-width:0px;
  6644. position:absolute;
  6645. left:2664px;
  6646. top:84px;
  6647. width:6px;
  6648. height:6px;
  6649. display:flex;
  6650. }
  6651. #u223653 .text {
  6652. position:absolute;
  6653. align-self:center;
  6654. padding:2px 2px 2px 2px;
  6655. box-sizing:border-box;
  6656. width:100%;
  6657. }
  6658. #u223653_text {
  6659. border-width:0px;
  6660. word-wrap:break-word;
  6661. text-transform:none;
  6662. visibility:hidden;
  6663. }
  6664. #u223654 {
  6665. border-width:0px;
  6666. position:absolute;
  6667. left:0px;
  6668. top:0px;
  6669. width:0px;
  6670. height:0px;
  6671. }
  6672. #u223655_img {
  6673. border-width:0px;
  6674. position:absolute;
  6675. left:0px;
  6676. top:0px;
  6677. width:5px;
  6678. height:5px;
  6679. }
  6680. #u223655 {
  6681. border-width:0px;
  6682. position:absolute;
  6683. left:2609px;
  6684. top:85px;
  6685. width:5px;
  6686. height:5px;
  6687. display:flex;
  6688. }
  6689. #u223655 .text {
  6690. position:absolute;
  6691. align-self:center;
  6692. padding:2px 2px 2px 2px;
  6693. box-sizing:border-box;
  6694. width:100%;
  6695. }
  6696. #u223655_text {
  6697. border-width:0px;
  6698. word-wrap:break-word;
  6699. text-transform:none;
  6700. visibility:hidden;
  6701. }
  6702. #u223656_img {
  6703. border-width:0px;
  6704. position:absolute;
  6705. left:0px;
  6706. top:0px;
  6707. width:5px;
  6708. height:5px;
  6709. }
  6710. #u223656 {
  6711. border-width:0px;
  6712. position:absolute;
  6713. left:2625px;
  6714. top:85px;
  6715. width:5px;
  6716. height:5px;
  6717. display:flex;
  6718. }
  6719. #u223656 .text {
  6720. position:absolute;
  6721. align-self:center;
  6722. padding:2px 2px 2px 2px;
  6723. box-sizing:border-box;
  6724. width:100%;
  6725. }
  6726. #u223656_text {
  6727. border-width:0px;
  6728. word-wrap:break-word;
  6729. text-transform:none;
  6730. visibility:hidden;
  6731. }
  6732. #u223657_img {
  6733. border-width:0px;
  6734. position:absolute;
  6735. left:0px;
  6736. top:0px;
  6737. width:7px;
  6738. height:7px;
  6739. }
  6740. #u223657 {
  6741. border-width:0px;
  6742. position:absolute;
  6743. left:2616px;
  6744. top:84px;
  6745. width:7px;
  6746. height:7px;
  6747. display:flex;
  6748. }
  6749. #u223657 .text {
  6750. position:absolute;
  6751. align-self:center;
  6752. padding:2px 2px 2px 2px;
  6753. box-sizing:border-box;
  6754. width:100%;
  6755. }
  6756. #u223657_text {
  6757. border-width:0px;
  6758. word-wrap:break-word;
  6759. text-transform:none;
  6760. visibility:hidden;
  6761. }
  6762. #u223658_img {
  6763. border-width:0px;
  6764. position:absolute;
  6765. left:0px;
  6766. top:0px;
  6767. width:19px;
  6768. height:2px;
  6769. }
  6770. #u223658 {
  6771. border-width:0px;
  6772. position:absolute;
  6773. left:2633px;
  6774. top:87px;
  6775. width:18px;
  6776. height:1px;
  6777. display:flex;
  6778. -webkit-transform:rotate(90deg);
  6779. -moz-transform:rotate(90deg);
  6780. -ms-transform:rotate(90deg);
  6781. transform:rotate(90deg);
  6782. }
  6783. #u223658 .text {
  6784. position:absolute;
  6785. align-self:center;
  6786. padding:2px 2px 2px 2px;
  6787. box-sizing:border-box;
  6788. width:100%;
  6789. }
  6790. #u223658_text {
  6791. border-width:0px;
  6792. word-wrap:break-word;
  6793. text-transform:none;
  6794. visibility:hidden;
  6795. }
  6796. #u223659_img {
  6797. border-width:0px;
  6798. position:absolute;
  6799. left:0px;
  6800. top:0px;
  6801. width:375px;
  6802. height:44px;
  6803. }
  6804. #u223659 {
  6805. border-width:0px;
  6806. position:absolute;
  6807. left:2315px;
  6808. top:24px;
  6809. width:375px;
  6810. height:44px;
  6811. display:flex;
  6812. }
  6813. #u223659 .text {
  6814. position:absolute;
  6815. align-self:center;
  6816. padding:2px 2px 2px 2px;
  6817. box-sizing:border-box;
  6818. width:100%;
  6819. }
  6820. #u223659_text {
  6821. border-width:0px;
  6822. word-wrap:break-word;
  6823. text-transform:none;
  6824. visibility:hidden;
  6825. }
  6826. #u223660_div {
  6827. border-width:0px;
  6828. position:absolute;
  6829. left:0px;
  6830. top:0px;
  6831. width:375px;
  6832. height:50px;
  6833. background:inherit;
  6834. background-color:rgba(255, 255, 255, 1);
  6835. box-sizing:border-box;
  6836. border-width:1px;
  6837. border-style:solid;
  6838. border-color:rgba(242, 242, 242, 1);
  6839. border-radius:26px;
  6840. border-top-left-radius:0px;
  6841. border-top-right-radius:0px;
  6842. -moz-box-shadow:none;
  6843. -webkit-box-shadow:none;
  6844. box-shadow:none;
  6845. }
  6846. #u223660 {
  6847. border-width:0px;
  6848. position:absolute;
  6849. left:2315px;
  6850. top:788px;
  6851. width:375px;
  6852. height:50px;
  6853. display:flex;
  6854. }
  6855. #u223660 .text {
  6856. position:absolute;
  6857. align-self:center;
  6858. padding:2px 2px 2px 2px;
  6859. box-sizing:border-box;
  6860. width:100%;
  6861. }
  6862. #u223660_text {
  6863. border-width:0px;
  6864. word-wrap:break-word;
  6865. text-transform:none;
  6866. visibility:hidden;
  6867. }
  6868. #u223661 {
  6869. border-width:0px;
  6870. position:absolute;
  6871. left:0px;
  6872. top:0px;
  6873. width:0px;
  6874. height:0px;
  6875. }
  6876. #u223662_img {
  6877. border-width:0px;
  6878. position:absolute;
  6879. left:0px;
  6880. top:0px;
  6881. width:24px;
  6882. height:24px;
  6883. }
  6884. #u223662 {
  6885. border-width:0px;
  6886. position:absolute;
  6887. left:2355px;
  6888. top:792px;
  6889. width:24px;
  6890. height:24px;
  6891. display:flex;
  6892. font-size:8px;
  6893. }
  6894. #u223662 .text {
  6895. position:absolute;
  6896. align-self:center;
  6897. padding:2px 2px 2px 2px;
  6898. box-sizing:border-box;
  6899. width:100%;
  6900. }
  6901. #u223662_text {
  6902. border-width:0px;
  6903. word-wrap:break-word;
  6904. text-transform:none;
  6905. }
  6906. #u223663_div {
  6907. border-width:0px;
  6908. position:absolute;
  6909. left:0px;
  6910. top:0px;
  6911. width:25px;
  6912. height:17px;
  6913. background:inherit;
  6914. background-color:rgba(255, 255, 255, 0);
  6915. border:none;
  6916. border-radius:0px;
  6917. -moz-box-shadow:none;
  6918. -webkit-box-shadow:none;
  6919. box-shadow:none;
  6920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6921. font-weight:400;
  6922. font-style:normal;
  6923. font-size:12px;
  6924. }
  6925. #u223663 {
  6926. border-width:0px;
  6927. position:absolute;
  6928. left:2355px;
  6929. top:817px;
  6930. width:25px;
  6931. height:17px;
  6932. display:flex;
  6933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6934. font-weight:400;
  6935. font-style:normal;
  6936. font-size:12px;
  6937. }
  6938. #u223663 .text {
  6939. position:absolute;
  6940. align-self:flex-start;
  6941. padding:0px 0px 0px 0px;
  6942. box-sizing:border-box;
  6943. width:100%;
  6944. }
  6945. #u223663_text {
  6946. border-width:0px;
  6947. white-space:nowrap;
  6948. text-transform:none;
  6949. }
  6950. #u223664 {
  6951. border-width:0px;
  6952. position:absolute;
  6953. left:0px;
  6954. top:0px;
  6955. width:0px;
  6956. height:0px;
  6957. }
  6958. #u223665_img {
  6959. border-width:0px;
  6960. position:absolute;
  6961. left:0px;
  6962. top:0px;
  6963. width:24px;
  6964. height:24px;
  6965. }
  6966. #u223665 {
  6967. border-width:0px;
  6968. position:absolute;
  6969. left:2625px;
  6970. top:794px;
  6971. width:24px;
  6972. height:24px;
  6973. display:flex;
  6974. font-size:8px;
  6975. }
  6976. #u223665 .text {
  6977. position:absolute;
  6978. align-self:center;
  6979. padding:2px 2px 2px 2px;
  6980. box-sizing:border-box;
  6981. width:100%;
  6982. }
  6983. #u223665_text {
  6984. border-width:0px;
  6985. word-wrap:break-word;
  6986. text-transform:none;
  6987. }
  6988. #u223666_div {
  6989. border-width:0px;
  6990. position:absolute;
  6991. left:0px;
  6992. top:0px;
  6993. width:25px;
  6994. height:17px;
  6995. background:inherit;
  6996. background-color:rgba(255, 255, 255, 0);
  6997. border:none;
  6998. border-radius:0px;
  6999. -moz-box-shadow:none;
  7000. -webkit-box-shadow:none;
  7001. box-shadow:none;
  7002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7003. font-weight:400;
  7004. font-style:normal;
  7005. font-size:12px;
  7006. }
  7007. #u223666 {
  7008. border-width:0px;
  7009. position:absolute;
  7010. left:2625px;
  7011. top:819px;
  7012. width:25px;
  7013. height:17px;
  7014. display:flex;
  7015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7016. font-weight:400;
  7017. font-style:normal;
  7018. font-size:12px;
  7019. }
  7020. #u223666 .text {
  7021. position:absolute;
  7022. align-self:flex-start;
  7023. padding:0px 0px 0px 0px;
  7024. box-sizing:border-box;
  7025. width:100%;
  7026. }
  7027. #u223666_text {
  7028. border-width:0px;
  7029. white-space:nowrap;
  7030. text-transform:none;
  7031. }
  7032. #u223667_div {
  7033. border-width:0px;
  7034. position:absolute;
  7035. left:0px;
  7036. top:0px;
  7037. width:375px;
  7038. height:681px;
  7039. background:inherit;
  7040. background-color:rgba(242, 242, 242, 0.462745098039216);
  7041. border:none;
  7042. border-radius:0px;
  7043. -moz-box-shadow:none;
  7044. -webkit-box-shadow:none;
  7045. box-shadow:none;
  7046. }
  7047. #u223667 {
  7048. border-width:0px;
  7049. position:absolute;
  7050. left:2315px;
  7051. top:107px;
  7052. width:375px;
  7053. height:681px;
  7054. display:flex;
  7055. }
  7056. #u223667 .text {
  7057. position:absolute;
  7058. align-self:center;
  7059. padding:2px 2px 2px 2px;
  7060. box-sizing:border-box;
  7061. width:100%;
  7062. }
  7063. #u223667_text {
  7064. border-width:0px;
  7065. word-wrap:break-word;
  7066. text-transform:none;
  7067. visibility:hidden;
  7068. }
  7069. #u223668 {
  7070. border-width:0px;
  7071. position:absolute;
  7072. left:0px;
  7073. top:0px;
  7074. width:0px;
  7075. height:0px;
  7076. }
  7077. #u223669_img {
  7078. border-width:0px;
  7079. position:absolute;
  7080. left:0px;
  7081. top:0px;
  7082. width:24px;
  7083. height:24px;
  7084. }
  7085. #u223669 {
  7086. border-width:0px;
  7087. position:absolute;
  7088. left:2537px;
  7089. top:792px;
  7090. width:24px;
  7091. height:24px;
  7092. display:flex;
  7093. font-size:8px;
  7094. }
  7095. #u223669 .text {
  7096. position:absolute;
  7097. align-self:center;
  7098. padding:2px 2px 2px 2px;
  7099. box-sizing:border-box;
  7100. width:100%;
  7101. }
  7102. #u223669_text {
  7103. border-width:0px;
  7104. word-wrap:break-word;
  7105. text-transform:none;
  7106. }
  7107. #u223670_div {
  7108. border-width:0px;
  7109. position:absolute;
  7110. left:0px;
  7111. top:0px;
  7112. width:37px;
  7113. height:17px;
  7114. background:inherit;
  7115. background-color:rgba(255, 255, 255, 0);
  7116. border:none;
  7117. border-radius:0px;
  7118. -moz-box-shadow:none;
  7119. -webkit-box-shadow:none;
  7120. box-shadow:none;
  7121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7122. font-weight:400;
  7123. font-style:normal;
  7124. font-size:12px;
  7125. }
  7126. #u223670 {
  7127. border-width:0px;
  7128. position:absolute;
  7129. left:2531px;
  7130. top:817px;
  7131. width:37px;
  7132. height:17px;
  7133. display:flex;
  7134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7135. font-weight:400;
  7136. font-style:normal;
  7137. font-size:12px;
  7138. }
  7139. #u223670 .text {
  7140. position:absolute;
  7141. align-self:flex-start;
  7142. padding:0px 0px 0px 0px;
  7143. box-sizing:border-box;
  7144. width:100%;
  7145. }
  7146. #u223670_text {
  7147. border-width:0px;
  7148. white-space:nowrap;
  7149. text-transform:none;
  7150. }
  7151. #u223671 {
  7152. border-width:0px;
  7153. position:absolute;
  7154. left:0px;
  7155. top:0px;
  7156. width:0px;
  7157. height:0px;
  7158. }
  7159. #u223672_img {
  7160. border-width:0px;
  7161. position:absolute;
  7162. left:0px;
  7163. top:0px;
  7164. width:24px;
  7165. height:24px;
  7166. }
  7167. #u223672 {
  7168. border-width:0px;
  7169. position:absolute;
  7170. left:2443px;
  7171. top:792px;
  7172. width:24px;
  7173. height:24px;
  7174. display:flex;
  7175. font-size:8px;
  7176. }
  7177. #u223672 .text {
  7178. position:absolute;
  7179. align-self:center;
  7180. padding:2px 2px 2px 2px;
  7181. box-sizing:border-box;
  7182. width:100%;
  7183. }
  7184. #u223672_text {
  7185. border-width:0px;
  7186. word-wrap:break-word;
  7187. text-transform:none;
  7188. }
  7189. #u223673_div {
  7190. border-width:0px;
  7191. position:absolute;
  7192. left:0px;
  7193. top:0px;
  7194. width:37px;
  7195. height:17px;
  7196. background:inherit;
  7197. background-color:rgba(255, 255, 255, 0);
  7198. border:none;
  7199. border-radius:0px;
  7200. -moz-box-shadow:none;
  7201. -webkit-box-shadow:none;
  7202. box-shadow:none;
  7203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7204. font-weight:400;
  7205. font-style:normal;
  7206. font-size:12px;
  7207. }
  7208. #u223673 {
  7209. border-width:0px;
  7210. position:absolute;
  7211. left:2437px;
  7212. top:817px;
  7213. width:37px;
  7214. height:17px;
  7215. display:flex;
  7216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7217. font-weight:400;
  7218. font-style:normal;
  7219. font-size:12px;
  7220. }
  7221. #u223673 .text {
  7222. position:absolute;
  7223. align-self:flex-start;
  7224. padding:0px 0px 0px 0px;
  7225. box-sizing:border-box;
  7226. width:100%;
  7227. }
  7228. #u223673_text {
  7229. border-width:0px;
  7230. white-space:nowrap;
  7231. text-transform:none;
  7232. }
  7233. #u223674_div {
  7234. border-width:0px;
  7235. position:absolute;
  7236. left:0px;
  7237. top:0px;
  7238. width:375px;
  7239. height:40px;
  7240. background:inherit;
  7241. background-color:rgba(255, 255, 255, 1);
  7242. box-sizing:border-box;
  7243. border-width:1px;
  7244. border-style:solid;
  7245. border-color:rgba(215, 215, 215, 1);
  7246. border-left:0px;
  7247. border-top:0px;
  7248. border-right:0px;
  7249. border-radius:0px;
  7250. border-bottom-right-radius:0px;
  7251. border-bottom-left-radius:0px;
  7252. -moz-box-shadow:none;
  7253. -webkit-box-shadow:none;
  7254. box-shadow:none;
  7255. }
  7256. #u223674 {
  7257. border-width:0px;
  7258. position:absolute;
  7259. left:2315px;
  7260. top:67px;
  7261. width:375px;
  7262. height:40px;
  7263. display:flex;
  7264. }
  7265. #u223674 .text {
  7266. position:absolute;
  7267. align-self:center;
  7268. padding:2px 2px 2px 2px;
  7269. box-sizing:border-box;
  7270. width:100%;
  7271. }
  7272. #u223674_text {
  7273. border-width:0px;
  7274. word-wrap:break-word;
  7275. text-transform:none;
  7276. visibility:hidden;
  7277. }
  7278. #u223675_img {
  7279. border-width:0px;
  7280. position:absolute;
  7281. left:0px;
  7282. top:0px;
  7283. width:375px;
  7284. height:44px;
  7285. }
  7286. #u223675 {
  7287. border-width:0px;
  7288. position:absolute;
  7289. left:2315px;
  7290. top:24px;
  7291. width:375px;
  7292. height:44px;
  7293. display:flex;
  7294. }
  7295. #u223675 .text {
  7296. position:absolute;
  7297. align-self:center;
  7298. padding:2px 2px 2px 2px;
  7299. box-sizing:border-box;
  7300. width:100%;
  7301. }
  7302. #u223675_text {
  7303. border-width:0px;
  7304. word-wrap:break-word;
  7305. text-transform:none;
  7306. visibility:hidden;
  7307. }
  7308. #u223676 {
  7309. border-width:0px;
  7310. position:absolute;
  7311. left:0px;
  7312. top:0px;
  7313. width:0px;
  7314. height:0px;
  7315. }
  7316. #u223677_div {
  7317. border-width:0px;
  7318. position:absolute;
  7319. left:0px;
  7320. top:0px;
  7321. width:88px;
  7322. height:32px;
  7323. background:inherit;
  7324. background-color:rgba(255, 255, 255, 1);
  7325. box-sizing:border-box;
  7326. border-width:1px;
  7327. border-style:solid;
  7328. border-color:rgba(242, 242, 242, 1);
  7329. border-radius:33px;
  7330. -moz-box-shadow:none;
  7331. -webkit-box-shadow:none;
  7332. box-shadow:none;
  7333. }
  7334. #u223677 {
  7335. border-width:0px;
  7336. position:absolute;
  7337. left:2595px;
  7338. top:71px;
  7339. width:88px;
  7340. height:32px;
  7341. display:flex;
  7342. }
  7343. #u223677 .text {
  7344. position:absolute;
  7345. align-self:center;
  7346. padding:2px 2px 2px 2px;
  7347. box-sizing:border-box;
  7348. width:100%;
  7349. }
  7350. #u223677_text {
  7351. border-width:0px;
  7352. word-wrap:break-word;
  7353. text-transform:none;
  7354. visibility:hidden;
  7355. }
  7356. #u223678 {
  7357. border-width:0px;
  7358. position:absolute;
  7359. left:0px;
  7360. top:0px;
  7361. width:0px;
  7362. height:0px;
  7363. }
  7364. #u223679_img {
  7365. border-width:0px;
  7366. position:absolute;
  7367. left:0px;
  7368. top:0px;
  7369. width:18px;
  7370. height:18px;
  7371. }
  7372. #u223679 {
  7373. border-width:0px;
  7374. position:absolute;
  7375. left:2658px;
  7376. top:78px;
  7377. width:18px;
  7378. height:18px;
  7379. display:flex;
  7380. }
  7381. #u223679 .text {
  7382. position:absolute;
  7383. align-self:center;
  7384. padding:2px 2px 2px 2px;
  7385. box-sizing:border-box;
  7386. width:100%;
  7387. }
  7388. #u223679_text {
  7389. border-width:0px;
  7390. word-wrap:break-word;
  7391. text-transform:none;
  7392. visibility:hidden;
  7393. }
  7394. #u223680_img {
  7395. border-width:0px;
  7396. position:absolute;
  7397. left:0px;
  7398. top:0px;
  7399. width:6px;
  7400. height:6px;
  7401. }
  7402. #u223680 {
  7403. border-width:0px;
  7404. position:absolute;
  7405. left:2664px;
  7406. top:84px;
  7407. width:6px;
  7408. height:6px;
  7409. display:flex;
  7410. }
  7411. #u223680 .text {
  7412. position:absolute;
  7413. align-self:center;
  7414. padding:2px 2px 2px 2px;
  7415. box-sizing:border-box;
  7416. width:100%;
  7417. }
  7418. #u223680_text {
  7419. border-width:0px;
  7420. word-wrap:break-word;
  7421. text-transform:none;
  7422. visibility:hidden;
  7423. }
  7424. #u223681 {
  7425. border-width:0px;
  7426. position:absolute;
  7427. left:0px;
  7428. top:0px;
  7429. width:0px;
  7430. height:0px;
  7431. }
  7432. #u223682_img {
  7433. border-width:0px;
  7434. position:absolute;
  7435. left:0px;
  7436. top:0px;
  7437. width:5px;
  7438. height:5px;
  7439. }
  7440. #u223682 {
  7441. border-width:0px;
  7442. position:absolute;
  7443. left:2609px;
  7444. top:85px;
  7445. width:5px;
  7446. height:5px;
  7447. display:flex;
  7448. }
  7449. #u223682 .text {
  7450. position:absolute;
  7451. align-self:center;
  7452. padding:2px 2px 2px 2px;
  7453. box-sizing:border-box;
  7454. width:100%;
  7455. }
  7456. #u223682_text {
  7457. border-width:0px;
  7458. word-wrap:break-word;
  7459. text-transform:none;
  7460. visibility:hidden;
  7461. }
  7462. #u223683_img {
  7463. border-width:0px;
  7464. position:absolute;
  7465. left:0px;
  7466. top:0px;
  7467. width:5px;
  7468. height:5px;
  7469. }
  7470. #u223683 {
  7471. border-width:0px;
  7472. position:absolute;
  7473. left:2625px;
  7474. top:85px;
  7475. width:5px;
  7476. height:5px;
  7477. display:flex;
  7478. }
  7479. #u223683 .text {
  7480. position:absolute;
  7481. align-self:center;
  7482. padding:2px 2px 2px 2px;
  7483. box-sizing:border-box;
  7484. width:100%;
  7485. }
  7486. #u223683_text {
  7487. border-width:0px;
  7488. word-wrap:break-word;
  7489. text-transform:none;
  7490. visibility:hidden;
  7491. }
  7492. #u223684_img {
  7493. border-width:0px;
  7494. position:absolute;
  7495. left:0px;
  7496. top:0px;
  7497. width:7px;
  7498. height:7px;
  7499. }
  7500. #u223684 {
  7501. border-width:0px;
  7502. position:absolute;
  7503. left:2616px;
  7504. top:84px;
  7505. width:7px;
  7506. height:7px;
  7507. display:flex;
  7508. }
  7509. #u223684 .text {
  7510. position:absolute;
  7511. align-self:center;
  7512. padding:2px 2px 2px 2px;
  7513. box-sizing:border-box;
  7514. width:100%;
  7515. }
  7516. #u223684_text {
  7517. border-width:0px;
  7518. word-wrap:break-word;
  7519. text-transform:none;
  7520. visibility:hidden;
  7521. }
  7522. #u223685_img {
  7523. border-width:0px;
  7524. position:absolute;
  7525. left:0px;
  7526. top:0px;
  7527. width:19px;
  7528. height:2px;
  7529. }
  7530. #u223685 {
  7531. border-width:0px;
  7532. position:absolute;
  7533. left:2633px;
  7534. top:87px;
  7535. width:18px;
  7536. height:1px;
  7537. display:flex;
  7538. -webkit-transform:rotate(90deg);
  7539. -moz-transform:rotate(90deg);
  7540. -ms-transform:rotate(90deg);
  7541. transform:rotate(90deg);
  7542. }
  7543. #u223685 .text {
  7544. position:absolute;
  7545. align-self:center;
  7546. padding:2px 2px 2px 2px;
  7547. box-sizing:border-box;
  7548. width:100%;
  7549. }
  7550. #u223685_text {
  7551. border-width:0px;
  7552. word-wrap:break-word;
  7553. text-transform:none;
  7554. visibility:hidden;
  7555. }
  7556. #u223686_div {
  7557. border-width:0px;
  7558. position:absolute;
  7559. left:0px;
  7560. top:0px;
  7561. width:65px;
  7562. height:22px;
  7563. background:inherit;
  7564. background-color:rgba(255, 255, 255, 0);
  7565. border:none;
  7566. border-radius:0px;
  7567. -moz-box-shadow:none;
  7568. -webkit-box-shadow:none;
  7569. box-shadow:none;
  7570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7571. font-weight:400;
  7572. font-style:normal;
  7573. font-size:16px;
  7574. color:#000000;
  7575. }
  7576. #u223686 {
  7577. border-width:0px;
  7578. position:absolute;
  7579. left:2472px;
  7580. top:78px;
  7581. width:65px;
  7582. height:22px;
  7583. display:flex;
  7584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7585. font-weight:400;
  7586. font-style:normal;
  7587. font-size:16px;
  7588. color:#000000;
  7589. }
  7590. #u223686 .text {
  7591. position:absolute;
  7592. align-self:flex-start;
  7593. padding:0px 0px 0px 0px;
  7594. box-sizing:border-box;
  7595. width:100%;
  7596. }
  7597. #u223686_text {
  7598. border-width:0px;
  7599. white-space:nowrap;
  7600. text-transform:none;
  7601. }
  7602. #u223687_div {
  7603. border-width:0px;
  7604. position:absolute;
  7605. left:0px;
  7606. top:0px;
  7607. width:12px;
  7608. height:12px;
  7609. background:inherit;
  7610. background-color:rgba(255, 255, 255, 0);
  7611. box-sizing:border-box;
  7612. border-width:2px;
  7613. border-style:solid;
  7614. border-color:rgba(51, 51, 51, 1);
  7615. border-right:0px;
  7616. border-bottom:0px;
  7617. border-radius:0px;
  7618. border-top-right-radius:0px;
  7619. border-bottom-left-radius:0px;
  7620. -moz-box-shadow:none;
  7621. -webkit-box-shadow:none;
  7622. box-shadow:none;
  7623. }
  7624. #u223687 {
  7625. border-width:0px;
  7626. position:absolute;
  7627. left:2330px;
  7628. top:81px;
  7629. width:12px;
  7630. height:12px;
  7631. display:flex;
  7632. -webkit-transform:rotate(315deg);
  7633. -moz-transform:rotate(315deg);
  7634. -ms-transform:rotate(315deg);
  7635. transform:rotate(315deg);
  7636. }
  7637. #u223687 .text {
  7638. position:absolute;
  7639. align-self:center;
  7640. padding:2px 2px 2px 2px;
  7641. box-sizing:border-box;
  7642. width:100%;
  7643. }
  7644. #u223687_text {
  7645. border-width:0px;
  7646. word-wrap:break-word;
  7647. text-transform:none;
  7648. visibility:hidden;
  7649. }
  7650. #u223688_img {
  7651. border-width:0px;
  7652. position:absolute;
  7653. left:0px;
  7654. top:0px;
  7655. width:23px;
  7656. height:23px;
  7657. }
  7658. #u223688 {
  7659. border-width:0px;
  7660. position:absolute;
  7661. left:2357px;
  7662. top:76px;
  7663. width:23px;
  7664. height:23px;
  7665. display:flex;
  7666. }
  7667. #u223688 .text {
  7668. position:absolute;
  7669. align-self:center;
  7670. padding:2px 2px 2px 2px;
  7671. box-sizing:border-box;
  7672. width:100%;
  7673. }
  7674. #u223688_text {
  7675. border-width:0px;
  7676. word-wrap:break-word;
  7677. text-transform:none;
  7678. visibility:hidden;
  7679. }
  7680. #u223689_div {
  7681. border-width:0px;
  7682. position:absolute;
  7683. left:0px;
  7684. top:0px;
  7685. width:375px;
  7686. height:731px;
  7687. background:inherit;
  7688. background-color:rgba(242, 242, 242, 0.996078431372549);
  7689. border:none;
  7690. border-top:0px;
  7691. border-radius:23px;
  7692. border-top-left-radius:0px;
  7693. border-top-right-radius:0px;
  7694. -moz-box-shadow:none;
  7695. -webkit-box-shadow:none;
  7696. box-shadow:none;
  7697. }
  7698. #u223689 {
  7699. border-width:0px;
  7700. position:absolute;
  7701. left:2315px;
  7702. top:107px;
  7703. width:375px;
  7704. height:731px;
  7705. display:flex;
  7706. }
  7707. #u223689 .text {
  7708. position:absolute;
  7709. align-self:center;
  7710. padding:2px 2px 2px 2px;
  7711. box-sizing:border-box;
  7712. width:100%;
  7713. }
  7714. #u223689_text {
  7715. border-width:0px;
  7716. word-wrap:break-word;
  7717. text-transform:none;
  7718. visibility:hidden;
  7719. }
  7720. #u223690 {
  7721. border-width:0px;
  7722. position:absolute;
  7723. left:0px;
  7724. top:0px;
  7725. width:0px;
  7726. height:0px;
  7727. }
  7728. #u223691_div {
  7729. border-width:0px;
  7730. position:absolute;
  7731. left:0px;
  7732. top:0px;
  7733. width:375px;
  7734. height:380px;
  7735. background:inherit;
  7736. background-color:rgba(255, 255, 255, 1);
  7737. border:none;
  7738. border-radius:0px;
  7739. -moz-box-shadow:none;
  7740. -webkit-box-shadow:none;
  7741. box-shadow:none;
  7742. }
  7743. #u223691 {
  7744. border-width:0px;
  7745. position:absolute;
  7746. left:2315px;
  7747. top:107px;
  7748. width:375px;
  7749. height:380px;
  7750. display:flex;
  7751. }
  7752. #u223691 .text {
  7753. position:absolute;
  7754. align-self:center;
  7755. padding:2px 2px 2px 2px;
  7756. box-sizing:border-box;
  7757. width:100%;
  7758. }
  7759. #u223691_text {
  7760. border-width:0px;
  7761. word-wrap:break-word;
  7762. text-transform:none;
  7763. visibility:hidden;
  7764. }
  7765. #u223692_div {
  7766. border-width:0px;
  7767. position:absolute;
  7768. left:0px;
  7769. top:0px;
  7770. width:353px;
  7771. height:160px;
  7772. background:inherit;
  7773. background-color:rgba(255, 255, 255, 0);
  7774. border:none;
  7775. border-top:0px;
  7776. border-right:0px;
  7777. border-bottom:0px;
  7778. border-radius:0px;
  7779. border-top-left-radius:0px;
  7780. border-bottom-left-radius:0px;
  7781. -moz-box-shadow:none;
  7782. -webkit-box-shadow:none;
  7783. box-shadow:none;
  7784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7785. font-weight:400;
  7786. font-style:normal;
  7787. line-height:30px;
  7788. }
  7789. #u223692 {
  7790. border-width:0px;
  7791. position:absolute;
  7792. left:2328px;
  7793. top:117px;
  7794. width:353px;
  7795. height:160px;
  7796. display:flex;
  7797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7798. font-weight:400;
  7799. font-style:normal;
  7800. line-height:30px;
  7801. }
  7802. #u223692 .text {
  7803. position:absolute;
  7804. align-self:flex-start;
  7805. padding:5px 10px 5px 0px;
  7806. box-sizing:border-box;
  7807. width:100%;
  7808. }
  7809. #u223692_text {
  7810. border-width:0px;
  7811. word-wrap:break-word;
  7812. text-transform:none;
  7813. }
  7814. #u223693_div {
  7815. border-width:0px;
  7816. position:absolute;
  7817. left:0px;
  7818. top:0px;
  7819. width:353px;
  7820. height:190px;
  7821. background:inherit;
  7822. background-color:rgba(255, 255, 255, 0);
  7823. border:none;
  7824. border-top:0px;
  7825. border-right:0px;
  7826. border-bottom:0px;
  7827. border-radius:0px;
  7828. border-top-left-radius:0px;
  7829. border-bottom-left-radius:0px;
  7830. -moz-box-shadow:none;
  7831. -webkit-box-shadow:none;
  7832. box-shadow:none;
  7833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7834. font-weight:400;
  7835. font-style:normal;
  7836. font-size:12px;
  7837. line-height:30px;
  7838. }
  7839. #u223693 {
  7840. border-width:0px;
  7841. position:absolute;
  7842. left:2328px;
  7843. top:292px;
  7844. width:353px;
  7845. height:190px;
  7846. display:flex;
  7847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7848. font-weight:400;
  7849. font-style:normal;
  7850. font-size:12px;
  7851. line-height:30px;
  7852. }
  7853. #u223693 .text {
  7854. position:absolute;
  7855. align-self:flex-start;
  7856. padding:5px 10px 5px 0px;
  7857. box-sizing:border-box;
  7858. width:100%;
  7859. }
  7860. #u223693_text {
  7861. border-width:0px;
  7862. word-wrap:break-word;
  7863. text-transform:none;
  7864. }
  7865. #u223694_img {
  7866. border-width:0px;
  7867. position:absolute;
  7868. left:0px;
  7869. top:0px;
  7870. width:350px;
  7871. height:2px;
  7872. }
  7873. #u223694 {
  7874. border-width:0px;
  7875. position:absolute;
  7876. left:2328px;
  7877. top:283px;
  7878. width:349px;
  7879. height:1px;
  7880. display:flex;
  7881. }
  7882. #u223694 .text {
  7883. position:absolute;
  7884. align-self:center;
  7885. padding:2px 2px 2px 2px;
  7886. box-sizing:border-box;
  7887. width:100%;
  7888. }
  7889. #u223694_text {
  7890. border-width:0px;
  7891. word-wrap:break-word;
  7892. text-transform:none;
  7893. visibility:hidden;
  7894. }
  7895. #u223695_div {
  7896. border-width:0px;
  7897. position:absolute;
  7898. left:0px;
  7899. top:0px;
  7900. width:10px;
  7901. height:10px;
  7902. background:inherit;
  7903. background-color:rgba(255, 255, 255, 0);
  7904. box-sizing:border-box;
  7905. border-width:2px;
  7906. border-style:solid;
  7907. border-color:rgba(51, 51, 51, 1);
  7908. border-right:0px;
  7909. border-bottom:0px;
  7910. border-radius:0px;
  7911. border-top-right-radius:0px;
  7912. border-bottom-left-radius:0px;
  7913. -moz-box-shadow:none;
  7914. -webkit-box-shadow:none;
  7915. box-shadow:none;
  7916. }
  7917. #u223695 {
  7918. border-width:0px;
  7919. position:absolute;
  7920. left:2664px;
  7921. top:129px;
  7922. width:10px;
  7923. height:10px;
  7924. display:flex;
  7925. -webkit-transform:rotate(45deg);
  7926. -moz-transform:rotate(45deg);
  7927. -ms-transform:rotate(45deg);
  7928. transform:rotate(45deg);
  7929. }
  7930. #u223695 .text {
  7931. position:absolute;
  7932. align-self:center;
  7933. padding:2px 2px 2px 2px;
  7934. box-sizing:border-box;
  7935. width:100%;
  7936. }
  7937. #u223695_text {
  7938. border-width:0px;
  7939. word-wrap:break-word;
  7940. text-transform:none;
  7941. visibility:hidden;
  7942. }
  7943. #u223696_div {
  7944. border-width:0px;
  7945. position:absolute;
  7946. left:0px;
  7947. top:0px;
  7948. width:37px;
  7949. height:17px;
  7950. background:inherit;
  7951. background-color:rgba(255, 255, 255, 0);
  7952. border:none;
  7953. border-radius:0px;
  7954. -moz-box-shadow:none;
  7955. -webkit-box-shadow:none;
  7956. box-shadow:none;
  7957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7958. font-weight:400;
  7959. font-style:normal;
  7960. font-size:12px;
  7961. color:#AAAAAA;
  7962. }
  7963. #u223696 {
  7964. border-width:0px;
  7965. position:absolute;
  7966. left:2616px;
  7967. top:123px;
  7968. width:37px;
  7969. height:17px;
  7970. display:flex;
  7971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7972. font-weight:400;
  7973. font-style:normal;
  7974. font-size:12px;
  7975. color:#AAAAAA;
  7976. }
  7977. #u223696 .text {
  7978. position:absolute;
  7979. align-self:flex-start;
  7980. padding:0px 0px 0px 0px;
  7981. box-sizing:border-box;
  7982. width:100%;
  7983. }
  7984. #u223696_text {
  7985. border-width:0px;
  7986. white-space:nowrap;
  7987. text-transform:none;
  7988. }
  7989. #u223697 {
  7990. border-width:0px;
  7991. position:absolute;
  7992. left:0px;
  7993. top:0px;
  7994. width:0px;
  7995. height:0px;
  7996. }
  7997. #u223698_div {
  7998. border-width:0px;
  7999. position:absolute;
  8000. left:0px;
  8001. top:0px;
  8002. width:375px;
  8003. height:370px;
  8004. background:inherit;
  8005. background-color:rgba(255, 255, 255, 1);
  8006. border:none;
  8007. border-radius:0px;
  8008. -moz-box-shadow:none;
  8009. -webkit-box-shadow:none;
  8010. box-shadow:none;
  8011. }
  8012. #u223698 {
  8013. border-width:0px;
  8014. position:absolute;
  8015. left:2315px;
  8016. top:497px;
  8017. width:375px;
  8018. height:370px;
  8019. display:flex;
  8020. }
  8021. #u223698 .text {
  8022. position:absolute;
  8023. align-self:center;
  8024. padding:2px 2px 2px 2px;
  8025. box-sizing:border-box;
  8026. width:100%;
  8027. }
  8028. #u223698_text {
  8029. border-width:0px;
  8030. word-wrap:break-word;
  8031. text-transform:none;
  8032. visibility:hidden;
  8033. }
  8034. #u223699_div {
  8035. border-width:0px;
  8036. position:absolute;
  8037. left:0px;
  8038. top:0px;
  8039. width:95px;
  8040. height:35px;
  8041. background:inherit;
  8042. background-color:rgba(255, 255, 255, 0);
  8043. border:none;
  8044. border-top:0px;
  8045. border-right:0px;
  8046. border-bottom:0px;
  8047. border-radius:0px;
  8048. border-top-left-radius:0px;
  8049. border-bottom-left-radius:0px;
  8050. -moz-box-shadow:none;
  8051. -webkit-box-shadow:none;
  8052. box-shadow:none;
  8053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8054. font-weight:400;
  8055. font-style:normal;
  8056. font-size:14px;
  8057. line-height:25px;
  8058. }
  8059. #u223699 {
  8060. border-width:0px;
  8061. position:absolute;
  8062. left:2330px;
  8063. top:507px;
  8064. width:95px;
  8065. height:35px;
  8066. display:flex;
  8067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8068. font-weight:400;
  8069. font-style:normal;
  8070. font-size:14px;
  8071. line-height:25px;
  8072. }
  8073. #u223699 .text {
  8074. position:absolute;
  8075. align-self:center;
  8076. padding:5px 10px 5px 0px;
  8077. box-sizing:border-box;
  8078. width:100%;
  8079. }
  8080. #u223699_text {
  8081. border-width:0px;
  8082. white-space:nowrap;
  8083. text-transform:none;
  8084. }
  8085. #u223700_div {
  8086. border-width:0px;
  8087. position:absolute;
  8088. left:0px;
  8089. top:0px;
  8090. width:358px;
  8091. height:190px;
  8092. background:inherit;
  8093. background-color:rgba(255, 255, 255, 0);
  8094. border:none;
  8095. border-top:0px;
  8096. border-right:0px;
  8097. border-bottom:0px;
  8098. border-radius:0px;
  8099. border-top-left-radius:0px;
  8100. border-bottom-left-radius:0px;
  8101. -moz-box-shadow:none;
  8102. -webkit-box-shadow:none;
  8103. box-shadow:none;
  8104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8105. font-weight:400;
  8106. font-style:normal;
  8107. font-size:12px;
  8108. line-height:30px;
  8109. }
  8110. #u223700 {
  8111. border-width:0px;
  8112. position:absolute;
  8113. left:2330px;
  8114. top:546px;
  8115. width:358px;
  8116. height:190px;
  8117. display:flex;
  8118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8119. font-weight:400;
  8120. font-style:normal;
  8121. font-size:12px;
  8122. line-height:30px;
  8123. }
  8124. #u223700 .text {
  8125. position:absolute;
  8126. align-self:flex-start;
  8127. padding:5px 10px 5px 0px;
  8128. box-sizing:border-box;
  8129. width:100%;
  8130. }
  8131. #u223700_text {
  8132. border-width:0px;
  8133. word-wrap:break-word;
  8134. text-transform:none;
  8135. }
  8136. #u223701_div {
  8137. border-width:0px;
  8138. position:absolute;
  8139. left:0px;
  8140. top:0px;
  8141. width:10px;
  8142. height:10px;
  8143. background:inherit;
  8144. background-color:rgba(255, 255, 255, 0);
  8145. box-sizing:border-box;
  8146. border-width:2px;
  8147. border-style:solid;
  8148. border-color:rgba(51, 51, 51, 1);
  8149. border-right:0px;
  8150. border-bottom:0px;
  8151. border-radius:0px;
  8152. border-top-right-radius:0px;
  8153. border-bottom-left-radius:0px;
  8154. -moz-box-shadow:none;
  8155. -webkit-box-shadow:none;
  8156. box-shadow:none;
  8157. }
  8158. #u223701 {
  8159. border-width:0px;
  8160. position:absolute;
  8161. left:2664px;
  8162. top:517px;
  8163. width:10px;
  8164. height:10px;
  8165. display:flex;
  8166. -webkit-transform:rotate(45deg);
  8167. -moz-transform:rotate(45deg);
  8168. -ms-transform:rotate(45deg);
  8169. transform:rotate(45deg);
  8170. }
  8171. #u223701 .text {
  8172. position:absolute;
  8173. align-self:center;
  8174. padding:2px 2px 2px 2px;
  8175. box-sizing:border-box;
  8176. width:100%;
  8177. }
  8178. #u223701_text {
  8179. border-width:0px;
  8180. word-wrap:break-word;
  8181. text-transform:none;
  8182. visibility:hidden;
  8183. }
  8184. #u223702_img {
  8185. border-width:0px;
  8186. position:absolute;
  8187. left:0px;
  8188. top:0px;
  8189. width:350px;
  8190. height:2px;
  8191. }
  8192. #u223702 {
  8193. border-width:0px;
  8194. position:absolute;
  8195. left:2328px;
  8196. top:736px;
  8197. width:349px;
  8198. height:1px;
  8199. display:flex;
  8200. }
  8201. #u223702 .text {
  8202. position:absolute;
  8203. align-self:center;
  8204. padding:2px 2px 2px 2px;
  8205. box-sizing:border-box;
  8206. width:100%;
  8207. }
  8208. #u223702_text {
  8209. border-width:0px;
  8210. word-wrap:break-word;
  8211. text-transform:none;
  8212. visibility:hidden;
  8213. }
  8214. #u223703_div {
  8215. border-width:0px;
  8216. position:absolute;
  8217. left:0px;
  8218. top:0px;
  8219. width:358px;
  8220. height:130px;
  8221. background:inherit;
  8222. background-color:rgba(255, 255, 255, 0);
  8223. border:none;
  8224. border-top:0px;
  8225. border-right:0px;
  8226. border-bottom:0px;
  8227. border-radius:0px;
  8228. border-top-left-radius:0px;
  8229. border-bottom-left-radius:0px;
  8230. -moz-box-shadow:none;
  8231. -webkit-box-shadow:none;
  8232. box-shadow:none;
  8233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8234. font-weight:400;
  8235. font-style:normal;
  8236. font-size:12px;
  8237. line-height:30px;
  8238. }
  8239. #u223703 {
  8240. border-width:0px;
  8241. position:absolute;
  8242. left:2330px;
  8243. top:736px;
  8244. width:358px;
  8245. height:130px;
  8246. display:flex;
  8247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8248. font-weight:400;
  8249. font-style:normal;
  8250. font-size:12px;
  8251. line-height:30px;
  8252. }
  8253. #u223703 .text {
  8254. position:absolute;
  8255. align-self:flex-start;
  8256. padding:5px 10px 5px 0px;
  8257. box-sizing:border-box;
  8258. width:100%;
  8259. }
  8260. #u223703_text {
  8261. border-width:0px;
  8262. word-wrap:break-word;
  8263. text-transform:none;
  8264. }
  8265. #u223705_img {
  8266. border-width:0px;
  8267. position:absolute;
  8268. left:0px;
  8269. top:0px;
  8270. width:433px;
  8271. height:865px;
  8272. }
  8273. #u223705 {
  8274. border-width:0px;
  8275. position:absolute;
  8276. left:2744px;
  8277. top:0px;
  8278. width:433px;
  8279. height:865px;
  8280. display:flex;
  8281. }
  8282. #u223705 .text {
  8283. position:absolute;
  8284. align-self:center;
  8285. padding:2px 2px 2px 2px;
  8286. box-sizing:border-box;
  8287. width:100%;
  8288. }
  8289. #u223705_text {
  8290. border-width:0px;
  8291. word-wrap:break-word;
  8292. text-transform:none;
  8293. visibility:hidden;
  8294. }
  8295. #u223706_div {
  8296. border-width:0px;
  8297. position:absolute;
  8298. left:0px;
  8299. top:0px;
  8300. width:375px;
  8301. height:40px;
  8302. background:inherit;
  8303. background-color:rgba(255, 255, 255, 1);
  8304. box-sizing:border-box;
  8305. border-width:1px;
  8306. border-style:solid;
  8307. border-color:rgba(215, 215, 215, 1);
  8308. border-left:0px;
  8309. border-top:0px;
  8310. border-right:0px;
  8311. border-radius:0px;
  8312. border-bottom-right-radius:0px;
  8313. border-bottom-left-radius:0px;
  8314. -moz-box-shadow:none;
  8315. -webkit-box-shadow:none;
  8316. box-shadow:none;
  8317. }
  8318. #u223706 {
  8319. border-width:0px;
  8320. position:absolute;
  8321. left:2773px;
  8322. top:67px;
  8323. width:375px;
  8324. height:40px;
  8325. display:flex;
  8326. }
  8327. #u223706 .text {
  8328. position:absolute;
  8329. align-self:center;
  8330. padding:2px 2px 2px 2px;
  8331. box-sizing:border-box;
  8332. width:100%;
  8333. }
  8334. #u223706_text {
  8335. border-width:0px;
  8336. word-wrap:break-word;
  8337. text-transform:none;
  8338. visibility:hidden;
  8339. }
  8340. #u223707 {
  8341. border-width:0px;
  8342. position:absolute;
  8343. left:0px;
  8344. top:0px;
  8345. width:0px;
  8346. height:0px;
  8347. }
  8348. #u223708_div {
  8349. border-width:0px;
  8350. position:absolute;
  8351. left:0px;
  8352. top:0px;
  8353. width:88px;
  8354. height:32px;
  8355. background:inherit;
  8356. background-color:rgba(255, 255, 255, 1);
  8357. box-sizing:border-box;
  8358. border-width:1px;
  8359. border-style:solid;
  8360. border-color:rgba(242, 242, 242, 1);
  8361. border-radius:33px;
  8362. -moz-box-shadow:none;
  8363. -webkit-box-shadow:none;
  8364. box-shadow:none;
  8365. }
  8366. #u223708 {
  8367. border-width:0px;
  8368. position:absolute;
  8369. left:3053px;
  8370. top:71px;
  8371. width:88px;
  8372. height:32px;
  8373. display:flex;
  8374. }
  8375. #u223708 .text {
  8376. position:absolute;
  8377. align-self:center;
  8378. padding:2px 2px 2px 2px;
  8379. box-sizing:border-box;
  8380. width:100%;
  8381. }
  8382. #u223708_text {
  8383. border-width:0px;
  8384. word-wrap:break-word;
  8385. text-transform:none;
  8386. visibility:hidden;
  8387. }
  8388. #u223709 {
  8389. border-width:0px;
  8390. position:absolute;
  8391. left:0px;
  8392. top:0px;
  8393. width:0px;
  8394. height:0px;
  8395. }
  8396. #u223710_img {
  8397. border-width:0px;
  8398. position:absolute;
  8399. left:0px;
  8400. top:0px;
  8401. width:18px;
  8402. height:18px;
  8403. }
  8404. #u223710 {
  8405. border-width:0px;
  8406. position:absolute;
  8407. left:3116px;
  8408. top:78px;
  8409. width:18px;
  8410. height:18px;
  8411. display:flex;
  8412. }
  8413. #u223710 .text {
  8414. position:absolute;
  8415. align-self:center;
  8416. padding:2px 2px 2px 2px;
  8417. box-sizing:border-box;
  8418. width:100%;
  8419. }
  8420. #u223710_text {
  8421. border-width:0px;
  8422. word-wrap:break-word;
  8423. text-transform:none;
  8424. visibility:hidden;
  8425. }
  8426. #u223711_img {
  8427. border-width:0px;
  8428. position:absolute;
  8429. left:0px;
  8430. top:0px;
  8431. width:6px;
  8432. height:6px;
  8433. }
  8434. #u223711 {
  8435. border-width:0px;
  8436. position:absolute;
  8437. left:3122px;
  8438. top:84px;
  8439. width:6px;
  8440. height:6px;
  8441. display:flex;
  8442. }
  8443. #u223711 .text {
  8444. position:absolute;
  8445. align-self:center;
  8446. padding:2px 2px 2px 2px;
  8447. box-sizing:border-box;
  8448. width:100%;
  8449. }
  8450. #u223711_text {
  8451. border-width:0px;
  8452. word-wrap:break-word;
  8453. text-transform:none;
  8454. visibility:hidden;
  8455. }
  8456. #u223712 {
  8457. border-width:0px;
  8458. position:absolute;
  8459. left:0px;
  8460. top:0px;
  8461. width:0px;
  8462. height:0px;
  8463. }
  8464. #u223713_img {
  8465. border-width:0px;
  8466. position:absolute;
  8467. left:0px;
  8468. top:0px;
  8469. width:5px;
  8470. height:5px;
  8471. }
  8472. #u223713 {
  8473. border-width:0px;
  8474. position:absolute;
  8475. left:3067px;
  8476. top:85px;
  8477. width:5px;
  8478. height:5px;
  8479. display:flex;
  8480. }
  8481. #u223713 .text {
  8482. position:absolute;
  8483. align-self:center;
  8484. padding:2px 2px 2px 2px;
  8485. box-sizing:border-box;
  8486. width:100%;
  8487. }
  8488. #u223713_text {
  8489. border-width:0px;
  8490. word-wrap:break-word;
  8491. text-transform:none;
  8492. visibility:hidden;
  8493. }
  8494. #u223714_img {
  8495. border-width:0px;
  8496. position:absolute;
  8497. left:0px;
  8498. top:0px;
  8499. width:5px;
  8500. height:5px;
  8501. }
  8502. #u223714 {
  8503. border-width:0px;
  8504. position:absolute;
  8505. left:3083px;
  8506. top:85px;
  8507. width:5px;
  8508. height:5px;
  8509. display:flex;
  8510. }
  8511. #u223714 .text {
  8512. position:absolute;
  8513. align-self:center;
  8514. padding:2px 2px 2px 2px;
  8515. box-sizing:border-box;
  8516. width:100%;
  8517. }
  8518. #u223714_text {
  8519. border-width:0px;
  8520. word-wrap:break-word;
  8521. text-transform:none;
  8522. visibility:hidden;
  8523. }
  8524. #u223715_img {
  8525. border-width:0px;
  8526. position:absolute;
  8527. left:0px;
  8528. top:0px;
  8529. width:7px;
  8530. height:7px;
  8531. }
  8532. #u223715 {
  8533. border-width:0px;
  8534. position:absolute;
  8535. left:3074px;
  8536. top:84px;
  8537. width:7px;
  8538. height:7px;
  8539. display:flex;
  8540. }
  8541. #u223715 .text {
  8542. position:absolute;
  8543. align-self:center;
  8544. padding:2px 2px 2px 2px;
  8545. box-sizing:border-box;
  8546. width:100%;
  8547. }
  8548. #u223715_text {
  8549. border-width:0px;
  8550. word-wrap:break-word;
  8551. text-transform:none;
  8552. visibility:hidden;
  8553. }
  8554. #u223716_img {
  8555. border-width:0px;
  8556. position:absolute;
  8557. left:0px;
  8558. top:0px;
  8559. width:19px;
  8560. height:2px;
  8561. }
  8562. #u223716 {
  8563. border-width:0px;
  8564. position:absolute;
  8565. left:3091px;
  8566. top:87px;
  8567. width:18px;
  8568. height:1px;
  8569. display:flex;
  8570. -webkit-transform:rotate(90deg);
  8571. -moz-transform:rotate(90deg);
  8572. -ms-transform:rotate(90deg);
  8573. transform:rotate(90deg);
  8574. }
  8575. #u223716 .text {
  8576. position:absolute;
  8577. align-self:center;
  8578. padding:2px 2px 2px 2px;
  8579. box-sizing:border-box;
  8580. width:100%;
  8581. }
  8582. #u223716_text {
  8583. border-width:0px;
  8584. word-wrap:break-word;
  8585. text-transform:none;
  8586. visibility:hidden;
  8587. }
  8588. #u223717_img {
  8589. border-width:0px;
  8590. position:absolute;
  8591. left:0px;
  8592. top:0px;
  8593. width:375px;
  8594. height:44px;
  8595. }
  8596. #u223717 {
  8597. border-width:0px;
  8598. position:absolute;
  8599. left:2773px;
  8600. top:24px;
  8601. width:375px;
  8602. height:44px;
  8603. display:flex;
  8604. }
  8605. #u223717 .text {
  8606. position:absolute;
  8607. align-self:center;
  8608. padding:2px 2px 2px 2px;
  8609. box-sizing:border-box;
  8610. width:100%;
  8611. }
  8612. #u223717_text {
  8613. border-width:0px;
  8614. word-wrap:break-word;
  8615. text-transform:none;
  8616. visibility:hidden;
  8617. }
  8618. #u223718_div {
  8619. border-width:0px;
  8620. position:absolute;
  8621. left:0px;
  8622. top:0px;
  8623. width:375px;
  8624. height:50px;
  8625. background:inherit;
  8626. background-color:rgba(255, 255, 255, 1);
  8627. box-sizing:border-box;
  8628. border-width:1px;
  8629. border-style:solid;
  8630. border-color:rgba(242, 242, 242, 1);
  8631. border-radius:26px;
  8632. border-top-left-radius:0px;
  8633. border-top-right-radius:0px;
  8634. -moz-box-shadow:none;
  8635. -webkit-box-shadow:none;
  8636. box-shadow:none;
  8637. }
  8638. #u223718 {
  8639. border-width:0px;
  8640. position:absolute;
  8641. left:2773px;
  8642. top:788px;
  8643. width:375px;
  8644. height:50px;
  8645. display:flex;
  8646. }
  8647. #u223718 .text {
  8648. position:absolute;
  8649. align-self:center;
  8650. padding:2px 2px 2px 2px;
  8651. box-sizing:border-box;
  8652. width:100%;
  8653. }
  8654. #u223718_text {
  8655. border-width:0px;
  8656. word-wrap:break-word;
  8657. text-transform:none;
  8658. visibility:hidden;
  8659. }
  8660. #u223719 {
  8661. border-width:0px;
  8662. position:absolute;
  8663. left:0px;
  8664. top:0px;
  8665. width:0px;
  8666. height:0px;
  8667. }
  8668. #u223720_img {
  8669. border-width:0px;
  8670. position:absolute;
  8671. left:0px;
  8672. top:0px;
  8673. width:24px;
  8674. height:24px;
  8675. }
  8676. #u223720 {
  8677. border-width:0px;
  8678. position:absolute;
  8679. left:2813px;
  8680. top:792px;
  8681. width:24px;
  8682. height:24px;
  8683. display:flex;
  8684. font-size:8px;
  8685. }
  8686. #u223720 .text {
  8687. position:absolute;
  8688. align-self:center;
  8689. padding:2px 2px 2px 2px;
  8690. box-sizing:border-box;
  8691. width:100%;
  8692. }
  8693. #u223720_text {
  8694. border-width:0px;
  8695. word-wrap:break-word;
  8696. text-transform:none;
  8697. }
  8698. #u223721_div {
  8699. border-width:0px;
  8700. position:absolute;
  8701. left:0px;
  8702. top:0px;
  8703. width:25px;
  8704. height:17px;
  8705. background:inherit;
  8706. background-color:rgba(255, 255, 255, 0);
  8707. border:none;
  8708. border-radius:0px;
  8709. -moz-box-shadow:none;
  8710. -webkit-box-shadow:none;
  8711. box-shadow:none;
  8712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8713. font-weight:400;
  8714. font-style:normal;
  8715. font-size:12px;
  8716. }
  8717. #u223721 {
  8718. border-width:0px;
  8719. position:absolute;
  8720. left:2813px;
  8721. top:817px;
  8722. width:25px;
  8723. height:17px;
  8724. display:flex;
  8725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8726. font-weight:400;
  8727. font-style:normal;
  8728. font-size:12px;
  8729. }
  8730. #u223721 .text {
  8731. position:absolute;
  8732. align-self:flex-start;
  8733. padding:0px 0px 0px 0px;
  8734. box-sizing:border-box;
  8735. width:100%;
  8736. }
  8737. #u223721_text {
  8738. border-width:0px;
  8739. white-space:nowrap;
  8740. text-transform:none;
  8741. }
  8742. #u223722 {
  8743. border-width:0px;
  8744. position:absolute;
  8745. left:0px;
  8746. top:0px;
  8747. width:0px;
  8748. height:0px;
  8749. }
  8750. #u223723_img {
  8751. border-width:0px;
  8752. position:absolute;
  8753. left:0px;
  8754. top:0px;
  8755. width:24px;
  8756. height:24px;
  8757. }
  8758. #u223723 {
  8759. border-width:0px;
  8760. position:absolute;
  8761. left:3083px;
  8762. top:794px;
  8763. width:24px;
  8764. height:24px;
  8765. display:flex;
  8766. font-size:8px;
  8767. }
  8768. #u223723 .text {
  8769. position:absolute;
  8770. align-self:center;
  8771. padding:2px 2px 2px 2px;
  8772. box-sizing:border-box;
  8773. width:100%;
  8774. }
  8775. #u223723_text {
  8776. border-width:0px;
  8777. word-wrap:break-word;
  8778. text-transform:none;
  8779. }
  8780. #u223724_div {
  8781. border-width:0px;
  8782. position:absolute;
  8783. left:0px;
  8784. top:0px;
  8785. width:25px;
  8786. height:17px;
  8787. background:inherit;
  8788. background-color:rgba(255, 255, 255, 0);
  8789. border:none;
  8790. border-radius:0px;
  8791. -moz-box-shadow:none;
  8792. -webkit-box-shadow:none;
  8793. box-shadow:none;
  8794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8795. font-weight:400;
  8796. font-style:normal;
  8797. font-size:12px;
  8798. }
  8799. #u223724 {
  8800. border-width:0px;
  8801. position:absolute;
  8802. left:3083px;
  8803. top:819px;
  8804. width:25px;
  8805. height:17px;
  8806. display:flex;
  8807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8808. font-weight:400;
  8809. font-style:normal;
  8810. font-size:12px;
  8811. }
  8812. #u223724 .text {
  8813. position:absolute;
  8814. align-self:flex-start;
  8815. padding:0px 0px 0px 0px;
  8816. box-sizing:border-box;
  8817. width:100%;
  8818. }
  8819. #u223724_text {
  8820. border-width:0px;
  8821. white-space:nowrap;
  8822. text-transform:none;
  8823. }
  8824. #u223725_div {
  8825. border-width:0px;
  8826. position:absolute;
  8827. left:0px;
  8828. top:0px;
  8829. width:375px;
  8830. height:681px;
  8831. background:inherit;
  8832. background-color:rgba(242, 242, 242, 0.462745098039216);
  8833. border:none;
  8834. border-radius:0px;
  8835. -moz-box-shadow:none;
  8836. -webkit-box-shadow:none;
  8837. box-shadow:none;
  8838. }
  8839. #u223725 {
  8840. border-width:0px;
  8841. position:absolute;
  8842. left:2773px;
  8843. top:107px;
  8844. width:375px;
  8845. height:681px;
  8846. display:flex;
  8847. }
  8848. #u223725 .text {
  8849. position:absolute;
  8850. align-self:center;
  8851. padding:2px 2px 2px 2px;
  8852. box-sizing:border-box;
  8853. width:100%;
  8854. }
  8855. #u223725_text {
  8856. border-width:0px;
  8857. word-wrap:break-word;
  8858. text-transform:none;
  8859. visibility:hidden;
  8860. }
  8861. #u223726 {
  8862. border-width:0px;
  8863. position:absolute;
  8864. left:0px;
  8865. top:0px;
  8866. width:0px;
  8867. height:0px;
  8868. }
  8869. #u223727_img {
  8870. border-width:0px;
  8871. position:absolute;
  8872. left:0px;
  8873. top:0px;
  8874. width:24px;
  8875. height:24px;
  8876. }
  8877. #u223727 {
  8878. border-width:0px;
  8879. position:absolute;
  8880. left:2995px;
  8881. top:792px;
  8882. width:24px;
  8883. height:24px;
  8884. display:flex;
  8885. font-size:8px;
  8886. }
  8887. #u223727 .text {
  8888. position:absolute;
  8889. align-self:center;
  8890. padding:2px 2px 2px 2px;
  8891. box-sizing:border-box;
  8892. width:100%;
  8893. }
  8894. #u223727_text {
  8895. border-width:0px;
  8896. word-wrap:break-word;
  8897. text-transform:none;
  8898. }
  8899. #u223728_div {
  8900. border-width:0px;
  8901. position:absolute;
  8902. left:0px;
  8903. top:0px;
  8904. width:37px;
  8905. height:17px;
  8906. background:inherit;
  8907. background-color:rgba(255, 255, 255, 0);
  8908. border:none;
  8909. border-radius:0px;
  8910. -moz-box-shadow:none;
  8911. -webkit-box-shadow:none;
  8912. box-shadow:none;
  8913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8914. font-weight:400;
  8915. font-style:normal;
  8916. font-size:12px;
  8917. }
  8918. #u223728 {
  8919. border-width:0px;
  8920. position:absolute;
  8921. left:2989px;
  8922. top:817px;
  8923. width:37px;
  8924. height:17px;
  8925. display:flex;
  8926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8927. font-weight:400;
  8928. font-style:normal;
  8929. font-size:12px;
  8930. }
  8931. #u223728 .text {
  8932. position:absolute;
  8933. align-self:flex-start;
  8934. padding:0px 0px 0px 0px;
  8935. box-sizing:border-box;
  8936. width:100%;
  8937. }
  8938. #u223728_text {
  8939. border-width:0px;
  8940. white-space:nowrap;
  8941. text-transform:none;
  8942. }
  8943. #u223729 {
  8944. border-width:0px;
  8945. position:absolute;
  8946. left:0px;
  8947. top:0px;
  8948. width:0px;
  8949. height:0px;
  8950. }
  8951. #u223730_img {
  8952. border-width:0px;
  8953. position:absolute;
  8954. left:0px;
  8955. top:0px;
  8956. width:24px;
  8957. height:24px;
  8958. }
  8959. #u223730 {
  8960. border-width:0px;
  8961. position:absolute;
  8962. left:2901px;
  8963. top:792px;
  8964. width:24px;
  8965. height:24px;
  8966. display:flex;
  8967. font-size:8px;
  8968. }
  8969. #u223730 .text {
  8970. position:absolute;
  8971. align-self:center;
  8972. padding:2px 2px 2px 2px;
  8973. box-sizing:border-box;
  8974. width:100%;
  8975. }
  8976. #u223730_text {
  8977. border-width:0px;
  8978. word-wrap:break-word;
  8979. text-transform:none;
  8980. }
  8981. #u223731_div {
  8982. border-width:0px;
  8983. position:absolute;
  8984. left:0px;
  8985. top:0px;
  8986. width:37px;
  8987. height:17px;
  8988. background:inherit;
  8989. background-color:rgba(255, 255, 255, 0);
  8990. border:none;
  8991. border-radius:0px;
  8992. -moz-box-shadow:none;
  8993. -webkit-box-shadow:none;
  8994. box-shadow:none;
  8995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8996. font-weight:400;
  8997. font-style:normal;
  8998. font-size:12px;
  8999. }
  9000. #u223731 {
  9001. border-width:0px;
  9002. position:absolute;
  9003. left:2895px;
  9004. top:817px;
  9005. width:37px;
  9006. height:17px;
  9007. display:flex;
  9008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9009. font-weight:400;
  9010. font-style:normal;
  9011. font-size:12px;
  9012. }
  9013. #u223731 .text {
  9014. position:absolute;
  9015. align-self:flex-start;
  9016. padding:0px 0px 0px 0px;
  9017. box-sizing:border-box;
  9018. width:100%;
  9019. }
  9020. #u223731_text {
  9021. border-width:0px;
  9022. white-space:nowrap;
  9023. text-transform:none;
  9024. }
  9025. #u223732_div {
  9026. border-width:0px;
  9027. position:absolute;
  9028. left:0px;
  9029. top:0px;
  9030. width:375px;
  9031. height:40px;
  9032. background:inherit;
  9033. background-color:rgba(255, 255, 255, 1);
  9034. box-sizing:border-box;
  9035. border-width:1px;
  9036. border-style:solid;
  9037. border-color:rgba(215, 215, 215, 1);
  9038. border-left:0px;
  9039. border-top:0px;
  9040. border-right:0px;
  9041. border-radius:0px;
  9042. border-bottom-right-radius:0px;
  9043. border-bottom-left-radius:0px;
  9044. -moz-box-shadow:none;
  9045. -webkit-box-shadow:none;
  9046. box-shadow:none;
  9047. }
  9048. #u223732 {
  9049. border-width:0px;
  9050. position:absolute;
  9051. left:2773px;
  9052. top:67px;
  9053. width:375px;
  9054. height:40px;
  9055. display:flex;
  9056. }
  9057. #u223732 .text {
  9058. position:absolute;
  9059. align-self:center;
  9060. padding:2px 2px 2px 2px;
  9061. box-sizing:border-box;
  9062. width:100%;
  9063. }
  9064. #u223732_text {
  9065. border-width:0px;
  9066. word-wrap:break-word;
  9067. text-transform:none;
  9068. visibility:hidden;
  9069. }
  9070. #u223733_img {
  9071. border-width:0px;
  9072. position:absolute;
  9073. left:0px;
  9074. top:0px;
  9075. width:375px;
  9076. height:44px;
  9077. }
  9078. #u223733 {
  9079. border-width:0px;
  9080. position:absolute;
  9081. left:2773px;
  9082. top:24px;
  9083. width:375px;
  9084. height:44px;
  9085. display:flex;
  9086. }
  9087. #u223733 .text {
  9088. position:absolute;
  9089. align-self:center;
  9090. padding:2px 2px 2px 2px;
  9091. box-sizing:border-box;
  9092. width:100%;
  9093. }
  9094. #u223733_text {
  9095. border-width:0px;
  9096. word-wrap:break-word;
  9097. text-transform:none;
  9098. visibility:hidden;
  9099. }
  9100. #u223734 {
  9101. border-width:0px;
  9102. position:absolute;
  9103. left:0px;
  9104. top:0px;
  9105. width:0px;
  9106. height:0px;
  9107. }
  9108. #u223735_div {
  9109. border-width:0px;
  9110. position:absolute;
  9111. left:0px;
  9112. top:0px;
  9113. width:88px;
  9114. height:32px;
  9115. background:inherit;
  9116. background-color:rgba(255, 255, 255, 1);
  9117. box-sizing:border-box;
  9118. border-width:1px;
  9119. border-style:solid;
  9120. border-color:rgba(242, 242, 242, 1);
  9121. border-radius:33px;
  9122. -moz-box-shadow:none;
  9123. -webkit-box-shadow:none;
  9124. box-shadow:none;
  9125. }
  9126. #u223735 {
  9127. border-width:0px;
  9128. position:absolute;
  9129. left:3053px;
  9130. top:71px;
  9131. width:88px;
  9132. height:32px;
  9133. display:flex;
  9134. }
  9135. #u223735 .text {
  9136. position:absolute;
  9137. align-self:center;
  9138. padding:2px 2px 2px 2px;
  9139. box-sizing:border-box;
  9140. width:100%;
  9141. }
  9142. #u223735_text {
  9143. border-width:0px;
  9144. word-wrap:break-word;
  9145. text-transform:none;
  9146. visibility:hidden;
  9147. }
  9148. #u223736 {
  9149. border-width:0px;
  9150. position:absolute;
  9151. left:0px;
  9152. top:0px;
  9153. width:0px;
  9154. height:0px;
  9155. }
  9156. #u223737_img {
  9157. border-width:0px;
  9158. position:absolute;
  9159. left:0px;
  9160. top:0px;
  9161. width:18px;
  9162. height:18px;
  9163. }
  9164. #u223737 {
  9165. border-width:0px;
  9166. position:absolute;
  9167. left:3116px;
  9168. top:78px;
  9169. width:18px;
  9170. height:18px;
  9171. display:flex;
  9172. }
  9173. #u223737 .text {
  9174. position:absolute;
  9175. align-self:center;
  9176. padding:2px 2px 2px 2px;
  9177. box-sizing:border-box;
  9178. width:100%;
  9179. }
  9180. #u223737_text {
  9181. border-width:0px;
  9182. word-wrap:break-word;
  9183. text-transform:none;
  9184. visibility:hidden;
  9185. }
  9186. #u223738_img {
  9187. border-width:0px;
  9188. position:absolute;
  9189. left:0px;
  9190. top:0px;
  9191. width:6px;
  9192. height:6px;
  9193. }
  9194. #u223738 {
  9195. border-width:0px;
  9196. position:absolute;
  9197. left:3122px;
  9198. top:84px;
  9199. width:6px;
  9200. height:6px;
  9201. display:flex;
  9202. }
  9203. #u223738 .text {
  9204. position:absolute;
  9205. align-self:center;
  9206. padding:2px 2px 2px 2px;
  9207. box-sizing:border-box;
  9208. width:100%;
  9209. }
  9210. #u223738_text {
  9211. border-width:0px;
  9212. word-wrap:break-word;
  9213. text-transform:none;
  9214. visibility:hidden;
  9215. }
  9216. #u223739 {
  9217. border-width:0px;
  9218. position:absolute;
  9219. left:0px;
  9220. top:0px;
  9221. width:0px;
  9222. height:0px;
  9223. }
  9224. #u223740_img {
  9225. border-width:0px;
  9226. position:absolute;
  9227. left:0px;
  9228. top:0px;
  9229. width:5px;
  9230. height:5px;
  9231. }
  9232. #u223740 {
  9233. border-width:0px;
  9234. position:absolute;
  9235. left:3067px;
  9236. top:85px;
  9237. width:5px;
  9238. height:5px;
  9239. display:flex;
  9240. }
  9241. #u223740 .text {
  9242. position:absolute;
  9243. align-self:center;
  9244. padding:2px 2px 2px 2px;
  9245. box-sizing:border-box;
  9246. width:100%;
  9247. }
  9248. #u223740_text {
  9249. border-width:0px;
  9250. word-wrap:break-word;
  9251. text-transform:none;
  9252. visibility:hidden;
  9253. }
  9254. #u223741_img {
  9255. border-width:0px;
  9256. position:absolute;
  9257. left:0px;
  9258. top:0px;
  9259. width:5px;
  9260. height:5px;
  9261. }
  9262. #u223741 {
  9263. border-width:0px;
  9264. position:absolute;
  9265. left:3083px;
  9266. top:85px;
  9267. width:5px;
  9268. height:5px;
  9269. display:flex;
  9270. }
  9271. #u223741 .text {
  9272. position:absolute;
  9273. align-self:center;
  9274. padding:2px 2px 2px 2px;
  9275. box-sizing:border-box;
  9276. width:100%;
  9277. }
  9278. #u223741_text {
  9279. border-width:0px;
  9280. word-wrap:break-word;
  9281. text-transform:none;
  9282. visibility:hidden;
  9283. }
  9284. #u223742_img {
  9285. border-width:0px;
  9286. position:absolute;
  9287. left:0px;
  9288. top:0px;
  9289. width:7px;
  9290. height:7px;
  9291. }
  9292. #u223742 {
  9293. border-width:0px;
  9294. position:absolute;
  9295. left:3074px;
  9296. top:84px;
  9297. width:7px;
  9298. height:7px;
  9299. display:flex;
  9300. }
  9301. #u223742 .text {
  9302. position:absolute;
  9303. align-self:center;
  9304. padding:2px 2px 2px 2px;
  9305. box-sizing:border-box;
  9306. width:100%;
  9307. }
  9308. #u223742_text {
  9309. border-width:0px;
  9310. word-wrap:break-word;
  9311. text-transform:none;
  9312. visibility:hidden;
  9313. }
  9314. #u223743_img {
  9315. border-width:0px;
  9316. position:absolute;
  9317. left:0px;
  9318. top:0px;
  9319. width:19px;
  9320. height:2px;
  9321. }
  9322. #u223743 {
  9323. border-width:0px;
  9324. position:absolute;
  9325. left:3091px;
  9326. top:87px;
  9327. width:18px;
  9328. height:1px;
  9329. display:flex;
  9330. -webkit-transform:rotate(90deg);
  9331. -moz-transform:rotate(90deg);
  9332. -ms-transform:rotate(90deg);
  9333. transform:rotate(90deg);
  9334. }
  9335. #u223743 .text {
  9336. position:absolute;
  9337. align-self:center;
  9338. padding:2px 2px 2px 2px;
  9339. box-sizing:border-box;
  9340. width:100%;
  9341. }
  9342. #u223743_text {
  9343. border-width:0px;
  9344. word-wrap:break-word;
  9345. text-transform:none;
  9346. visibility:hidden;
  9347. }
  9348. #u223744_div {
  9349. border-width:0px;
  9350. position:absolute;
  9351. left:0px;
  9352. top:0px;
  9353. width:65px;
  9354. height:22px;
  9355. background:inherit;
  9356. background-color:rgba(255, 255, 255, 0);
  9357. border:none;
  9358. border-radius:0px;
  9359. -moz-box-shadow:none;
  9360. -webkit-box-shadow:none;
  9361. box-shadow:none;
  9362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9363. font-weight:400;
  9364. font-style:normal;
  9365. font-size:16px;
  9366. color:#000000;
  9367. }
  9368. #u223744 {
  9369. border-width:0px;
  9370. position:absolute;
  9371. left:2930px;
  9372. top:78px;
  9373. width:65px;
  9374. height:22px;
  9375. display:flex;
  9376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9377. font-weight:400;
  9378. font-style:normal;
  9379. font-size:16px;
  9380. color:#000000;
  9381. }
  9382. #u223744 .text {
  9383. position:absolute;
  9384. align-self:flex-start;
  9385. padding:0px 0px 0px 0px;
  9386. box-sizing:border-box;
  9387. width:100%;
  9388. }
  9389. #u223744_text {
  9390. border-width:0px;
  9391. white-space:nowrap;
  9392. text-transform:none;
  9393. }
  9394. #u223745_div {
  9395. border-width:0px;
  9396. position:absolute;
  9397. left:0px;
  9398. top:0px;
  9399. width:12px;
  9400. height:12px;
  9401. background:inherit;
  9402. background-color:rgba(255, 255, 255, 0);
  9403. box-sizing:border-box;
  9404. border-width:2px;
  9405. border-style:solid;
  9406. border-color:rgba(51, 51, 51, 1);
  9407. border-right:0px;
  9408. border-bottom:0px;
  9409. border-radius:0px;
  9410. border-top-right-radius:0px;
  9411. border-bottom-left-radius:0px;
  9412. -moz-box-shadow:none;
  9413. -webkit-box-shadow:none;
  9414. box-shadow:none;
  9415. }
  9416. #u223745 {
  9417. border-width:0px;
  9418. position:absolute;
  9419. left:2788px;
  9420. top:81px;
  9421. width:12px;
  9422. height:12px;
  9423. display:flex;
  9424. -webkit-transform:rotate(315deg);
  9425. -moz-transform:rotate(315deg);
  9426. -ms-transform:rotate(315deg);
  9427. transform:rotate(315deg);
  9428. }
  9429. #u223745 .text {
  9430. position:absolute;
  9431. align-self:center;
  9432. padding:2px 2px 2px 2px;
  9433. box-sizing:border-box;
  9434. width:100%;
  9435. }
  9436. #u223745_text {
  9437. border-width:0px;
  9438. word-wrap:break-word;
  9439. text-transform:none;
  9440. visibility:hidden;
  9441. }
  9442. #u223746_img {
  9443. border-width:0px;
  9444. position:absolute;
  9445. left:0px;
  9446. top:0px;
  9447. width:23px;
  9448. height:23px;
  9449. }
  9450. #u223746 {
  9451. border-width:0px;
  9452. position:absolute;
  9453. left:2815px;
  9454. top:76px;
  9455. width:23px;
  9456. height:23px;
  9457. display:flex;
  9458. }
  9459. #u223746 .text {
  9460. position:absolute;
  9461. align-self:center;
  9462. padding:2px 2px 2px 2px;
  9463. box-sizing:border-box;
  9464. width:100%;
  9465. }
  9466. #u223746_text {
  9467. border-width:0px;
  9468. word-wrap:break-word;
  9469. text-transform:none;
  9470. visibility:hidden;
  9471. }
  9472. #u223747_div {
  9473. border-width:0px;
  9474. position:absolute;
  9475. left:0px;
  9476. top:0px;
  9477. width:375px;
  9478. height:731px;
  9479. background:inherit;
  9480. background-color:rgba(242, 242, 242, 0.996078431372549);
  9481. border:none;
  9482. border-top:0px;
  9483. border-radius:23px;
  9484. border-top-left-radius:0px;
  9485. border-top-right-radius:0px;
  9486. -moz-box-shadow:none;
  9487. -webkit-box-shadow:none;
  9488. box-shadow:none;
  9489. }
  9490. #u223747 {
  9491. border-width:0px;
  9492. position:absolute;
  9493. left:2773px;
  9494. top:107px;
  9495. width:375px;
  9496. height:731px;
  9497. display:flex;
  9498. }
  9499. #u223747 .text {
  9500. position:absolute;
  9501. align-self:center;
  9502. padding:2px 2px 2px 2px;
  9503. box-sizing:border-box;
  9504. width:100%;
  9505. }
  9506. #u223747_text {
  9507. border-width:0px;
  9508. word-wrap:break-word;
  9509. text-transform:none;
  9510. visibility:hidden;
  9511. }
  9512. #u223748 {
  9513. border-width:0px;
  9514. position:absolute;
  9515. left:0px;
  9516. top:0px;
  9517. width:0px;
  9518. height:0px;
  9519. }
  9520. #u223749_div {
  9521. border-width:0px;
  9522. position:absolute;
  9523. left:0px;
  9524. top:0px;
  9525. width:375px;
  9526. height:380px;
  9527. background:inherit;
  9528. background-color:rgba(255, 255, 255, 1);
  9529. border:none;
  9530. border-radius:0px;
  9531. -moz-box-shadow:none;
  9532. -webkit-box-shadow:none;
  9533. box-shadow:none;
  9534. }
  9535. #u223749 {
  9536. border-width:0px;
  9537. position:absolute;
  9538. left:2773px;
  9539. top:107px;
  9540. width:375px;
  9541. height:380px;
  9542. display:flex;
  9543. }
  9544. #u223749 .text {
  9545. position:absolute;
  9546. align-self:center;
  9547. padding:2px 2px 2px 2px;
  9548. box-sizing:border-box;
  9549. width:100%;
  9550. }
  9551. #u223749_text {
  9552. border-width:0px;
  9553. word-wrap:break-word;
  9554. text-transform:none;
  9555. visibility:hidden;
  9556. }
  9557. #u223750_div {
  9558. border-width:0px;
  9559. position:absolute;
  9560. left:0px;
  9561. top:0px;
  9562. width:353px;
  9563. height:160px;
  9564. background:inherit;
  9565. background-color:rgba(255, 255, 255, 0);
  9566. border:none;
  9567. border-top:0px;
  9568. border-right:0px;
  9569. border-bottom:0px;
  9570. border-radius:0px;
  9571. border-top-left-radius:0px;
  9572. border-bottom-left-radius:0px;
  9573. -moz-box-shadow:none;
  9574. -webkit-box-shadow:none;
  9575. box-shadow:none;
  9576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9577. font-weight:400;
  9578. font-style:normal;
  9579. line-height:30px;
  9580. }
  9581. #u223750 {
  9582. border-width:0px;
  9583. position:absolute;
  9584. left:2786px;
  9585. top:117px;
  9586. width:353px;
  9587. height:160px;
  9588. display:flex;
  9589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9590. font-weight:400;
  9591. font-style:normal;
  9592. line-height:30px;
  9593. }
  9594. #u223750 .text {
  9595. position:absolute;
  9596. align-self:flex-start;
  9597. padding:5px 10px 5px 0px;
  9598. box-sizing:border-box;
  9599. width:100%;
  9600. }
  9601. #u223750_text {
  9602. border-width:0px;
  9603. word-wrap:break-word;
  9604. text-transform:none;
  9605. }
  9606. #u223751_div {
  9607. border-width:0px;
  9608. position:absolute;
  9609. left:0px;
  9610. top:0px;
  9611. width:353px;
  9612. height:190px;
  9613. background:inherit;
  9614. background-color:rgba(255, 255, 255, 0);
  9615. border:none;
  9616. border-top:0px;
  9617. border-right:0px;
  9618. border-bottom:0px;
  9619. border-radius:0px;
  9620. border-top-left-radius:0px;
  9621. border-bottom-left-radius:0px;
  9622. -moz-box-shadow:none;
  9623. -webkit-box-shadow:none;
  9624. box-shadow:none;
  9625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9626. font-weight:400;
  9627. font-style:normal;
  9628. font-size:12px;
  9629. line-height:30px;
  9630. }
  9631. #u223751 {
  9632. border-width:0px;
  9633. position:absolute;
  9634. left:2786px;
  9635. top:292px;
  9636. width:353px;
  9637. height:190px;
  9638. display:flex;
  9639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9640. font-weight:400;
  9641. font-style:normal;
  9642. font-size:12px;
  9643. line-height:30px;
  9644. }
  9645. #u223751 .text {
  9646. position:absolute;
  9647. align-self:flex-start;
  9648. padding:5px 10px 5px 0px;
  9649. box-sizing:border-box;
  9650. width:100%;
  9651. }
  9652. #u223751_text {
  9653. border-width:0px;
  9654. word-wrap:break-word;
  9655. text-transform:none;
  9656. }
  9657. #u223752_img {
  9658. border-width:0px;
  9659. position:absolute;
  9660. left:0px;
  9661. top:0px;
  9662. width:350px;
  9663. height:2px;
  9664. }
  9665. #u223752 {
  9666. border-width:0px;
  9667. position:absolute;
  9668. left:2786px;
  9669. top:283px;
  9670. width:349px;
  9671. height:1px;
  9672. display:flex;
  9673. }
  9674. #u223752 .text {
  9675. position:absolute;
  9676. align-self:center;
  9677. padding:2px 2px 2px 2px;
  9678. box-sizing:border-box;
  9679. width:100%;
  9680. }
  9681. #u223752_text {
  9682. border-width:0px;
  9683. word-wrap:break-word;
  9684. text-transform:none;
  9685. visibility:hidden;
  9686. }
  9687. #u223753_div {
  9688. border-width:0px;
  9689. position:absolute;
  9690. left:0px;
  9691. top:0px;
  9692. width:10px;
  9693. height:10px;
  9694. background:inherit;
  9695. background-color:rgba(255, 255, 255, 0);
  9696. box-sizing:border-box;
  9697. border-width:2px;
  9698. border-style:solid;
  9699. border-color:rgba(51, 51, 51, 1);
  9700. border-right:0px;
  9701. border-bottom:0px;
  9702. border-radius:0px;
  9703. border-top-right-radius:0px;
  9704. border-bottom-left-radius:0px;
  9705. -moz-box-shadow:none;
  9706. -webkit-box-shadow:none;
  9707. box-shadow:none;
  9708. }
  9709. #u223753 {
  9710. border-width:0px;
  9711. position:absolute;
  9712. left:3122px;
  9713. top:129px;
  9714. width:10px;
  9715. height:10px;
  9716. display:flex;
  9717. -webkit-transform:rotate(45deg);
  9718. -moz-transform:rotate(45deg);
  9719. -ms-transform:rotate(45deg);
  9720. transform:rotate(45deg);
  9721. }
  9722. #u223753 .text {
  9723. position:absolute;
  9724. align-self:center;
  9725. padding:2px 2px 2px 2px;
  9726. box-sizing:border-box;
  9727. width:100%;
  9728. }
  9729. #u223753_text {
  9730. border-width:0px;
  9731. word-wrap:break-word;
  9732. text-transform:none;
  9733. visibility:hidden;
  9734. }
  9735. #u223754_div {
  9736. border-width:0px;
  9737. position:absolute;
  9738. left:0px;
  9739. top:0px;
  9740. width:49px;
  9741. height:17px;
  9742. background:inherit;
  9743. background-color:rgba(255, 255, 255, 0);
  9744. border:none;
  9745. border-radius:0px;
  9746. -moz-box-shadow:none;
  9747. -webkit-box-shadow:none;
  9748. box-shadow:none;
  9749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9750. font-weight:400;
  9751. font-style:normal;
  9752. font-size:12px;
  9753. color:#AAAAAA;
  9754. }
  9755. #u223754 {
  9756. border-width:0px;
  9757. position:absolute;
  9758. left:3064px;
  9759. top:124px;
  9760. width:49px;
  9761. height:17px;
  9762. display:flex;
  9763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9764. font-weight:400;
  9765. font-style:normal;
  9766. font-size:12px;
  9767. color:#AAAAAA;
  9768. }
  9769. #u223754 .text {
  9770. position:absolute;
  9771. align-self:flex-start;
  9772. padding:0px 0px 0px 0px;
  9773. box-sizing:border-box;
  9774. width:100%;
  9775. }
  9776. #u223754_text {
  9777. border-width:0px;
  9778. white-space:nowrap;
  9779. text-transform:none;
  9780. }
  9781. #u223756_img {
  9782. border-width:0px;
  9783. position:absolute;
  9784. left:0px;
  9785. top:0px;
  9786. width:433px;
  9787. height:865px;
  9788. }
  9789. #u223756 {
  9790. border-width:0px;
  9791. position:absolute;
  9792. left:908px;
  9793. top:0px;
  9794. width:433px;
  9795. height:865px;
  9796. display:flex;
  9797. }
  9798. #u223756 .text {
  9799. position:absolute;
  9800. align-self:center;
  9801. padding:2px 2px 2px 2px;
  9802. box-sizing:border-box;
  9803. width:100%;
  9804. }
  9805. #u223756_text {
  9806. border-width:0px;
  9807. word-wrap:break-word;
  9808. text-transform:none;
  9809. visibility:hidden;
  9810. }
  9811. #u223757_div {
  9812. border-width:0px;
  9813. position:absolute;
  9814. left:0px;
  9815. top:0px;
  9816. width:375px;
  9817. height:40px;
  9818. background:inherit;
  9819. background-color:rgba(255, 255, 255, 1);
  9820. box-sizing:border-box;
  9821. border-width:1px;
  9822. border-style:solid;
  9823. border-color:rgba(215, 215, 215, 1);
  9824. border-left:0px;
  9825. border-top:0px;
  9826. border-right:0px;
  9827. border-radius:0px;
  9828. border-bottom-right-radius:0px;
  9829. border-bottom-left-radius:0px;
  9830. -moz-box-shadow:none;
  9831. -webkit-box-shadow:none;
  9832. box-shadow:none;
  9833. }
  9834. #u223757 {
  9835. border-width:0px;
  9836. position:absolute;
  9837. left:937px;
  9838. top:67px;
  9839. width:375px;
  9840. height:40px;
  9841. display:flex;
  9842. }
  9843. #u223757 .text {
  9844. position:absolute;
  9845. align-self:center;
  9846. padding:2px 2px 2px 2px;
  9847. box-sizing:border-box;
  9848. width:100%;
  9849. }
  9850. #u223757_text {
  9851. border-width:0px;
  9852. word-wrap:break-word;
  9853. text-transform:none;
  9854. visibility:hidden;
  9855. }
  9856. #u223758 {
  9857. border-width:0px;
  9858. position:absolute;
  9859. left:0px;
  9860. top:0px;
  9861. width:0px;
  9862. height:0px;
  9863. }
  9864. #u223759_div {
  9865. border-width:0px;
  9866. position:absolute;
  9867. left:0px;
  9868. top:0px;
  9869. width:88px;
  9870. height:32px;
  9871. background:inherit;
  9872. background-color:rgba(255, 255, 255, 1);
  9873. box-sizing:border-box;
  9874. border-width:1px;
  9875. border-style:solid;
  9876. border-color:rgba(242, 242, 242, 1);
  9877. border-radius:33px;
  9878. -moz-box-shadow:none;
  9879. -webkit-box-shadow:none;
  9880. box-shadow:none;
  9881. }
  9882. #u223759 {
  9883. border-width:0px;
  9884. position:absolute;
  9885. left:1217px;
  9886. top:71px;
  9887. width:88px;
  9888. height:32px;
  9889. display:flex;
  9890. }
  9891. #u223759 .text {
  9892. position:absolute;
  9893. align-self:center;
  9894. padding:2px 2px 2px 2px;
  9895. box-sizing:border-box;
  9896. width:100%;
  9897. }
  9898. #u223759_text {
  9899. border-width:0px;
  9900. word-wrap:break-word;
  9901. text-transform:none;
  9902. visibility:hidden;
  9903. }
  9904. #u223760 {
  9905. border-width:0px;
  9906. position:absolute;
  9907. left:0px;
  9908. top:0px;
  9909. width:0px;
  9910. height:0px;
  9911. }
  9912. #u223761_img {
  9913. border-width:0px;
  9914. position:absolute;
  9915. left:0px;
  9916. top:0px;
  9917. width:18px;
  9918. height:18px;
  9919. }
  9920. #u223761 {
  9921. border-width:0px;
  9922. position:absolute;
  9923. left:1280px;
  9924. top:78px;
  9925. width:18px;
  9926. height:18px;
  9927. display:flex;
  9928. }
  9929. #u223761 .text {
  9930. position:absolute;
  9931. align-self:center;
  9932. padding:2px 2px 2px 2px;
  9933. box-sizing:border-box;
  9934. width:100%;
  9935. }
  9936. #u223761_text {
  9937. border-width:0px;
  9938. word-wrap:break-word;
  9939. text-transform:none;
  9940. visibility:hidden;
  9941. }
  9942. #u223762_img {
  9943. border-width:0px;
  9944. position:absolute;
  9945. left:0px;
  9946. top:0px;
  9947. width:6px;
  9948. height:6px;
  9949. }
  9950. #u223762 {
  9951. border-width:0px;
  9952. position:absolute;
  9953. left:1286px;
  9954. top:84px;
  9955. width:6px;
  9956. height:6px;
  9957. display:flex;
  9958. }
  9959. #u223762 .text {
  9960. position:absolute;
  9961. align-self:center;
  9962. padding:2px 2px 2px 2px;
  9963. box-sizing:border-box;
  9964. width:100%;
  9965. }
  9966. #u223762_text {
  9967. border-width:0px;
  9968. word-wrap:break-word;
  9969. text-transform:none;
  9970. visibility:hidden;
  9971. }
  9972. #u223763 {
  9973. border-width:0px;
  9974. position:absolute;
  9975. left:0px;
  9976. top:0px;
  9977. width:0px;
  9978. height:0px;
  9979. }
  9980. #u223764_img {
  9981. border-width:0px;
  9982. position:absolute;
  9983. left:0px;
  9984. top:0px;
  9985. width:5px;
  9986. height:5px;
  9987. }
  9988. #u223764 {
  9989. border-width:0px;
  9990. position:absolute;
  9991. left:1231px;
  9992. top:85px;
  9993. width:5px;
  9994. height:5px;
  9995. display:flex;
  9996. }
  9997. #u223764 .text {
  9998. position:absolute;
  9999. align-self:center;
  10000. padding:2px 2px 2px 2px;
  10001. box-sizing:border-box;
  10002. width:100%;
  10003. }
  10004. #u223764_text {
  10005. border-width:0px;
  10006. word-wrap:break-word;
  10007. text-transform:none;
  10008. visibility:hidden;
  10009. }
  10010. #u223765_img {
  10011. border-width:0px;
  10012. position:absolute;
  10013. left:0px;
  10014. top:0px;
  10015. width:5px;
  10016. height:5px;
  10017. }
  10018. #u223765 {
  10019. border-width:0px;
  10020. position:absolute;
  10021. left:1247px;
  10022. top:85px;
  10023. width:5px;
  10024. height:5px;
  10025. display:flex;
  10026. }
  10027. #u223765 .text {
  10028. position:absolute;
  10029. align-self:center;
  10030. padding:2px 2px 2px 2px;
  10031. box-sizing:border-box;
  10032. width:100%;
  10033. }
  10034. #u223765_text {
  10035. border-width:0px;
  10036. word-wrap:break-word;
  10037. text-transform:none;
  10038. visibility:hidden;
  10039. }
  10040. #u223766_img {
  10041. border-width:0px;
  10042. position:absolute;
  10043. left:0px;
  10044. top:0px;
  10045. width:7px;
  10046. height:7px;
  10047. }
  10048. #u223766 {
  10049. border-width:0px;
  10050. position:absolute;
  10051. left:1238px;
  10052. top:84px;
  10053. width:7px;
  10054. height:7px;
  10055. display:flex;
  10056. }
  10057. #u223766 .text {
  10058. position:absolute;
  10059. align-self:center;
  10060. padding:2px 2px 2px 2px;
  10061. box-sizing:border-box;
  10062. width:100%;
  10063. }
  10064. #u223766_text {
  10065. border-width:0px;
  10066. word-wrap:break-word;
  10067. text-transform:none;
  10068. visibility:hidden;
  10069. }
  10070. #u223767_img {
  10071. border-width:0px;
  10072. position:absolute;
  10073. left:0px;
  10074. top:0px;
  10075. width:19px;
  10076. height:2px;
  10077. }
  10078. #u223767 {
  10079. border-width:0px;
  10080. position:absolute;
  10081. left:1255px;
  10082. top:87px;
  10083. width:18px;
  10084. height:1px;
  10085. display:flex;
  10086. -webkit-transform:rotate(90deg);
  10087. -moz-transform:rotate(90deg);
  10088. -ms-transform:rotate(90deg);
  10089. transform:rotate(90deg);
  10090. }
  10091. #u223767 .text {
  10092. position:absolute;
  10093. align-self:center;
  10094. padding:2px 2px 2px 2px;
  10095. box-sizing:border-box;
  10096. width:100%;
  10097. }
  10098. #u223767_text {
  10099. border-width:0px;
  10100. word-wrap:break-word;
  10101. text-transform:none;
  10102. visibility:hidden;
  10103. }
  10104. #u223768_img {
  10105. border-width:0px;
  10106. position:absolute;
  10107. left:0px;
  10108. top:0px;
  10109. width:375px;
  10110. height:44px;
  10111. }
  10112. #u223768 {
  10113. border-width:0px;
  10114. position:absolute;
  10115. left:937px;
  10116. top:24px;
  10117. width:375px;
  10118. height:44px;
  10119. display:flex;
  10120. }
  10121. #u223768 .text {
  10122. position:absolute;
  10123. align-self:center;
  10124. padding:2px 2px 2px 2px;
  10125. box-sizing:border-box;
  10126. width:100%;
  10127. }
  10128. #u223768_text {
  10129. border-width:0px;
  10130. word-wrap:break-word;
  10131. text-transform:none;
  10132. visibility:hidden;
  10133. }
  10134. #u223769_div {
  10135. border-width:0px;
  10136. position:absolute;
  10137. left:0px;
  10138. top:0px;
  10139. width:375px;
  10140. height:50px;
  10141. background:inherit;
  10142. background-color:rgba(255, 255, 255, 1);
  10143. box-sizing:border-box;
  10144. border-width:1px;
  10145. border-style:solid;
  10146. border-color:rgba(242, 242, 242, 1);
  10147. border-radius:26px;
  10148. border-top-left-radius:0px;
  10149. border-top-right-radius:0px;
  10150. -moz-box-shadow:none;
  10151. -webkit-box-shadow:none;
  10152. box-shadow:none;
  10153. }
  10154. #u223769 {
  10155. border-width:0px;
  10156. position:absolute;
  10157. left:937px;
  10158. top:788px;
  10159. width:375px;
  10160. height:50px;
  10161. display:flex;
  10162. }
  10163. #u223769 .text {
  10164. position:absolute;
  10165. align-self:center;
  10166. padding:2px 2px 2px 2px;
  10167. box-sizing:border-box;
  10168. width:100%;
  10169. }
  10170. #u223769_text {
  10171. border-width:0px;
  10172. word-wrap:break-word;
  10173. text-transform:none;
  10174. visibility:hidden;
  10175. }
  10176. #u223770 {
  10177. border-width:0px;
  10178. position:absolute;
  10179. left:0px;
  10180. top:0px;
  10181. width:0px;
  10182. height:0px;
  10183. }
  10184. #u223771_img {
  10185. border-width:0px;
  10186. position:absolute;
  10187. left:0px;
  10188. top:0px;
  10189. width:24px;
  10190. height:24px;
  10191. }
  10192. #u223771 {
  10193. border-width:0px;
  10194. position:absolute;
  10195. left:977px;
  10196. top:792px;
  10197. width:24px;
  10198. height:24px;
  10199. display:flex;
  10200. font-size:8px;
  10201. }
  10202. #u223771 .text {
  10203. position:absolute;
  10204. align-self:center;
  10205. padding:2px 2px 2px 2px;
  10206. box-sizing:border-box;
  10207. width:100%;
  10208. }
  10209. #u223771_text {
  10210. border-width:0px;
  10211. word-wrap:break-word;
  10212. text-transform:none;
  10213. }
  10214. #u223772_div {
  10215. border-width:0px;
  10216. position:absolute;
  10217. left:0px;
  10218. top:0px;
  10219. width:25px;
  10220. height:17px;
  10221. background:inherit;
  10222. background-color:rgba(255, 255, 255, 0);
  10223. border:none;
  10224. border-radius:0px;
  10225. -moz-box-shadow:none;
  10226. -webkit-box-shadow:none;
  10227. box-shadow:none;
  10228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10229. font-weight:400;
  10230. font-style:normal;
  10231. font-size:12px;
  10232. }
  10233. #u223772 {
  10234. border-width:0px;
  10235. position:absolute;
  10236. left:977px;
  10237. top:817px;
  10238. width:25px;
  10239. height:17px;
  10240. display:flex;
  10241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10242. font-weight:400;
  10243. font-style:normal;
  10244. font-size:12px;
  10245. }
  10246. #u223772 .text {
  10247. position:absolute;
  10248. align-self:flex-start;
  10249. padding:0px 0px 0px 0px;
  10250. box-sizing:border-box;
  10251. width:100%;
  10252. }
  10253. #u223772_text {
  10254. border-width:0px;
  10255. white-space:nowrap;
  10256. text-transform:none;
  10257. }
  10258. #u223773 {
  10259. border-width:0px;
  10260. position:absolute;
  10261. left:0px;
  10262. top:0px;
  10263. width:0px;
  10264. height:0px;
  10265. }
  10266. #u223774_img {
  10267. border-width:0px;
  10268. position:absolute;
  10269. left:0px;
  10270. top:0px;
  10271. width:24px;
  10272. height:24px;
  10273. }
  10274. #u223774 {
  10275. border-width:0px;
  10276. position:absolute;
  10277. left:1247px;
  10278. top:794px;
  10279. width:24px;
  10280. height:24px;
  10281. display:flex;
  10282. font-size:8px;
  10283. }
  10284. #u223774 .text {
  10285. position:absolute;
  10286. align-self:center;
  10287. padding:2px 2px 2px 2px;
  10288. box-sizing:border-box;
  10289. width:100%;
  10290. }
  10291. #u223774_text {
  10292. border-width:0px;
  10293. word-wrap:break-word;
  10294. text-transform:none;
  10295. }
  10296. #u223775_div {
  10297. border-width:0px;
  10298. position:absolute;
  10299. left:0px;
  10300. top:0px;
  10301. width:25px;
  10302. height:17px;
  10303. background:inherit;
  10304. background-color:rgba(255, 255, 255, 0);
  10305. border:none;
  10306. border-radius:0px;
  10307. -moz-box-shadow:none;
  10308. -webkit-box-shadow:none;
  10309. box-shadow:none;
  10310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10311. font-weight:400;
  10312. font-style:normal;
  10313. font-size:12px;
  10314. }
  10315. #u223775 {
  10316. border-width:0px;
  10317. position:absolute;
  10318. left:1247px;
  10319. top:819px;
  10320. width:25px;
  10321. height:17px;
  10322. display:flex;
  10323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10324. font-weight:400;
  10325. font-style:normal;
  10326. font-size:12px;
  10327. }
  10328. #u223775 .text {
  10329. position:absolute;
  10330. align-self:flex-start;
  10331. padding:0px 0px 0px 0px;
  10332. box-sizing:border-box;
  10333. width:100%;
  10334. }
  10335. #u223775_text {
  10336. border-width:0px;
  10337. white-space:nowrap;
  10338. text-transform:none;
  10339. }
  10340. #u223776_div {
  10341. border-width:0px;
  10342. position:absolute;
  10343. left:0px;
  10344. top:0px;
  10345. width:375px;
  10346. height:681px;
  10347. background:inherit;
  10348. background-color:rgba(242, 242, 242, 0.462745098039216);
  10349. border:none;
  10350. border-radius:0px;
  10351. -moz-box-shadow:none;
  10352. -webkit-box-shadow:none;
  10353. box-shadow:none;
  10354. }
  10355. #u223776 {
  10356. border-width:0px;
  10357. position:absolute;
  10358. left:937px;
  10359. top:107px;
  10360. width:375px;
  10361. height:681px;
  10362. display:flex;
  10363. }
  10364. #u223776 .text {
  10365. position:absolute;
  10366. align-self:center;
  10367. padding:2px 2px 2px 2px;
  10368. box-sizing:border-box;
  10369. width:100%;
  10370. }
  10371. #u223776_text {
  10372. border-width:0px;
  10373. word-wrap:break-word;
  10374. text-transform:none;
  10375. visibility:hidden;
  10376. }
  10377. #u223777 {
  10378. border-width:0px;
  10379. position:absolute;
  10380. left:0px;
  10381. top:0px;
  10382. width:0px;
  10383. height:0px;
  10384. }
  10385. #u223778_img {
  10386. border-width:0px;
  10387. position:absolute;
  10388. left:0px;
  10389. top:0px;
  10390. width:24px;
  10391. height:24px;
  10392. }
  10393. #u223778 {
  10394. border-width:0px;
  10395. position:absolute;
  10396. left:1159px;
  10397. top:792px;
  10398. width:24px;
  10399. height:24px;
  10400. display:flex;
  10401. font-size:8px;
  10402. }
  10403. #u223778 .text {
  10404. position:absolute;
  10405. align-self:center;
  10406. padding:2px 2px 2px 2px;
  10407. box-sizing:border-box;
  10408. width:100%;
  10409. }
  10410. #u223778_text {
  10411. border-width:0px;
  10412. word-wrap:break-word;
  10413. text-transform:none;
  10414. }
  10415. #u223779_div {
  10416. border-width:0px;
  10417. position:absolute;
  10418. left:0px;
  10419. top:0px;
  10420. width:37px;
  10421. height:17px;
  10422. background:inherit;
  10423. background-color:rgba(255, 255, 255, 0);
  10424. border:none;
  10425. border-radius:0px;
  10426. -moz-box-shadow:none;
  10427. -webkit-box-shadow:none;
  10428. box-shadow:none;
  10429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10430. font-weight:400;
  10431. font-style:normal;
  10432. font-size:12px;
  10433. }
  10434. #u223779 {
  10435. border-width:0px;
  10436. position:absolute;
  10437. left:1153px;
  10438. top:817px;
  10439. width:37px;
  10440. height:17px;
  10441. display:flex;
  10442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10443. font-weight:400;
  10444. font-style:normal;
  10445. font-size:12px;
  10446. }
  10447. #u223779 .text {
  10448. position:absolute;
  10449. align-self:flex-start;
  10450. padding:0px 0px 0px 0px;
  10451. box-sizing:border-box;
  10452. width:100%;
  10453. }
  10454. #u223779_text {
  10455. border-width:0px;
  10456. white-space:nowrap;
  10457. text-transform:none;
  10458. }
  10459. #u223780 {
  10460. border-width:0px;
  10461. position:absolute;
  10462. left:0px;
  10463. top:0px;
  10464. width:0px;
  10465. height:0px;
  10466. }
  10467. #u223781_img {
  10468. border-width:0px;
  10469. position:absolute;
  10470. left:0px;
  10471. top:0px;
  10472. width:24px;
  10473. height:24px;
  10474. }
  10475. #u223781 {
  10476. border-width:0px;
  10477. position:absolute;
  10478. left:1065px;
  10479. top:792px;
  10480. width:24px;
  10481. height:24px;
  10482. display:flex;
  10483. font-size:8px;
  10484. }
  10485. #u223781 .text {
  10486. position:absolute;
  10487. align-self:center;
  10488. padding:2px 2px 2px 2px;
  10489. box-sizing:border-box;
  10490. width:100%;
  10491. }
  10492. #u223781_text {
  10493. border-width:0px;
  10494. word-wrap:break-word;
  10495. text-transform:none;
  10496. }
  10497. #u223782_div {
  10498. border-width:0px;
  10499. position:absolute;
  10500. left:0px;
  10501. top:0px;
  10502. width:37px;
  10503. height:17px;
  10504. background:inherit;
  10505. background-color:rgba(255, 255, 255, 0);
  10506. border:none;
  10507. border-radius:0px;
  10508. -moz-box-shadow:none;
  10509. -webkit-box-shadow:none;
  10510. box-shadow:none;
  10511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10512. font-weight:400;
  10513. font-style:normal;
  10514. font-size:12px;
  10515. }
  10516. #u223782 {
  10517. border-width:0px;
  10518. position:absolute;
  10519. left:1059px;
  10520. top:817px;
  10521. width:37px;
  10522. height:17px;
  10523. display:flex;
  10524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10525. font-weight:400;
  10526. font-style:normal;
  10527. font-size:12px;
  10528. }
  10529. #u223782 .text {
  10530. position:absolute;
  10531. align-self:flex-start;
  10532. padding:0px 0px 0px 0px;
  10533. box-sizing:border-box;
  10534. width:100%;
  10535. }
  10536. #u223782_text {
  10537. border-width:0px;
  10538. white-space:nowrap;
  10539. text-transform:none;
  10540. }
  10541. #u223783_div {
  10542. border-width:0px;
  10543. position:absolute;
  10544. left:0px;
  10545. top:0px;
  10546. width:375px;
  10547. height:40px;
  10548. background:inherit;
  10549. background-color:rgba(255, 255, 255, 1);
  10550. box-sizing:border-box;
  10551. border-width:1px;
  10552. border-style:solid;
  10553. border-color:rgba(215, 215, 215, 1);
  10554. border-left:0px;
  10555. border-top:0px;
  10556. border-right:0px;
  10557. border-radius:0px;
  10558. border-bottom-right-radius:0px;
  10559. border-bottom-left-radius:0px;
  10560. -moz-box-shadow:none;
  10561. -webkit-box-shadow:none;
  10562. box-shadow:none;
  10563. }
  10564. #u223783 {
  10565. border-width:0px;
  10566. position:absolute;
  10567. left:937px;
  10568. top:67px;
  10569. width:375px;
  10570. height:40px;
  10571. display:flex;
  10572. }
  10573. #u223783 .text {
  10574. position:absolute;
  10575. align-self:center;
  10576. padding:2px 2px 2px 2px;
  10577. box-sizing:border-box;
  10578. width:100%;
  10579. }
  10580. #u223783_text {
  10581. border-width:0px;
  10582. word-wrap:break-word;
  10583. text-transform:none;
  10584. visibility:hidden;
  10585. }
  10586. #u223784_img {
  10587. border-width:0px;
  10588. position:absolute;
  10589. left:0px;
  10590. top:0px;
  10591. width:375px;
  10592. height:44px;
  10593. }
  10594. #u223784 {
  10595. border-width:0px;
  10596. position:absolute;
  10597. left:937px;
  10598. top:24px;
  10599. width:375px;
  10600. height:44px;
  10601. display:flex;
  10602. }
  10603. #u223784 .text {
  10604. position:absolute;
  10605. align-self:center;
  10606. padding:2px 2px 2px 2px;
  10607. box-sizing:border-box;
  10608. width:100%;
  10609. }
  10610. #u223784_text {
  10611. border-width:0px;
  10612. word-wrap:break-word;
  10613. text-transform:none;
  10614. visibility:hidden;
  10615. }
  10616. #u223785 {
  10617. border-width:0px;
  10618. position:absolute;
  10619. left:0px;
  10620. top:0px;
  10621. width:0px;
  10622. height:0px;
  10623. }
  10624. #u223786_div {
  10625. border-width:0px;
  10626. position:absolute;
  10627. left:0px;
  10628. top:0px;
  10629. width:88px;
  10630. height:32px;
  10631. background:inherit;
  10632. background-color:rgba(255, 255, 255, 1);
  10633. box-sizing:border-box;
  10634. border-width:1px;
  10635. border-style:solid;
  10636. border-color:rgba(242, 242, 242, 1);
  10637. border-radius:33px;
  10638. -moz-box-shadow:none;
  10639. -webkit-box-shadow:none;
  10640. box-shadow:none;
  10641. }
  10642. #u223786 {
  10643. border-width:0px;
  10644. position:absolute;
  10645. left:1217px;
  10646. top:71px;
  10647. width:88px;
  10648. height:32px;
  10649. display:flex;
  10650. }
  10651. #u223786 .text {
  10652. position:absolute;
  10653. align-self:center;
  10654. padding:2px 2px 2px 2px;
  10655. box-sizing:border-box;
  10656. width:100%;
  10657. }
  10658. #u223786_text {
  10659. border-width:0px;
  10660. word-wrap:break-word;
  10661. text-transform:none;
  10662. visibility:hidden;
  10663. }
  10664. #u223787 {
  10665. border-width:0px;
  10666. position:absolute;
  10667. left:0px;
  10668. top:0px;
  10669. width:0px;
  10670. height:0px;
  10671. }
  10672. #u223788_img {
  10673. border-width:0px;
  10674. position:absolute;
  10675. left:0px;
  10676. top:0px;
  10677. width:18px;
  10678. height:18px;
  10679. }
  10680. #u223788 {
  10681. border-width:0px;
  10682. position:absolute;
  10683. left:1280px;
  10684. top:78px;
  10685. width:18px;
  10686. height:18px;
  10687. display:flex;
  10688. }
  10689. #u223788 .text {
  10690. position:absolute;
  10691. align-self:center;
  10692. padding:2px 2px 2px 2px;
  10693. box-sizing:border-box;
  10694. width:100%;
  10695. }
  10696. #u223788_text {
  10697. border-width:0px;
  10698. word-wrap:break-word;
  10699. text-transform:none;
  10700. visibility:hidden;
  10701. }
  10702. #u223789_img {
  10703. border-width:0px;
  10704. position:absolute;
  10705. left:0px;
  10706. top:0px;
  10707. width:6px;
  10708. height:6px;
  10709. }
  10710. #u223789 {
  10711. border-width:0px;
  10712. position:absolute;
  10713. left:1286px;
  10714. top:84px;
  10715. width:6px;
  10716. height:6px;
  10717. display:flex;
  10718. }
  10719. #u223789 .text {
  10720. position:absolute;
  10721. align-self:center;
  10722. padding:2px 2px 2px 2px;
  10723. box-sizing:border-box;
  10724. width:100%;
  10725. }
  10726. #u223789_text {
  10727. border-width:0px;
  10728. word-wrap:break-word;
  10729. text-transform:none;
  10730. visibility:hidden;
  10731. }
  10732. #u223790 {
  10733. border-width:0px;
  10734. position:absolute;
  10735. left:0px;
  10736. top:0px;
  10737. width:0px;
  10738. height:0px;
  10739. }
  10740. #u223791_img {
  10741. border-width:0px;
  10742. position:absolute;
  10743. left:0px;
  10744. top:0px;
  10745. width:5px;
  10746. height:5px;
  10747. }
  10748. #u223791 {
  10749. border-width:0px;
  10750. position:absolute;
  10751. left:1231px;
  10752. top:85px;
  10753. width:5px;
  10754. height:5px;
  10755. display:flex;
  10756. }
  10757. #u223791 .text {
  10758. position:absolute;
  10759. align-self:center;
  10760. padding:2px 2px 2px 2px;
  10761. box-sizing:border-box;
  10762. width:100%;
  10763. }
  10764. #u223791_text {
  10765. border-width:0px;
  10766. word-wrap:break-word;
  10767. text-transform:none;
  10768. visibility:hidden;
  10769. }
  10770. #u223792_img {
  10771. border-width:0px;
  10772. position:absolute;
  10773. left:0px;
  10774. top:0px;
  10775. width:5px;
  10776. height:5px;
  10777. }
  10778. #u223792 {
  10779. border-width:0px;
  10780. position:absolute;
  10781. left:1247px;
  10782. top:85px;
  10783. width:5px;
  10784. height:5px;
  10785. display:flex;
  10786. }
  10787. #u223792 .text {
  10788. position:absolute;
  10789. align-self:center;
  10790. padding:2px 2px 2px 2px;
  10791. box-sizing:border-box;
  10792. width:100%;
  10793. }
  10794. #u223792_text {
  10795. border-width:0px;
  10796. word-wrap:break-word;
  10797. text-transform:none;
  10798. visibility:hidden;
  10799. }
  10800. #u223793_img {
  10801. border-width:0px;
  10802. position:absolute;
  10803. left:0px;
  10804. top:0px;
  10805. width:7px;
  10806. height:7px;
  10807. }
  10808. #u223793 {
  10809. border-width:0px;
  10810. position:absolute;
  10811. left:1238px;
  10812. top:84px;
  10813. width:7px;
  10814. height:7px;
  10815. display:flex;
  10816. }
  10817. #u223793 .text {
  10818. position:absolute;
  10819. align-self:center;
  10820. padding:2px 2px 2px 2px;
  10821. box-sizing:border-box;
  10822. width:100%;
  10823. }
  10824. #u223793_text {
  10825. border-width:0px;
  10826. word-wrap:break-word;
  10827. text-transform:none;
  10828. visibility:hidden;
  10829. }
  10830. #u223794_img {
  10831. border-width:0px;
  10832. position:absolute;
  10833. left:0px;
  10834. top:0px;
  10835. width:19px;
  10836. height:2px;
  10837. }
  10838. #u223794 {
  10839. border-width:0px;
  10840. position:absolute;
  10841. left:1255px;
  10842. top:87px;
  10843. width:18px;
  10844. height:1px;
  10845. display:flex;
  10846. -webkit-transform:rotate(90deg);
  10847. -moz-transform:rotate(90deg);
  10848. -ms-transform:rotate(90deg);
  10849. transform:rotate(90deg);
  10850. }
  10851. #u223794 .text {
  10852. position:absolute;
  10853. align-self:center;
  10854. padding:2px 2px 2px 2px;
  10855. box-sizing:border-box;
  10856. width:100%;
  10857. }
  10858. #u223794_text {
  10859. border-width:0px;
  10860. word-wrap:break-word;
  10861. text-transform:none;
  10862. visibility:hidden;
  10863. }
  10864. #u223795_div {
  10865. border-width:0px;
  10866. position:absolute;
  10867. left:0px;
  10868. top:0px;
  10869. width:65px;
  10870. height:22px;
  10871. background:inherit;
  10872. background-color:rgba(255, 255, 255, 0);
  10873. border:none;
  10874. border-radius:0px;
  10875. -moz-box-shadow:none;
  10876. -webkit-box-shadow:none;
  10877. box-shadow:none;
  10878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10879. font-weight:400;
  10880. font-style:normal;
  10881. font-size:16px;
  10882. color:#000000;
  10883. }
  10884. #u223795 {
  10885. border-width:0px;
  10886. position:absolute;
  10887. left:1094px;
  10888. top:78px;
  10889. width:65px;
  10890. height:22px;
  10891. display:flex;
  10892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10893. font-weight:400;
  10894. font-style:normal;
  10895. font-size:16px;
  10896. color:#000000;
  10897. }
  10898. #u223795 .text {
  10899. position:absolute;
  10900. align-self:flex-start;
  10901. padding:0px 0px 0px 0px;
  10902. box-sizing:border-box;
  10903. width:100%;
  10904. }
  10905. #u223795_text {
  10906. border-width:0px;
  10907. white-space:nowrap;
  10908. text-transform:none;
  10909. }
  10910. #u223796_div {
  10911. border-width:0px;
  10912. position:absolute;
  10913. left:0px;
  10914. top:0px;
  10915. width:12px;
  10916. height:12px;
  10917. background:inherit;
  10918. background-color:rgba(255, 255, 255, 0);
  10919. box-sizing:border-box;
  10920. border-width:2px;
  10921. border-style:solid;
  10922. border-color:rgba(51, 51, 51, 1);
  10923. border-right:0px;
  10924. border-bottom:0px;
  10925. border-radius:0px;
  10926. border-top-right-radius:0px;
  10927. border-bottom-left-radius:0px;
  10928. -moz-box-shadow:none;
  10929. -webkit-box-shadow:none;
  10930. box-shadow:none;
  10931. }
  10932. #u223796 {
  10933. border-width:0px;
  10934. position:absolute;
  10935. left:952px;
  10936. top:81px;
  10937. width:12px;
  10938. height:12px;
  10939. display:flex;
  10940. -webkit-transform:rotate(315deg);
  10941. -moz-transform:rotate(315deg);
  10942. -ms-transform:rotate(315deg);
  10943. transform:rotate(315deg);
  10944. }
  10945. #u223796 .text {
  10946. position:absolute;
  10947. align-self:center;
  10948. padding:2px 2px 2px 2px;
  10949. box-sizing:border-box;
  10950. width:100%;
  10951. }
  10952. #u223796_text {
  10953. border-width:0px;
  10954. word-wrap:break-word;
  10955. text-transform:none;
  10956. visibility:hidden;
  10957. }
  10958. #u223797_img {
  10959. border-width:0px;
  10960. position:absolute;
  10961. left:0px;
  10962. top:0px;
  10963. width:23px;
  10964. height:23px;
  10965. }
  10966. #u223797 {
  10967. border-width:0px;
  10968. position:absolute;
  10969. left:979px;
  10970. top:76px;
  10971. width:23px;
  10972. height:23px;
  10973. display:flex;
  10974. }
  10975. #u223797 .text {
  10976. position:absolute;
  10977. align-self:center;
  10978. padding:2px 2px 2px 2px;
  10979. box-sizing:border-box;
  10980. width:100%;
  10981. }
  10982. #u223797_text {
  10983. border-width:0px;
  10984. word-wrap:break-word;
  10985. text-transform:none;
  10986. visibility:hidden;
  10987. }
  10988. #u223798_div {
  10989. border-width:0px;
  10990. position:absolute;
  10991. left:0px;
  10992. top:0px;
  10993. width:375px;
  10994. height:731px;
  10995. background:inherit;
  10996. background-color:rgba(242, 242, 242, 0.996078431372549);
  10997. border:none;
  10998. border-top:0px;
  10999. border-radius:23px;
  11000. border-top-left-radius:0px;
  11001. border-top-right-radius:0px;
  11002. -moz-box-shadow:none;
  11003. -webkit-box-shadow:none;
  11004. box-shadow:none;
  11005. }
  11006. #u223798 {
  11007. border-width:0px;
  11008. position:absolute;
  11009. left:937px;
  11010. top:107px;
  11011. width:375px;
  11012. height:731px;
  11013. display:flex;
  11014. }
  11015. #u223798 .text {
  11016. position:absolute;
  11017. align-self:center;
  11018. padding:2px 2px 2px 2px;
  11019. box-sizing:border-box;
  11020. width:100%;
  11021. }
  11022. #u223798_text {
  11023. border-width:0px;
  11024. word-wrap:break-word;
  11025. text-transform:none;
  11026. visibility:hidden;
  11027. }
  11028. #u223799 {
  11029. border-width:0px;
  11030. position:absolute;
  11031. left:0px;
  11032. top:0px;
  11033. width:0px;
  11034. height:0px;
  11035. }
  11036. #u223800_div {
  11037. border-width:0px;
  11038. position:absolute;
  11039. left:0px;
  11040. top:0px;
  11041. width:375px;
  11042. height:380px;
  11043. background:inherit;
  11044. background-color:rgba(255, 255, 255, 1);
  11045. border:none;
  11046. border-radius:0px;
  11047. -moz-box-shadow:none;
  11048. -webkit-box-shadow:none;
  11049. box-shadow:none;
  11050. }
  11051. #u223800 {
  11052. border-width:0px;
  11053. position:absolute;
  11054. left:937px;
  11055. top:107px;
  11056. width:375px;
  11057. height:380px;
  11058. display:flex;
  11059. }
  11060. #u223800 .text {
  11061. position:absolute;
  11062. align-self:center;
  11063. padding:2px 2px 2px 2px;
  11064. box-sizing:border-box;
  11065. width:100%;
  11066. }
  11067. #u223800_text {
  11068. border-width:0px;
  11069. word-wrap:break-word;
  11070. text-transform:none;
  11071. visibility:hidden;
  11072. }
  11073. #u223801_div {
  11074. border-width:0px;
  11075. position:absolute;
  11076. left:0px;
  11077. top:0px;
  11078. width:353px;
  11079. height:160px;
  11080. background:inherit;
  11081. background-color:rgba(255, 255, 255, 0);
  11082. border:none;
  11083. border-top:0px;
  11084. border-right:0px;
  11085. border-bottom:0px;
  11086. border-radius:0px;
  11087. border-top-left-radius:0px;
  11088. border-bottom-left-radius:0px;
  11089. -moz-box-shadow:none;
  11090. -webkit-box-shadow:none;
  11091. box-shadow:none;
  11092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11093. font-weight:400;
  11094. font-style:normal;
  11095. line-height:30px;
  11096. }
  11097. #u223801 {
  11098. border-width:0px;
  11099. position:absolute;
  11100. left:950px;
  11101. top:117px;
  11102. width:353px;
  11103. height:160px;
  11104. display:flex;
  11105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11106. font-weight:400;
  11107. font-style:normal;
  11108. line-height:30px;
  11109. }
  11110. #u223801 .text {
  11111. position:absolute;
  11112. align-self:flex-start;
  11113. padding:5px 10px 5px 0px;
  11114. box-sizing:border-box;
  11115. width:100%;
  11116. }
  11117. #u223801_text {
  11118. border-width:0px;
  11119. word-wrap:break-word;
  11120. text-transform:none;
  11121. }
  11122. #u223802_div {
  11123. border-width:0px;
  11124. position:absolute;
  11125. left:0px;
  11126. top:0px;
  11127. width:353px;
  11128. height:190px;
  11129. background:inherit;
  11130. background-color:rgba(255, 255, 255, 0);
  11131. border:none;
  11132. border-top:0px;
  11133. border-right:0px;
  11134. border-bottom:0px;
  11135. border-radius:0px;
  11136. border-top-left-radius:0px;
  11137. border-bottom-left-radius:0px;
  11138. -moz-box-shadow:none;
  11139. -webkit-box-shadow:none;
  11140. box-shadow:none;
  11141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11142. font-weight:400;
  11143. font-style:normal;
  11144. font-size:12px;
  11145. line-height:30px;
  11146. }
  11147. #u223802 {
  11148. border-width:0px;
  11149. position:absolute;
  11150. left:950px;
  11151. top:292px;
  11152. width:353px;
  11153. height:190px;
  11154. display:flex;
  11155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11156. font-weight:400;
  11157. font-style:normal;
  11158. font-size:12px;
  11159. line-height:30px;
  11160. }
  11161. #u223802 .text {
  11162. position:absolute;
  11163. align-self:flex-start;
  11164. padding:5px 10px 5px 0px;
  11165. box-sizing:border-box;
  11166. width:100%;
  11167. }
  11168. #u223802_text {
  11169. border-width:0px;
  11170. word-wrap:break-word;
  11171. text-transform:none;
  11172. }
  11173. #u223803_img {
  11174. border-width:0px;
  11175. position:absolute;
  11176. left:0px;
  11177. top:0px;
  11178. width:350px;
  11179. height:2px;
  11180. }
  11181. #u223803 {
  11182. border-width:0px;
  11183. position:absolute;
  11184. left:950px;
  11185. top:283px;
  11186. width:349px;
  11187. height:1px;
  11188. display:flex;
  11189. }
  11190. #u223803 .text {
  11191. position:absolute;
  11192. align-self:center;
  11193. padding:2px 2px 2px 2px;
  11194. box-sizing:border-box;
  11195. width:100%;
  11196. }
  11197. #u223803_text {
  11198. border-width:0px;
  11199. word-wrap:break-word;
  11200. text-transform:none;
  11201. visibility:hidden;
  11202. }
  11203. #u223804_div {
  11204. border-width:0px;
  11205. position:absolute;
  11206. left:0px;
  11207. top:0px;
  11208. width:10px;
  11209. height:10px;
  11210. background:inherit;
  11211. background-color:rgba(255, 255, 255, 0);
  11212. box-sizing:border-box;
  11213. border-width:2px;
  11214. border-style:solid;
  11215. border-color:rgba(51, 51, 51, 1);
  11216. border-right:0px;
  11217. border-bottom:0px;
  11218. border-radius:0px;
  11219. border-top-right-radius:0px;
  11220. border-bottom-left-radius:0px;
  11221. -moz-box-shadow:none;
  11222. -webkit-box-shadow:none;
  11223. box-shadow:none;
  11224. }
  11225. #u223804 {
  11226. border-width:0px;
  11227. position:absolute;
  11228. left:1286px;
  11229. top:129px;
  11230. width:10px;
  11231. height:10px;
  11232. display:flex;
  11233. -webkit-transform:rotate(45deg);
  11234. -moz-transform:rotate(45deg);
  11235. -ms-transform:rotate(45deg);
  11236. transform:rotate(45deg);
  11237. }
  11238. #u223804 .text {
  11239. position:absolute;
  11240. align-self:center;
  11241. padding:2px 2px 2px 2px;
  11242. box-sizing:border-box;
  11243. width:100%;
  11244. }
  11245. #u223804_text {
  11246. border-width:0px;
  11247. word-wrap:break-word;
  11248. text-transform:none;
  11249. visibility:hidden;
  11250. }
  11251. #u223805_div {
  11252. border-width:0px;
  11253. position:absolute;
  11254. left:0px;
  11255. top:0px;
  11256. width:37px;
  11257. height:17px;
  11258. background:inherit;
  11259. background-color:rgba(255, 255, 255, 0);
  11260. border:none;
  11261. border-radius:0px;
  11262. -moz-box-shadow:none;
  11263. -webkit-box-shadow:none;
  11264. box-shadow:none;
  11265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11266. font-weight:400;
  11267. font-style:normal;
  11268. font-size:12px;
  11269. color:#1890FF;
  11270. }
  11271. #u223805 {
  11272. border-width:0px;
  11273. position:absolute;
  11274. left:1238px;
  11275. top:124px;
  11276. width:37px;
  11277. height:17px;
  11278. display:flex;
  11279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11280. font-weight:400;
  11281. font-style:normal;
  11282. font-size:12px;
  11283. color:#1890FF;
  11284. }
  11285. #u223805 .text {
  11286. position:absolute;
  11287. align-self:flex-start;
  11288. padding:0px 0px 0px 0px;
  11289. box-sizing:border-box;
  11290. width:100%;
  11291. }
  11292. #u223805_text {
  11293. border-width:0px;
  11294. white-space:nowrap;
  11295. text-transform:none;
  11296. }
  11297. #u223806 {
  11298. border-width:0px;
  11299. position:absolute;
  11300. left:0px;
  11301. top:0px;
  11302. width:0px;
  11303. height:0px;
  11304. }
  11305. #u223807_div {
  11306. border-width:0px;
  11307. position:absolute;
  11308. left:0px;
  11309. top:0px;
  11310. width:375px;
  11311. height:370px;
  11312. background:inherit;
  11313. background-color:rgba(255, 255, 255, 1);
  11314. border:none;
  11315. border-radius:0px;
  11316. -moz-box-shadow:none;
  11317. -webkit-box-shadow:none;
  11318. box-shadow:none;
  11319. }
  11320. #u223807 {
  11321. border-width:0px;
  11322. position:absolute;
  11323. left:937px;
  11324. top:495px;
  11325. width:375px;
  11326. height:370px;
  11327. display:flex;
  11328. }
  11329. #u223807 .text {
  11330. position:absolute;
  11331. align-self:center;
  11332. padding:2px 2px 2px 2px;
  11333. box-sizing:border-box;
  11334. width:100%;
  11335. }
  11336. #u223807_text {
  11337. border-width:0px;
  11338. word-wrap:break-word;
  11339. text-transform:none;
  11340. visibility:hidden;
  11341. }
  11342. #u223808_div {
  11343. border-width:0px;
  11344. position:absolute;
  11345. left:0px;
  11346. top:0px;
  11347. width:95px;
  11348. height:35px;
  11349. background:inherit;
  11350. background-color:rgba(255, 255, 255, 0);
  11351. border:none;
  11352. border-top:0px;
  11353. border-right:0px;
  11354. border-bottom:0px;
  11355. border-radius:0px;
  11356. border-top-left-radius:0px;
  11357. border-bottom-left-radius:0px;
  11358. -moz-box-shadow:none;
  11359. -webkit-box-shadow:none;
  11360. box-shadow:none;
  11361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11362. font-weight:400;
  11363. font-style:normal;
  11364. font-size:14px;
  11365. line-height:25px;
  11366. }
  11367. #u223808 {
  11368. border-width:0px;
  11369. position:absolute;
  11370. left:952px;
  11371. top:505px;
  11372. width:95px;
  11373. height:35px;
  11374. display:flex;
  11375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11376. font-weight:400;
  11377. font-style:normal;
  11378. font-size:14px;
  11379. line-height:25px;
  11380. }
  11381. #u223808 .text {
  11382. position:absolute;
  11383. align-self:center;
  11384. padding:5px 10px 5px 0px;
  11385. box-sizing:border-box;
  11386. width:100%;
  11387. }
  11388. #u223808_text {
  11389. border-width:0px;
  11390. white-space:nowrap;
  11391. text-transform:none;
  11392. }
  11393. #u223809_div {
  11394. border-width:0px;
  11395. position:absolute;
  11396. left:0px;
  11397. top:0px;
  11398. width:358px;
  11399. height:190px;
  11400. background:inherit;
  11401. background-color:rgba(255, 255, 255, 0);
  11402. border:none;
  11403. border-top:0px;
  11404. border-right:0px;
  11405. border-bottom:0px;
  11406. border-radius:0px;
  11407. border-top-left-radius:0px;
  11408. border-bottom-left-radius:0px;
  11409. -moz-box-shadow:none;
  11410. -webkit-box-shadow:none;
  11411. box-shadow:none;
  11412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11413. font-weight:400;
  11414. font-style:normal;
  11415. font-size:12px;
  11416. line-height:30px;
  11417. }
  11418. #u223809 {
  11419. border-width:0px;
  11420. position:absolute;
  11421. left:952px;
  11422. top:544px;
  11423. width:358px;
  11424. height:190px;
  11425. display:flex;
  11426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11427. font-weight:400;
  11428. font-style:normal;
  11429. font-size:12px;
  11430. line-height:30px;
  11431. }
  11432. #u223809 .text {
  11433. position:absolute;
  11434. align-self:flex-start;
  11435. padding:5px 10px 5px 0px;
  11436. box-sizing:border-box;
  11437. width:100%;
  11438. }
  11439. #u223809_text {
  11440. border-width:0px;
  11441. word-wrap:break-word;
  11442. text-transform:none;
  11443. }
  11444. #u223810_div {
  11445. border-width:0px;
  11446. position:absolute;
  11447. left:0px;
  11448. top:0px;
  11449. width:10px;
  11450. height:10px;
  11451. background:inherit;
  11452. background-color:rgba(255, 255, 255, 0);
  11453. box-sizing:border-box;
  11454. border-width:2px;
  11455. border-style:solid;
  11456. border-color:rgba(51, 51, 51, 1);
  11457. border-right:0px;
  11458. border-bottom:0px;
  11459. border-radius:0px;
  11460. border-top-right-radius:0px;
  11461. border-bottom-left-radius:0px;
  11462. -moz-box-shadow:none;
  11463. -webkit-box-shadow:none;
  11464. box-shadow:none;
  11465. }
  11466. #u223810 {
  11467. border-width:0px;
  11468. position:absolute;
  11469. left:1286px;
  11470. top:515px;
  11471. width:10px;
  11472. height:10px;
  11473. display:flex;
  11474. -webkit-transform:rotate(45deg);
  11475. -moz-transform:rotate(45deg);
  11476. -ms-transform:rotate(45deg);
  11477. transform:rotate(45deg);
  11478. }
  11479. #u223810 .text {
  11480. position:absolute;
  11481. align-self:center;
  11482. padding:2px 2px 2px 2px;
  11483. box-sizing:border-box;
  11484. width:100%;
  11485. }
  11486. #u223810_text {
  11487. border-width:0px;
  11488. word-wrap:break-word;
  11489. text-transform:none;
  11490. visibility:hidden;
  11491. }
  11492. #u223811_img {
  11493. border-width:0px;
  11494. position:absolute;
  11495. left:0px;
  11496. top:0px;
  11497. width:350px;
  11498. height:2px;
  11499. }
  11500. #u223811 {
  11501. border-width:0px;
  11502. position:absolute;
  11503. left:950px;
  11504. top:734px;
  11505. width:349px;
  11506. height:1px;
  11507. display:flex;
  11508. }
  11509. #u223811 .text {
  11510. position:absolute;
  11511. align-self:center;
  11512. padding:2px 2px 2px 2px;
  11513. box-sizing:border-box;
  11514. width:100%;
  11515. }
  11516. #u223811_text {
  11517. border-width:0px;
  11518. word-wrap:break-word;
  11519. text-transform:none;
  11520. visibility:hidden;
  11521. }
  11522. #u223812_div {
  11523. border-width:0px;
  11524. position:absolute;
  11525. left:0px;
  11526. top:0px;
  11527. width:358px;
  11528. height:130px;
  11529. background:inherit;
  11530. background-color:rgba(255, 255, 255, 0);
  11531. border:none;
  11532. border-top:0px;
  11533. border-right:0px;
  11534. border-bottom:0px;
  11535. border-radius:0px;
  11536. border-top-left-radius:0px;
  11537. border-bottom-left-radius:0px;
  11538. -moz-box-shadow:none;
  11539. -webkit-box-shadow:none;
  11540. box-shadow:none;
  11541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11542. font-weight:400;
  11543. font-style:normal;
  11544. font-size:12px;
  11545. line-height:30px;
  11546. }
  11547. #u223812 {
  11548. border-width:0px;
  11549. position:absolute;
  11550. left:952px;
  11551. top:734px;
  11552. width:358px;
  11553. height:130px;
  11554. display:flex;
  11555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11556. font-weight:400;
  11557. font-style:normal;
  11558. font-size:12px;
  11559. line-height:30px;
  11560. }
  11561. #u223812 .text {
  11562. position:absolute;
  11563. align-self:flex-start;
  11564. padding:5px 10px 5px 0px;
  11565. box-sizing:border-box;
  11566. width:100%;
  11567. }
  11568. #u223812_text {
  11569. border-width:0px;
  11570. word-wrap:break-word;
  11571. text-transform:none;
  11572. }