styles.css 130 KB

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