styles.css 132 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601
  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. #u155080_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u155080 {
  28. border-width:0px;
  29. position:absolute;
  30. left:927px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u155080 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u155080_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u155081_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. border:none;
  59. border-left:0px;
  60. border-top:0px;
  61. border-right:0px;
  62. border-radius:0px;
  63. border-bottom-right-radius:0px;
  64. border-bottom-left-radius:0px;
  65. -moz-box-shadow:none;
  66. -webkit-box-shadow:none;
  67. box-shadow:none;
  68. }
  69. #u155081 {
  70. border-width:0px;
  71. position:absolute;
  72. left:956px;
  73. top:67px;
  74. width:375px;
  75. height:40px;
  76. display:flex;
  77. }
  78. #u155081 .text {
  79. position:absolute;
  80. align-self:center;
  81. padding:2px 2px 2px 2px;
  82. box-sizing:border-box;
  83. width:100%;
  84. }
  85. #u155081_text {
  86. border-width:0px;
  87. word-wrap:break-word;
  88. text-transform:none;
  89. visibility:hidden;
  90. }
  91. #u155082 {
  92. border-width:0px;
  93. position:absolute;
  94. left:0px;
  95. top:0px;
  96. width:0px;
  97. height:0px;
  98. }
  99. #u155083_div {
  100. border-width:0px;
  101. position:absolute;
  102. left:0px;
  103. top:0px;
  104. width:88px;
  105. height:32px;
  106. background:inherit;
  107. background-color:rgba(255, 255, 255, 1);
  108. box-sizing:border-box;
  109. border-width:1px;
  110. border-style:solid;
  111. border-color:rgba(242, 242, 242, 1);
  112. border-radius:33px;
  113. -moz-box-shadow:none;
  114. -webkit-box-shadow:none;
  115. box-shadow:none;
  116. }
  117. #u155083 {
  118. border-width:0px;
  119. position:absolute;
  120. left:1236px;
  121. top:71px;
  122. width:88px;
  123. height:32px;
  124. display:flex;
  125. }
  126. #u155083 .text {
  127. position:absolute;
  128. align-self:center;
  129. padding:2px 2px 2px 2px;
  130. box-sizing:border-box;
  131. width:100%;
  132. }
  133. #u155083_text {
  134. border-width:0px;
  135. word-wrap:break-word;
  136. text-transform:none;
  137. visibility:hidden;
  138. }
  139. #u155084 {
  140. border-width:0px;
  141. position:absolute;
  142. left:0px;
  143. top:0px;
  144. width:0px;
  145. height:0px;
  146. }
  147. #u155085_img {
  148. border-width:0px;
  149. position:absolute;
  150. left:0px;
  151. top:0px;
  152. width:18px;
  153. height:18px;
  154. }
  155. #u155085 {
  156. border-width:0px;
  157. position:absolute;
  158. left:1299px;
  159. top:78px;
  160. width:18px;
  161. height:18px;
  162. display:flex;
  163. }
  164. #u155085 .text {
  165. position:absolute;
  166. align-self:center;
  167. padding:2px 2px 2px 2px;
  168. box-sizing:border-box;
  169. width:100%;
  170. }
  171. #u155085_text {
  172. border-width:0px;
  173. word-wrap:break-word;
  174. text-transform:none;
  175. visibility:hidden;
  176. }
  177. #u155086_img {
  178. border-width:0px;
  179. position:absolute;
  180. left:0px;
  181. top:0px;
  182. width:6px;
  183. height:6px;
  184. }
  185. #u155086 {
  186. border-width:0px;
  187. position:absolute;
  188. left:1305px;
  189. top:84px;
  190. width:6px;
  191. height:6px;
  192. display:flex;
  193. }
  194. #u155086 .text {
  195. position:absolute;
  196. align-self:center;
  197. padding:2px 2px 2px 2px;
  198. box-sizing:border-box;
  199. width:100%;
  200. }
  201. #u155086_text {
  202. border-width:0px;
  203. word-wrap:break-word;
  204. text-transform:none;
  205. visibility:hidden;
  206. }
  207. #u155087 {
  208. border-width:0px;
  209. position:absolute;
  210. left:0px;
  211. top:0px;
  212. width:0px;
  213. height:0px;
  214. }
  215. #u155088_img {
  216. border-width:0px;
  217. position:absolute;
  218. left:0px;
  219. top:0px;
  220. width:5px;
  221. height:5px;
  222. }
  223. #u155088 {
  224. border-width:0px;
  225. position:absolute;
  226. left:1250px;
  227. top:85px;
  228. width:5px;
  229. height:5px;
  230. display:flex;
  231. }
  232. #u155088 .text {
  233. position:absolute;
  234. align-self:center;
  235. padding:2px 2px 2px 2px;
  236. box-sizing:border-box;
  237. width:100%;
  238. }
  239. #u155088_text {
  240. border-width:0px;
  241. word-wrap:break-word;
  242. text-transform:none;
  243. visibility:hidden;
  244. }
  245. #u155089_img {
  246. border-width:0px;
  247. position:absolute;
  248. left:0px;
  249. top:0px;
  250. width:5px;
  251. height:5px;
  252. }
  253. #u155089 {
  254. border-width:0px;
  255. position:absolute;
  256. left:1266px;
  257. top:85px;
  258. width:5px;
  259. height:5px;
  260. display:flex;
  261. }
  262. #u155089 .text {
  263. position:absolute;
  264. align-self:center;
  265. padding:2px 2px 2px 2px;
  266. box-sizing:border-box;
  267. width:100%;
  268. }
  269. #u155089_text {
  270. border-width:0px;
  271. word-wrap:break-word;
  272. text-transform:none;
  273. visibility:hidden;
  274. }
  275. #u155090_img {
  276. border-width:0px;
  277. position:absolute;
  278. left:0px;
  279. top:0px;
  280. width:7px;
  281. height:7px;
  282. }
  283. #u155090 {
  284. border-width:0px;
  285. position:absolute;
  286. left:1257px;
  287. top:84px;
  288. width:7px;
  289. height:7px;
  290. display:flex;
  291. }
  292. #u155090 .text {
  293. position:absolute;
  294. align-self:center;
  295. padding:2px 2px 2px 2px;
  296. box-sizing:border-box;
  297. width:100%;
  298. }
  299. #u155090_text {
  300. border-width:0px;
  301. word-wrap:break-word;
  302. text-transform:none;
  303. visibility:hidden;
  304. }
  305. #u155091_img {
  306. border-width:0px;
  307. position:absolute;
  308. left:0px;
  309. top:0px;
  310. width:19px;
  311. height:2px;
  312. }
  313. #u155091 {
  314. border-width:0px;
  315. position:absolute;
  316. left:1274px;
  317. top:87px;
  318. width:18px;
  319. height:1px;
  320. display:flex;
  321. -webkit-transform:rotate(90deg);
  322. -moz-transform:rotate(90deg);
  323. -ms-transform:rotate(90deg);
  324. transform:rotate(90deg);
  325. }
  326. #u155091 .text {
  327. position:absolute;
  328. align-self:center;
  329. padding:2px 2px 2px 2px;
  330. box-sizing:border-box;
  331. width:100%;
  332. }
  333. #u155091_text {
  334. border-width:0px;
  335. word-wrap:break-word;
  336. text-transform:none;
  337. visibility:hidden;
  338. }
  339. #u155092_div {
  340. border-width:0px;
  341. position:absolute;
  342. left:0px;
  343. top:0px;
  344. width:375px;
  345. height:50px;
  346. background:inherit;
  347. background-color:rgba(255, 255, 255, 1);
  348. box-sizing:border-box;
  349. border-width:1px;
  350. border-style:solid;
  351. border-color:rgba(242, 242, 242, 1);
  352. border-radius:26px;
  353. border-top-left-radius:0px;
  354. border-top-right-radius:0px;
  355. -moz-box-shadow:none;
  356. -webkit-box-shadow:none;
  357. box-shadow:none;
  358. }
  359. #u155092 {
  360. border-width:0px;
  361. position:absolute;
  362. left:956px;
  363. top:788px;
  364. width:375px;
  365. height:50px;
  366. display:flex;
  367. }
  368. #u155092 .text {
  369. position:absolute;
  370. align-self:center;
  371. padding:2px 2px 2px 2px;
  372. box-sizing:border-box;
  373. width:100%;
  374. }
  375. #u155092_text {
  376. border-width:0px;
  377. word-wrap:break-word;
  378. text-transform:none;
  379. visibility:hidden;
  380. }
  381. #u155093 {
  382. border-width:0px;
  383. position:absolute;
  384. left:0px;
  385. top:0px;
  386. width:0px;
  387. height:0px;
  388. }
  389. #u155094_img {
  390. border-width:0px;
  391. position:absolute;
  392. left:0px;
  393. top:0px;
  394. width:24px;
  395. height:24px;
  396. }
  397. #u155094 {
  398. border-width:0px;
  399. position:absolute;
  400. left:996px;
  401. top:792px;
  402. width:24px;
  403. height:24px;
  404. display:flex;
  405. font-size:8px;
  406. }
  407. #u155094 .text {
  408. position:absolute;
  409. align-self:center;
  410. padding:2px 2px 2px 2px;
  411. box-sizing:border-box;
  412. width:100%;
  413. }
  414. #u155094_text {
  415. border-width:0px;
  416. word-wrap:break-word;
  417. text-transform:none;
  418. }
  419. #u155095_div {
  420. border-width:0px;
  421. position:absolute;
  422. left:0px;
  423. top:0px;
  424. width:25px;
  425. height:17px;
  426. background:inherit;
  427. background-color:rgba(255, 255, 255, 0);
  428. border:none;
  429. border-radius:0px;
  430. -moz-box-shadow:none;
  431. -webkit-box-shadow:none;
  432. box-shadow:none;
  433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  434. font-weight:400;
  435. font-style:normal;
  436. font-size:12px;
  437. }
  438. #u155095 {
  439. border-width:0px;
  440. position:absolute;
  441. left:996px;
  442. top:817px;
  443. width:25px;
  444. height:17px;
  445. display:flex;
  446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  447. font-weight:400;
  448. font-style:normal;
  449. font-size:12px;
  450. }
  451. #u155095 .text {
  452. position:absolute;
  453. align-self:flex-start;
  454. padding:0px 0px 0px 0px;
  455. box-sizing:border-box;
  456. width:100%;
  457. }
  458. #u155095_text {
  459. border-width:0px;
  460. white-space:nowrap;
  461. text-transform:none;
  462. }
  463. #u155096 {
  464. border-width:0px;
  465. position:absolute;
  466. left:0px;
  467. top:0px;
  468. width:0px;
  469. height:0px;
  470. }
  471. #u155097_img {
  472. border-width:0px;
  473. position:absolute;
  474. left:0px;
  475. top:0px;
  476. width:24px;
  477. height:24px;
  478. }
  479. #u155097 {
  480. border-width:0px;
  481. position:absolute;
  482. left:1266px;
  483. top:794px;
  484. width:24px;
  485. height:24px;
  486. display:flex;
  487. font-size:8px;
  488. }
  489. #u155097 .text {
  490. position:absolute;
  491. align-self:center;
  492. padding:2px 2px 2px 2px;
  493. box-sizing:border-box;
  494. width:100%;
  495. }
  496. #u155097_text {
  497. border-width:0px;
  498. word-wrap:break-word;
  499. text-transform:none;
  500. }
  501. #u155098_div {
  502. border-width:0px;
  503. position:absolute;
  504. left:0px;
  505. top:0px;
  506. width:25px;
  507. height:17px;
  508. background:inherit;
  509. background-color:rgba(255, 255, 255, 0);
  510. border:none;
  511. border-radius:0px;
  512. -moz-box-shadow:none;
  513. -webkit-box-shadow:none;
  514. box-shadow:none;
  515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  516. font-weight:400;
  517. font-style:normal;
  518. font-size:12px;
  519. }
  520. #u155098 {
  521. border-width:0px;
  522. position:absolute;
  523. left:1266px;
  524. top:819px;
  525. width:25px;
  526. height:17px;
  527. display:flex;
  528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  529. font-weight:400;
  530. font-style:normal;
  531. font-size:12px;
  532. }
  533. #u155098 .text {
  534. position:absolute;
  535. align-self:flex-start;
  536. padding:0px 0px 0px 0px;
  537. box-sizing:border-box;
  538. width:100%;
  539. }
  540. #u155098_text {
  541. border-width:0px;
  542. white-space:nowrap;
  543. text-transform:none;
  544. }
  545. #u155099_div {
  546. border-width:0px;
  547. position:absolute;
  548. left:0px;
  549. top:0px;
  550. width:375px;
  551. height:681px;
  552. background:inherit;
  553. background-color:rgba(242, 242, 242, 0.462745098039216);
  554. border:none;
  555. border-radius:0px;
  556. -moz-box-shadow:none;
  557. -webkit-box-shadow:none;
  558. box-shadow:none;
  559. }
  560. #u155099 {
  561. border-width:0px;
  562. position:absolute;
  563. left:956px;
  564. top:107px;
  565. width:375px;
  566. height:681px;
  567. display:flex;
  568. }
  569. #u155099 .text {
  570. position:absolute;
  571. align-self:center;
  572. padding:2px 2px 2px 2px;
  573. box-sizing:border-box;
  574. width:100%;
  575. }
  576. #u155099_text {
  577. border-width:0px;
  578. word-wrap:break-word;
  579. text-transform:none;
  580. visibility:hidden;
  581. }
  582. #u155100 {
  583. border-width:0px;
  584. position:absolute;
  585. left:0px;
  586. top:0px;
  587. width:0px;
  588. height:0px;
  589. }
  590. #u155101_img {
  591. border-width:0px;
  592. position:absolute;
  593. left:0px;
  594. top:0px;
  595. width:24px;
  596. height:24px;
  597. }
  598. #u155101 {
  599. border-width:0px;
  600. position:absolute;
  601. left:1178px;
  602. top:792px;
  603. width:24px;
  604. height:24px;
  605. display:flex;
  606. font-size:8px;
  607. }
  608. #u155101 .text {
  609. position:absolute;
  610. align-self:center;
  611. padding:2px 2px 2px 2px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u155101_text {
  616. border-width:0px;
  617. word-wrap:break-word;
  618. text-transform:none;
  619. }
  620. #u155102_div {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:37px;
  626. height:17px;
  627. background:inherit;
  628. background-color:rgba(255, 255, 255, 0);
  629. border:none;
  630. border-radius:0px;
  631. -moz-box-shadow:none;
  632. -webkit-box-shadow:none;
  633. box-shadow:none;
  634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  635. font-weight:400;
  636. font-style:normal;
  637. font-size:12px;
  638. }
  639. #u155102 {
  640. border-width:0px;
  641. position:absolute;
  642. left:1172px;
  643. top:817px;
  644. width:37px;
  645. height:17px;
  646. display:flex;
  647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  648. font-weight:400;
  649. font-style:normal;
  650. font-size:12px;
  651. }
  652. #u155102 .text {
  653. position:absolute;
  654. align-self:flex-start;
  655. padding:0px 0px 0px 0px;
  656. box-sizing:border-box;
  657. width:100%;
  658. }
  659. #u155102_text {
  660. border-width:0px;
  661. white-space:nowrap;
  662. text-transform:none;
  663. }
  664. #u155103 {
  665. border-width:0px;
  666. position:absolute;
  667. left:0px;
  668. top:0px;
  669. width:0px;
  670. height:0px;
  671. }
  672. #u155104_img {
  673. border-width:0px;
  674. position:absolute;
  675. left:0px;
  676. top:0px;
  677. width:24px;
  678. height:24px;
  679. }
  680. #u155104 {
  681. border-width:0px;
  682. position:absolute;
  683. left:1084px;
  684. top:792px;
  685. width:24px;
  686. height:24px;
  687. display:flex;
  688. font-size:8px;
  689. }
  690. #u155104 .text {
  691. position:absolute;
  692. align-self:center;
  693. padding:2px 2px 2px 2px;
  694. box-sizing:border-box;
  695. width:100%;
  696. }
  697. #u155104_text {
  698. border-width:0px;
  699. word-wrap:break-word;
  700. text-transform:none;
  701. }
  702. #u155105_div {
  703. border-width:0px;
  704. position:absolute;
  705. left:0px;
  706. top:0px;
  707. width:37px;
  708. height:17px;
  709. background:inherit;
  710. background-color:rgba(255, 255, 255, 0);
  711. border:none;
  712. border-radius:0px;
  713. -moz-box-shadow:none;
  714. -webkit-box-shadow:none;
  715. box-shadow:none;
  716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  717. font-weight:400;
  718. font-style:normal;
  719. font-size:12px;
  720. }
  721. #u155105 {
  722. border-width:0px;
  723. position:absolute;
  724. left:1078px;
  725. top:817px;
  726. width:37px;
  727. height:17px;
  728. display:flex;
  729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  730. font-weight:400;
  731. font-style:normal;
  732. font-size:12px;
  733. }
  734. #u155105 .text {
  735. position:absolute;
  736. align-self:flex-start;
  737. padding:0px 0px 0px 0px;
  738. box-sizing:border-box;
  739. width:100%;
  740. }
  741. #u155105_text {
  742. border-width:0px;
  743. white-space:nowrap;
  744. text-transform:none;
  745. }
  746. #u155106_div {
  747. border-width:0px;
  748. position:absolute;
  749. left:0px;
  750. top:0px;
  751. width:375px;
  752. height:732px;
  753. background:inherit;
  754. background-color:rgba(244, 244, 244, 1);
  755. box-sizing:border-box;
  756. border-width:1px;
  757. border-style:solid;
  758. border-color:rgba(242, 242, 242, 1);
  759. border-radius:26px;
  760. border-top-left-radius:0px;
  761. border-top-right-radius:0px;
  762. -moz-box-shadow:none;
  763. -webkit-box-shadow:none;
  764. box-shadow:none;
  765. }
  766. #u155106 {
  767. border-width:0px;
  768. position:absolute;
  769. left:956px;
  770. top:107px;
  771. width:375px;
  772. height:732px;
  773. display:flex;
  774. }
  775. #u155106 .text {
  776. position:absolute;
  777. align-self:center;
  778. padding:2px 2px 2px 2px;
  779. box-sizing:border-box;
  780. width:100%;
  781. }
  782. #u155106_text {
  783. border-width:0px;
  784. word-wrap:break-word;
  785. text-transform:none;
  786. visibility:hidden;
  787. }
  788. #u155107_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:376px;
  794. height:818px;
  795. }
  796. #u155107 {
  797. border-width:0px;
  798. position:absolute;
  799. left:955px;
  800. top:24px;
  801. width:376px;
  802. height:818px;
  803. display:flex;
  804. }
  805. #u155107 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u155107_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u155109_img {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:433px;
  824. height:865px;
  825. }
  826. #u155109 {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:433px;
  832. height:865px;
  833. display:flex;
  834. }
  835. #u155109 .text {
  836. position:absolute;
  837. align-self:center;
  838. padding:2px 2px 2px 2px;
  839. box-sizing:border-box;
  840. width:100%;
  841. }
  842. #u155109_text {
  843. border-width:0px;
  844. word-wrap:break-word;
  845. text-transform:none;
  846. visibility:hidden;
  847. }
  848. #u155110_div {
  849. border-width:0px;
  850. position:absolute;
  851. left:0px;
  852. top:0px;
  853. width:375px;
  854. height:40px;
  855. background:inherit;
  856. background-color:rgba(255, 255, 255, 1);
  857. box-sizing:border-box;
  858. border-width:1px;
  859. border-style:solid;
  860. border-color:rgba(215, 215, 215, 1);
  861. border-left:0px;
  862. border-top:0px;
  863. border-right:0px;
  864. border-radius:0px;
  865. border-bottom-right-radius:0px;
  866. border-bottom-left-radius:0px;
  867. -moz-box-shadow:none;
  868. -webkit-box-shadow:none;
  869. box-shadow:none;
  870. }
  871. #u155110 {
  872. border-width:0px;
  873. position:absolute;
  874. left:29px;
  875. top:67px;
  876. width:375px;
  877. height:40px;
  878. display:flex;
  879. }
  880. #u155110 .text {
  881. position:absolute;
  882. align-self:center;
  883. padding:2px 2px 2px 2px;
  884. box-sizing:border-box;
  885. width:100%;
  886. }
  887. #u155110_text {
  888. border-width:0px;
  889. word-wrap:break-word;
  890. text-transform:none;
  891. visibility:hidden;
  892. }
  893. #u155111 {
  894. border-width:0px;
  895. position:absolute;
  896. left:0px;
  897. top:0px;
  898. width:0px;
  899. height:0px;
  900. }
  901. #u155112_div {
  902. border-width:0px;
  903. position:absolute;
  904. left:0px;
  905. top:0px;
  906. width:88px;
  907. height:32px;
  908. background:inherit;
  909. background-color:rgba(255, 255, 255, 1);
  910. box-sizing:border-box;
  911. border-width:1px;
  912. border-style:solid;
  913. border-color:rgba(242, 242, 242, 1);
  914. border-radius:33px;
  915. -moz-box-shadow:none;
  916. -webkit-box-shadow:none;
  917. box-shadow:none;
  918. }
  919. #u155112 {
  920. border-width:0px;
  921. position:absolute;
  922. left:309px;
  923. top:71px;
  924. width:88px;
  925. height:32px;
  926. display:flex;
  927. }
  928. #u155112 .text {
  929. position:absolute;
  930. align-self:center;
  931. padding:2px 2px 2px 2px;
  932. box-sizing:border-box;
  933. width:100%;
  934. }
  935. #u155112_text {
  936. border-width:0px;
  937. word-wrap:break-word;
  938. text-transform:none;
  939. visibility:hidden;
  940. }
  941. #u155113 {
  942. border-width:0px;
  943. position:absolute;
  944. left:0px;
  945. top:0px;
  946. width:0px;
  947. height:0px;
  948. }
  949. #u155114_img {
  950. border-width:0px;
  951. position:absolute;
  952. left:0px;
  953. top:0px;
  954. width:18px;
  955. height:18px;
  956. }
  957. #u155114 {
  958. border-width:0px;
  959. position:absolute;
  960. left:372px;
  961. top:78px;
  962. width:18px;
  963. height:18px;
  964. display:flex;
  965. }
  966. #u155114 .text {
  967. position:absolute;
  968. align-self:center;
  969. padding:2px 2px 2px 2px;
  970. box-sizing:border-box;
  971. width:100%;
  972. }
  973. #u155114_text {
  974. border-width:0px;
  975. word-wrap:break-word;
  976. text-transform:none;
  977. visibility:hidden;
  978. }
  979. #u155115_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:6px;
  985. height:6px;
  986. }
  987. #u155115 {
  988. border-width:0px;
  989. position:absolute;
  990. left:378px;
  991. top:84px;
  992. width:6px;
  993. height:6px;
  994. display:flex;
  995. }
  996. #u155115 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u155115_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u155116 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. height:0px;
  1016. }
  1017. #u155117_img {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:0px;
  1021. top:0px;
  1022. width:5px;
  1023. height:5px;
  1024. }
  1025. #u155117 {
  1026. border-width:0px;
  1027. position:absolute;
  1028. left:323px;
  1029. top:85px;
  1030. width:5px;
  1031. height:5px;
  1032. display:flex;
  1033. }
  1034. #u155117 .text {
  1035. position:absolute;
  1036. align-self:center;
  1037. padding:2px 2px 2px 2px;
  1038. box-sizing:border-box;
  1039. width:100%;
  1040. }
  1041. #u155117_text {
  1042. border-width:0px;
  1043. word-wrap:break-word;
  1044. text-transform:none;
  1045. visibility:hidden;
  1046. }
  1047. #u155118_img {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:0px;
  1051. top:0px;
  1052. width:5px;
  1053. height:5px;
  1054. }
  1055. #u155118 {
  1056. border-width:0px;
  1057. position:absolute;
  1058. left:339px;
  1059. top:85px;
  1060. width:5px;
  1061. height:5px;
  1062. display:flex;
  1063. }
  1064. #u155118 .text {
  1065. position:absolute;
  1066. align-self:center;
  1067. padding:2px 2px 2px 2px;
  1068. box-sizing:border-box;
  1069. width:100%;
  1070. }
  1071. #u155118_text {
  1072. border-width:0px;
  1073. word-wrap:break-word;
  1074. text-transform:none;
  1075. visibility:hidden;
  1076. }
  1077. #u155119_img {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:0px;
  1081. top:0px;
  1082. width:7px;
  1083. height:7px;
  1084. }
  1085. #u155119 {
  1086. border-width:0px;
  1087. position:absolute;
  1088. left:330px;
  1089. top:84px;
  1090. width:7px;
  1091. height:7px;
  1092. display:flex;
  1093. }
  1094. #u155119 .text {
  1095. position:absolute;
  1096. align-self:center;
  1097. padding:2px 2px 2px 2px;
  1098. box-sizing:border-box;
  1099. width:100%;
  1100. }
  1101. #u155119_text {
  1102. border-width:0px;
  1103. word-wrap:break-word;
  1104. text-transform:none;
  1105. visibility:hidden;
  1106. }
  1107. #u155120_img {
  1108. border-width:0px;
  1109. position:absolute;
  1110. left:0px;
  1111. top:0px;
  1112. width:19px;
  1113. height:2px;
  1114. }
  1115. #u155120 {
  1116. border-width:0px;
  1117. position:absolute;
  1118. left:347px;
  1119. top:87px;
  1120. width:18px;
  1121. height:1px;
  1122. display:flex;
  1123. -webkit-transform:rotate(90deg);
  1124. -moz-transform:rotate(90deg);
  1125. -ms-transform:rotate(90deg);
  1126. transform:rotate(90deg);
  1127. }
  1128. #u155120 .text {
  1129. position:absolute;
  1130. align-self:center;
  1131. padding:2px 2px 2px 2px;
  1132. box-sizing:border-box;
  1133. width:100%;
  1134. }
  1135. #u155120_text {
  1136. border-width:0px;
  1137. word-wrap:break-word;
  1138. text-transform:none;
  1139. visibility:hidden;
  1140. }
  1141. #u155121_img {
  1142. border-width:0px;
  1143. position:absolute;
  1144. left:0px;
  1145. top:0px;
  1146. width:375px;
  1147. height:44px;
  1148. }
  1149. #u155121 {
  1150. border-width:0px;
  1151. position:absolute;
  1152. left:29px;
  1153. top:24px;
  1154. width:375px;
  1155. height:44px;
  1156. display:flex;
  1157. }
  1158. #u155121 .text {
  1159. position:absolute;
  1160. align-self:center;
  1161. padding:2px 2px 2px 2px;
  1162. box-sizing:border-box;
  1163. width:100%;
  1164. }
  1165. #u155121_text {
  1166. border-width:0px;
  1167. word-wrap:break-word;
  1168. text-transform:none;
  1169. visibility:hidden;
  1170. }
  1171. #u155122_div {
  1172. border-width:0px;
  1173. position:absolute;
  1174. left:0px;
  1175. top:0px;
  1176. width:375px;
  1177. height:50px;
  1178. background:inherit;
  1179. background-color:rgba(255, 255, 255, 1);
  1180. box-sizing:border-box;
  1181. border-width:1px;
  1182. border-style:solid;
  1183. border-color:rgba(242, 242, 242, 1);
  1184. border-radius:26px;
  1185. border-top-left-radius:0px;
  1186. border-top-right-radius:0px;
  1187. -moz-box-shadow:none;
  1188. -webkit-box-shadow:none;
  1189. box-shadow:none;
  1190. }
  1191. #u155122 {
  1192. border-width:0px;
  1193. position:absolute;
  1194. left:29px;
  1195. top:788px;
  1196. width:375px;
  1197. height:50px;
  1198. display:flex;
  1199. }
  1200. #u155122 .text {
  1201. position:absolute;
  1202. align-self:center;
  1203. padding:2px 2px 2px 2px;
  1204. box-sizing:border-box;
  1205. width:100%;
  1206. }
  1207. #u155122_text {
  1208. border-width:0px;
  1209. word-wrap:break-word;
  1210. text-transform:none;
  1211. visibility:hidden;
  1212. }
  1213. #u155123 {
  1214. border-width:0px;
  1215. position:absolute;
  1216. left:0px;
  1217. top:0px;
  1218. width:0px;
  1219. height:0px;
  1220. }
  1221. #u155124_img {
  1222. border-width:0px;
  1223. position:absolute;
  1224. left:0px;
  1225. top:0px;
  1226. width:24px;
  1227. height:24px;
  1228. }
  1229. #u155124 {
  1230. border-width:0px;
  1231. position:absolute;
  1232. left:69px;
  1233. top:792px;
  1234. width:24px;
  1235. height:24px;
  1236. display:flex;
  1237. font-size:8px;
  1238. }
  1239. #u155124 .text {
  1240. position:absolute;
  1241. align-self:center;
  1242. padding:2px 2px 2px 2px;
  1243. box-sizing:border-box;
  1244. width:100%;
  1245. }
  1246. #u155124_text {
  1247. border-width:0px;
  1248. word-wrap:break-word;
  1249. text-transform:none;
  1250. }
  1251. #u155125_div {
  1252. border-width:0px;
  1253. position:absolute;
  1254. left:0px;
  1255. top:0px;
  1256. width:25px;
  1257. height:17px;
  1258. background:inherit;
  1259. background-color:rgba(255, 255, 255, 0);
  1260. border:none;
  1261. border-radius:0px;
  1262. -moz-box-shadow:none;
  1263. -webkit-box-shadow:none;
  1264. box-shadow:none;
  1265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1266. font-weight:400;
  1267. font-style:normal;
  1268. font-size:12px;
  1269. }
  1270. #u155125 {
  1271. border-width:0px;
  1272. position:absolute;
  1273. left:69px;
  1274. top:817px;
  1275. width:25px;
  1276. height:17px;
  1277. display:flex;
  1278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1279. font-weight:400;
  1280. font-style:normal;
  1281. font-size:12px;
  1282. }
  1283. #u155125 .text {
  1284. position:absolute;
  1285. align-self:flex-start;
  1286. padding:0px 0px 0px 0px;
  1287. box-sizing:border-box;
  1288. width:100%;
  1289. }
  1290. #u155125_text {
  1291. border-width:0px;
  1292. white-space:nowrap;
  1293. text-transform:none;
  1294. }
  1295. #u155126 {
  1296. border-width:0px;
  1297. position:absolute;
  1298. left:0px;
  1299. top:0px;
  1300. width:0px;
  1301. height:0px;
  1302. }
  1303. #u155127_img {
  1304. border-width:0px;
  1305. position:absolute;
  1306. left:0px;
  1307. top:0px;
  1308. width:24px;
  1309. height:24px;
  1310. }
  1311. #u155127 {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:339px;
  1315. top:794px;
  1316. width:24px;
  1317. height:24px;
  1318. display:flex;
  1319. font-size:8px;
  1320. }
  1321. #u155127 .text {
  1322. position:absolute;
  1323. align-self:center;
  1324. padding:2px 2px 2px 2px;
  1325. box-sizing:border-box;
  1326. width:100%;
  1327. }
  1328. #u155127_text {
  1329. border-width:0px;
  1330. word-wrap:break-word;
  1331. text-transform:none;
  1332. }
  1333. #u155128_div {
  1334. border-width:0px;
  1335. position:absolute;
  1336. left:0px;
  1337. top:0px;
  1338. width:25px;
  1339. height:17px;
  1340. background:inherit;
  1341. background-color:rgba(255, 255, 255, 0);
  1342. border:none;
  1343. border-radius:0px;
  1344. -moz-box-shadow:none;
  1345. -webkit-box-shadow:none;
  1346. box-shadow:none;
  1347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1348. font-weight:400;
  1349. font-style:normal;
  1350. font-size:12px;
  1351. }
  1352. #u155128 {
  1353. border-width:0px;
  1354. position:absolute;
  1355. left:339px;
  1356. top:819px;
  1357. width:25px;
  1358. height:17px;
  1359. display:flex;
  1360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1361. font-weight:400;
  1362. font-style:normal;
  1363. font-size:12px;
  1364. }
  1365. #u155128 .text {
  1366. position:absolute;
  1367. align-self:flex-start;
  1368. padding:0px 0px 0px 0px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u155128_text {
  1373. border-width:0px;
  1374. white-space:nowrap;
  1375. text-transform:none;
  1376. }
  1377. #u155129_div {
  1378. border-width:0px;
  1379. position:absolute;
  1380. left:0px;
  1381. top:0px;
  1382. width:375px;
  1383. height:681px;
  1384. background:inherit;
  1385. background-color:rgba(242, 242, 242, 0.462745098039216);
  1386. border:none;
  1387. border-radius:0px;
  1388. -moz-box-shadow:none;
  1389. -webkit-box-shadow:none;
  1390. box-shadow:none;
  1391. }
  1392. #u155129 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:29px;
  1396. top:107px;
  1397. width:375px;
  1398. height:681px;
  1399. display:flex;
  1400. }
  1401. #u155129 .text {
  1402. position:absolute;
  1403. align-self:center;
  1404. padding:2px 2px 2px 2px;
  1405. box-sizing:border-box;
  1406. width:100%;
  1407. }
  1408. #u155129_text {
  1409. border-width:0px;
  1410. word-wrap:break-word;
  1411. text-transform:none;
  1412. visibility:hidden;
  1413. }
  1414. #u155130 {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:0px;
  1418. top:0px;
  1419. width:0px;
  1420. height:0px;
  1421. }
  1422. #u155131_img {
  1423. border-width:0px;
  1424. position:absolute;
  1425. left:0px;
  1426. top:0px;
  1427. width:24px;
  1428. height:24px;
  1429. }
  1430. #u155131 {
  1431. border-width:0px;
  1432. position:absolute;
  1433. left:251px;
  1434. top:792px;
  1435. width:24px;
  1436. height:24px;
  1437. display:flex;
  1438. font-size:8px;
  1439. }
  1440. #u155131 .text {
  1441. position:absolute;
  1442. align-self:center;
  1443. padding:2px 2px 2px 2px;
  1444. box-sizing:border-box;
  1445. width:100%;
  1446. }
  1447. #u155131_text {
  1448. border-width:0px;
  1449. word-wrap:break-word;
  1450. text-transform:none;
  1451. }
  1452. #u155132_div {
  1453. border-width:0px;
  1454. position:absolute;
  1455. left:0px;
  1456. top:0px;
  1457. width:37px;
  1458. height:17px;
  1459. background:inherit;
  1460. background-color:rgba(255, 255, 255, 0);
  1461. border:none;
  1462. border-radius:0px;
  1463. -moz-box-shadow:none;
  1464. -webkit-box-shadow:none;
  1465. box-shadow:none;
  1466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1467. font-weight:400;
  1468. font-style:normal;
  1469. font-size:12px;
  1470. }
  1471. #u155132 {
  1472. border-width:0px;
  1473. position:absolute;
  1474. left:245px;
  1475. top:817px;
  1476. width:37px;
  1477. height:17px;
  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. }
  1484. #u155132 .text {
  1485. position:absolute;
  1486. align-self:flex-start;
  1487. padding:0px 0px 0px 0px;
  1488. box-sizing:border-box;
  1489. width:100%;
  1490. }
  1491. #u155132_text {
  1492. border-width:0px;
  1493. white-space:nowrap;
  1494. text-transform:none;
  1495. }
  1496. #u155133 {
  1497. border-width:0px;
  1498. position:absolute;
  1499. left:0px;
  1500. top:0px;
  1501. width:0px;
  1502. height:0px;
  1503. }
  1504. #u155134_img {
  1505. border-width:0px;
  1506. position:absolute;
  1507. left:0px;
  1508. top:0px;
  1509. width:24px;
  1510. height:24px;
  1511. }
  1512. #u155134 {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:157px;
  1516. top:792px;
  1517. width:24px;
  1518. height:24px;
  1519. display:flex;
  1520. font-size:8px;
  1521. }
  1522. #u155134 .text {
  1523. position:absolute;
  1524. align-self:center;
  1525. padding:2px 2px 2px 2px;
  1526. box-sizing:border-box;
  1527. width:100%;
  1528. }
  1529. #u155134_text {
  1530. border-width:0px;
  1531. word-wrap:break-word;
  1532. text-transform:none;
  1533. }
  1534. #u155135_div {
  1535. border-width:0px;
  1536. position:absolute;
  1537. left:0px;
  1538. top:0px;
  1539. width:37px;
  1540. height:17px;
  1541. background:inherit;
  1542. background-color:rgba(255, 255, 255, 0);
  1543. border:none;
  1544. border-radius:0px;
  1545. -moz-box-shadow:none;
  1546. -webkit-box-shadow:none;
  1547. box-shadow:none;
  1548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1549. font-weight:400;
  1550. font-style:normal;
  1551. font-size:12px;
  1552. }
  1553. #u155135 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:151px;
  1557. top:817px;
  1558. width:37px;
  1559. height:17px;
  1560. display:flex;
  1561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1562. font-weight:400;
  1563. font-style:normal;
  1564. font-size:12px;
  1565. }
  1566. #u155135 .text {
  1567. position:absolute;
  1568. align-self:flex-start;
  1569. padding:0px 0px 0px 0px;
  1570. box-sizing:border-box;
  1571. width:100%;
  1572. }
  1573. #u155135_text {
  1574. border-width:0px;
  1575. white-space:nowrap;
  1576. text-transform:none;
  1577. }
  1578. #u155136_div {
  1579. border-width:0px;
  1580. position:absolute;
  1581. left:0px;
  1582. top:0px;
  1583. width:375px;
  1584. height:772px;
  1585. background:inherit;
  1586. background-color:rgba(24, 144, 255, 1);
  1587. border:none;
  1588. border-top:0px;
  1589. border-radius:28px;
  1590. border-top-left-radius:0px;
  1591. border-top-right-radius:0px;
  1592. -moz-box-shadow:none;
  1593. -webkit-box-shadow:none;
  1594. box-shadow:none;
  1595. }
  1596. #u155136 {
  1597. border-width:0px;
  1598. position:absolute;
  1599. left:29px;
  1600. top:68px;
  1601. width:375px;
  1602. height:772px;
  1603. display:flex;
  1604. }
  1605. #u155136 .text {
  1606. position:absolute;
  1607. align-self:center;
  1608. padding:2px 2px 2px 2px;
  1609. box-sizing:border-box;
  1610. width:100%;
  1611. }
  1612. #u155136_text {
  1613. border-width:0px;
  1614. word-wrap:break-word;
  1615. text-transform:none;
  1616. visibility:hidden;
  1617. }
  1618. #u155137_div {
  1619. border-width:0px;
  1620. position:absolute;
  1621. left:0px;
  1622. top:0px;
  1623. width:12px;
  1624. height:12px;
  1625. background:inherit;
  1626. background-color:rgba(255, 255, 255, 0);
  1627. box-sizing:border-box;
  1628. border-width:2px;
  1629. border-style:solid;
  1630. border-color:rgba(255, 255, 255, 1);
  1631. border-right:0px;
  1632. border-bottom:0px;
  1633. border-radius:0px;
  1634. border-top-right-radius:0px;
  1635. border-bottom-left-radius:0px;
  1636. -moz-box-shadow:none;
  1637. -webkit-box-shadow:none;
  1638. box-shadow:none;
  1639. }
  1640. #u155137 {
  1641. border-width:0px;
  1642. position:absolute;
  1643. left:39px;
  1644. top:81px;
  1645. width:12px;
  1646. height:12px;
  1647. display:flex;
  1648. -webkit-transform:rotate(315deg);
  1649. -moz-transform:rotate(315deg);
  1650. -ms-transform:rotate(315deg);
  1651. transform:rotate(315deg);
  1652. }
  1653. #u155137 .text {
  1654. position:absolute;
  1655. align-self:center;
  1656. padding:2px 2px 2px 2px;
  1657. box-sizing:border-box;
  1658. width:100%;
  1659. }
  1660. #u155137_text {
  1661. border-width:0px;
  1662. word-wrap:break-word;
  1663. text-transform:none;
  1664. visibility:hidden;
  1665. }
  1666. #u155138 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:0px;
  1670. top:0px;
  1671. width:0px;
  1672. height:0px;
  1673. }
  1674. #u155139_div {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:0px;
  1678. top:0px;
  1679. width:375px;
  1680. height:60px;
  1681. background:inherit;
  1682. background-color:rgba(255, 255, 255, 1);
  1683. border:none;
  1684. border-top:0px;
  1685. border-radius:28px;
  1686. border-top-left-radius:0px;
  1687. border-top-right-radius:0px;
  1688. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1689. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1690. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1692. font-weight:400;
  1693. font-style:normal;
  1694. font-size:14px;
  1695. color:#FFFFFF;
  1696. }
  1697. #u155139 {
  1698. border-width:0px;
  1699. position:absolute;
  1700. left:29px;
  1701. top:780px;
  1702. width:375px;
  1703. height:60px;
  1704. display:flex;
  1705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1706. font-weight:400;
  1707. font-style:normal;
  1708. font-size:14px;
  1709. color:#FFFFFF;
  1710. }
  1711. #u155139 .text {
  1712. position:absolute;
  1713. align-self:center;
  1714. padding:2px 2px 2px 2px;
  1715. box-sizing:border-box;
  1716. width:100%;
  1717. }
  1718. #u155139_text {
  1719. border-width:0px;
  1720. word-wrap:break-word;
  1721. text-transform:none;
  1722. visibility:hidden;
  1723. }
  1724. #u155140_div {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:0px;
  1728. top:0px;
  1729. width:324px;
  1730. height:40px;
  1731. background:inherit;
  1732. background-color:rgba(0, 137, 254, 1);
  1733. border:none;
  1734. border-radius:63px;
  1735. -moz-box-shadow:none;
  1736. -webkit-box-shadow:none;
  1737. box-shadow:none;
  1738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1739. font-weight:400;
  1740. font-style:normal;
  1741. font-size:14px;
  1742. color:#FFFFFF;
  1743. }
  1744. #u155140 {
  1745. border-width:0px;
  1746. position:absolute;
  1747. left:57px;
  1748. top:789px;
  1749. width:324px;
  1750. height:40px;
  1751. display:flex;
  1752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1753. font-weight:400;
  1754. font-style:normal;
  1755. font-size:14px;
  1756. color:#FFFFFF;
  1757. }
  1758. #u155140 .text {
  1759. position:absolute;
  1760. align-self:center;
  1761. padding:2px 2px 2px 2px;
  1762. box-sizing:border-box;
  1763. width:100%;
  1764. }
  1765. #u155140_text {
  1766. border-width:0px;
  1767. word-wrap:break-word;
  1768. text-transform:none;
  1769. }
  1770. #u155141 {
  1771. border-width:0px;
  1772. position:absolute;
  1773. left:0px;
  1774. top:0px;
  1775. width:0px;
  1776. height:0px;
  1777. }
  1778. #u155142_div {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:0px;
  1782. top:0px;
  1783. width:88px;
  1784. height:32px;
  1785. background:inherit;
  1786. background-color:rgba(255, 255, 255, 1);
  1787. box-sizing:border-box;
  1788. border-width:1px;
  1789. border-style:solid;
  1790. border-color:rgba(242, 242, 242, 1);
  1791. border-radius:33px;
  1792. -moz-box-shadow:none;
  1793. -webkit-box-shadow:none;
  1794. box-shadow:none;
  1795. }
  1796. #u155142 {
  1797. border-width:0px;
  1798. position:absolute;
  1799. left:309px;
  1800. top:71px;
  1801. width:88px;
  1802. height:32px;
  1803. display:flex;
  1804. }
  1805. #u155142 .text {
  1806. position:absolute;
  1807. align-self:center;
  1808. padding:2px 2px 2px 2px;
  1809. box-sizing:border-box;
  1810. width:100%;
  1811. }
  1812. #u155142_text {
  1813. border-width:0px;
  1814. word-wrap:break-word;
  1815. text-transform:none;
  1816. visibility:hidden;
  1817. }
  1818. #u155143 {
  1819. border-width:0px;
  1820. position:absolute;
  1821. left:0px;
  1822. top:0px;
  1823. width:0px;
  1824. height:0px;
  1825. }
  1826. #u155144_img {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:0px;
  1830. top:0px;
  1831. width:18px;
  1832. height:18px;
  1833. }
  1834. #u155144 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:372px;
  1838. top:78px;
  1839. width:18px;
  1840. height:18px;
  1841. display:flex;
  1842. }
  1843. #u155144 .text {
  1844. position:absolute;
  1845. align-self:center;
  1846. padding:2px 2px 2px 2px;
  1847. box-sizing:border-box;
  1848. width:100%;
  1849. }
  1850. #u155144_text {
  1851. border-width:0px;
  1852. word-wrap:break-word;
  1853. text-transform:none;
  1854. visibility:hidden;
  1855. }
  1856. #u155145_img {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:0px;
  1860. top:0px;
  1861. width:6px;
  1862. height:6px;
  1863. }
  1864. #u155145 {
  1865. border-width:0px;
  1866. position:absolute;
  1867. left:378px;
  1868. top:84px;
  1869. width:6px;
  1870. height:6px;
  1871. display:flex;
  1872. }
  1873. #u155145 .text {
  1874. position:absolute;
  1875. align-self:center;
  1876. padding:2px 2px 2px 2px;
  1877. box-sizing:border-box;
  1878. width:100%;
  1879. }
  1880. #u155145_text {
  1881. border-width:0px;
  1882. word-wrap:break-word;
  1883. text-transform:none;
  1884. visibility:hidden;
  1885. }
  1886. #u155146 {
  1887. border-width:0px;
  1888. position:absolute;
  1889. left:0px;
  1890. top:0px;
  1891. width:0px;
  1892. height:0px;
  1893. }
  1894. #u155147_img {
  1895. border-width:0px;
  1896. position:absolute;
  1897. left:0px;
  1898. top:0px;
  1899. width:5px;
  1900. height:5px;
  1901. }
  1902. #u155147 {
  1903. border-width:0px;
  1904. position:absolute;
  1905. left:323px;
  1906. top:85px;
  1907. width:5px;
  1908. height:5px;
  1909. display:flex;
  1910. }
  1911. #u155147 .text {
  1912. position:absolute;
  1913. align-self:center;
  1914. padding:2px 2px 2px 2px;
  1915. box-sizing:border-box;
  1916. width:100%;
  1917. }
  1918. #u155147_text {
  1919. border-width:0px;
  1920. word-wrap:break-word;
  1921. text-transform:none;
  1922. visibility:hidden;
  1923. }
  1924. #u155148_img {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:0px;
  1928. top:0px;
  1929. width:5px;
  1930. height:5px;
  1931. }
  1932. #u155148 {
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:339px;
  1936. top:85px;
  1937. width:5px;
  1938. height:5px;
  1939. display:flex;
  1940. }
  1941. #u155148 .text {
  1942. position:absolute;
  1943. align-self:center;
  1944. padding:2px 2px 2px 2px;
  1945. box-sizing:border-box;
  1946. width:100%;
  1947. }
  1948. #u155148_text {
  1949. border-width:0px;
  1950. word-wrap:break-word;
  1951. text-transform:none;
  1952. visibility:hidden;
  1953. }
  1954. #u155149_img {
  1955. border-width:0px;
  1956. position:absolute;
  1957. left:0px;
  1958. top:0px;
  1959. width:7px;
  1960. height:7px;
  1961. }
  1962. #u155149 {
  1963. border-width:0px;
  1964. position:absolute;
  1965. left:330px;
  1966. top:84px;
  1967. width:7px;
  1968. height:7px;
  1969. display:flex;
  1970. }
  1971. #u155149 .text {
  1972. position:absolute;
  1973. align-self:center;
  1974. padding:2px 2px 2px 2px;
  1975. box-sizing:border-box;
  1976. width:100%;
  1977. }
  1978. #u155149_text {
  1979. border-width:0px;
  1980. word-wrap:break-word;
  1981. text-transform:none;
  1982. visibility:hidden;
  1983. }
  1984. #u155150_img {
  1985. border-width:0px;
  1986. position:absolute;
  1987. left:0px;
  1988. top:0px;
  1989. width:19px;
  1990. height:2px;
  1991. }
  1992. #u155150 {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:347px;
  1996. top:87px;
  1997. width:18px;
  1998. height:1px;
  1999. display:flex;
  2000. -webkit-transform:rotate(90deg);
  2001. -moz-transform:rotate(90deg);
  2002. -ms-transform:rotate(90deg);
  2003. transform:rotate(90deg);
  2004. }
  2005. #u155150 .text {
  2006. position:absolute;
  2007. align-self:center;
  2008. padding:2px 2px 2px 2px;
  2009. box-sizing:border-box;
  2010. width:100%;
  2011. }
  2012. #u155150_text {
  2013. border-width:0px;
  2014. word-wrap:break-word;
  2015. text-transform:none;
  2016. visibility:hidden;
  2017. }
  2018. #u155151_div {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:0px;
  2022. top:0px;
  2023. width:169px;
  2024. height:40px;
  2025. background:inherit;
  2026. background-color:rgba(255, 255, 255, 0);
  2027. border:none;
  2028. border-left:0px;
  2029. border-top:0px;
  2030. border-right:0px;
  2031. border-radius:0px;
  2032. border-bottom-right-radius:0px;
  2033. border-bottom-left-radius:0px;
  2034. -moz-box-shadow:none;
  2035. -webkit-box-shadow:none;
  2036. box-shadow:none;
  2037. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2038. font-weight:500;
  2039. font-style:normal;
  2040. font-size:28px;
  2041. color:#FFFFFF;
  2042. text-align:right;
  2043. }
  2044. #u155151 {
  2045. border-width:0px;
  2046. position:absolute;
  2047. left:132px;
  2048. top:341px;
  2049. width:169px;
  2050. height:40px;
  2051. display:flex;
  2052. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2053. font-weight:500;
  2054. font-style:normal;
  2055. font-size:28px;
  2056. color:#FFFFFF;
  2057. text-align:right;
  2058. }
  2059. #u155151 .text {
  2060. position:absolute;
  2061. align-self:center;
  2062. padding:0px 0px 0px 0px;
  2063. box-sizing:border-box;
  2064. width:100%;
  2065. }
  2066. #u155151_text {
  2067. border-width:0px;
  2068. white-space:nowrap;
  2069. text-transform:none;
  2070. }
  2071. #u155152_div {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:0px;
  2075. top:0px;
  2076. width:360px;
  2077. height:384px;
  2078. background:inherit;
  2079. background-color:rgba(255, 255, 255, 1);
  2080. border:none;
  2081. border-bottom:0px;
  2082. border-radius:18px;
  2083. border-bottom-right-radius:0px;
  2084. border-bottom-left-radius:0px;
  2085. -moz-box-shadow:none;
  2086. -webkit-box-shadow:none;
  2087. box-shadow:none;
  2088. }
  2089. #u155152 {
  2090. border-width:0px;
  2091. position:absolute;
  2092. left:37px;
  2093. top:400px;
  2094. width:360px;
  2095. height:384px;
  2096. display:flex;
  2097. }
  2098. #u155152 .text {
  2099. position:absolute;
  2100. align-self:center;
  2101. padding:2px 2px 2px 2px;
  2102. box-sizing:border-box;
  2103. width:100%;
  2104. }
  2105. #u155152_text {
  2106. border-width:0px;
  2107. word-wrap:break-word;
  2108. text-transform:none;
  2109. visibility:hidden;
  2110. }
  2111. #u155153_div {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:0px;
  2115. top:0px;
  2116. width:73px;
  2117. height:25px;
  2118. background:inherit;
  2119. background-color:rgba(255, 255, 255, 0);
  2120. border:none;
  2121. border-left:0px;
  2122. border-top:0px;
  2123. border-right:0px;
  2124. border-radius:0px;
  2125. border-bottom-right-radius:0px;
  2126. border-bottom-left-radius:0px;
  2127. -moz-box-shadow:none;
  2128. -webkit-box-shadow:none;
  2129. box-shadow:none;
  2130. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2131. font-weight:500;
  2132. font-style:normal;
  2133. font-size:18px;
  2134. color:#5C93FF;
  2135. text-align:center;
  2136. }
  2137. #u155153 {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:180px;
  2141. top:433px;
  2142. width:73px;
  2143. height:25px;
  2144. display:flex;
  2145. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2146. font-weight:500;
  2147. font-style:normal;
  2148. font-size:18px;
  2149. color:#5C93FF;
  2150. text-align:center;
  2151. }
  2152. #u155153 .text {
  2153. position:absolute;
  2154. align-self:center;
  2155. padding:0px 0px 0px 0px;
  2156. box-sizing:border-box;
  2157. width:100%;
  2158. }
  2159. #u155153_text {
  2160. border-width:0px;
  2161. white-space:nowrap;
  2162. text-transform:none;
  2163. }
  2164. #u155154_img {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:0px;
  2168. top:0px;
  2169. width:30px;
  2170. height:30px;
  2171. }
  2172. #u155154 {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:57px;
  2176. top:463px;
  2177. width:30px;
  2178. height:30px;
  2179. display:flex;
  2180. color:#FFFFFF;
  2181. }
  2182. #u155154 .text {
  2183. position:absolute;
  2184. align-self:center;
  2185. padding:2px 2px 2px 2px;
  2186. box-sizing:border-box;
  2187. width:100%;
  2188. }
  2189. #u155154_text {
  2190. border-width:0px;
  2191. word-wrap:break-word;
  2192. text-transform:none;
  2193. }
  2194. #u155155_div {
  2195. border-width:0px;
  2196. position:absolute;
  2197. left:0px;
  2198. top:0px;
  2199. width:73px;
  2200. height:25px;
  2201. background:inherit;
  2202. background-color:rgba(255, 255, 255, 0);
  2203. border:none;
  2204. border-left:0px;
  2205. border-top:0px;
  2206. border-right:0px;
  2207. border-radius:0px;
  2208. border-bottom-right-radius:0px;
  2209. border-bottom-left-radius:0px;
  2210. -moz-box-shadow:none;
  2211. -webkit-box-shadow:none;
  2212. box-shadow:none;
  2213. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2214. font-weight:500;
  2215. font-style:normal;
  2216. font-size:18px;
  2217. color:#5C93FF;
  2218. }
  2219. #u155155 {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:95px;
  2223. top:463px;
  2224. width:73px;
  2225. height:25px;
  2226. display:flex;
  2227. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2228. font-weight:500;
  2229. font-style:normal;
  2230. font-size:18px;
  2231. color:#5C93FF;
  2232. }
  2233. #u155155 .text {
  2234. position:absolute;
  2235. align-self:center;
  2236. padding:0px 0px 0px 0px;
  2237. box-sizing:border-box;
  2238. width:100%;
  2239. }
  2240. #u155155_text {
  2241. border-width:0px;
  2242. white-space:nowrap;
  2243. text-transform:none;
  2244. }
  2245. #u155156_div {
  2246. border-width:0px;
  2247. position:absolute;
  2248. left:0px;
  2249. top:0px;
  2250. width:169px;
  2251. height:30px;
  2252. background:inherit;
  2253. background-color:rgba(255, 255, 255, 0);
  2254. border:none;
  2255. border-left:0px;
  2256. border-top:0px;
  2257. border-right:0px;
  2258. border-radius:0px;
  2259. border-bottom-right-radius:0px;
  2260. border-bottom-left-radius:0px;
  2261. -moz-box-shadow:none;
  2262. -webkit-box-shadow:none;
  2263. box-shadow:none;
  2264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2265. font-weight:400;
  2266. font-style:normal;
  2267. font-size:12px;
  2268. line-height:30px;
  2269. }
  2270. #u155156 {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:95px;
  2274. top:488px;
  2275. width:169px;
  2276. height:30px;
  2277. display:flex;
  2278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2279. font-weight:400;
  2280. font-style:normal;
  2281. font-size:12px;
  2282. line-height:30px;
  2283. }
  2284. #u155156 .text {
  2285. position:absolute;
  2286. align-self:flex-start;
  2287. padding:0px 0px 0px 0px;
  2288. box-sizing:border-box;
  2289. width:100%;
  2290. }
  2291. #u155156_text {
  2292. border-width:0px;
  2293. white-space:nowrap;
  2294. text-transform:none;
  2295. }
  2296. #u155157_img {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:0px;
  2300. top:0px;
  2301. width:30px;
  2302. height:30px;
  2303. }
  2304. #u155157 {
  2305. border-width:0px;
  2306. position:absolute;
  2307. left:57px;
  2308. top:553px;
  2309. width:30px;
  2310. height:30px;
  2311. display:flex;
  2312. color:#FFFFFF;
  2313. }
  2314. #u155157 .text {
  2315. position:absolute;
  2316. align-self:center;
  2317. padding:2px 2px 2px 2px;
  2318. box-sizing:border-box;
  2319. width:100%;
  2320. }
  2321. #u155157_text {
  2322. border-width:0px;
  2323. word-wrap:break-word;
  2324. text-transform:none;
  2325. }
  2326. #u155158_div {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:0px;
  2330. top:0px;
  2331. width:73px;
  2332. height:25px;
  2333. background:inherit;
  2334. background-color:rgba(255, 255, 255, 0);
  2335. border:none;
  2336. border-left:0px;
  2337. border-top:0px;
  2338. border-right:0px;
  2339. border-radius:0px;
  2340. border-bottom-right-radius:0px;
  2341. border-bottom-left-radius:0px;
  2342. -moz-box-shadow:none;
  2343. -webkit-box-shadow:none;
  2344. box-shadow:none;
  2345. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2346. font-weight:500;
  2347. font-style:normal;
  2348. font-size:18px;
  2349. color:#5C93FF;
  2350. }
  2351. #u155158 {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:95px;
  2355. top:555px;
  2356. width:73px;
  2357. height:25px;
  2358. display:flex;
  2359. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2360. font-weight:500;
  2361. font-style:normal;
  2362. font-size:18px;
  2363. color:#5C93FF;
  2364. }
  2365. #u155158 .text {
  2366. position:absolute;
  2367. align-self:center;
  2368. padding:0px 0px 0px 0px;
  2369. box-sizing:border-box;
  2370. width:100%;
  2371. }
  2372. #u155158_text {
  2373. border-width:0px;
  2374. white-space:nowrap;
  2375. text-transform:none;
  2376. }
  2377. #u155159_div {
  2378. border-width:0px;
  2379. position:absolute;
  2380. left:0px;
  2381. top:0px;
  2382. width:205px;
  2383. height:30px;
  2384. background:inherit;
  2385. background-color:rgba(255, 255, 255, 0);
  2386. border:none;
  2387. border-left:0px;
  2388. border-top:0px;
  2389. border-right:0px;
  2390. border-radius:0px;
  2391. border-bottom-right-radius:0px;
  2392. border-bottom-left-radius:0px;
  2393. -moz-box-shadow:none;
  2394. -webkit-box-shadow:none;
  2395. box-shadow:none;
  2396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2397. font-weight:400;
  2398. font-style:normal;
  2399. font-size:12px;
  2400. line-height:30px;
  2401. }
  2402. #u155159 {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:95px;
  2406. top:580px;
  2407. width:205px;
  2408. height:30px;
  2409. display:flex;
  2410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2411. font-weight:400;
  2412. font-style:normal;
  2413. font-size:12px;
  2414. line-height:30px;
  2415. }
  2416. #u155159 .text {
  2417. position:absolute;
  2418. align-self:flex-start;
  2419. padding:0px 0px 0px 0px;
  2420. box-sizing:border-box;
  2421. width:100%;
  2422. }
  2423. #u155159_text {
  2424. border-width:0px;
  2425. white-space:nowrap;
  2426. text-transform:none;
  2427. }
  2428. #u155160_img {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:0px;
  2432. top:0px;
  2433. width:30px;
  2434. height:30px;
  2435. }
  2436. #u155160 {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:57px;
  2440. top:643px;
  2441. width:30px;
  2442. height:30px;
  2443. display:flex;
  2444. color:#FFFFFF;
  2445. }
  2446. #u155160 .text {
  2447. position:absolute;
  2448. align-self:center;
  2449. padding:2px 2px 2px 2px;
  2450. box-sizing:border-box;
  2451. width:100%;
  2452. }
  2453. #u155160_text {
  2454. border-width:0px;
  2455. word-wrap:break-word;
  2456. text-transform:none;
  2457. }
  2458. #u155161_div {
  2459. border-width:0px;
  2460. position:absolute;
  2461. left:0px;
  2462. top:0px;
  2463. width:73px;
  2464. height:25px;
  2465. background:inherit;
  2466. background-color:rgba(255, 255, 255, 0);
  2467. border:none;
  2468. border-left:0px;
  2469. border-top:0px;
  2470. border-right:0px;
  2471. border-radius:0px;
  2472. border-bottom-right-radius:0px;
  2473. border-bottom-left-radius:0px;
  2474. -moz-box-shadow:none;
  2475. -webkit-box-shadow:none;
  2476. box-shadow:none;
  2477. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2478. font-weight:500;
  2479. font-style:normal;
  2480. font-size:18px;
  2481. color:#5C93FF;
  2482. }
  2483. #u155161 {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:95px;
  2487. top:645px;
  2488. width:73px;
  2489. height:25px;
  2490. display:flex;
  2491. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2492. font-weight:500;
  2493. font-style:normal;
  2494. font-size:18px;
  2495. color:#5C93FF;
  2496. }
  2497. #u155161 .text {
  2498. position:absolute;
  2499. align-self:center;
  2500. padding:0px 0px 0px 0px;
  2501. box-sizing:border-box;
  2502. width:100%;
  2503. }
  2504. #u155161_text {
  2505. border-width:0px;
  2506. white-space:nowrap;
  2507. text-transform:none;
  2508. }
  2509. #u155162_div {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:0px;
  2513. top:0px;
  2514. width:286px;
  2515. height:34px;
  2516. background:inherit;
  2517. background-color:rgba(255, 255, 255, 0);
  2518. border:none;
  2519. border-left:0px;
  2520. border-top:0px;
  2521. border-right:0px;
  2522. border-radius:0px;
  2523. border-bottom-right-radius:0px;
  2524. border-bottom-left-radius:0px;
  2525. -moz-box-shadow:none;
  2526. -webkit-box-shadow:none;
  2527. box-shadow:none;
  2528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2529. font-weight:400;
  2530. font-style:normal;
  2531. font-size:12px;
  2532. }
  2533. #u155162 {
  2534. border-width:0px;
  2535. position:absolute;
  2536. left:95px;
  2537. top:675px;
  2538. width:286px;
  2539. height:34px;
  2540. display:flex;
  2541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2542. font-weight:400;
  2543. font-style:normal;
  2544. font-size:12px;
  2545. }
  2546. #u155162 .text {
  2547. position:absolute;
  2548. align-self:flex-start;
  2549. padding:0px 0px 0px 0px;
  2550. box-sizing:border-box;
  2551. width:100%;
  2552. }
  2553. #u155162_text {
  2554. border-width:0px;
  2555. word-wrap:break-word;
  2556. text-transform:none;
  2557. }
  2558. #u155163_img {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:0px;
  2562. top:0px;
  2563. width:300px;
  2564. height:170px;
  2565. }
  2566. #u155163 {
  2567. border-width:0px;
  2568. position:absolute;
  2569. left:66px;
  2570. top:141px;
  2571. width:300px;
  2572. height:170px;
  2573. display:flex;
  2574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2575. font-weight:400;
  2576. font-style:normal;
  2577. font-size:18px;
  2578. }
  2579. #u155163 .text {
  2580. position:absolute;
  2581. align-self:center;
  2582. padding:2px 2px 2px 2px;
  2583. box-sizing:border-box;
  2584. width:100%;
  2585. }
  2586. #u155163_text {
  2587. border-width:0px;
  2588. word-wrap:break-word;
  2589. text-transform:none;
  2590. }
  2591. #u155165_img {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:0px;
  2595. top:0px;
  2596. width:433px;
  2597. height:865px;
  2598. }
  2599. #u155165 {
  2600. border-width:0px;
  2601. position:absolute;
  2602. left:460px;
  2603. top:0px;
  2604. width:433px;
  2605. height:865px;
  2606. display:flex;
  2607. }
  2608. #u155165 .text {
  2609. position:absolute;
  2610. align-self:center;
  2611. padding:2px 2px 2px 2px;
  2612. box-sizing:border-box;
  2613. width:100%;
  2614. }
  2615. #u155165_text {
  2616. border-width:0px;
  2617. word-wrap:break-word;
  2618. text-transform:none;
  2619. visibility:hidden;
  2620. }
  2621. #u155166_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. #u155166 {
  2645. border-width:0px;
  2646. position:absolute;
  2647. left:489px;
  2648. top:67px;
  2649. width:375px;
  2650. height:40px;
  2651. display:flex;
  2652. }
  2653. #u155166 .text {
  2654. position:absolute;
  2655. align-self:center;
  2656. padding:2px 2px 2px 2px;
  2657. box-sizing:border-box;
  2658. width:100%;
  2659. }
  2660. #u155166_text {
  2661. border-width:0px;
  2662. word-wrap:break-word;
  2663. text-transform:none;
  2664. visibility:hidden;
  2665. }
  2666. #u155167 {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:0px;
  2670. top:0px;
  2671. width:0px;
  2672. height:0px;
  2673. }
  2674. #u155168_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. #u155168 {
  2693. border-width:0px;
  2694. position:absolute;
  2695. left:769px;
  2696. top:71px;
  2697. width:88px;
  2698. height:32px;
  2699. display:flex;
  2700. }
  2701. #u155168 .text {
  2702. position:absolute;
  2703. align-self:center;
  2704. padding:2px 2px 2px 2px;
  2705. box-sizing:border-box;
  2706. width:100%;
  2707. }
  2708. #u155168_text {
  2709. border-width:0px;
  2710. word-wrap:break-word;
  2711. text-transform:none;
  2712. visibility:hidden;
  2713. }
  2714. #u155169 {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:0px;
  2718. top:0px;
  2719. width:0px;
  2720. height:0px;
  2721. }
  2722. #u155170_img {
  2723. border-width:0px;
  2724. position:absolute;
  2725. left:0px;
  2726. top:0px;
  2727. width:18px;
  2728. height:18px;
  2729. }
  2730. #u155170 {
  2731. border-width:0px;
  2732. position:absolute;
  2733. left:832px;
  2734. top:78px;
  2735. width:18px;
  2736. height:18px;
  2737. display:flex;
  2738. }
  2739. #u155170 .text {
  2740. position:absolute;
  2741. align-self:center;
  2742. padding:2px 2px 2px 2px;
  2743. box-sizing:border-box;
  2744. width:100%;
  2745. }
  2746. #u155170_text {
  2747. border-width:0px;
  2748. word-wrap:break-word;
  2749. text-transform:none;
  2750. visibility:hidden;
  2751. }
  2752. #u155171_img {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:0px;
  2756. top:0px;
  2757. width:6px;
  2758. height:6px;
  2759. }
  2760. #u155171 {
  2761. border-width:0px;
  2762. position:absolute;
  2763. left:838px;
  2764. top:84px;
  2765. width:6px;
  2766. height:6px;
  2767. display:flex;
  2768. }
  2769. #u155171 .text {
  2770. position:absolute;
  2771. align-self:center;
  2772. padding:2px 2px 2px 2px;
  2773. box-sizing:border-box;
  2774. width:100%;
  2775. }
  2776. #u155171_text {
  2777. border-width:0px;
  2778. word-wrap:break-word;
  2779. text-transform:none;
  2780. visibility:hidden;
  2781. }
  2782. #u155172 {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:0px;
  2786. top:0px;
  2787. width:0px;
  2788. height:0px;
  2789. }
  2790. #u155173_img {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:0px;
  2794. top:0px;
  2795. width:5px;
  2796. height:5px;
  2797. }
  2798. #u155173 {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:783px;
  2802. top:85px;
  2803. width:5px;
  2804. height:5px;
  2805. display:flex;
  2806. }
  2807. #u155173 .text {
  2808. position:absolute;
  2809. align-self:center;
  2810. padding:2px 2px 2px 2px;
  2811. box-sizing:border-box;
  2812. width:100%;
  2813. }
  2814. #u155173_text {
  2815. border-width:0px;
  2816. word-wrap:break-word;
  2817. text-transform:none;
  2818. visibility:hidden;
  2819. }
  2820. #u155174_img {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:0px;
  2824. top:0px;
  2825. width:5px;
  2826. height:5px;
  2827. }
  2828. #u155174 {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:799px;
  2832. top:85px;
  2833. width:5px;
  2834. height:5px;
  2835. display:flex;
  2836. }
  2837. #u155174 .text {
  2838. position:absolute;
  2839. align-self:center;
  2840. padding:2px 2px 2px 2px;
  2841. box-sizing:border-box;
  2842. width:100%;
  2843. }
  2844. #u155174_text {
  2845. border-width:0px;
  2846. word-wrap:break-word;
  2847. text-transform:none;
  2848. visibility:hidden;
  2849. }
  2850. #u155175_img {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:0px;
  2854. top:0px;
  2855. width:7px;
  2856. height:7px;
  2857. }
  2858. #u155175 {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:790px;
  2862. top:84px;
  2863. width:7px;
  2864. height:7px;
  2865. display:flex;
  2866. }
  2867. #u155175 .text {
  2868. position:absolute;
  2869. align-self:center;
  2870. padding:2px 2px 2px 2px;
  2871. box-sizing:border-box;
  2872. width:100%;
  2873. }
  2874. #u155175_text {
  2875. border-width:0px;
  2876. word-wrap:break-word;
  2877. text-transform:none;
  2878. visibility:hidden;
  2879. }
  2880. #u155176_img {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:0px;
  2884. top:0px;
  2885. width:19px;
  2886. height:2px;
  2887. }
  2888. #u155176 {
  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. #u155176 .text {
  2902. position:absolute;
  2903. align-self:center;
  2904. padding:2px 2px 2px 2px;
  2905. box-sizing:border-box;
  2906. width:100%;
  2907. }
  2908. #u155176_text {
  2909. border-width:0px;
  2910. word-wrap:break-word;
  2911. text-transform:none;
  2912. visibility:hidden;
  2913. }
  2914. #u155177_img {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:0px;
  2918. top:0px;
  2919. width:375px;
  2920. height:44px;
  2921. }
  2922. #u155177 {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:489px;
  2926. top:24px;
  2927. width:375px;
  2928. height:44px;
  2929. display:flex;
  2930. }
  2931. #u155177 .text {
  2932. position:absolute;
  2933. align-self:center;
  2934. padding:2px 2px 2px 2px;
  2935. box-sizing:border-box;
  2936. width:100%;
  2937. }
  2938. #u155177_text {
  2939. border-width:0px;
  2940. word-wrap:break-word;
  2941. text-transform:none;
  2942. visibility:hidden;
  2943. }
  2944. #u155178_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. #u155178 {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:489px;
  2968. top:788px;
  2969. width:375px;
  2970. height:50px;
  2971. display:flex;
  2972. }
  2973. #u155178 .text {
  2974. position:absolute;
  2975. align-self:center;
  2976. padding:2px 2px 2px 2px;
  2977. box-sizing:border-box;
  2978. width:100%;
  2979. }
  2980. #u155178_text {
  2981. border-width:0px;
  2982. word-wrap:break-word;
  2983. text-transform:none;
  2984. visibility:hidden;
  2985. }
  2986. #u155179 {
  2987. border-width:0px;
  2988. position:absolute;
  2989. left:0px;
  2990. top:0px;
  2991. width:0px;
  2992. height:0px;
  2993. }
  2994. #u155180_img {
  2995. border-width:0px;
  2996. position:absolute;
  2997. left:0px;
  2998. top:0px;
  2999. width:24px;
  3000. height:24px;
  3001. }
  3002. #u155180 {
  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. #u155180 .text {
  3013. position:absolute;
  3014. align-self:center;
  3015. padding:2px 2px 2px 2px;
  3016. box-sizing:border-box;
  3017. width:100%;
  3018. }
  3019. #u155180_text {
  3020. border-width:0px;
  3021. word-wrap:break-word;
  3022. text-transform:none;
  3023. }
  3024. #u155181_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. #u155181 {
  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. #u155181 .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. #u155181_text {
  3064. border-width:0px;
  3065. white-space:nowrap;
  3066. text-transform:none;
  3067. }
  3068. #u155182 {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:0px;
  3072. top:0px;
  3073. width:0px;
  3074. height:0px;
  3075. }
  3076. #u155183_img {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:0px;
  3080. top:0px;
  3081. width:24px;
  3082. height:24px;
  3083. }
  3084. #u155183 {
  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. #u155183 .text {
  3095. position:absolute;
  3096. align-self:center;
  3097. padding:2px 2px 2px 2px;
  3098. box-sizing:border-box;
  3099. width:100%;
  3100. }
  3101. #u155183_text {
  3102. border-width:0px;
  3103. word-wrap:break-word;
  3104. text-transform:none;
  3105. }
  3106. #u155184_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. #u155184 {
  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. #u155184 .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. #u155184_text {
  3146. border-width:0px;
  3147. white-space:nowrap;
  3148. text-transform:none;
  3149. }
  3150. #u155185_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. #u155185 {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:489px;
  3169. top:107px;
  3170. width:375px;
  3171. height:681px;
  3172. display:flex;
  3173. }
  3174. #u155185 .text {
  3175. position:absolute;
  3176. align-self:center;
  3177. padding:2px 2px 2px 2px;
  3178. box-sizing:border-box;
  3179. width:100%;
  3180. }
  3181. #u155185_text {
  3182. border-width:0px;
  3183. word-wrap:break-word;
  3184. text-transform:none;
  3185. visibility:hidden;
  3186. }
  3187. #u155186 {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:0px;
  3191. top:0px;
  3192. width:0px;
  3193. height:0px;
  3194. }
  3195. #u155187_img {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:0px;
  3199. top:0px;
  3200. width:24px;
  3201. height:24px;
  3202. }
  3203. #u155187 {
  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. #u155187 .text {
  3214. position:absolute;
  3215. align-self:center;
  3216. padding:2px 2px 2px 2px;
  3217. box-sizing:border-box;
  3218. width:100%;
  3219. }
  3220. #u155187_text {
  3221. border-width:0px;
  3222. word-wrap:break-word;
  3223. text-transform:none;
  3224. }
  3225. #u155188_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. #u155188 {
  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. #u155188 .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. #u155188_text {
  3265. border-width:0px;
  3266. white-space:nowrap;
  3267. text-transform:none;
  3268. }
  3269. #u155189 {
  3270. border-width:0px;
  3271. position:absolute;
  3272. left:0px;
  3273. top:0px;
  3274. width:0px;
  3275. height:0px;
  3276. }
  3277. #u155190_img {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:0px;
  3281. top:0px;
  3282. width:24px;
  3283. height:24px;
  3284. }
  3285. #u155190 {
  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. #u155190 .text {
  3296. position:absolute;
  3297. align-self:center;
  3298. padding:2px 2px 2px 2px;
  3299. box-sizing:border-box;
  3300. width:100%;
  3301. }
  3302. #u155190_text {
  3303. border-width:0px;
  3304. word-wrap:break-word;
  3305. text-transform:none;
  3306. }
  3307. #u155191_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. #u155191 {
  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. #u155191 .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. #u155191_text {
  3347. border-width:0px;
  3348. white-space:nowrap;
  3349. text-transform:none;
  3350. }
  3351. #u155192_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. #u155192 {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:489px;
  3375. top:107px;
  3376. width:375px;
  3377. height:732px;
  3378. display:flex;
  3379. }
  3380. #u155192 .text {
  3381. position:absolute;
  3382. align-self:center;
  3383. padding:2px 2px 2px 2px;
  3384. box-sizing:border-box;
  3385. width:100%;
  3386. }
  3387. #u155192_text {
  3388. border-width:0px;
  3389. word-wrap:break-word;
  3390. text-transform:none;
  3391. visibility:hidden;
  3392. }
  3393. #u155193_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. #u155193 {
  3414. border-width:0px;
  3415. position:absolute;
  3416. left:489px;
  3417. top:107px;
  3418. width:375px;
  3419. height:732px;
  3420. display:flex;
  3421. }
  3422. #u155193 .text {
  3423. position:absolute;
  3424. align-self:center;
  3425. padding:2px 2px 2px 2px;
  3426. box-sizing:border-box;
  3427. width:100%;
  3428. }
  3429. #u155193_text {
  3430. border-width:0px;
  3431. word-wrap:break-word;
  3432. text-transform:none;
  3433. visibility:hidden;
  3434. }
  3435. #u155194 {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:0px;
  3439. top:0px;
  3440. width:0px;
  3441. height:0px;
  3442. }
  3443. #u155195_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. #u155195 {
  3464. border-width:0px;
  3465. position:absolute;
  3466. left:489px;
  3467. top:67px;
  3468. width:375px;
  3469. height:40px;
  3470. display:flex;
  3471. }
  3472. #u155195 .text {
  3473. position:absolute;
  3474. align-self:center;
  3475. padding:2px 2px 2px 2px;
  3476. box-sizing:border-box;
  3477. width:100%;
  3478. }
  3479. #u155195_text {
  3480. border-width:0px;
  3481. word-wrap:break-word;
  3482. text-transform:none;
  3483. visibility:hidden;
  3484. }
  3485. #u155196 {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:0px;
  3489. top:0px;
  3490. width:0px;
  3491. height:0px;
  3492. }
  3493. #u155197_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. #u155197 {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:766px;
  3515. top:69px;
  3516. width:88px;
  3517. height:32px;
  3518. display:flex;
  3519. }
  3520. #u155197 .text {
  3521. position:absolute;
  3522. align-self:center;
  3523. padding:2px 2px 2px 2px;
  3524. box-sizing:border-box;
  3525. width:100%;
  3526. }
  3527. #u155197_text {
  3528. border-width:0px;
  3529. word-wrap:break-word;
  3530. text-transform:none;
  3531. visibility:hidden;
  3532. }
  3533. #u155198 {
  3534. border-width:0px;
  3535. position:absolute;
  3536. left:0px;
  3537. top:0px;
  3538. width:0px;
  3539. height:0px;
  3540. }
  3541. #u155199_img {
  3542. border-width:0px;
  3543. position:absolute;
  3544. left:0px;
  3545. top:0px;
  3546. width:18px;
  3547. height:18px;
  3548. }
  3549. #u155199 {
  3550. border-width:0px;
  3551. position:absolute;
  3552. left:829px;
  3553. top:76px;
  3554. width:18px;
  3555. height:18px;
  3556. display:flex;
  3557. }
  3558. #u155199 .text {
  3559. position:absolute;
  3560. align-self:center;
  3561. padding:2px 2px 2px 2px;
  3562. box-sizing:border-box;
  3563. width:100%;
  3564. }
  3565. #u155199_text {
  3566. border-width:0px;
  3567. word-wrap:break-word;
  3568. text-transform:none;
  3569. visibility:hidden;
  3570. }
  3571. #u155200_img {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:0px;
  3575. top:0px;
  3576. width:6px;
  3577. height:6px;
  3578. }
  3579. #u155200 {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:835px;
  3583. top:82px;
  3584. width:6px;
  3585. height:6px;
  3586. display:flex;
  3587. }
  3588. #u155200 .text {
  3589. position:absolute;
  3590. align-self:center;
  3591. padding:2px 2px 2px 2px;
  3592. box-sizing:border-box;
  3593. width:100%;
  3594. }
  3595. #u155200_text {
  3596. border-width:0px;
  3597. word-wrap:break-word;
  3598. text-transform:none;
  3599. visibility:hidden;
  3600. }
  3601. #u155201 {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:0px;
  3605. top:0px;
  3606. width:0px;
  3607. height:0px;
  3608. }
  3609. #u155202_img {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:0px;
  3613. top:0px;
  3614. width:5px;
  3615. height:5px;
  3616. }
  3617. #u155202 {
  3618. border-width:0px;
  3619. position:absolute;
  3620. left:780px;
  3621. top:83px;
  3622. width:5px;
  3623. height:5px;
  3624. display:flex;
  3625. }
  3626. #u155202 .text {
  3627. position:absolute;
  3628. align-self:center;
  3629. padding:2px 2px 2px 2px;
  3630. box-sizing:border-box;
  3631. width:100%;
  3632. }
  3633. #u155202_text {
  3634. border-width:0px;
  3635. word-wrap:break-word;
  3636. text-transform:none;
  3637. visibility:hidden;
  3638. }
  3639. #u155203_img {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:0px;
  3643. top:0px;
  3644. width:5px;
  3645. height:5px;
  3646. }
  3647. #u155203 {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:796px;
  3651. top:83px;
  3652. width:5px;
  3653. height:5px;
  3654. display:flex;
  3655. }
  3656. #u155203 .text {
  3657. position:absolute;
  3658. align-self:center;
  3659. padding:2px 2px 2px 2px;
  3660. box-sizing:border-box;
  3661. width:100%;
  3662. }
  3663. #u155203_text {
  3664. border-width:0px;
  3665. word-wrap:break-word;
  3666. text-transform:none;
  3667. visibility:hidden;
  3668. }
  3669. #u155204_img {
  3670. border-width:0px;
  3671. position:absolute;
  3672. left:0px;
  3673. top:0px;
  3674. width:7px;
  3675. height:7px;
  3676. }
  3677. #u155204 {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:787px;
  3681. top:82px;
  3682. width:7px;
  3683. height:7px;
  3684. display:flex;
  3685. }
  3686. #u155204 .text {
  3687. position:absolute;
  3688. align-self:center;
  3689. padding:2px 2px 2px 2px;
  3690. box-sizing:border-box;
  3691. width:100%;
  3692. }
  3693. #u155204_text {
  3694. border-width:0px;
  3695. word-wrap:break-word;
  3696. text-transform:none;
  3697. visibility:hidden;
  3698. }
  3699. #u155205_img {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:0px;
  3703. top:0px;
  3704. width:19px;
  3705. height:2px;
  3706. }
  3707. #u155205 {
  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. #u155205 .text {
  3721. position:absolute;
  3722. align-self:center;
  3723. padding:2px 2px 2px 2px;
  3724. box-sizing:border-box;
  3725. width:100%;
  3726. }
  3727. #u155205_text {
  3728. border-width:0px;
  3729. word-wrap:break-word;
  3730. text-transform:none;
  3731. visibility:hidden;
  3732. }
  3733. #u155206_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. #u155206 {
  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. #u155206 .text {
  3769. position:absolute;
  3770. align-self:center;
  3771. padding:2px 2px 2px 2px;
  3772. box-sizing:border-box;
  3773. width:100%;
  3774. }
  3775. #u155206_text {
  3776. border-width:0px;
  3777. word-wrap:break-word;
  3778. text-transform:none;
  3779. visibility:hidden;
  3780. }
  3781. #u155207_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. #u155207 {
  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. #u155207 .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. #u155207_text {
  3821. border-width:0px;
  3822. white-space:nowrap;
  3823. text-transform:none;
  3824. }
  3825. #u155208_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. #u155208 {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:489px;
  3844. top:107px;
  3845. width:375px;
  3846. height:58px;
  3847. display:flex;
  3848. }
  3849. #u155208 .text {
  3850. position:absolute;
  3851. align-self:center;
  3852. padding:2px 2px 2px 2px;
  3853. box-sizing:border-box;
  3854. width:100%;
  3855. }
  3856. #u155208_text {
  3857. border-width:0px;
  3858. word-wrap:break-word;
  3859. text-transform:none;
  3860. visibility:hidden;
  3861. }
  3862. #u155209 {
  3863. border-width:0px;
  3864. position:absolute;
  3865. left:0px;
  3866. top:0px;
  3867. width:0px;
  3868. height:0px;
  3869. }
  3870. #u155210_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. #u155210 {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:489px;
  3895. top:165px;
  3896. width:375px;
  3897. height:80px;
  3898. display:flex;
  3899. }
  3900. #u155210 .text {
  3901. position:absolute;
  3902. align-self:center;
  3903. padding:2px 2px 2px 2px;
  3904. box-sizing:border-box;
  3905. width:100%;
  3906. }
  3907. #u155210_text {
  3908. border-width:0px;
  3909. word-wrap:break-word;
  3910. text-transform:none;
  3911. visibility:hidden;
  3912. }
  3913. #u155211_div {
  3914. border-width:0px;
  3915. position:absolute;
  3916. left:0px;
  3917. top:0px;
  3918. width:73px;
  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-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3933. font-weight:500;
  3934. font-style:normal;
  3935. font-size:18px;
  3936. line-height:30px;
  3937. }
  3938. #u155211 {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:508px;
  3942. top:175px;
  3943. width:73px;
  3944. height:30px;
  3945. display:flex;
  3946. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3947. font-weight:500;
  3948. font-style:normal;
  3949. font-size:18px;
  3950. line-height:30px;
  3951. }
  3952. #u155211 .text {
  3953. position:absolute;
  3954. align-self:flex-start;
  3955. padding:0px 0px 0px 0px;
  3956. box-sizing:border-box;
  3957. width:100%;
  3958. }
  3959. #u155211_text {
  3960. border-width:0px;
  3961. white-space:nowrap;
  3962. text-transform:none;
  3963. }
  3964. #u155212_input {
  3965. position:absolute;
  3966. left:0px;
  3967. top:0px;
  3968. width:346px;
  3969. height:22px;
  3970. padding:2px 2px 2px 2px;
  3971. font-family:'ArialMT', 'Arial', sans-serif;
  3972. font-weight:400;
  3973. font-style:normal;
  3974. font-size:14px;
  3975. letter-spacing:normal;
  3976. color:#1890FF;
  3977. vertical-align:none;
  3978. text-align:left;
  3979. text-transform:none;
  3980. background-color:transparent;
  3981. border-color:transparent;
  3982. }
  3983. #u155212_input.disabled {
  3984. position:absolute;
  3985. left:0px;
  3986. top:0px;
  3987. width:346px;
  3988. height:22px;
  3989. padding:2px 2px 2px 2px;
  3990. font-family:'ArialMT', 'Arial', sans-serif;
  3991. font-weight:400;
  3992. font-style:normal;
  3993. font-size:14px;
  3994. letter-spacing:normal;
  3995. color:#1890FF;
  3996. vertical-align:none;
  3997. text-align:left;
  3998. text-transform:none;
  3999. background-color:transparent;
  4000. border-color:transparent;
  4001. }
  4002. #u155212_div {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:0px;
  4006. top:0px;
  4007. width:346px;
  4008. height:22px;
  4009. background:inherit;
  4010. background-color:rgba(255, 255, 255, 1);
  4011. border:none;
  4012. border-radius:0px;
  4013. -moz-box-shadow:none;
  4014. -webkit-box-shadow:none;
  4015. box-shadow:none;
  4016. font-size:14px;
  4017. color:#1890FF;
  4018. }
  4019. #u155212 {
  4020. border-width:0px;
  4021. position:absolute;
  4022. left:508px;
  4023. top:208px;
  4024. width:346px;
  4025. height:22px;
  4026. display:flex;
  4027. font-size:14px;
  4028. color:#1890FF;
  4029. }
  4030. #u155212 .text {
  4031. position:absolute;
  4032. align-self:flex-start;
  4033. padding:2px 2px 2px 2px;
  4034. box-sizing:border-box;
  4035. width:100%;
  4036. }
  4037. #u155212_div.disabled {
  4038. border-width:0px;
  4039. position:absolute;
  4040. left:0px;
  4041. top:0px;
  4042. width:346px;
  4043. height:22px;
  4044. background:inherit;
  4045. background-color:rgba(240, 240, 240, 1);
  4046. border:none;
  4047. border-radius:0px;
  4048. -moz-box-shadow:none;
  4049. -webkit-box-shadow:none;
  4050. box-shadow:none;
  4051. font-size:14px;
  4052. color:#1890FF;
  4053. }
  4054. #u155212.disabled {
  4055. }
  4056. .u155212_input_option {
  4057. font-size:14px;
  4058. }
  4059. #u155213_div {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:0px;
  4063. top:0px;
  4064. width:375px;
  4065. height:440px;
  4066. background:inherit;
  4067. background-color:rgba(255, 255, 255, 0.996078431372549);
  4068. border:none;
  4069. border-radius:0px;
  4070. -moz-box-shadow:none;
  4071. -webkit-box-shadow:none;
  4072. box-shadow:none;
  4073. }
  4074. #u155213 {
  4075. border-width:0px;
  4076. position:absolute;
  4077. left:489px;
  4078. top:255px;
  4079. width:375px;
  4080. height:440px;
  4081. display:flex;
  4082. }
  4083. #u155213 .text {
  4084. position:absolute;
  4085. align-self:center;
  4086. padding:2px 2px 2px 2px;
  4087. box-sizing:border-box;
  4088. width:100%;
  4089. }
  4090. #u155213_text {
  4091. border-width:0px;
  4092. word-wrap:break-word;
  4093. text-transform:none;
  4094. visibility:hidden;
  4095. }
  4096. #u155214_div {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:0px;
  4100. top:0px;
  4101. width:73px;
  4102. height:25px;
  4103. background:inherit;
  4104. background-color:rgba(255, 255, 255, 0);
  4105. border:none;
  4106. border-radius:0px;
  4107. -moz-box-shadow:none;
  4108. -webkit-box-shadow:none;
  4109. box-shadow:none;
  4110. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4111. font-weight:500;
  4112. font-style:normal;
  4113. font-size:18px;
  4114. }
  4115. #u155214 {
  4116. border-width:0px;
  4117. position:absolute;
  4118. left:509px;
  4119. top:274px;
  4120. width:73px;
  4121. height:25px;
  4122. display:flex;
  4123. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4124. font-weight:500;
  4125. font-style:normal;
  4126. font-size:18px;
  4127. }
  4128. #u155214 .text {
  4129. position:absolute;
  4130. align-self:flex-start;
  4131. padding:0px 0px 0px 0px;
  4132. box-sizing:border-box;
  4133. width:100%;
  4134. }
  4135. #u155214_text {
  4136. border-width:0px;
  4137. white-space:nowrap;
  4138. text-transform:none;
  4139. }
  4140. #u155215 {
  4141. border-width:0px;
  4142. position:absolute;
  4143. left:0px;
  4144. top:0px;
  4145. width:0px;
  4146. height:0px;
  4147. }
  4148. #u155216_div {
  4149. border-width:0px;
  4150. position:absolute;
  4151. left:0px;
  4152. top:0px;
  4153. width:322px;
  4154. height:40px;
  4155. background:inherit;
  4156. background-color:rgba(255, 255, 255, 1);
  4157. box-sizing:border-box;
  4158. border-width:1px;
  4159. border-style:solid;
  4160. border-color:rgba(215, 215, 215, 1);
  4161. border-left:0px;
  4162. border-top:0px;
  4163. border-right:0px;
  4164. border-radius:0px;
  4165. border-bottom-right-radius:0px;
  4166. border-bottom-left-radius:0px;
  4167. -moz-box-shadow:none;
  4168. -webkit-box-shadow:none;
  4169. box-shadow:none;
  4170. }
  4171. #u155216 {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:509px;
  4175. top:349px;
  4176. width:322px;
  4177. height:40px;
  4178. display:flex;
  4179. }
  4180. #u155216 .text {
  4181. position:absolute;
  4182. align-self:center;
  4183. padding:2px 2px 2px 2px;
  4184. box-sizing:border-box;
  4185. width:100%;
  4186. }
  4187. #u155216_text {
  4188. border-width:0px;
  4189. word-wrap:break-word;
  4190. text-transform:none;
  4191. visibility:hidden;
  4192. }
  4193. #u155217_div {
  4194. border-width:0px;
  4195. position:absolute;
  4196. left:0px;
  4197. top:0px;
  4198. width:64px;
  4199. height:20px;
  4200. background:inherit;
  4201. background-color:rgba(255, 255, 255, 0);
  4202. border:none;
  4203. border-radius:0px;
  4204. -moz-box-shadow:none;
  4205. -webkit-box-shadow:none;
  4206. box-shadow:none;
  4207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4208. font-weight:400;
  4209. font-style:normal;
  4210. }
  4211. #u155217 {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:509px;
  4215. top:359px;
  4216. width:64px;
  4217. height:20px;
  4218. display:flex;
  4219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4220. font-weight:400;
  4221. font-style:normal;
  4222. }
  4223. #u155217 .text {
  4224. position:absolute;
  4225. align-self:flex-start;
  4226. padding:0px 0px 0px 0px;
  4227. box-sizing:border-box;
  4228. width:100%;
  4229. }
  4230. #u155217_text {
  4231. border-width:0px;
  4232. white-space:nowrap;
  4233. text-transform:none;
  4234. }
  4235. #u155218_div {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:0px;
  4239. top:0px;
  4240. width:10px;
  4241. height:10px;
  4242. background:inherit;
  4243. background-color:rgba(255, 255, 255, 0);
  4244. box-sizing:border-box;
  4245. border-width:1px;
  4246. border-style:solid;
  4247. border-color:rgba(170, 170, 170, 1);
  4248. border-right:0px;
  4249. border-bottom:0px;
  4250. border-radius:0px;
  4251. border-top-right-radius:0px;
  4252. border-bottom-left-radius:0px;
  4253. -moz-box-shadow:none;
  4254. -webkit-box-shadow:none;
  4255. box-shadow:none;
  4256. }
  4257. #u155218 {
  4258. border-width:0px;
  4259. position:absolute;
  4260. left:815px;
  4261. top:364px;
  4262. width:10px;
  4263. height:10px;
  4264. display:flex;
  4265. -webkit-transform:rotate(135deg);
  4266. -moz-transform:rotate(135deg);
  4267. -ms-transform:rotate(135deg);
  4268. transform:rotate(135deg);
  4269. }
  4270. #u155218 .text {
  4271. position:absolute;
  4272. align-self:center;
  4273. padding:2px 2px 2px 2px;
  4274. box-sizing:border-box;
  4275. width:100%;
  4276. }
  4277. #u155218_text {
  4278. border-width:0px;
  4279. word-wrap:break-word;
  4280. text-transform:none;
  4281. visibility:hidden;
  4282. }
  4283. #u155219_div {
  4284. border-width:0px;
  4285. position:absolute;
  4286. left:0px;
  4287. top:0px;
  4288. width:43px;
  4289. height:20px;
  4290. background:inherit;
  4291. background-color:rgba(255, 255, 255, 0);
  4292. border:none;
  4293. border-radius:0px;
  4294. -moz-box-shadow:none;
  4295. -webkit-box-shadow:none;
  4296. box-shadow:none;
  4297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4298. font-weight:400;
  4299. font-style:normal;
  4300. color:#AAAAAA;
  4301. }
  4302. #u155219 {
  4303. border-width:0px;
  4304. position:absolute;
  4305. left:770px;
  4306. top:359px;
  4307. width:43px;
  4308. height:20px;
  4309. display:flex;
  4310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4311. font-weight:400;
  4312. font-style:normal;
  4313. color:#AAAAAA;
  4314. }
  4315. #u155219 .text {
  4316. position:absolute;
  4317. align-self:flex-start;
  4318. padding:0px 0px 0px 0px;
  4319. box-sizing:border-box;
  4320. width:100%;
  4321. }
  4322. #u155219_text {
  4323. border-width:0px;
  4324. white-space:nowrap;
  4325. text-transform:none;
  4326. }
  4327. #u155220_div {
  4328. border-width:0px;
  4329. position:absolute;
  4330. left:0px;
  4331. top:0px;
  4332. width:322px;
  4333. height:170px;
  4334. background:inherit;
  4335. background-color:rgba(255, 255, 255, 1);
  4336. box-sizing:border-box;
  4337. border-width:1px;
  4338. border-style:solid;
  4339. border-color:rgba(215, 215, 215, 1);
  4340. border-left:0px;
  4341. border-top:0px;
  4342. border-right:0px;
  4343. border-radius:0px;
  4344. border-bottom-right-radius:0px;
  4345. border-bottom-left-radius:0px;
  4346. -moz-box-shadow:none;
  4347. -webkit-box-shadow:none;
  4348. box-shadow:none;
  4349. }
  4350. #u155220 {
  4351. border-width:0px;
  4352. position:absolute;
  4353. left:509px;
  4354. top:389px;
  4355. width:322px;
  4356. height:170px;
  4357. display:flex;
  4358. }
  4359. #u155220 .text {
  4360. position:absolute;
  4361. align-self:center;
  4362. padding:2px 2px 2px 2px;
  4363. box-sizing:border-box;
  4364. width:100%;
  4365. }
  4366. #u155220_text {
  4367. border-width:0px;
  4368. word-wrap:break-word;
  4369. text-transform:none;
  4370. visibility:hidden;
  4371. }
  4372. #u155221_img {
  4373. border-width:0px;
  4374. position:absolute;
  4375. left:0px;
  4376. top:0px;
  4377. width:318px;
  4378. height:168px;
  4379. }
  4380. #u155221 {
  4381. border-width:0px;
  4382. position:absolute;
  4383. left:509px;
  4384. top:389px;
  4385. width:318px;
  4386. height:168px;
  4387. display:flex;
  4388. }
  4389. #u155221 .text {
  4390. position:absolute;
  4391. align-self:center;
  4392. padding:2px 2px 2px 2px;
  4393. box-sizing:border-box;
  4394. width:100%;
  4395. }
  4396. #u155221_text {
  4397. border-width:0px;
  4398. word-wrap:break-word;
  4399. text-transform:none;
  4400. visibility:hidden;
  4401. }
  4402. #u155222 {
  4403. border-width:0px;
  4404. position:absolute;
  4405. left:0px;
  4406. top:0px;
  4407. width:0px;
  4408. height:0px;
  4409. }
  4410. #u155223_div {
  4411. border-width:0px;
  4412. position:absolute;
  4413. left:0px;
  4414. top:0px;
  4415. width:322px;
  4416. height:40px;
  4417. background:inherit;
  4418. background-color:rgba(255, 255, 255, 1);
  4419. box-sizing:border-box;
  4420. border-width:1px;
  4421. border-style:solid;
  4422. border-color:rgba(215, 215, 215, 1);
  4423. border-left:0px;
  4424. border-top:0px;
  4425. border-right:0px;
  4426. border-radius:0px;
  4427. border-bottom-right-radius:0px;
  4428. border-bottom-left-radius:0px;
  4429. -moz-box-shadow:none;
  4430. -webkit-box-shadow:none;
  4431. box-shadow:none;
  4432. }
  4433. #u155223 {
  4434. border-width:0px;
  4435. position:absolute;
  4436. left:509px;
  4437. top:559px;
  4438. width:322px;
  4439. height:40px;
  4440. display:flex;
  4441. }
  4442. #u155223 .text {
  4443. position:absolute;
  4444. align-self:center;
  4445. padding:2px 2px 2px 2px;
  4446. box-sizing:border-box;
  4447. width:100%;
  4448. }
  4449. #u155223_text {
  4450. border-width:0px;
  4451. word-wrap:break-word;
  4452. text-transform:none;
  4453. visibility:hidden;
  4454. }
  4455. #u155224_div {
  4456. border-width:0px;
  4457. position:absolute;
  4458. left:0px;
  4459. top:0px;
  4460. width:36px;
  4461. height:20px;
  4462. background:inherit;
  4463. background-color:rgba(255, 255, 255, 0);
  4464. border:none;
  4465. border-radius:0px;
  4466. -moz-box-shadow:none;
  4467. -webkit-box-shadow:none;
  4468. box-shadow:none;
  4469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4470. font-weight:400;
  4471. font-style:normal;
  4472. }
  4473. #u155224 {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:509px;
  4477. top:569px;
  4478. width:36px;
  4479. height:20px;
  4480. display:flex;
  4481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4482. font-weight:400;
  4483. font-style:normal;
  4484. }
  4485. #u155224 .text {
  4486. position:absolute;
  4487. align-self:flex-start;
  4488. padding:0px 0px 0px 0px;
  4489. box-sizing:border-box;
  4490. width:100%;
  4491. }
  4492. #u155224_text {
  4493. border-width:0px;
  4494. white-space:nowrap;
  4495. text-transform:none;
  4496. }
  4497. #u155225_div {
  4498. border-width:0px;
  4499. position:absolute;
  4500. left:0px;
  4501. top:0px;
  4502. width:43px;
  4503. height:20px;
  4504. background:inherit;
  4505. background-color:rgba(255, 255, 255, 0);
  4506. border:none;
  4507. border-radius:0px;
  4508. -moz-box-shadow:none;
  4509. -webkit-box-shadow:none;
  4510. box-shadow:none;
  4511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4512. font-weight:400;
  4513. font-style:normal;
  4514. color:#AAAAAA;
  4515. }
  4516. #u155225 {
  4517. border-width:0px;
  4518. position:absolute;
  4519. left:784px;
  4520. top:569px;
  4521. width:43px;
  4522. height:20px;
  4523. display:flex;
  4524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4525. font-weight:400;
  4526. font-style:normal;
  4527. color:#AAAAAA;
  4528. }
  4529. #u155225 .text {
  4530. position:absolute;
  4531. align-self:flex-start;
  4532. padding:0px 0px 0px 0px;
  4533. box-sizing:border-box;
  4534. width:100%;
  4535. }
  4536. #u155225_text {
  4537. border-width:0px;
  4538. white-space:nowrap;
  4539. text-transform:none;
  4540. }
  4541. #u155226 {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:0px;
  4545. top:0px;
  4546. width:0px;
  4547. height:0px;
  4548. }
  4549. #u155227_div {
  4550. border-width:0px;
  4551. position:absolute;
  4552. left:0px;
  4553. top:0px;
  4554. width:322px;
  4555. height:40px;
  4556. background:inherit;
  4557. background-color:rgba(255, 255, 255, 1);
  4558. box-sizing:border-box;
  4559. border-width:1px;
  4560. border-style:solid;
  4561. border-color:rgba(215, 215, 215, 1);
  4562. border-left:0px;
  4563. border-top:0px;
  4564. border-right:0px;
  4565. border-radius:0px;
  4566. border-bottom-right-radius:0px;
  4567. border-bottom-left-radius:0px;
  4568. -moz-box-shadow:none;
  4569. -webkit-box-shadow:none;
  4570. box-shadow:none;
  4571. }
  4572. #u155227 {
  4573. border-width:0px;
  4574. position:absolute;
  4575. left:509px;
  4576. top:600px;
  4577. width:322px;
  4578. height:40px;
  4579. display:flex;
  4580. }
  4581. #u155227 .text {
  4582. position:absolute;
  4583. align-self:center;
  4584. padding:2px 2px 2px 2px;
  4585. box-sizing:border-box;
  4586. width:100%;
  4587. }
  4588. #u155227_text {
  4589. border-width:0px;
  4590. word-wrap:break-word;
  4591. text-transform:none;
  4592. visibility:hidden;
  4593. }
  4594. #u155228_div {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:0px;
  4598. top:0px;
  4599. width:64px;
  4600. height:20px;
  4601. background:inherit;
  4602. background-color:rgba(255, 255, 255, 0);
  4603. border:none;
  4604. border-radius:0px;
  4605. -moz-box-shadow:none;
  4606. -webkit-box-shadow:none;
  4607. box-shadow:none;
  4608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4609. font-weight:400;
  4610. font-style:normal;
  4611. }
  4612. #u155228 {
  4613. border-width:0px;
  4614. position:absolute;
  4615. left:509px;
  4616. top:610px;
  4617. width:64px;
  4618. height:20px;
  4619. display:flex;
  4620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4621. font-weight:400;
  4622. font-style:normal;
  4623. }
  4624. #u155228 .text {
  4625. position:absolute;
  4626. align-self:flex-start;
  4627. padding:0px 0px 0px 0px;
  4628. box-sizing:border-box;
  4629. width:100%;
  4630. }
  4631. #u155228_text {
  4632. border-width:0px;
  4633. white-space:nowrap;
  4634. text-transform:none;
  4635. }
  4636. #u155229_div {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:0px;
  4640. top:0px;
  4641. width:43px;
  4642. height:20px;
  4643. background:inherit;
  4644. background-color:rgba(255, 255, 255, 0);
  4645. border:none;
  4646. border-radius:0px;
  4647. -moz-box-shadow:none;
  4648. -webkit-box-shadow:none;
  4649. box-shadow:none;
  4650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4651. font-weight:400;
  4652. font-style:normal;
  4653. color:#AAAAAA;
  4654. }
  4655. #u155229 {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:784px;
  4659. top:610px;
  4660. width:43px;
  4661. height:20px;
  4662. display:flex;
  4663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4664. font-weight:400;
  4665. font-style:normal;
  4666. color:#AAAAAA;
  4667. }
  4668. #u155229 .text {
  4669. position:absolute;
  4670. align-self:flex-start;
  4671. padding:0px 0px 0px 0px;
  4672. box-sizing:border-box;
  4673. width:100%;
  4674. }
  4675. #u155229_text {
  4676. border-width:0px;
  4677. white-space:nowrap;
  4678. text-transform:none;
  4679. }
  4680. #u155230 {
  4681. border-width:0px;
  4682. position:absolute;
  4683. left:0px;
  4684. top:0px;
  4685. width:0px;
  4686. height:0px;
  4687. }
  4688. #u155231_div {
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:0px;
  4692. top:0px;
  4693. width:322px;
  4694. height:40px;
  4695. background:inherit;
  4696. background-color:rgba(255, 255, 255, 1);
  4697. border:none;
  4698. border-left:0px;
  4699. border-top:0px;
  4700. border-right:0px;
  4701. border-radius:0px;
  4702. border-bottom-right-radius:0px;
  4703. border-bottom-left-radius:0px;
  4704. -moz-box-shadow:none;
  4705. -webkit-box-shadow:none;
  4706. box-shadow:none;
  4707. }
  4708. #u155231 {
  4709. border-width:0px;
  4710. position:absolute;
  4711. left:509px;
  4712. top:640px;
  4713. width:322px;
  4714. height:40px;
  4715. display:flex;
  4716. }
  4717. #u155231 .text {
  4718. position:absolute;
  4719. align-self:center;
  4720. padding:2px 2px 2px 2px;
  4721. box-sizing:border-box;
  4722. width:100%;
  4723. }
  4724. #u155231_text {
  4725. border-width:0px;
  4726. word-wrap:break-word;
  4727. text-transform:none;
  4728. visibility:hidden;
  4729. }
  4730. #u155232_div {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:0px;
  4734. top:0px;
  4735. width:57px;
  4736. height:20px;
  4737. background:inherit;
  4738. background-color:rgba(255, 255, 255, 0);
  4739. border:none;
  4740. border-radius:0px;
  4741. -moz-box-shadow:none;
  4742. -webkit-box-shadow:none;
  4743. box-shadow:none;
  4744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4745. font-weight:400;
  4746. font-style:normal;
  4747. }
  4748. #u155232 {
  4749. border-width:0px;
  4750. position:absolute;
  4751. left:509px;
  4752. top:650px;
  4753. width:57px;
  4754. height:20px;
  4755. display:flex;
  4756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4757. font-weight:400;
  4758. font-style:normal;
  4759. }
  4760. #u155232 .text {
  4761. position:absolute;
  4762. align-self:flex-start;
  4763. padding:0px 0px 0px 0px;
  4764. box-sizing:border-box;
  4765. width:100%;
  4766. }
  4767. #u155232_text {
  4768. border-width:0px;
  4769. white-space:nowrap;
  4770. text-transform:none;
  4771. }
  4772. #u155233_div {
  4773. border-width:0px;
  4774. position:absolute;
  4775. left:0px;
  4776. top:0px;
  4777. width:57px;
  4778. height:20px;
  4779. background:inherit;
  4780. background-color:rgba(255, 255, 255, 0);
  4781. border:none;
  4782. border-radius:0px;
  4783. -moz-box-shadow:none;
  4784. -webkit-box-shadow:none;
  4785. box-shadow:none;
  4786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4787. font-weight:400;
  4788. font-style:normal;
  4789. color:#AAAAAA;
  4790. text-align:right;
  4791. }
  4792. #u155233 {
  4793. border-width:0px;
  4794. position:absolute;
  4795. left:770px;
  4796. top:650px;
  4797. width:57px;
  4798. height:20px;
  4799. display:flex;
  4800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4801. font-weight:400;
  4802. font-style:normal;
  4803. color:#AAAAAA;
  4804. text-align:right;
  4805. }
  4806. #u155233 .text {
  4807. position:absolute;
  4808. align-self:flex-start;
  4809. padding:0px 0px 0px 0px;
  4810. box-sizing:border-box;
  4811. width:100%;
  4812. }
  4813. #u155233_text {
  4814. border-width:0px;
  4815. white-space:nowrap;
  4816. text-transform:none;
  4817. }
  4818. #u155234 {
  4819. border-width:0px;
  4820. position:absolute;
  4821. left:0px;
  4822. top:0px;
  4823. width:0px;
  4824. height:0px;
  4825. }
  4826. #u155235 {
  4827. border-width:0px;
  4828. position:absolute;
  4829. left:0px;
  4830. top:0px;
  4831. width:0px;
  4832. height:0px;
  4833. }
  4834. #u155236_img {
  4835. border-width:0px;
  4836. position:absolute;
  4837. left:0px;
  4838. top:0px;
  4839. width:27px;
  4840. height:27px;
  4841. }
  4842. #u155236 {
  4843. border-width:0px;
  4844. position:absolute;
  4845. left:718px;
  4846. top:122px;
  4847. width:27px;
  4848. height:27px;
  4849. display:flex;
  4850. font-size:12px;
  4851. color:#FFFFFF;
  4852. }
  4853. #u155236 .text {
  4854. position:absolute;
  4855. align-self:center;
  4856. padding:2px 2px 2px 2px;
  4857. box-sizing:border-box;
  4858. width:100%;
  4859. }
  4860. #u155236_text {
  4861. border-width:0px;
  4862. word-wrap:break-word;
  4863. text-transform:none;
  4864. }
  4865. #u155237_div {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:0px;
  4869. top:0px;
  4870. width:57px;
  4871. height:30px;
  4872. background:inherit;
  4873. background-color:rgba(255, 255, 255, 0);
  4874. border:none;
  4875. border-left:0px;
  4876. border-top:0px;
  4877. border-right:0px;
  4878. border-radius:0px;
  4879. border-bottom-right-radius:0px;
  4880. border-bottom-left-radius:0px;
  4881. -moz-box-shadow:none;
  4882. -webkit-box-shadow:none;
  4883. box-shadow:none;
  4884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4885. font-weight:400;
  4886. font-style:normal;
  4887. font-size:14px;
  4888. color:#FFFFFF;
  4889. line-height:30px;
  4890. }
  4891. #u155237 {
  4892. border-width:0px;
  4893. position:absolute;
  4894. left:752px;
  4895. top:121px;
  4896. width:57px;
  4897. height:30px;
  4898. display:flex;
  4899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4900. font-weight:400;
  4901. font-style:normal;
  4902. font-size:14px;
  4903. color:#FFFFFF;
  4904. line-height:30px;
  4905. }
  4906. #u155237 .text {
  4907. position:absolute;
  4908. align-self:center;
  4909. padding:0px 0px 0px 0px;
  4910. box-sizing:border-box;
  4911. width:100%;
  4912. }
  4913. #u155237_text {
  4914. border-width:0px;
  4915. white-space:nowrap;
  4916. text-transform:none;
  4917. }
  4918. #u155238_img {
  4919. border-width:0px;
  4920. position:absolute;
  4921. left:0px;
  4922. top:0px;
  4923. width:27px;
  4924. height:27px;
  4925. }
  4926. #u155238 {
  4927. border-width:0px;
  4928. position:absolute;
  4929. left:532px;
  4930. top:122px;
  4931. width:27px;
  4932. height:27px;
  4933. display:flex;
  4934. font-size:12px;
  4935. color:#1890FF;
  4936. }
  4937. #u155238 .text {
  4938. position:absolute;
  4939. align-self:center;
  4940. padding:2px 2px 2px 2px;
  4941. box-sizing:border-box;
  4942. width:100%;
  4943. }
  4944. #u155238_text {
  4945. border-width:0px;
  4946. word-wrap:break-word;
  4947. text-transform:none;
  4948. }
  4949. #u155239_div {
  4950. border-width:0px;
  4951. position:absolute;
  4952. left:0px;
  4953. top:0px;
  4954. width:57px;
  4955. height:30px;
  4956. background:inherit;
  4957. background-color:rgba(255, 255, 255, 0);
  4958. border:none;
  4959. border-left:0px;
  4960. border-top:0px;
  4961. border-right:0px;
  4962. border-radius:0px;
  4963. border-bottom-right-radius:0px;
  4964. border-bottom-left-radius:0px;
  4965. -moz-box-shadow:none;
  4966. -webkit-box-shadow:none;
  4967. box-shadow:none;
  4968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4969. font-weight:400;
  4970. font-style:normal;
  4971. font-size:14px;
  4972. color:#FFFFFF;
  4973. line-height:30px;
  4974. }
  4975. #u155239 {
  4976. border-width:0px;
  4977. position:absolute;
  4978. left:566px;
  4979. top:121px;
  4980. width:57px;
  4981. height:30px;
  4982. display:flex;
  4983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4984. font-weight:400;
  4985. font-style:normal;
  4986. font-size:14px;
  4987. color:#FFFFFF;
  4988. line-height:30px;
  4989. }
  4990. #u155239 .text {
  4991. position:absolute;
  4992. align-self:center;
  4993. padding:0px 0px 0px 0px;
  4994. box-sizing:border-box;
  4995. width:100%;
  4996. }
  4997. #u155239_text {
  4998. border-width:0px;
  4999. white-space:nowrap;
  5000. text-transform:none;
  5001. }
  5002. #u155240_img {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:0px;
  5006. top:0px;
  5007. width:71px;
  5008. height:2px;
  5009. }
  5010. #u155240 {
  5011. border-width:0px;
  5012. position:absolute;
  5013. left:642px;
  5014. top:135px;
  5015. width:70px;
  5016. height:1px;
  5017. display:flex;
  5018. color:#FFFFFF;
  5019. }
  5020. #u155240 .text {
  5021. position:absolute;
  5022. align-self:center;
  5023. padding:2px 2px 2px 2px;
  5024. box-sizing:border-box;
  5025. width:100%;
  5026. }
  5027. #u155240_text {
  5028. border-width:0px;
  5029. word-wrap:break-word;
  5030. text-transform:none;
  5031. visibility:hidden;
  5032. }
  5033. #u155241 {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:0px;
  5037. top:0px;
  5038. width:0px;
  5039. height:0px;
  5040. }
  5041. #u155242_div {
  5042. border-width:0px;
  5043. position:absolute;
  5044. left:0px;
  5045. top:0px;
  5046. width:322px;
  5047. height:40px;
  5048. background:inherit;
  5049. background-color:rgba(255, 255, 255, 1);
  5050. box-sizing:border-box;
  5051. border-width:1px;
  5052. border-style:solid;
  5053. border-color:rgba(215, 215, 215, 1);
  5054. border-left:0px;
  5055. border-top:0px;
  5056. border-right:0px;
  5057. border-radius:0px;
  5058. border-bottom-right-radius:0px;
  5059. border-bottom-left-radius:0px;
  5060. -moz-box-shadow:none;
  5061. -webkit-box-shadow:none;
  5062. box-shadow:none;
  5063. }
  5064. #u155242 {
  5065. border-width:0px;
  5066. position:absolute;
  5067. left:509px;
  5068. top:309px;
  5069. width:322px;
  5070. height:40px;
  5071. display:flex;
  5072. }
  5073. #u155242 .text {
  5074. position:absolute;
  5075. align-self:center;
  5076. padding:2px 2px 2px 2px;
  5077. box-sizing:border-box;
  5078. width:100%;
  5079. }
  5080. #u155242_text {
  5081. border-width:0px;
  5082. word-wrap:break-word;
  5083. text-transform:none;
  5084. visibility:hidden;
  5085. }
  5086. #u155243_div {
  5087. border-width:0px;
  5088. position:absolute;
  5089. left:0px;
  5090. top:0px;
  5091. width:64px;
  5092. height:20px;
  5093. background:inherit;
  5094. background-color:rgba(255, 255, 255, 0);
  5095. border:none;
  5096. border-radius:0px;
  5097. -moz-box-shadow:none;
  5098. -webkit-box-shadow:none;
  5099. box-shadow:none;
  5100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5101. font-weight:400;
  5102. font-style:normal;
  5103. }
  5104. #u155243 {
  5105. border-width:0px;
  5106. position:absolute;
  5107. left:509px;
  5108. top:319px;
  5109. width:64px;
  5110. height:20px;
  5111. display:flex;
  5112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5113. font-weight:400;
  5114. font-style:normal;
  5115. }
  5116. #u155243 .text {
  5117. position:absolute;
  5118. align-self:flex-start;
  5119. padding:0px 0px 0px 0px;
  5120. box-sizing:border-box;
  5121. width:100%;
  5122. }
  5123. #u155243_text {
  5124. border-width:0px;
  5125. white-space:nowrap;
  5126. text-transform:none;
  5127. }
  5128. #u155244_div {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:0px;
  5132. top:0px;
  5133. width:10px;
  5134. height:10px;
  5135. background:inherit;
  5136. background-color:rgba(255, 255, 255, 0);
  5137. box-sizing:border-box;
  5138. border-width:1px;
  5139. border-style:solid;
  5140. border-color:rgba(170, 170, 170, 1);
  5141. border-right:0px;
  5142. border-bottom:0px;
  5143. border-radius:0px;
  5144. border-top-right-radius:0px;
  5145. border-bottom-left-radius:0px;
  5146. -moz-box-shadow:none;
  5147. -webkit-box-shadow:none;
  5148. box-shadow:none;
  5149. }
  5150. #u155244 {
  5151. border-width:0px;
  5152. position:absolute;
  5153. left:815px;
  5154. top:324px;
  5155. width:10px;
  5156. height:10px;
  5157. display:flex;
  5158. -webkit-transform:rotate(135deg);
  5159. -moz-transform:rotate(135deg);
  5160. -ms-transform:rotate(135deg);
  5161. transform:rotate(135deg);
  5162. }
  5163. #u155244 .text {
  5164. position:absolute;
  5165. align-self:center;
  5166. padding:2px 2px 2px 2px;
  5167. box-sizing:border-box;
  5168. width:100%;
  5169. }
  5170. #u155244_text {
  5171. border-width:0px;
  5172. word-wrap:break-word;
  5173. text-transform:none;
  5174. visibility:hidden;
  5175. }
  5176. #u155245_div {
  5177. border-width:0px;
  5178. position:absolute;
  5179. left:0px;
  5180. top:0px;
  5181. width:43px;
  5182. height:20px;
  5183. background:inherit;
  5184. background-color:rgba(255, 255, 255, 0);
  5185. border:none;
  5186. border-radius:0px;
  5187. -moz-box-shadow:none;
  5188. -webkit-box-shadow:none;
  5189. box-shadow:none;
  5190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5191. font-weight:400;
  5192. font-style:normal;
  5193. color:#AAAAAA;
  5194. }
  5195. #u155245 {
  5196. border-width:0px;
  5197. position:absolute;
  5198. left:770px;
  5199. top:319px;
  5200. width:43px;
  5201. height:20px;
  5202. display:flex;
  5203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5204. font-weight:400;
  5205. font-style:normal;
  5206. color:#AAAAAA;
  5207. }
  5208. #u155245 .text {
  5209. position:absolute;
  5210. align-self:flex-start;
  5211. padding:0px 0px 0px 0px;
  5212. box-sizing:border-box;
  5213. width:100%;
  5214. }
  5215. #u155245_text {
  5216. border-width:0px;
  5217. white-space:nowrap;
  5218. text-transform:none;
  5219. }
  5220. #u155246 {
  5221. border-width:0px;
  5222. position:absolute;
  5223. left:0px;
  5224. top:0px;
  5225. width:0px;
  5226. height:0px;
  5227. }
  5228. #u155247_div {
  5229. border-width:0px;
  5230. position:absolute;
  5231. left:0px;
  5232. top:0px;
  5233. width:375px;
  5234. height:60px;
  5235. background:inherit;
  5236. background-color:rgba(255, 255, 255, 1);
  5237. border:none;
  5238. border-top:0px;
  5239. border-radius:28px;
  5240. border-top-left-radius:0px;
  5241. border-top-right-radius:0px;
  5242. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5243. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5244. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5246. font-weight:400;
  5247. font-style:normal;
  5248. font-size:14px;
  5249. color:#FFFFFF;
  5250. }
  5251. #u155247 {
  5252. border-width:0px;
  5253. position:absolute;
  5254. left:489px;
  5255. top:780px;
  5256. width:375px;
  5257. height:60px;
  5258. display:flex;
  5259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5260. font-weight:400;
  5261. font-style:normal;
  5262. font-size:14px;
  5263. color:#FFFFFF;
  5264. }
  5265. #u155247 .text {
  5266. position:absolute;
  5267. align-self:center;
  5268. padding:2px 2px 2px 2px;
  5269. box-sizing:border-box;
  5270. width:100%;
  5271. }
  5272. #u155247_text {
  5273. border-width:0px;
  5274. word-wrap:break-word;
  5275. text-transform:none;
  5276. visibility:hidden;
  5277. }
  5278. #u155248_div {
  5279. border-width:0px;
  5280. position:absolute;
  5281. left:0px;
  5282. top:0px;
  5283. width:324px;
  5284. height:40px;
  5285. background:inherit;
  5286. background-color:rgba(215, 215, 215, 1);
  5287. border:none;
  5288. border-radius:63px;
  5289. -moz-box-shadow:none;
  5290. -webkit-box-shadow:none;
  5291. box-shadow:none;
  5292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5293. font-weight:400;
  5294. font-style:normal;
  5295. font-size:14px;
  5296. color:#FFFFFF;
  5297. }
  5298. #u155248 {
  5299. border-width:0px;
  5300. position:absolute;
  5301. left:517px;
  5302. top:789px;
  5303. width:324px;
  5304. height:40px;
  5305. display:flex;
  5306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5307. font-weight:400;
  5308. font-style:normal;
  5309. font-size:14px;
  5310. color:#FFFFFF;
  5311. }
  5312. #u155248 .text {
  5313. position:absolute;
  5314. align-self:center;
  5315. padding:2px 2px 2px 2px;
  5316. box-sizing:border-box;
  5317. width:100%;
  5318. }
  5319. #u155248_text {
  5320. border-width:0px;
  5321. word-wrap:break-word;
  5322. text-transform:none;
  5323. }
  5324. #u155249 {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:0px;
  5328. top:0px;
  5329. width:0px;
  5330. height:0px;
  5331. }
  5332. #u155250_div {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:0px;
  5336. top:0px;
  5337. width:375px;
  5338. height:40px;
  5339. background:inherit;
  5340. background-color:rgba(255, 255, 255, 1);
  5341. border:none;
  5342. border-left:0px;
  5343. border-top:0px;
  5344. border-right:0px;
  5345. border-radius:0px;
  5346. border-bottom-right-radius:0px;
  5347. border-bottom-left-radius:0px;
  5348. -moz-box-shadow:none;
  5349. -webkit-box-shadow:none;
  5350. box-shadow:none;
  5351. }
  5352. #u155250 {
  5353. border-width:0px;
  5354. position:absolute;
  5355. left:956px;
  5356. top:67px;
  5357. width:375px;
  5358. height:40px;
  5359. display:flex;
  5360. }
  5361. #u155250 .text {
  5362. position:absolute;
  5363. align-self:center;
  5364. padding:2px 2px 2px 2px;
  5365. box-sizing:border-box;
  5366. width:100%;
  5367. }
  5368. #u155250_text {
  5369. border-width:0px;
  5370. word-wrap:break-word;
  5371. text-transform:none;
  5372. visibility:hidden;
  5373. }
  5374. #u155251 {
  5375. border-width:0px;
  5376. position:absolute;
  5377. left:0px;
  5378. top:0px;
  5379. width:0px;
  5380. height:0px;
  5381. }
  5382. #u155252_div {
  5383. border-width:0px;
  5384. position:absolute;
  5385. left:0px;
  5386. top:0px;
  5387. width:88px;
  5388. height:32px;
  5389. background:inherit;
  5390. background-color:rgba(255, 255, 255, 1);
  5391. box-sizing:border-box;
  5392. border-width:1px;
  5393. border-style:solid;
  5394. border-color:rgba(242, 242, 242, 1);
  5395. border-radius:33px;
  5396. -moz-box-shadow:none;
  5397. -webkit-box-shadow:none;
  5398. box-shadow:none;
  5399. }
  5400. #u155252 {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:1233px;
  5404. top:69px;
  5405. width:88px;
  5406. height:32px;
  5407. display:flex;
  5408. }
  5409. #u155252 .text {
  5410. position:absolute;
  5411. align-self:center;
  5412. padding:2px 2px 2px 2px;
  5413. box-sizing:border-box;
  5414. width:100%;
  5415. }
  5416. #u155252_text {
  5417. border-width:0px;
  5418. word-wrap:break-word;
  5419. text-transform:none;
  5420. visibility:hidden;
  5421. }
  5422. #u155253 {
  5423. border-width:0px;
  5424. position:absolute;
  5425. left:0px;
  5426. top:0px;
  5427. width:0px;
  5428. height:0px;
  5429. }
  5430. #u155254_img {
  5431. border-width:0px;
  5432. position:absolute;
  5433. left:0px;
  5434. top:0px;
  5435. width:18px;
  5436. height:18px;
  5437. }
  5438. #u155254 {
  5439. border-width:0px;
  5440. position:absolute;
  5441. left:1296px;
  5442. top:76px;
  5443. width:18px;
  5444. height:18px;
  5445. display:flex;
  5446. }
  5447. #u155254 .text {
  5448. position:absolute;
  5449. align-self:center;
  5450. padding:2px 2px 2px 2px;
  5451. box-sizing:border-box;
  5452. width:100%;
  5453. }
  5454. #u155254_text {
  5455. border-width:0px;
  5456. word-wrap:break-word;
  5457. text-transform:none;
  5458. visibility:hidden;
  5459. }
  5460. #u155255_img {
  5461. border-width:0px;
  5462. position:absolute;
  5463. left:0px;
  5464. top:0px;
  5465. width:6px;
  5466. height:6px;
  5467. }
  5468. #u155255 {
  5469. border-width:0px;
  5470. position:absolute;
  5471. left:1302px;
  5472. top:82px;
  5473. width:6px;
  5474. height:6px;
  5475. display:flex;
  5476. }
  5477. #u155255 .text {
  5478. position:absolute;
  5479. align-self:center;
  5480. padding:2px 2px 2px 2px;
  5481. box-sizing:border-box;
  5482. width:100%;
  5483. }
  5484. #u155255_text {
  5485. border-width:0px;
  5486. word-wrap:break-word;
  5487. text-transform:none;
  5488. visibility:hidden;
  5489. }
  5490. #u155256 {
  5491. border-width:0px;
  5492. position:absolute;
  5493. left:0px;
  5494. top:0px;
  5495. width:0px;
  5496. height:0px;
  5497. }
  5498. #u155257_img {
  5499. border-width:0px;
  5500. position:absolute;
  5501. left:0px;
  5502. top:0px;
  5503. width:5px;
  5504. height:5px;
  5505. }
  5506. #u155257 {
  5507. border-width:0px;
  5508. position:absolute;
  5509. left:1247px;
  5510. top:83px;
  5511. width:5px;
  5512. height:5px;
  5513. display:flex;
  5514. }
  5515. #u155257 .text {
  5516. position:absolute;
  5517. align-self:center;
  5518. padding:2px 2px 2px 2px;
  5519. box-sizing:border-box;
  5520. width:100%;
  5521. }
  5522. #u155257_text {
  5523. border-width:0px;
  5524. word-wrap:break-word;
  5525. text-transform:none;
  5526. visibility:hidden;
  5527. }
  5528. #u155258_img {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:0px;
  5532. top:0px;
  5533. width:5px;
  5534. height:5px;
  5535. }
  5536. #u155258 {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:1263px;
  5540. top:83px;
  5541. width:5px;
  5542. height:5px;
  5543. display:flex;
  5544. }
  5545. #u155258 .text {
  5546. position:absolute;
  5547. align-self:center;
  5548. padding:2px 2px 2px 2px;
  5549. box-sizing:border-box;
  5550. width:100%;
  5551. }
  5552. #u155258_text {
  5553. border-width:0px;
  5554. word-wrap:break-word;
  5555. text-transform:none;
  5556. visibility:hidden;
  5557. }
  5558. #u155259_img {
  5559. border-width:0px;
  5560. position:absolute;
  5561. left:0px;
  5562. top:0px;
  5563. width:7px;
  5564. height:7px;
  5565. }
  5566. #u155259 {
  5567. border-width:0px;
  5568. position:absolute;
  5569. left:1254px;
  5570. top:82px;
  5571. width:7px;
  5572. height:7px;
  5573. display:flex;
  5574. }
  5575. #u155259 .text {
  5576. position:absolute;
  5577. align-self:center;
  5578. padding:2px 2px 2px 2px;
  5579. box-sizing:border-box;
  5580. width:100%;
  5581. }
  5582. #u155259_text {
  5583. border-width:0px;
  5584. word-wrap:break-word;
  5585. text-transform:none;
  5586. visibility:hidden;
  5587. }
  5588. #u155260_img {
  5589. border-width:0px;
  5590. position:absolute;
  5591. left:0px;
  5592. top:0px;
  5593. width:19px;
  5594. height:2px;
  5595. }
  5596. #u155260 {
  5597. border-width:0px;
  5598. position:absolute;
  5599. left:1271px;
  5600. top:85px;
  5601. width:18px;
  5602. height:1px;
  5603. display:flex;
  5604. -webkit-transform:rotate(90deg);
  5605. -moz-transform:rotate(90deg);
  5606. -ms-transform:rotate(90deg);
  5607. transform:rotate(90deg);
  5608. }
  5609. #u155260 .text {
  5610. position:absolute;
  5611. align-self:center;
  5612. padding:2px 2px 2px 2px;
  5613. box-sizing:border-box;
  5614. width:100%;
  5615. }
  5616. #u155260_text {
  5617. border-width:0px;
  5618. word-wrap:break-word;
  5619. text-transform:none;
  5620. visibility:hidden;
  5621. }
  5622. #u155261_div {
  5623. border-width:0px;
  5624. position:absolute;
  5625. left:0px;
  5626. top:0px;
  5627. width:12px;
  5628. height:12px;
  5629. background:inherit;
  5630. background-color:rgba(255, 255, 255, 0);
  5631. box-sizing:border-box;
  5632. border-width:2px;
  5633. border-style:solid;
  5634. border-color:rgba(51, 51, 51, 1);
  5635. border-right:0px;
  5636. border-bottom:0px;
  5637. border-radius:0px;
  5638. border-top-right-radius:0px;
  5639. border-bottom-left-radius:0px;
  5640. -moz-box-shadow:none;
  5641. -webkit-box-shadow:none;
  5642. box-shadow:none;
  5643. }
  5644. #u155261 {
  5645. border-width:0px;
  5646. position:absolute;
  5647. left:972px;
  5648. top:79px;
  5649. width:12px;
  5650. height:12px;
  5651. display:flex;
  5652. -webkit-transform:rotate(315deg);
  5653. -moz-transform:rotate(315deg);
  5654. -ms-transform:rotate(315deg);
  5655. transform:rotate(315deg);
  5656. }
  5657. #u155261 .text {
  5658. position:absolute;
  5659. align-self:center;
  5660. padding:2px 2px 2px 2px;
  5661. box-sizing:border-box;
  5662. width:100%;
  5663. }
  5664. #u155261_text {
  5665. border-width:0px;
  5666. word-wrap:break-word;
  5667. text-transform:none;
  5668. visibility:hidden;
  5669. }
  5670. #u155262_div {
  5671. border-width:0px;
  5672. position:absolute;
  5673. left:0px;
  5674. top:0px;
  5675. width:109px;
  5676. height:25px;
  5677. background:inherit;
  5678. background-color:rgba(255, 255, 255, 0);
  5679. border:none;
  5680. border-radius:0px;
  5681. -moz-box-shadow:none;
  5682. -webkit-box-shadow:none;
  5683. box-shadow:none;
  5684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5685. font-weight:400;
  5686. font-style:normal;
  5687. font-size:18px;
  5688. }
  5689. #u155262 {
  5690. border-width:0px;
  5691. position:absolute;
  5692. left:986px;
  5693. top:72px;
  5694. width:109px;
  5695. height:25px;
  5696. display:flex;
  5697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5698. font-weight:400;
  5699. font-style:normal;
  5700. font-size:18px;
  5701. }
  5702. #u155262 .text {
  5703. position:absolute;
  5704. align-self:flex-start;
  5705. padding:0px 0px 0px 0px;
  5706. box-sizing:border-box;
  5707. width:100%;
  5708. }
  5709. #u155262_text {
  5710. border-width:0px;
  5711. white-space:nowrap;
  5712. text-transform:none;
  5713. }
  5714. #u155263_img {
  5715. border-width:0px;
  5716. position:absolute;
  5717. left:0px;
  5718. top:0px;
  5719. width:375px;
  5720. height:44px;
  5721. }
  5722. #u155263 {
  5723. border-width:0px;
  5724. position:absolute;
  5725. left:956px;
  5726. top:24px;
  5727. width:375px;
  5728. height:44px;
  5729. display:flex;
  5730. }
  5731. #u155263 .text {
  5732. position:absolute;
  5733. align-self:center;
  5734. padding:2px 2px 2px 2px;
  5735. box-sizing:border-box;
  5736. width:100%;
  5737. }
  5738. #u155263_text {
  5739. border-width:0px;
  5740. word-wrap:break-word;
  5741. text-transform:none;
  5742. visibility:hidden;
  5743. }
  5744. #u155265_img {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:0px;
  5748. top:0px;
  5749. width:433px;
  5750. height:865px;
  5751. }
  5752. #u155265 {
  5753. border-width:0px;
  5754. position:absolute;
  5755. left:1401px;
  5756. top:0px;
  5757. width:433px;
  5758. height:865px;
  5759. display:flex;
  5760. }
  5761. #u155265 .text {
  5762. position:absolute;
  5763. align-self:center;
  5764. padding:2px 2px 2px 2px;
  5765. box-sizing:border-box;
  5766. width:100%;
  5767. }
  5768. #u155265_text {
  5769. border-width:0px;
  5770. word-wrap:break-word;
  5771. text-transform:none;
  5772. visibility:hidden;
  5773. }
  5774. #u155266_div {
  5775. border-width:0px;
  5776. position:absolute;
  5777. left:0px;
  5778. top:0px;
  5779. width:375px;
  5780. height:40px;
  5781. background:inherit;
  5782. background-color:rgba(255, 255, 255, 1);
  5783. box-sizing:border-box;
  5784. border-width:1px;
  5785. border-style:solid;
  5786. border-color:rgba(215, 215, 215, 1);
  5787. border-left:0px;
  5788. border-top:0px;
  5789. border-right:0px;
  5790. border-radius:0px;
  5791. border-bottom-right-radius:0px;
  5792. border-bottom-left-radius:0px;
  5793. -moz-box-shadow:none;
  5794. -webkit-box-shadow:none;
  5795. box-shadow:none;
  5796. }
  5797. #u155266 {
  5798. border-width:0px;
  5799. position:absolute;
  5800. left:1430px;
  5801. top:67px;
  5802. width:375px;
  5803. height:40px;
  5804. display:flex;
  5805. }
  5806. #u155266 .text {
  5807. position:absolute;
  5808. align-self:center;
  5809. padding:2px 2px 2px 2px;
  5810. box-sizing:border-box;
  5811. width:100%;
  5812. }
  5813. #u155266_text {
  5814. border-width:0px;
  5815. word-wrap:break-word;
  5816. text-transform:none;
  5817. visibility:hidden;
  5818. }
  5819. #u155267 {
  5820. border-width:0px;
  5821. position:absolute;
  5822. left:0px;
  5823. top:0px;
  5824. width:0px;
  5825. height:0px;
  5826. }
  5827. #u155268_div {
  5828. border-width:0px;
  5829. position:absolute;
  5830. left:0px;
  5831. top:0px;
  5832. width:88px;
  5833. height:32px;
  5834. background:inherit;
  5835. background-color:rgba(255, 255, 255, 1);
  5836. box-sizing:border-box;
  5837. border-width:1px;
  5838. border-style:solid;
  5839. border-color:rgba(242, 242, 242, 1);
  5840. border-radius:33px;
  5841. -moz-box-shadow:none;
  5842. -webkit-box-shadow:none;
  5843. box-shadow:none;
  5844. }
  5845. #u155268 {
  5846. border-width:0px;
  5847. position:absolute;
  5848. left:1710px;
  5849. top:71px;
  5850. width:88px;
  5851. height:32px;
  5852. display:flex;
  5853. }
  5854. #u155268 .text {
  5855. position:absolute;
  5856. align-self:center;
  5857. padding:2px 2px 2px 2px;
  5858. box-sizing:border-box;
  5859. width:100%;
  5860. }
  5861. #u155268_text {
  5862. border-width:0px;
  5863. word-wrap:break-word;
  5864. text-transform:none;
  5865. visibility:hidden;
  5866. }
  5867. #u155269 {
  5868. border-width:0px;
  5869. position:absolute;
  5870. left:0px;
  5871. top:0px;
  5872. width:0px;
  5873. height:0px;
  5874. }
  5875. #u155270_img {
  5876. border-width:0px;
  5877. position:absolute;
  5878. left:0px;
  5879. top:0px;
  5880. width:18px;
  5881. height:18px;
  5882. }
  5883. #u155270 {
  5884. border-width:0px;
  5885. position:absolute;
  5886. left:1773px;
  5887. top:78px;
  5888. width:18px;
  5889. height:18px;
  5890. display:flex;
  5891. }
  5892. #u155270 .text {
  5893. position:absolute;
  5894. align-self:center;
  5895. padding:2px 2px 2px 2px;
  5896. box-sizing:border-box;
  5897. width:100%;
  5898. }
  5899. #u155270_text {
  5900. border-width:0px;
  5901. word-wrap:break-word;
  5902. text-transform:none;
  5903. visibility:hidden;
  5904. }
  5905. #u155271_img {
  5906. border-width:0px;
  5907. position:absolute;
  5908. left:0px;
  5909. top:0px;
  5910. width:6px;
  5911. height:6px;
  5912. }
  5913. #u155271 {
  5914. border-width:0px;
  5915. position:absolute;
  5916. left:1779px;
  5917. top:84px;
  5918. width:6px;
  5919. height:6px;
  5920. display:flex;
  5921. }
  5922. #u155271 .text {
  5923. position:absolute;
  5924. align-self:center;
  5925. padding:2px 2px 2px 2px;
  5926. box-sizing:border-box;
  5927. width:100%;
  5928. }
  5929. #u155271_text {
  5930. border-width:0px;
  5931. word-wrap:break-word;
  5932. text-transform:none;
  5933. visibility:hidden;
  5934. }
  5935. #u155272 {
  5936. border-width:0px;
  5937. position:absolute;
  5938. left:0px;
  5939. top:0px;
  5940. width:0px;
  5941. height:0px;
  5942. }
  5943. #u155273_img {
  5944. border-width:0px;
  5945. position:absolute;
  5946. left:0px;
  5947. top:0px;
  5948. width:5px;
  5949. height:5px;
  5950. }
  5951. #u155273 {
  5952. border-width:0px;
  5953. position:absolute;
  5954. left:1724px;
  5955. top:85px;
  5956. width:5px;
  5957. height:5px;
  5958. display:flex;
  5959. }
  5960. #u155273 .text {
  5961. position:absolute;
  5962. align-self:center;
  5963. padding:2px 2px 2px 2px;
  5964. box-sizing:border-box;
  5965. width:100%;
  5966. }
  5967. #u155273_text {
  5968. border-width:0px;
  5969. word-wrap:break-word;
  5970. text-transform:none;
  5971. visibility:hidden;
  5972. }
  5973. #u155274_img {
  5974. border-width:0px;
  5975. position:absolute;
  5976. left:0px;
  5977. top:0px;
  5978. width:5px;
  5979. height:5px;
  5980. }
  5981. #u155274 {
  5982. border-width:0px;
  5983. position:absolute;
  5984. left:1740px;
  5985. top:85px;
  5986. width:5px;
  5987. height:5px;
  5988. display:flex;
  5989. }
  5990. #u155274 .text {
  5991. position:absolute;
  5992. align-self:center;
  5993. padding:2px 2px 2px 2px;
  5994. box-sizing:border-box;
  5995. width:100%;
  5996. }
  5997. #u155274_text {
  5998. border-width:0px;
  5999. word-wrap:break-word;
  6000. text-transform:none;
  6001. visibility:hidden;
  6002. }
  6003. #u155275_img {
  6004. border-width:0px;
  6005. position:absolute;
  6006. left:0px;
  6007. top:0px;
  6008. width:7px;
  6009. height:7px;
  6010. }
  6011. #u155275 {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:1731px;
  6015. top:84px;
  6016. width:7px;
  6017. height:7px;
  6018. display:flex;
  6019. }
  6020. #u155275 .text {
  6021. position:absolute;
  6022. align-self:center;
  6023. padding:2px 2px 2px 2px;
  6024. box-sizing:border-box;
  6025. width:100%;
  6026. }
  6027. #u155275_text {
  6028. border-width:0px;
  6029. word-wrap:break-word;
  6030. text-transform:none;
  6031. visibility:hidden;
  6032. }
  6033. #u155276_img {
  6034. border-width:0px;
  6035. position:absolute;
  6036. left:0px;
  6037. top:0px;
  6038. width:19px;
  6039. height:2px;
  6040. }
  6041. #u155276 {
  6042. border-width:0px;
  6043. position:absolute;
  6044. left:1748px;
  6045. top:87px;
  6046. width:18px;
  6047. height:1px;
  6048. display:flex;
  6049. -webkit-transform:rotate(90deg);
  6050. -moz-transform:rotate(90deg);
  6051. -ms-transform:rotate(90deg);
  6052. transform:rotate(90deg);
  6053. }
  6054. #u155276 .text {
  6055. position:absolute;
  6056. align-self:center;
  6057. padding:2px 2px 2px 2px;
  6058. box-sizing:border-box;
  6059. width:100%;
  6060. }
  6061. #u155276_text {
  6062. border-width:0px;
  6063. word-wrap:break-word;
  6064. text-transform:none;
  6065. visibility:hidden;
  6066. }
  6067. #u155277_img {
  6068. border-width:0px;
  6069. position:absolute;
  6070. left:0px;
  6071. top:0px;
  6072. width:375px;
  6073. height:44px;
  6074. }
  6075. #u155277 {
  6076. border-width:0px;
  6077. position:absolute;
  6078. left:1430px;
  6079. top:24px;
  6080. width:375px;
  6081. height:44px;
  6082. display:flex;
  6083. }
  6084. #u155277 .text {
  6085. position:absolute;
  6086. align-self:center;
  6087. padding:2px 2px 2px 2px;
  6088. box-sizing:border-box;
  6089. width:100%;
  6090. }
  6091. #u155277_text {
  6092. border-width:0px;
  6093. word-wrap:break-word;
  6094. text-transform:none;
  6095. visibility:hidden;
  6096. }
  6097. #u155278_div {
  6098. border-width:0px;
  6099. position:absolute;
  6100. left:0px;
  6101. top:0px;
  6102. width:375px;
  6103. height:50px;
  6104. background:inherit;
  6105. background-color:rgba(255, 255, 255, 1);
  6106. box-sizing:border-box;
  6107. border-width:1px;
  6108. border-style:solid;
  6109. border-color:rgba(242, 242, 242, 1);
  6110. border-radius:26px;
  6111. border-top-left-radius:0px;
  6112. border-top-right-radius:0px;
  6113. -moz-box-shadow:none;
  6114. -webkit-box-shadow:none;
  6115. box-shadow:none;
  6116. }
  6117. #u155278 {
  6118. border-width:0px;
  6119. position:absolute;
  6120. left:1430px;
  6121. top:788px;
  6122. width:375px;
  6123. height:50px;
  6124. display:flex;
  6125. }
  6126. #u155278 .text {
  6127. position:absolute;
  6128. align-self:center;
  6129. padding:2px 2px 2px 2px;
  6130. box-sizing:border-box;
  6131. width:100%;
  6132. }
  6133. #u155278_text {
  6134. border-width:0px;
  6135. word-wrap:break-word;
  6136. text-transform:none;
  6137. visibility:hidden;
  6138. }
  6139. #u155279 {
  6140. border-width:0px;
  6141. position:absolute;
  6142. left:0px;
  6143. top:0px;
  6144. width:0px;
  6145. height:0px;
  6146. }
  6147. #u155280_img {
  6148. border-width:0px;
  6149. position:absolute;
  6150. left:0px;
  6151. top:0px;
  6152. width:24px;
  6153. height:24px;
  6154. }
  6155. #u155280 {
  6156. border-width:0px;
  6157. position:absolute;
  6158. left:1470px;
  6159. top:792px;
  6160. width:24px;
  6161. height:24px;
  6162. display:flex;
  6163. font-size:8px;
  6164. }
  6165. #u155280 .text {
  6166. position:absolute;
  6167. align-self:center;
  6168. padding:2px 2px 2px 2px;
  6169. box-sizing:border-box;
  6170. width:100%;
  6171. }
  6172. #u155280_text {
  6173. border-width:0px;
  6174. word-wrap:break-word;
  6175. text-transform:none;
  6176. }
  6177. #u155281_div {
  6178. border-width:0px;
  6179. position:absolute;
  6180. left:0px;
  6181. top:0px;
  6182. width:25px;
  6183. height:17px;
  6184. background:inherit;
  6185. background-color:rgba(255, 255, 255, 0);
  6186. border:none;
  6187. border-radius:0px;
  6188. -moz-box-shadow:none;
  6189. -webkit-box-shadow:none;
  6190. box-shadow:none;
  6191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6192. font-weight:400;
  6193. font-style:normal;
  6194. font-size:12px;
  6195. }
  6196. #u155281 {
  6197. border-width:0px;
  6198. position:absolute;
  6199. left:1470px;
  6200. top:817px;
  6201. width:25px;
  6202. height:17px;
  6203. display:flex;
  6204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6205. font-weight:400;
  6206. font-style:normal;
  6207. font-size:12px;
  6208. }
  6209. #u155281 .text {
  6210. position:absolute;
  6211. align-self:flex-start;
  6212. padding:0px 0px 0px 0px;
  6213. box-sizing:border-box;
  6214. width:100%;
  6215. }
  6216. #u155281_text {
  6217. border-width:0px;
  6218. white-space:nowrap;
  6219. text-transform:none;
  6220. }
  6221. #u155282 {
  6222. border-width:0px;
  6223. position:absolute;
  6224. left:0px;
  6225. top:0px;
  6226. width:0px;
  6227. height:0px;
  6228. }
  6229. #u155283_img {
  6230. border-width:0px;
  6231. position:absolute;
  6232. left:0px;
  6233. top:0px;
  6234. width:24px;
  6235. height:24px;
  6236. }
  6237. #u155283 {
  6238. border-width:0px;
  6239. position:absolute;
  6240. left:1740px;
  6241. top:794px;
  6242. width:24px;
  6243. height:24px;
  6244. display:flex;
  6245. font-size:8px;
  6246. }
  6247. #u155283 .text {
  6248. position:absolute;
  6249. align-self:center;
  6250. padding:2px 2px 2px 2px;
  6251. box-sizing:border-box;
  6252. width:100%;
  6253. }
  6254. #u155283_text {
  6255. border-width:0px;
  6256. word-wrap:break-word;
  6257. text-transform:none;
  6258. }
  6259. #u155284_div {
  6260. border-width:0px;
  6261. position:absolute;
  6262. left:0px;
  6263. top:0px;
  6264. width:25px;
  6265. height:17px;
  6266. background:inherit;
  6267. background-color:rgba(255, 255, 255, 0);
  6268. border:none;
  6269. border-radius:0px;
  6270. -moz-box-shadow:none;
  6271. -webkit-box-shadow:none;
  6272. box-shadow:none;
  6273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6274. font-weight:400;
  6275. font-style:normal;
  6276. font-size:12px;
  6277. }
  6278. #u155284 {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:1740px;
  6282. top:819px;
  6283. width:25px;
  6284. height:17px;
  6285. display:flex;
  6286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6287. font-weight:400;
  6288. font-style:normal;
  6289. font-size:12px;
  6290. }
  6291. #u155284 .text {
  6292. position:absolute;
  6293. align-self:flex-start;
  6294. padding:0px 0px 0px 0px;
  6295. box-sizing:border-box;
  6296. width:100%;
  6297. }
  6298. #u155284_text {
  6299. border-width:0px;
  6300. white-space:nowrap;
  6301. text-transform:none;
  6302. }
  6303. #u155285_div {
  6304. border-width:0px;
  6305. position:absolute;
  6306. left:0px;
  6307. top:0px;
  6308. width:375px;
  6309. height:681px;
  6310. background:inherit;
  6311. background-color:rgba(242, 242, 242, 0.462745098039216);
  6312. border:none;
  6313. border-radius:0px;
  6314. -moz-box-shadow:none;
  6315. -webkit-box-shadow:none;
  6316. box-shadow:none;
  6317. }
  6318. #u155285 {
  6319. border-width:0px;
  6320. position:absolute;
  6321. left:1430px;
  6322. top:107px;
  6323. width:375px;
  6324. height:681px;
  6325. display:flex;
  6326. }
  6327. #u155285 .text {
  6328. position:absolute;
  6329. align-self:center;
  6330. padding:2px 2px 2px 2px;
  6331. box-sizing:border-box;
  6332. width:100%;
  6333. }
  6334. #u155285_text {
  6335. border-width:0px;
  6336. word-wrap:break-word;
  6337. text-transform:none;
  6338. visibility:hidden;
  6339. }
  6340. #u155286 {
  6341. border-width:0px;
  6342. position:absolute;
  6343. left:0px;
  6344. top:0px;
  6345. width:0px;
  6346. height:0px;
  6347. }
  6348. #u155287_img {
  6349. border-width:0px;
  6350. position:absolute;
  6351. left:0px;
  6352. top:0px;
  6353. width:24px;
  6354. height:24px;
  6355. }
  6356. #u155287 {
  6357. border-width:0px;
  6358. position:absolute;
  6359. left:1652px;
  6360. top:792px;
  6361. width:24px;
  6362. height:24px;
  6363. display:flex;
  6364. font-size:8px;
  6365. }
  6366. #u155287 .text {
  6367. position:absolute;
  6368. align-self:center;
  6369. padding:2px 2px 2px 2px;
  6370. box-sizing:border-box;
  6371. width:100%;
  6372. }
  6373. #u155287_text {
  6374. border-width:0px;
  6375. word-wrap:break-word;
  6376. text-transform:none;
  6377. }
  6378. #u155288_div {
  6379. border-width:0px;
  6380. position:absolute;
  6381. left:0px;
  6382. top:0px;
  6383. width:37px;
  6384. height:17px;
  6385. background:inherit;
  6386. background-color:rgba(255, 255, 255, 0);
  6387. border:none;
  6388. border-radius:0px;
  6389. -moz-box-shadow:none;
  6390. -webkit-box-shadow:none;
  6391. box-shadow:none;
  6392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6393. font-weight:400;
  6394. font-style:normal;
  6395. font-size:12px;
  6396. }
  6397. #u155288 {
  6398. border-width:0px;
  6399. position:absolute;
  6400. left:1646px;
  6401. top:817px;
  6402. width:37px;
  6403. height:17px;
  6404. display:flex;
  6405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6406. font-weight:400;
  6407. font-style:normal;
  6408. font-size:12px;
  6409. }
  6410. #u155288 .text {
  6411. position:absolute;
  6412. align-self:flex-start;
  6413. padding:0px 0px 0px 0px;
  6414. box-sizing:border-box;
  6415. width:100%;
  6416. }
  6417. #u155288_text {
  6418. border-width:0px;
  6419. white-space:nowrap;
  6420. text-transform:none;
  6421. }
  6422. #u155289 {
  6423. border-width:0px;
  6424. position:absolute;
  6425. left:0px;
  6426. top:0px;
  6427. width:0px;
  6428. height:0px;
  6429. }
  6430. #u155290_img {
  6431. border-width:0px;
  6432. position:absolute;
  6433. left:0px;
  6434. top:0px;
  6435. width:24px;
  6436. height:24px;
  6437. }
  6438. #u155290 {
  6439. border-width:0px;
  6440. position:absolute;
  6441. left:1558px;
  6442. top:792px;
  6443. width:24px;
  6444. height:24px;
  6445. display:flex;
  6446. font-size:8px;
  6447. }
  6448. #u155290 .text {
  6449. position:absolute;
  6450. align-self:center;
  6451. padding:2px 2px 2px 2px;
  6452. box-sizing:border-box;
  6453. width:100%;
  6454. }
  6455. #u155290_text {
  6456. border-width:0px;
  6457. word-wrap:break-word;
  6458. text-transform:none;
  6459. }
  6460. #u155291_div {
  6461. border-width:0px;
  6462. position:absolute;
  6463. left:0px;
  6464. top:0px;
  6465. width:37px;
  6466. height:17px;
  6467. background:inherit;
  6468. background-color:rgba(255, 255, 255, 0);
  6469. border:none;
  6470. border-radius:0px;
  6471. -moz-box-shadow:none;
  6472. -webkit-box-shadow:none;
  6473. box-shadow:none;
  6474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6475. font-weight:400;
  6476. font-style:normal;
  6477. font-size:12px;
  6478. }
  6479. #u155291 {
  6480. border-width:0px;
  6481. position:absolute;
  6482. left:1552px;
  6483. top:817px;
  6484. width:37px;
  6485. height:17px;
  6486. display:flex;
  6487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6488. font-weight:400;
  6489. font-style:normal;
  6490. font-size:12px;
  6491. }
  6492. #u155291 .text {
  6493. position:absolute;
  6494. align-self:flex-start;
  6495. padding:0px 0px 0px 0px;
  6496. box-sizing:border-box;
  6497. width:100%;
  6498. }
  6499. #u155291_text {
  6500. border-width:0px;
  6501. white-space:nowrap;
  6502. text-transform:none;
  6503. }
  6504. #u155292_div {
  6505. border-width:0px;
  6506. position:absolute;
  6507. left:0px;
  6508. top:0px;
  6509. width:375px;
  6510. height:732px;
  6511. background:inherit;
  6512. background-color:rgba(244, 244, 244, 1);
  6513. box-sizing:border-box;
  6514. border-width:1px;
  6515. border-style:solid;
  6516. border-color:rgba(242, 242, 242, 1);
  6517. border-radius:26px;
  6518. border-top-left-radius:0px;
  6519. border-top-right-radius:0px;
  6520. -moz-box-shadow:none;
  6521. -webkit-box-shadow:none;
  6522. box-shadow:none;
  6523. }
  6524. #u155292 {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:1430px;
  6528. top:107px;
  6529. width:375px;
  6530. height:732px;
  6531. display:flex;
  6532. }
  6533. #u155292 .text {
  6534. position:absolute;
  6535. align-self:center;
  6536. padding:2px 2px 2px 2px;
  6537. box-sizing:border-box;
  6538. width:100%;
  6539. }
  6540. #u155292_text {
  6541. border-width:0px;
  6542. word-wrap:break-word;
  6543. text-transform:none;
  6544. visibility:hidden;
  6545. }
  6546. #u155293_div {
  6547. border-width:0px;
  6548. position:absolute;
  6549. left:0px;
  6550. top:0px;
  6551. width:375px;
  6552. height:732px;
  6553. background:inherit;
  6554. background-color:rgba(242, 242, 242, 1);
  6555. box-sizing:border-box;
  6556. border-width:1px;
  6557. border-style:solid;
  6558. border-color:rgba(242, 242, 242, 1);
  6559. border-radius:26px;
  6560. border-top-left-radius:0px;
  6561. border-top-right-radius:0px;
  6562. -moz-box-shadow:none;
  6563. -webkit-box-shadow:none;
  6564. box-shadow:none;
  6565. }
  6566. #u155293 {
  6567. border-width:0px;
  6568. position:absolute;
  6569. left:1430px;
  6570. top:107px;
  6571. width:375px;
  6572. height:732px;
  6573. display:flex;
  6574. }
  6575. #u155293 .text {
  6576. position:absolute;
  6577. align-self:center;
  6578. padding:2px 2px 2px 2px;
  6579. box-sizing:border-box;
  6580. width:100%;
  6581. }
  6582. #u155293_text {
  6583. border-width:0px;
  6584. word-wrap:break-word;
  6585. text-transform:none;
  6586. visibility:hidden;
  6587. }
  6588. #u155294 {
  6589. border-width:0px;
  6590. position:absolute;
  6591. left:0px;
  6592. top:0px;
  6593. width:0px;
  6594. height:0px;
  6595. }
  6596. #u155295_div {
  6597. border-width:0px;
  6598. position:absolute;
  6599. left:0px;
  6600. top:0px;
  6601. width:375px;
  6602. height:40px;
  6603. background:inherit;
  6604. background-color:rgba(255, 255, 255, 1);
  6605. border:none;
  6606. border-left:0px;
  6607. border-top:0px;
  6608. border-right:0px;
  6609. border-radius:0px;
  6610. border-bottom-right-radius:0px;
  6611. border-bottom-left-radius:0px;
  6612. -moz-box-shadow:none;
  6613. -webkit-box-shadow:none;
  6614. box-shadow:none;
  6615. }
  6616. #u155295 {
  6617. border-width:0px;
  6618. position:absolute;
  6619. left:1430px;
  6620. top:67px;
  6621. width:375px;
  6622. height:40px;
  6623. display:flex;
  6624. }
  6625. #u155295 .text {
  6626. position:absolute;
  6627. align-self:center;
  6628. padding:2px 2px 2px 2px;
  6629. box-sizing:border-box;
  6630. width:100%;
  6631. }
  6632. #u155295_text {
  6633. border-width:0px;
  6634. word-wrap:break-word;
  6635. text-transform:none;
  6636. visibility:hidden;
  6637. }
  6638. #u155296 {
  6639. border-width:0px;
  6640. position:absolute;
  6641. left:0px;
  6642. top:0px;
  6643. width:0px;
  6644. height:0px;
  6645. }
  6646. #u155297_div {
  6647. border-width:0px;
  6648. position:absolute;
  6649. left:0px;
  6650. top:0px;
  6651. width:88px;
  6652. height:32px;
  6653. background:inherit;
  6654. background-color:rgba(255, 255, 255, 1);
  6655. box-sizing:border-box;
  6656. border-width:1px;
  6657. border-style:solid;
  6658. border-color:rgba(242, 242, 242, 1);
  6659. border-radius:33px;
  6660. -moz-box-shadow:none;
  6661. -webkit-box-shadow:none;
  6662. box-shadow:none;
  6663. }
  6664. #u155297 {
  6665. border-width:0px;
  6666. position:absolute;
  6667. left:1707px;
  6668. top:69px;
  6669. width:88px;
  6670. height:32px;
  6671. display:flex;
  6672. }
  6673. #u155297 .text {
  6674. position:absolute;
  6675. align-self:center;
  6676. padding:2px 2px 2px 2px;
  6677. box-sizing:border-box;
  6678. width:100%;
  6679. }
  6680. #u155297_text {
  6681. border-width:0px;
  6682. word-wrap:break-word;
  6683. text-transform:none;
  6684. visibility:hidden;
  6685. }
  6686. #u155298 {
  6687. border-width:0px;
  6688. position:absolute;
  6689. left:0px;
  6690. top:0px;
  6691. width:0px;
  6692. height:0px;
  6693. }
  6694. #u155299_img {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:0px;
  6698. top:0px;
  6699. width:18px;
  6700. height:18px;
  6701. }
  6702. #u155299 {
  6703. border-width:0px;
  6704. position:absolute;
  6705. left:1770px;
  6706. top:76px;
  6707. width:18px;
  6708. height:18px;
  6709. display:flex;
  6710. }
  6711. #u155299 .text {
  6712. position:absolute;
  6713. align-self:center;
  6714. padding:2px 2px 2px 2px;
  6715. box-sizing:border-box;
  6716. width:100%;
  6717. }
  6718. #u155299_text {
  6719. border-width:0px;
  6720. word-wrap:break-word;
  6721. text-transform:none;
  6722. visibility:hidden;
  6723. }
  6724. #u155300_img {
  6725. border-width:0px;
  6726. position:absolute;
  6727. left:0px;
  6728. top:0px;
  6729. width:6px;
  6730. height:6px;
  6731. }
  6732. #u155300 {
  6733. border-width:0px;
  6734. position:absolute;
  6735. left:1776px;
  6736. top:82px;
  6737. width:6px;
  6738. height:6px;
  6739. display:flex;
  6740. }
  6741. #u155300 .text {
  6742. position:absolute;
  6743. align-self:center;
  6744. padding:2px 2px 2px 2px;
  6745. box-sizing:border-box;
  6746. width:100%;
  6747. }
  6748. #u155300_text {
  6749. border-width:0px;
  6750. word-wrap:break-word;
  6751. text-transform:none;
  6752. visibility:hidden;
  6753. }
  6754. #u155301 {
  6755. border-width:0px;
  6756. position:absolute;
  6757. left:0px;
  6758. top:0px;
  6759. width:0px;
  6760. height:0px;
  6761. }
  6762. #u155302_img {
  6763. border-width:0px;
  6764. position:absolute;
  6765. left:0px;
  6766. top:0px;
  6767. width:5px;
  6768. height:5px;
  6769. }
  6770. #u155302 {
  6771. border-width:0px;
  6772. position:absolute;
  6773. left:1721px;
  6774. top:83px;
  6775. width:5px;
  6776. height:5px;
  6777. display:flex;
  6778. }
  6779. #u155302 .text {
  6780. position:absolute;
  6781. align-self:center;
  6782. padding:2px 2px 2px 2px;
  6783. box-sizing:border-box;
  6784. width:100%;
  6785. }
  6786. #u155302_text {
  6787. border-width:0px;
  6788. word-wrap:break-word;
  6789. text-transform:none;
  6790. visibility:hidden;
  6791. }
  6792. #u155303_img {
  6793. border-width:0px;
  6794. position:absolute;
  6795. left:0px;
  6796. top:0px;
  6797. width:5px;
  6798. height:5px;
  6799. }
  6800. #u155303 {
  6801. border-width:0px;
  6802. position:absolute;
  6803. left:1737px;
  6804. top:83px;
  6805. width:5px;
  6806. height:5px;
  6807. display:flex;
  6808. }
  6809. #u155303 .text {
  6810. position:absolute;
  6811. align-self:center;
  6812. padding:2px 2px 2px 2px;
  6813. box-sizing:border-box;
  6814. width:100%;
  6815. }
  6816. #u155303_text {
  6817. border-width:0px;
  6818. word-wrap:break-word;
  6819. text-transform:none;
  6820. visibility:hidden;
  6821. }
  6822. #u155304_img {
  6823. border-width:0px;
  6824. position:absolute;
  6825. left:0px;
  6826. top:0px;
  6827. width:7px;
  6828. height:7px;
  6829. }
  6830. #u155304 {
  6831. border-width:0px;
  6832. position:absolute;
  6833. left:1728px;
  6834. top:82px;
  6835. width:7px;
  6836. height:7px;
  6837. display:flex;
  6838. }
  6839. #u155304 .text {
  6840. position:absolute;
  6841. align-self:center;
  6842. padding:2px 2px 2px 2px;
  6843. box-sizing:border-box;
  6844. width:100%;
  6845. }
  6846. #u155304_text {
  6847. border-width:0px;
  6848. word-wrap:break-word;
  6849. text-transform:none;
  6850. visibility:hidden;
  6851. }
  6852. #u155305_img {
  6853. border-width:0px;
  6854. position:absolute;
  6855. left:0px;
  6856. top:0px;
  6857. width:19px;
  6858. height:2px;
  6859. }
  6860. #u155305 {
  6861. border-width:0px;
  6862. position:absolute;
  6863. left:1745px;
  6864. top:85px;
  6865. width:18px;
  6866. height:1px;
  6867. display:flex;
  6868. -webkit-transform:rotate(90deg);
  6869. -moz-transform:rotate(90deg);
  6870. -ms-transform:rotate(90deg);
  6871. transform:rotate(90deg);
  6872. }
  6873. #u155305 .text {
  6874. position:absolute;
  6875. align-self:center;
  6876. padding:2px 2px 2px 2px;
  6877. box-sizing:border-box;
  6878. width:100%;
  6879. }
  6880. #u155305_text {
  6881. border-width:0px;
  6882. word-wrap:break-word;
  6883. text-transform:none;
  6884. visibility:hidden;
  6885. }
  6886. #u155306_div {
  6887. border-width:0px;
  6888. position:absolute;
  6889. left:0px;
  6890. top:0px;
  6891. width:12px;
  6892. height:12px;
  6893. background:inherit;
  6894. background-color:rgba(255, 255, 255, 0);
  6895. box-sizing:border-box;
  6896. border-width:2px;
  6897. border-style:solid;
  6898. border-color:rgba(51, 51, 51, 1);
  6899. border-right:0px;
  6900. border-bottom:0px;
  6901. border-radius:0px;
  6902. border-top-right-radius:0px;
  6903. border-bottom-left-radius:0px;
  6904. -moz-box-shadow:none;
  6905. -webkit-box-shadow:none;
  6906. box-shadow:none;
  6907. }
  6908. #u155306 {
  6909. border-width:0px;
  6910. position:absolute;
  6911. left:1446px;
  6912. top:79px;
  6913. width:12px;
  6914. height:12px;
  6915. display:flex;
  6916. -webkit-transform:rotate(315deg);
  6917. -moz-transform:rotate(315deg);
  6918. -ms-transform:rotate(315deg);
  6919. transform:rotate(315deg);
  6920. }
  6921. #u155306 .text {
  6922. position:absolute;
  6923. align-self:center;
  6924. padding:2px 2px 2px 2px;
  6925. box-sizing:border-box;
  6926. width:100%;
  6927. }
  6928. #u155306_text {
  6929. border-width:0px;
  6930. word-wrap:break-word;
  6931. text-transform:none;
  6932. visibility:hidden;
  6933. }
  6934. #u155307_div {
  6935. border-width:0px;
  6936. position:absolute;
  6937. left:0px;
  6938. top:0px;
  6939. width:109px;
  6940. height:25px;
  6941. background:inherit;
  6942. background-color:rgba(255, 255, 255, 0);
  6943. border:none;
  6944. border-radius:0px;
  6945. -moz-box-shadow:none;
  6946. -webkit-box-shadow:none;
  6947. box-shadow:none;
  6948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6949. font-weight:400;
  6950. font-style:normal;
  6951. font-size:18px;
  6952. }
  6953. #u155307 {
  6954. border-width:0px;
  6955. position:absolute;
  6956. left:1460px;
  6957. top:72px;
  6958. width:109px;
  6959. height:25px;
  6960. display:flex;
  6961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6962. font-weight:400;
  6963. font-style:normal;
  6964. font-size:18px;
  6965. }
  6966. #u155307 .text {
  6967. position:absolute;
  6968. align-self:flex-start;
  6969. padding:0px 0px 0px 0px;
  6970. box-sizing:border-box;
  6971. width:100%;
  6972. }
  6973. #u155307_text {
  6974. border-width:0px;
  6975. white-space:nowrap;
  6976. text-transform:none;
  6977. }
  6978. #u155308_div {
  6979. border-width:0px;
  6980. position:absolute;
  6981. left:0px;
  6982. top:0px;
  6983. width:375px;
  6984. height:58px;
  6985. background:inherit;
  6986. background-color:rgba(24, 144, 255, 1);
  6987. border:none;
  6988. border-radius:0px;
  6989. -moz-box-shadow:none;
  6990. -webkit-box-shadow:none;
  6991. box-shadow:none;
  6992. }
  6993. #u155308 {
  6994. border-width:0px;
  6995. position:absolute;
  6996. left:1430px;
  6997. top:107px;
  6998. width:375px;
  6999. height:58px;
  7000. display:flex;
  7001. }
  7002. #u155308 .text {
  7003. position:absolute;
  7004. align-self:center;
  7005. padding:2px 2px 2px 2px;
  7006. box-sizing:border-box;
  7007. width:100%;
  7008. }
  7009. #u155308_text {
  7010. border-width:0px;
  7011. word-wrap:break-word;
  7012. text-transform:none;
  7013. visibility:hidden;
  7014. }
  7015. #u155309_div {
  7016. border-width:0px;
  7017. position:absolute;
  7018. left:0px;
  7019. top:0px;
  7020. width:375px;
  7021. height:615px;
  7022. background:inherit;
  7023. background-color:rgba(255, 255, 255, 1);
  7024. border:none;
  7025. border-top:0px;
  7026. border-bottom:0px;
  7027. border-radius:0px;
  7028. border-top-left-radius:0px;
  7029. border-top-right-radius:0px;
  7030. border-bottom-right-radius:0px;
  7031. border-bottom-left-radius:0px;
  7032. -moz-box-shadow:none;
  7033. -webkit-box-shadow:none;
  7034. box-shadow:none;
  7035. }
  7036. #u155309 {
  7037. border-width:0px;
  7038. position:absolute;
  7039. left:1430px;
  7040. top:165px;
  7041. width:375px;
  7042. height:615px;
  7043. display:flex;
  7044. }
  7045. #u155309 .text {
  7046. position:absolute;
  7047. align-self:center;
  7048. padding:2px 2px 2px 2px;
  7049. box-sizing:border-box;
  7050. width:100%;
  7051. }
  7052. #u155309_text {
  7053. border-width:0px;
  7054. word-wrap:break-word;
  7055. text-transform:none;
  7056. visibility:hidden;
  7057. }
  7058. #u155310 {
  7059. border-width:0px;
  7060. position:absolute;
  7061. left:0px;
  7062. top:0px;
  7063. width:0px;
  7064. height:0px;
  7065. }
  7066. #u155311_div {
  7067. border-width:0px;
  7068. position:absolute;
  7069. left:0px;
  7070. top:0px;
  7071. width:169px;
  7072. height:30px;
  7073. background:inherit;
  7074. background-color:rgba(255, 255, 255, 0);
  7075. border:none;
  7076. border-left:0px;
  7077. border-top:0px;
  7078. border-right:0px;
  7079. border-radius:0px;
  7080. border-bottom-right-radius:0px;
  7081. border-bottom-left-radius:0px;
  7082. -moz-box-shadow:none;
  7083. -webkit-box-shadow:none;
  7084. box-shadow:none;
  7085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7086. font-weight:400;
  7087. font-style:normal;
  7088. font-size:14px;
  7089. color:#1890FF;
  7090. line-height:30px;
  7091. }
  7092. #u155311 {
  7093. border-width:0px;
  7094. position:absolute;
  7095. left:1548px;
  7096. top:643px;
  7097. width:169px;
  7098. height:30px;
  7099. display:flex;
  7100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7101. font-weight:400;
  7102. font-style:normal;
  7103. font-size:14px;
  7104. color:#1890FF;
  7105. line-height:30px;
  7106. }
  7107. #u155311 .text {
  7108. position:absolute;
  7109. align-self:flex-start;
  7110. padding:0px 0px 0px 0px;
  7111. box-sizing:border-box;
  7112. width:100%;
  7113. }
  7114. #u155311_text {
  7115. border-width:0px;
  7116. white-space:nowrap;
  7117. text-transform:none;
  7118. }
  7119. #u155312_img {
  7120. border-width:0px;
  7121. position:absolute;
  7122. left:0px;
  7123. top:0px;
  7124. width:19px;
  7125. height:16px;
  7126. }
  7127. #u155312 {
  7128. border-width:0px;
  7129. position:absolute;
  7130. left:1523px;
  7131. top:650px;
  7132. width:19px;
  7133. height:16px;
  7134. display:flex;
  7135. }
  7136. #u155312 .text {
  7137. position:absolute;
  7138. align-self:center;
  7139. padding:2px 2px 2px 2px;
  7140. box-sizing:border-box;
  7141. width:100%;
  7142. }
  7143. #u155312_text {
  7144. border-width:0px;
  7145. word-wrap:break-word;
  7146. text-transform:none;
  7147. visibility:hidden;
  7148. }
  7149. #u155313_div {
  7150. border-width:0px;
  7151. position:absolute;
  7152. left:0px;
  7153. top:0px;
  7154. width:37px;
  7155. height:30px;
  7156. background:inherit;
  7157. background-color:rgba(255, 255, 255, 0);
  7158. border:none;
  7159. border-left:0px;
  7160. border-top:0px;
  7161. border-right:0px;
  7162. border-radius:0px;
  7163. border-bottom-right-radius:0px;
  7164. border-bottom-left-radius:0px;
  7165. -moz-box-shadow:none;
  7166. -webkit-box-shadow:none;
  7167. box-shadow:none;
  7168. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7169. font-weight:500;
  7170. font-style:normal;
  7171. font-size:18px;
  7172. line-height:30px;
  7173. }
  7174. #u155313 {
  7175. border-width:0px;
  7176. position:absolute;
  7177. left:1599px;
  7178. top:613px;
  7179. width:37px;
  7180. height:30px;
  7181. display:flex;
  7182. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7183. font-weight:500;
  7184. font-style:normal;
  7185. font-size:18px;
  7186. line-height:30px;
  7187. }
  7188. #u155313 .text {
  7189. position:absolute;
  7190. align-self:flex-start;
  7191. padding:0px 0px 0px 0px;
  7192. box-sizing:border-box;
  7193. width:100%;
  7194. }
  7195. #u155313_text {
  7196. border-width:0px;
  7197. white-space:nowrap;
  7198. text-transform:none;
  7199. }
  7200. #u155314 {
  7201. border-width:0px;
  7202. position:absolute;
  7203. left:0px;
  7204. top:0px;
  7205. width:0px;
  7206. height:0px;
  7207. }
  7208. #u155315 {
  7209. border-width:0px;
  7210. position:absolute;
  7211. left:0px;
  7212. top:0px;
  7213. width:0px;
  7214. height:0px;
  7215. }
  7216. #u155316_img {
  7217. border-width:0px;
  7218. position:absolute;
  7219. left:0px;
  7220. top:0px;
  7221. width:27px;
  7222. height:27px;
  7223. }
  7224. #u155316 {
  7225. border-width:0px;
  7226. position:absolute;
  7227. left:1659px;
  7228. top:122px;
  7229. width:27px;
  7230. height:27px;
  7231. display:flex;
  7232. font-size:12px;
  7233. color:#1890FF;
  7234. }
  7235. #u155316 .text {
  7236. position:absolute;
  7237. align-self:center;
  7238. padding:2px 2px 2px 2px;
  7239. box-sizing:border-box;
  7240. width:100%;
  7241. }
  7242. #u155316_text {
  7243. border-width:0px;
  7244. word-wrap:break-word;
  7245. text-transform:none;
  7246. }
  7247. #u155317_div {
  7248. border-width:0px;
  7249. position:absolute;
  7250. left:0px;
  7251. top:0px;
  7252. width:57px;
  7253. height:30px;
  7254. background:inherit;
  7255. background-color:rgba(255, 255, 255, 0);
  7256. border:none;
  7257. border-left:0px;
  7258. border-top:0px;
  7259. border-right:0px;
  7260. border-radius:0px;
  7261. border-bottom-right-radius:0px;
  7262. border-bottom-left-radius:0px;
  7263. -moz-box-shadow:none;
  7264. -webkit-box-shadow:none;
  7265. box-shadow:none;
  7266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7267. font-weight:400;
  7268. font-style:normal;
  7269. font-size:14px;
  7270. color:#FFFFFF;
  7271. line-height:30px;
  7272. }
  7273. #u155317 {
  7274. border-width:0px;
  7275. position:absolute;
  7276. left:1693px;
  7277. top:121px;
  7278. width:57px;
  7279. height:30px;
  7280. display:flex;
  7281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7282. font-weight:400;
  7283. font-style:normal;
  7284. font-size:14px;
  7285. color:#FFFFFF;
  7286. line-height:30px;
  7287. }
  7288. #u155317 .text {
  7289. position:absolute;
  7290. align-self:center;
  7291. padding:0px 0px 0px 0px;
  7292. box-sizing:border-box;
  7293. width:100%;
  7294. }
  7295. #u155317_text {
  7296. border-width:0px;
  7297. white-space:nowrap;
  7298. text-transform:none;
  7299. }
  7300. #u155318_img {
  7301. border-width:0px;
  7302. position:absolute;
  7303. left:0px;
  7304. top:0px;
  7305. width:27px;
  7306. height:27px;
  7307. }
  7308. #u155318 {
  7309. border-width:0px;
  7310. position:absolute;
  7311. left:1473px;
  7312. top:122px;
  7313. width:27px;
  7314. height:27px;
  7315. display:flex;
  7316. font-size:12px;
  7317. color:#1890FF;
  7318. }
  7319. #u155318 .text {
  7320. position:absolute;
  7321. align-self:center;
  7322. padding:2px 2px 2px 2px;
  7323. box-sizing:border-box;
  7324. width:100%;
  7325. }
  7326. #u155318_text {
  7327. border-width:0px;
  7328. word-wrap:break-word;
  7329. text-transform:none;
  7330. }
  7331. #u155319_div {
  7332. border-width:0px;
  7333. position:absolute;
  7334. left:0px;
  7335. top:0px;
  7336. width:57px;
  7337. height:30px;
  7338. background:inherit;
  7339. background-color:rgba(255, 255, 255, 0);
  7340. border:none;
  7341. border-left:0px;
  7342. border-top:0px;
  7343. border-right:0px;
  7344. border-radius:0px;
  7345. border-bottom-right-radius:0px;
  7346. border-bottom-left-radius:0px;
  7347. -moz-box-shadow:none;
  7348. -webkit-box-shadow:none;
  7349. box-shadow:none;
  7350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7351. font-weight:400;
  7352. font-style:normal;
  7353. font-size:14px;
  7354. color:#FFFFFF;
  7355. line-height:30px;
  7356. }
  7357. #u155319 {
  7358. border-width:0px;
  7359. position:absolute;
  7360. left:1507px;
  7361. top:121px;
  7362. width:57px;
  7363. height:30px;
  7364. display:flex;
  7365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7366. font-weight:400;
  7367. font-style:normal;
  7368. font-size:14px;
  7369. color:#FFFFFF;
  7370. line-height:30px;
  7371. }
  7372. #u155319 .text {
  7373. position:absolute;
  7374. align-self:center;
  7375. padding:0px 0px 0px 0px;
  7376. box-sizing:border-box;
  7377. width:100%;
  7378. }
  7379. #u155319_text {
  7380. border-width:0px;
  7381. white-space:nowrap;
  7382. text-transform:none;
  7383. }
  7384. #u155320_img {
  7385. border-width:0px;
  7386. position:absolute;
  7387. left:0px;
  7388. top:0px;
  7389. width:71px;
  7390. height:2px;
  7391. }
  7392. #u155320 {
  7393. border-width:0px;
  7394. position:absolute;
  7395. left:1583px;
  7396. top:135px;
  7397. width:70px;
  7398. height:1px;
  7399. display:flex;
  7400. color:#FFFFFF;
  7401. }
  7402. #u155320 .text {
  7403. position:absolute;
  7404. align-self:center;
  7405. padding:2px 2px 2px 2px;
  7406. box-sizing:border-box;
  7407. width:100%;
  7408. }
  7409. #u155320_text {
  7410. border-width:0px;
  7411. word-wrap:break-word;
  7412. text-transform:none;
  7413. visibility:hidden;
  7414. }
  7415. #u155321 {
  7416. border-width:0px;
  7417. position:absolute;
  7418. left:0px;
  7419. top:0px;
  7420. width:0px;
  7421. height:0px;
  7422. }
  7423. #u155322_div {
  7424. border-width:0px;
  7425. position:absolute;
  7426. left:0px;
  7427. top:0px;
  7428. width:375px;
  7429. height:60px;
  7430. background:inherit;
  7431. background-color:rgba(255, 255, 255, 1);
  7432. border:none;
  7433. border-top:0px;
  7434. border-radius:28px;
  7435. border-top-left-radius:0px;
  7436. border-top-right-radius:0px;
  7437. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7438. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7439. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7441. font-weight:400;
  7442. font-style:normal;
  7443. font-size:14px;
  7444. color:#FFFFFF;
  7445. }
  7446. #u155322 {
  7447. border-width:0px;
  7448. position:absolute;
  7449. left:1430px;
  7450. top:780px;
  7451. width:375px;
  7452. height:60px;
  7453. display:flex;
  7454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7455. font-weight:400;
  7456. font-style:normal;
  7457. font-size:14px;
  7458. color:#FFFFFF;
  7459. }
  7460. #u155322 .text {
  7461. position:absolute;
  7462. align-self:center;
  7463. padding:2px 2px 2px 2px;
  7464. box-sizing:border-box;
  7465. width:100%;
  7466. }
  7467. #u155322_text {
  7468. border-width:0px;
  7469. word-wrap:break-word;
  7470. text-transform:none;
  7471. visibility:hidden;
  7472. }
  7473. #u155323_div {
  7474. border-width:0px;
  7475. position:absolute;
  7476. left:0px;
  7477. top:0px;
  7478. width:324px;
  7479. height:40px;
  7480. background:inherit;
  7481. background-color:rgba(0, 137, 254, 1);
  7482. border:none;
  7483. border-radius:63px;
  7484. -moz-box-shadow:none;
  7485. -webkit-box-shadow:none;
  7486. box-shadow:none;
  7487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7488. font-weight:400;
  7489. font-style:normal;
  7490. font-size:14px;
  7491. color:#FFFFFF;
  7492. }
  7493. #u155323 {
  7494. border-width:0px;
  7495. position:absolute;
  7496. left:1458px;
  7497. top:789px;
  7498. width:324px;
  7499. height:40px;
  7500. display:flex;
  7501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7502. font-weight:400;
  7503. font-style:normal;
  7504. font-size:14px;
  7505. color:#FFFFFF;
  7506. }
  7507. #u155323 .text {
  7508. position:absolute;
  7509. align-self:center;
  7510. padding:2px 2px 2px 2px;
  7511. box-sizing:border-box;
  7512. width:100%;
  7513. }
  7514. #u155323_text {
  7515. border-width:0px;
  7516. word-wrap:break-word;
  7517. text-transform:none;
  7518. }
  7519. #u155324_img {
  7520. border-width:0px;
  7521. position:absolute;
  7522. left:0px;
  7523. top:0px;
  7524. width:326px;
  7525. height:409px;
  7526. }
  7527. #u155324 {
  7528. border-width:0px;
  7529. position:absolute;
  7530. left:1456px;
  7531. top:190px;
  7532. width:326px;
  7533. height:409px;
  7534. display:flex;
  7535. }
  7536. #u155324 .text {
  7537. position:absolute;
  7538. align-self:center;
  7539. padding:2px 2px 2px 2px;
  7540. box-sizing:border-box;
  7541. width:100%;
  7542. }
  7543. #u155324_text {
  7544. border-width:0px;
  7545. word-wrap:break-word;
  7546. text-transform:none;
  7547. visibility:hidden;
  7548. }
  7549. #u155325_div {
  7550. border-width:0px;
  7551. position:absolute;
  7552. left:0px;
  7553. top:0px;
  7554. width:211px;
  7555. height:30px;
  7556. background:inherit;
  7557. background-color:rgba(255, 255, 255, 0);
  7558. border:none;
  7559. border-left:0px;
  7560. border-top:0px;
  7561. border-right:0px;
  7562. border-radius:0px;
  7563. border-bottom-right-radius:0px;
  7564. border-bottom-left-radius:0px;
  7565. -moz-box-shadow:none;
  7566. -webkit-box-shadow:none;
  7567. box-shadow:none;
  7568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7569. font-weight:400;
  7570. font-style:normal;
  7571. font-size:12px;
  7572. color:#D9001B;
  7573. line-height:30px;
  7574. }
  7575. #u155325 {
  7576. border-width:0px;
  7577. position:absolute;
  7578. left:608px;
  7579. top:178px;
  7580. width:211px;
  7581. height:30px;
  7582. display:flex;
  7583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7584. font-weight:400;
  7585. font-style:normal;
  7586. font-size:12px;
  7587. color:#D9001B;
  7588. line-height:30px;
  7589. }
  7590. #u155325 .text {
  7591. position:absolute;
  7592. align-self:center;
  7593. padding:0px 0px 0px 0px;
  7594. box-sizing:border-box;
  7595. width:100%;
  7596. }
  7597. #u155325_text {
  7598. border-width:0px;
  7599. white-space:nowrap;
  7600. text-transform:none;
  7601. }