styles.css 122 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:577px;
  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. #u152603_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u152603 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u152603 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u152603_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u152604_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. box-sizing:border-box;
  59. border-width:1px;
  60. border-style:solid;
  61. border-color:rgba(215, 215, 215, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. }
  72. #u152604 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u152604 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u152604_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u152605 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u152606_div {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:88px;
  108. height:32px;
  109. background:inherit;
  110. background-color:rgba(255, 255, 255, 1);
  111. box-sizing:border-box;
  112. border-width:1px;
  113. border-style:solid;
  114. border-color:rgba(242, 242, 242, 1);
  115. border-radius:33px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. }
  120. #u152606 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u152606 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u152606_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u152607 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u152608_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u152608 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u152608 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u152608_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u152609_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u152609 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u152609 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u152609_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u152610 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u152611_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u152611 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u152611 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u152611_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u152612_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u152612 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u152612 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u152612_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u152613_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u152613 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u152613 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u152613_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u152614_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u152614 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u152614 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u152614_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u152615_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u152615 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u152615 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u152615_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u152616_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:50px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 1);
  381. box-sizing:border-box;
  382. border-width:1px;
  383. border-style:solid;
  384. border-color:rgba(242, 242, 242, 1);
  385. border-radius:26px;
  386. border-top-left-radius:0px;
  387. border-top-right-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. }
  392. #u152616 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u152616 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u152616_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u152617 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u152618_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u152618 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u152618 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u152618_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u152619_div {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:25px;
  458. height:17px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:12px;
  470. }
  471. #u152619 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u152619 .text {
  485. position:absolute;
  486. align-self:flex-start;
  487. padding:0px 0px 0px 0px;
  488. box-sizing:border-box;
  489. width:100%;
  490. }
  491. #u152619_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u152620 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u152621_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u152621 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u152621 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u152621_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u152622_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:25px;
  540. height:17px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:12px;
  552. }
  553. #u152622 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u152622 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 0px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u152622_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u152623_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:375px;
  584. height:681px;
  585. background:inherit;
  586. background-color:rgba(242, 242, 242, 0.462745098039216);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u152623 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u152623 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u152623_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u152624 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u152625_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u152625 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u152625 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u152625_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u152626_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:37px;
  659. height:17px;
  660. background:inherit;
  661. background-color:rgba(255, 255, 255, 0);
  662. border:none;
  663. border-radius:0px;
  664. -moz-box-shadow:none;
  665. -webkit-box-shadow:none;
  666. box-shadow:none;
  667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:12px;
  671. }
  672. #u152626 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u152626 .text {
  686. position:absolute;
  687. align-self:flex-start;
  688. padding:0px 0px 0px 0px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u152626_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u152627 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u152628_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u152628 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u152628 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u152628_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u152629_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:37px;
  741. height:17px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. }
  754. #u152629 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u152629 .text {
  768. position:absolute;
  769. align-self:flex-start;
  770. padding:0px 0px 0px 0px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u152629_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u152630_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:735px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. border:none;
  789. border-top:0px;
  790. border-radius:25px;
  791. border-top-left-radius:0px;
  792. border-top-right-radius:0px;
  793. -moz-box-shadow:none;
  794. -webkit-box-shadow:none;
  795. box-shadow:none;
  796. }
  797. #u152630 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:105px;
  802. width:375px;
  803. height:735px;
  804. display:flex;
  805. }
  806. #u152630 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u152630_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u152631_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:375px;
  825. height:735px;
  826. background:inherit;
  827. background-color:rgba(242, 242, 242, 1);
  828. border:none;
  829. border-top:0px;
  830. border-radius:22px;
  831. border-top-left-radius:0px;
  832. border-top-right-radius:0px;
  833. -moz-box-shadow:none;
  834. -webkit-box-shadow:none;
  835. box-shadow:none;
  836. }
  837. #u152631 {
  838. border-width:0px;
  839. position:absolute;
  840. left:29px;
  841. top:105px;
  842. width:375px;
  843. height:735px;
  844. display:flex;
  845. }
  846. #u152631 .text {
  847. position:absolute;
  848. align-self:center;
  849. padding:2px 2px 2px 2px;
  850. box-sizing:border-box;
  851. width:100%;
  852. }
  853. #u152631_text {
  854. border-width:0px;
  855. word-wrap:break-word;
  856. text-transform:none;
  857. visibility:hidden;
  858. }
  859. #u152632_img {
  860. border-width:0px;
  861. position:absolute;
  862. left:0px;
  863. top:0px;
  864. width:11px;
  865. height:18px;
  866. }
  867. #u152632 {
  868. border-width:0px;
  869. position:absolute;
  870. left:42px;
  871. top:79px;
  872. width:11px;
  873. height:18px;
  874. display:flex;
  875. }
  876. #u152632 .text {
  877. position:absolute;
  878. align-self:center;
  879. padding:2px 2px 2px 2px;
  880. box-sizing:border-box;
  881. width:100%;
  882. }
  883. #u152632_text {
  884. border-width:0px;
  885. word-wrap:break-word;
  886. text-transform:none;
  887. visibility:hidden;
  888. }
  889. #u152633_div {
  890. border-width:0px;
  891. position:absolute;
  892. left:0px;
  893. top:0px;
  894. width:73px;
  895. height:30px;
  896. background:inherit;
  897. background-color:rgba(255, 255, 255, 0);
  898. border:none;
  899. border-left:0px;
  900. border-top:0px;
  901. border-right:0px;
  902. border-radius:0px;
  903. border-bottom-right-radius:0px;
  904. border-bottom-left-radius:0px;
  905. -moz-box-shadow:none;
  906. -webkit-box-shadow:none;
  907. box-shadow:none;
  908. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  909. font-weight:500;
  910. font-style:normal;
  911. font-size:18px;
  912. line-height:30px;
  913. }
  914. #u152633 {
  915. border-width:0px;
  916. position:absolute;
  917. left:71px;
  918. top:73px;
  919. width:73px;
  920. height:30px;
  921. display:flex;
  922. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  923. font-weight:500;
  924. font-style:normal;
  925. font-size:18px;
  926. line-height:30px;
  927. }
  928. #u152633 .text {
  929. position:absolute;
  930. align-self:flex-start;
  931. padding:0px 0px 0px 0px;
  932. box-sizing:border-box;
  933. width:100%;
  934. }
  935. #u152633_text {
  936. border-width:0px;
  937. white-space:nowrap;
  938. text-transform:none;
  939. }
  940. #u152634_div {
  941. border-width:0px;
  942. position:absolute;
  943. left:0px;
  944. top:0px;
  945. width:325px;
  946. height:50px;
  947. background:inherit;
  948. background-color:rgba(255, 255, 255, 0);
  949. border:none;
  950. border-left:0px;
  951. border-top:0px;
  952. border-right:0px;
  953. border-radius:0px;
  954. border-bottom-right-radius:0px;
  955. border-bottom-left-radius:0px;
  956. -moz-box-shadow:none;
  957. -webkit-box-shadow:none;
  958. box-shadow:none;
  959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  960. font-weight:400;
  961. font-style:normal;
  962. font-size:12px;
  963. color:#D9001B;
  964. line-height:25px;
  965. }
  966. #u152634 {
  967. border-width:0px;
  968. position:absolute;
  969. left:1430px;
  970. top:707px;
  971. width:325px;
  972. height:50px;
  973. display:flex;
  974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  975. font-weight:400;
  976. font-style:normal;
  977. font-size:12px;
  978. color:#D9001B;
  979. line-height:25px;
  980. }
  981. #u152634 .text {
  982. position:absolute;
  983. align-self:flex-start;
  984. padding:0px 0px 0px 0px;
  985. box-sizing:border-box;
  986. width:100%;
  987. }
  988. #u152634_text {
  989. border-width:0px;
  990. word-wrap:break-word;
  991. text-transform:none;
  992. }
  993. #u152635 {
  994. border-width:0px;
  995. position:absolute;
  996. left:0px;
  997. top:0px;
  998. width:0px;
  999. height:0px;
  1000. }
  1001. #u152636_div {
  1002. border-width:0px;
  1003. position:absolute;
  1004. left:0px;
  1005. top:0px;
  1006. width:375px;
  1007. height:60px;
  1008. background:inherit;
  1009. background-color:rgba(255, 255, 255, 1);
  1010. box-sizing:border-box;
  1011. border-width:1px;
  1012. border-style:solid;
  1013. border-color:rgba(242, 242, 242, 1);
  1014. border-radius:20px;
  1015. border-top-left-radius:0px;
  1016. border-top-right-radius:0px;
  1017. -moz-box-shadow:none;
  1018. -webkit-box-shadow:none;
  1019. box-shadow:none;
  1020. }
  1021. #u152636 {
  1022. border-width:0px;
  1023. position:absolute;
  1024. left:29px;
  1025. top:780px;
  1026. width:375px;
  1027. height:60px;
  1028. display:flex;
  1029. }
  1030. #u152636 .text {
  1031. position:absolute;
  1032. align-self:center;
  1033. padding:2px 2px 2px 2px;
  1034. box-sizing:border-box;
  1035. width:100%;
  1036. }
  1037. #u152636_text {
  1038. border-width:0px;
  1039. word-wrap:break-word;
  1040. text-transform:none;
  1041. visibility:hidden;
  1042. }
  1043. #u152637_div {
  1044. border-width:0px;
  1045. position:absolute;
  1046. left:0px;
  1047. top:0px;
  1048. width:160px;
  1049. height:40px;
  1050. background:inherit;
  1051. background-color:rgba(0, 137, 254, 1);
  1052. border:none;
  1053. border-radius:63px;
  1054. -moz-box-shadow:none;
  1055. -webkit-box-shadow:none;
  1056. box-shadow:none;
  1057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1058. font-weight:400;
  1059. font-style:normal;
  1060. font-size:14px;
  1061. color:#FFFFFF;
  1062. }
  1063. #u152637 {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:224px;
  1067. top:790px;
  1068. width:160px;
  1069. height:40px;
  1070. display:flex;
  1071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1072. font-weight:400;
  1073. font-style:normal;
  1074. font-size:14px;
  1075. color:#FFFFFF;
  1076. }
  1077. #u152637 .text {
  1078. position:absolute;
  1079. align-self:center;
  1080. padding:2px 2px 2px 2px;
  1081. box-sizing:border-box;
  1082. width:100%;
  1083. }
  1084. #u152637_text {
  1085. border-width:0px;
  1086. word-wrap:break-word;
  1087. text-transform:none;
  1088. }
  1089. #u152638_div {
  1090. border-width:0px;
  1091. position:absolute;
  1092. left:0px;
  1093. top:0px;
  1094. width:160px;
  1095. height:40px;
  1096. background:inherit;
  1097. background-color:rgba(255, 255, 255, 1);
  1098. box-sizing:border-box;
  1099. border-width:1px;
  1100. border-style:solid;
  1101. border-color:rgba(121, 121, 121, 1);
  1102. border-radius:63px;
  1103. -moz-box-shadow:none;
  1104. -webkit-box-shadow:none;
  1105. box-shadow:none;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:14px;
  1110. }
  1111. #u152638 {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:49px;
  1115. top:790px;
  1116. width:160px;
  1117. height:40px;
  1118. display:flex;
  1119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1120. font-weight:400;
  1121. font-style:normal;
  1122. font-size:14px;
  1123. }
  1124. #u152638 .text {
  1125. position:absolute;
  1126. align-self:center;
  1127. padding:2px 2px 2px 2px;
  1128. box-sizing:border-box;
  1129. width:100%;
  1130. }
  1131. #u152638_text {
  1132. border-width:0px;
  1133. word-wrap:break-word;
  1134. text-transform:none;
  1135. }
  1136. #u152639 {
  1137. border-width:0px;
  1138. position:absolute;
  1139. left:0px;
  1140. top:0px;
  1141. width:0px;
  1142. height:0px;
  1143. }
  1144. #u152640_img {
  1145. border-width:0px;
  1146. position:absolute;
  1147. left:-5px;
  1148. top:-5px;
  1149. width:385px;
  1150. height:292px;
  1151. }
  1152. #u152640 {
  1153. border-width:0px;
  1154. position:absolute;
  1155. left:1410px;
  1156. top:43px;
  1157. width:375px;
  1158. height:282px;
  1159. display:flex;
  1160. }
  1161. #u152640 .text {
  1162. position:absolute;
  1163. align-self:center;
  1164. padding:2px 2px 2px 2px;
  1165. box-sizing:border-box;
  1166. width:100%;
  1167. }
  1168. #u152640_text {
  1169. border-width:0px;
  1170. word-wrap:break-word;
  1171. text-transform:none;
  1172. visibility:hidden;
  1173. }
  1174. #u152641_div {
  1175. border-width:0px;
  1176. position:absolute;
  1177. left:0px;
  1178. top:0px;
  1179. width:37px;
  1180. height:30px;
  1181. background:inherit;
  1182. background-color:rgba(255, 255, 255, 0);
  1183. border:none;
  1184. border-left:0px;
  1185. border-top:0px;
  1186. border-right:0px;
  1187. border-radius:0px;
  1188. border-bottom-right-radius:0px;
  1189. border-bottom-left-radius:0px;
  1190. -moz-box-shadow:none;
  1191. -webkit-box-shadow:none;
  1192. box-shadow:none;
  1193. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1194. font-weight:500;
  1195. font-style:normal;
  1196. font-size:18px;
  1197. line-height:30px;
  1198. }
  1199. #u152641 {
  1200. border-width:0px;
  1201. position:absolute;
  1202. left:1430px;
  1203. top:56px;
  1204. width:37px;
  1205. height:30px;
  1206. display:flex;
  1207. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1208. font-weight:500;
  1209. font-style:normal;
  1210. font-size:18px;
  1211. line-height:30px;
  1212. }
  1213. #u152641 .text {
  1214. position:absolute;
  1215. align-self:flex-start;
  1216. padding:0px 0px 0px 0px;
  1217. box-sizing:border-box;
  1218. width:100%;
  1219. }
  1220. #u152641_text {
  1221. border-width:0px;
  1222. white-space:nowrap;
  1223. text-transform:none;
  1224. }
  1225. #u152642 {
  1226. border-width:0px;
  1227. position:absolute;
  1228. left:0px;
  1229. top:0px;
  1230. width:0px;
  1231. height:0px;
  1232. }
  1233. #u152643_div {
  1234. border-width:0px;
  1235. position:absolute;
  1236. left:0px;
  1237. top:0px;
  1238. width:375px;
  1239. height:60px;
  1240. background:inherit;
  1241. background-color:rgba(255, 255, 255, 1);
  1242. box-sizing:border-box;
  1243. border-width:1px;
  1244. border-style:solid;
  1245. border-color:rgba(242, 242, 242, 1);
  1246. border-radius:20px;
  1247. border-top-left-radius:0px;
  1248. border-top-right-radius:0px;
  1249. -moz-box-shadow:none;
  1250. -webkit-box-shadow:none;
  1251. box-shadow:none;
  1252. }
  1253. #u152643 {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:1410px;
  1257. top:265px;
  1258. width:375px;
  1259. height:60px;
  1260. display:flex;
  1261. }
  1262. #u152643 .text {
  1263. position:absolute;
  1264. align-self:center;
  1265. padding:2px 2px 2px 2px;
  1266. box-sizing:border-box;
  1267. width:100%;
  1268. }
  1269. #u152643_text {
  1270. border-width:0px;
  1271. word-wrap:break-word;
  1272. text-transform:none;
  1273. visibility:hidden;
  1274. }
  1275. #u152644_div {
  1276. border-width:0px;
  1277. position:absolute;
  1278. left:0px;
  1279. top:0px;
  1280. width:160px;
  1281. height:40px;
  1282. background:inherit;
  1283. background-color:rgba(0, 137, 254, 1);
  1284. border:none;
  1285. border-radius:63px;
  1286. -moz-box-shadow:none;
  1287. -webkit-box-shadow:none;
  1288. box-shadow:none;
  1289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1290. font-weight:400;
  1291. font-style:normal;
  1292. font-size:14px;
  1293. color:#FFFFFF;
  1294. }
  1295. #u152644 {
  1296. border-width:0px;
  1297. position:absolute;
  1298. left:1605px;
  1299. top:275px;
  1300. width:160px;
  1301. height:40px;
  1302. display:flex;
  1303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1304. font-weight:400;
  1305. font-style:normal;
  1306. font-size:14px;
  1307. color:#FFFFFF;
  1308. }
  1309. #u152644 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u152644_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. }
  1321. #u152645_div {
  1322. border-width:0px;
  1323. position:absolute;
  1324. left:0px;
  1325. top:0px;
  1326. width:160px;
  1327. height:40px;
  1328. background:inherit;
  1329. background-color:rgba(255, 255, 255, 1);
  1330. box-sizing:border-box;
  1331. border-width:1px;
  1332. border-style:solid;
  1333. border-color:rgba(121, 121, 121, 1);
  1334. border-radius:63px;
  1335. -moz-box-shadow:none;
  1336. -webkit-box-shadow:none;
  1337. box-shadow:none;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. font-size:14px;
  1342. }
  1343. #u152645 {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:1430px;
  1347. top:275px;
  1348. width:160px;
  1349. height:40px;
  1350. display:flex;
  1351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1352. font-weight:400;
  1353. font-style:normal;
  1354. font-size:14px;
  1355. }
  1356. #u152645 .text {
  1357. position:absolute;
  1358. align-self:center;
  1359. padding:2px 2px 2px 2px;
  1360. box-sizing:border-box;
  1361. width:100%;
  1362. }
  1363. #u152645_text {
  1364. border-width:0px;
  1365. word-wrap:break-word;
  1366. text-transform:none;
  1367. }
  1368. #u152646_div {
  1369. border-width:0px;
  1370. position:absolute;
  1371. left:0px;
  1372. top:0px;
  1373. width:340px;
  1374. height:92px;
  1375. background:inherit;
  1376. background-color:rgba(255, 255, 255, 1);
  1377. box-sizing:border-box;
  1378. border-width:1px;
  1379. border-style:solid;
  1380. border-color:rgba(215, 215, 215, 1);
  1381. border-radius:4px;
  1382. -moz-box-shadow:none;
  1383. -webkit-box-shadow:none;
  1384. box-shadow:none;
  1385. }
  1386. #u152646 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:1430px;
  1390. top:96px;
  1391. width:340px;
  1392. height:92px;
  1393. display:flex;
  1394. }
  1395. #u152646 .text {
  1396. position:absolute;
  1397. align-self:center;
  1398. padding:2px 2px 2px 2px;
  1399. box-sizing:border-box;
  1400. width:100%;
  1401. }
  1402. #u152646_text {
  1403. border-width:0px;
  1404. word-wrap:break-word;
  1405. text-transform:none;
  1406. visibility:hidden;
  1407. }
  1408. #u152647_div {
  1409. border-width:0px;
  1410. position:absolute;
  1411. left:0px;
  1412. top:0px;
  1413. width:127px;
  1414. height:30px;
  1415. background:inherit;
  1416. background-color:rgba(255, 255, 255, 0);
  1417. border:none;
  1418. border-left:0px;
  1419. border-top:0px;
  1420. border-right:0px;
  1421. border-radius:0px;
  1422. border-bottom-right-radius:0px;
  1423. border-bottom-left-radius:0px;
  1424. -moz-box-shadow:none;
  1425. -webkit-box-shadow:none;
  1426. box-shadow:none;
  1427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1428. font-weight:400;
  1429. font-style:normal;
  1430. font-size:14px;
  1431. color:#AAAAAA;
  1432. line-height:30px;
  1433. }
  1434. #u152647 {
  1435. border-width:0px;
  1436. position:absolute;
  1437. left:1439px;
  1438. top:104px;
  1439. width:127px;
  1440. height:30px;
  1441. display:flex;
  1442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1443. font-weight:400;
  1444. font-style:normal;
  1445. font-size:14px;
  1446. color:#AAAAAA;
  1447. line-height:30px;
  1448. }
  1449. #u152647 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:0px 0px 0px 0px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u152647_text {
  1457. border-width:0px;
  1458. white-space:nowrap;
  1459. text-transform:none;
  1460. }
  1461. #u152648 {
  1462. border-width:0px;
  1463. position:absolute;
  1464. left:0px;
  1465. top:0px;
  1466. width:0px;
  1467. height:0px;
  1468. }
  1469. #u152649_img {
  1470. border-width:0px;
  1471. position:absolute;
  1472. left:-5px;
  1473. top:-5px;
  1474. width:385px;
  1475. height:292px;
  1476. }
  1477. #u152649 {
  1478. border-width:0px;
  1479. position:absolute;
  1480. left:1410px;
  1481. top:376px;
  1482. width:375px;
  1483. height:282px;
  1484. display:flex;
  1485. }
  1486. #u152649 .text {
  1487. position:absolute;
  1488. align-self:center;
  1489. padding:2px 2px 2px 2px;
  1490. box-sizing:border-box;
  1491. width:100%;
  1492. }
  1493. #u152649_text {
  1494. border-width:0px;
  1495. word-wrap:break-word;
  1496. text-transform:none;
  1497. visibility:hidden;
  1498. }
  1499. #u152650_div {
  1500. border-width:0px;
  1501. position:absolute;
  1502. left:0px;
  1503. top:0px;
  1504. width:37px;
  1505. height:30px;
  1506. background:inherit;
  1507. background-color:rgba(255, 255, 255, 0);
  1508. border:none;
  1509. border-left:0px;
  1510. border-top:0px;
  1511. border-right:0px;
  1512. border-radius:0px;
  1513. border-bottom-right-radius:0px;
  1514. border-bottom-left-radius:0px;
  1515. -moz-box-shadow:none;
  1516. -webkit-box-shadow:none;
  1517. box-shadow:none;
  1518. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1519. font-weight:500;
  1520. font-style:normal;
  1521. font-size:18px;
  1522. line-height:30px;
  1523. }
  1524. #u152650 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:1430px;
  1528. top:389px;
  1529. width:37px;
  1530. height:30px;
  1531. display:flex;
  1532. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1533. font-weight:500;
  1534. font-style:normal;
  1535. font-size:18px;
  1536. line-height:30px;
  1537. }
  1538. #u152650 .text {
  1539. position:absolute;
  1540. align-self:flex-start;
  1541. padding:0px 0px 0px 0px;
  1542. box-sizing:border-box;
  1543. width:100%;
  1544. }
  1545. #u152650_text {
  1546. border-width:0px;
  1547. white-space:nowrap;
  1548. text-transform:none;
  1549. }
  1550. #u152651 {
  1551. border-width:0px;
  1552. position:absolute;
  1553. left:0px;
  1554. top:0px;
  1555. width:0px;
  1556. height:0px;
  1557. }
  1558. #u152652_div {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:375px;
  1564. height:60px;
  1565. background:inherit;
  1566. background-color:rgba(255, 255, 255, 1);
  1567. box-sizing:border-box;
  1568. border-width:1px;
  1569. border-style:solid;
  1570. border-color:rgba(242, 242, 242, 1);
  1571. border-radius:20px;
  1572. border-top-left-radius:0px;
  1573. border-top-right-radius:0px;
  1574. -moz-box-shadow:none;
  1575. -webkit-box-shadow:none;
  1576. box-shadow:none;
  1577. }
  1578. #u152652 {
  1579. border-width:0px;
  1580. position:absolute;
  1581. left:1410px;
  1582. top:598px;
  1583. width:375px;
  1584. height:60px;
  1585. display:flex;
  1586. }
  1587. #u152652 .text {
  1588. position:absolute;
  1589. align-self:center;
  1590. padding:2px 2px 2px 2px;
  1591. box-sizing:border-box;
  1592. width:100%;
  1593. }
  1594. #u152652_text {
  1595. border-width:0px;
  1596. word-wrap:break-word;
  1597. text-transform:none;
  1598. visibility:hidden;
  1599. }
  1600. #u152653_div {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:160px;
  1606. height:40px;
  1607. background:inherit;
  1608. background-color:rgba(0, 137, 254, 1);
  1609. border:none;
  1610. border-radius:63px;
  1611. -moz-box-shadow:none;
  1612. -webkit-box-shadow:none;
  1613. box-shadow:none;
  1614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1615. font-weight:400;
  1616. font-style:normal;
  1617. font-size:14px;
  1618. color:#FFFFFF;
  1619. }
  1620. #u152653 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:1605px;
  1624. top:608px;
  1625. width:160px;
  1626. height:40px;
  1627. display:flex;
  1628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1629. font-weight:400;
  1630. font-style:normal;
  1631. font-size:14px;
  1632. color:#FFFFFF;
  1633. }
  1634. #u152653 .text {
  1635. position:absolute;
  1636. align-self:center;
  1637. padding:2px 2px 2px 2px;
  1638. box-sizing:border-box;
  1639. width:100%;
  1640. }
  1641. #u152653_text {
  1642. border-width:0px;
  1643. word-wrap:break-word;
  1644. text-transform:none;
  1645. }
  1646. #u152654_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:160px;
  1652. height:40px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 1);
  1655. box-sizing:border-box;
  1656. border-width:1px;
  1657. border-style:solid;
  1658. border-color:rgba(121, 121, 121, 1);
  1659. border-radius:63px;
  1660. -moz-box-shadow:none;
  1661. -webkit-box-shadow:none;
  1662. box-shadow:none;
  1663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1664. font-weight:400;
  1665. font-style:normal;
  1666. font-size:14px;
  1667. }
  1668. #u152654 {
  1669. border-width:0px;
  1670. position:absolute;
  1671. left:1430px;
  1672. top:608px;
  1673. width:160px;
  1674. height:40px;
  1675. display:flex;
  1676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1677. font-weight:400;
  1678. font-style:normal;
  1679. font-size:14px;
  1680. }
  1681. #u152654 .text {
  1682. position:absolute;
  1683. align-self:center;
  1684. padding:2px 2px 2px 2px;
  1685. box-sizing:border-box;
  1686. width:100%;
  1687. }
  1688. #u152654_text {
  1689. border-width:0px;
  1690. word-wrap:break-word;
  1691. text-transform:none;
  1692. }
  1693. #u152655_div {
  1694. border-width:0px;
  1695. position:absolute;
  1696. left:0px;
  1697. top:0px;
  1698. width:340px;
  1699. height:92px;
  1700. background:inherit;
  1701. background-color:rgba(255, 255, 255, 1);
  1702. box-sizing:border-box;
  1703. border-width:1px;
  1704. border-style:solid;
  1705. border-color:rgba(215, 215, 215, 1);
  1706. border-radius:4px;
  1707. -moz-box-shadow:none;
  1708. -webkit-box-shadow:none;
  1709. box-shadow:none;
  1710. }
  1711. #u152655 {
  1712. border-width:0px;
  1713. position:absolute;
  1714. left:1430px;
  1715. top:429px;
  1716. width:340px;
  1717. height:92px;
  1718. display:flex;
  1719. }
  1720. #u152655 .text {
  1721. position:absolute;
  1722. align-self:center;
  1723. padding:2px 2px 2px 2px;
  1724. box-sizing:border-box;
  1725. width:100%;
  1726. }
  1727. #u152655_text {
  1728. border-width:0px;
  1729. word-wrap:break-word;
  1730. text-transform:none;
  1731. visibility:hidden;
  1732. }
  1733. #u152656_div {
  1734. border-width:0px;
  1735. position:absolute;
  1736. left:0px;
  1737. top:0px;
  1738. width:127px;
  1739. height:30px;
  1740. background:inherit;
  1741. background-color:rgba(255, 255, 255, 0);
  1742. border:none;
  1743. border-left:0px;
  1744. border-top:0px;
  1745. border-right:0px;
  1746. border-radius:0px;
  1747. border-bottom-right-radius:0px;
  1748. border-bottom-left-radius:0px;
  1749. -moz-box-shadow:none;
  1750. -webkit-box-shadow:none;
  1751. box-shadow:none;
  1752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1753. font-weight:400;
  1754. font-style:normal;
  1755. font-size:14px;
  1756. color:#AAAAAA;
  1757. line-height:30px;
  1758. }
  1759. #u152656 {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:1439px;
  1763. top:437px;
  1764. width:127px;
  1765. height:30px;
  1766. display:flex;
  1767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1768. font-weight:400;
  1769. font-style:normal;
  1770. font-size:14px;
  1771. color:#AAAAAA;
  1772. line-height:30px;
  1773. }
  1774. #u152656 .text {
  1775. position:absolute;
  1776. align-self:center;
  1777. padding:0px 0px 0px 0px;
  1778. box-sizing:border-box;
  1779. width:100%;
  1780. }
  1781. #u152656_text {
  1782. border-width:0px;
  1783. white-space:nowrap;
  1784. text-transform:none;
  1785. }
  1786. #u152657 {
  1787. border-width:0px;
  1788. position:absolute;
  1789. left:0px;
  1790. top:0px;
  1791. width:0px;
  1792. height:0px;
  1793. }
  1794. #u152658_div {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:0px;
  1798. top:0px;
  1799. width:375px;
  1800. height:399px;
  1801. background:inherit;
  1802. background-color:rgba(255, 255, 255, 1);
  1803. border:none;
  1804. border-radius:4px;
  1805. -moz-box-shadow:none;
  1806. -webkit-box-shadow:none;
  1807. box-shadow:none;
  1808. }
  1809. #u152658 {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:-1208px;
  1813. top:105px;
  1814. width:375px;
  1815. height:399px;
  1816. display:flex;
  1817. }
  1818. #u152658 .text {
  1819. position:absolute;
  1820. align-self:center;
  1821. padding:2px 2px 2px 2px;
  1822. box-sizing:border-box;
  1823. width:100%;
  1824. }
  1825. #u152658_text {
  1826. border-width:0px;
  1827. word-wrap:break-word;
  1828. text-transform:none;
  1829. visibility:hidden;
  1830. }
  1831. #u152659_div {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:0px;
  1835. top:0px;
  1836. width:29px;
  1837. height:30px;
  1838. background:inherit;
  1839. background-color:rgba(255, 255, 255, 0);
  1840. border:none;
  1841. border-left:0px;
  1842. border-top:0px;
  1843. border-right:0px;
  1844. border-radius:0px;
  1845. border-bottom-right-radius:0px;
  1846. border-bottom-left-radius:0px;
  1847. -moz-box-shadow:none;
  1848. -webkit-box-shadow:none;
  1849. box-shadow:none;
  1850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1851. font-weight:400;
  1852. font-style:normal;
  1853. font-size:14px;
  1854. line-height:30px;
  1855. }
  1856. #u152659 {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:-1155px;
  1860. top:115px;
  1861. width:29px;
  1862. height:30px;
  1863. display:flex;
  1864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1865. font-weight:400;
  1866. font-style:normal;
  1867. font-size:14px;
  1868. line-height:30px;
  1869. }
  1870. #u152659 .text {
  1871. position:absolute;
  1872. align-self:flex-start;
  1873. padding:0px 0px 0px 0px;
  1874. box-sizing:border-box;
  1875. width:100%;
  1876. }
  1877. #u152659_text {
  1878. border-width:0px;
  1879. white-space:nowrap;
  1880. text-transform:none;
  1881. }
  1882. #u152660_div {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:0px;
  1886. top:0px;
  1887. width:97px;
  1888. height:17px;
  1889. background:inherit;
  1890. background-color:rgba(255, 255, 255, 0);
  1891. border:none;
  1892. border-left:0px;
  1893. border-top:0px;
  1894. border-right:0px;
  1895. border-radius:0px;
  1896. border-bottom-right-radius:0px;
  1897. border-bottom-left-radius:0px;
  1898. -moz-box-shadow:none;
  1899. -webkit-box-shadow:none;
  1900. box-shadow:none;
  1901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1902. font-weight:400;
  1903. font-style:normal;
  1904. font-size:12px;
  1905. }
  1906. #u152660 {
  1907. border-width:0px;
  1908. position:absolute;
  1909. left:-1192px;
  1910. top:145px;
  1911. width:97px;
  1912. height:17px;
  1913. display:flex;
  1914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1915. font-weight:400;
  1916. font-style:normal;
  1917. font-size:12px;
  1918. }
  1919. #u152660 .text {
  1920. position:absolute;
  1921. align-self:flex-start;
  1922. padding:0px 0px 0px 0px;
  1923. box-sizing:border-box;
  1924. width:100%;
  1925. }
  1926. #u152660_text {
  1927. border-width:0px;
  1928. white-space:nowrap;
  1929. text-transform:none;
  1930. }
  1931. #u152661_div {
  1932. border-width:0px;
  1933. position:absolute;
  1934. left:0px;
  1935. top:0px;
  1936. width:188px;
  1937. height:100px;
  1938. background:inherit;
  1939. background-color:rgba(255, 255, 255, 0);
  1940. border:none;
  1941. border-left:0px;
  1942. border-top:0px;
  1943. border-right:0px;
  1944. border-radius:0px;
  1945. border-bottom-right-radius:0px;
  1946. border-bottom-left-radius:0px;
  1947. -moz-box-shadow:none;
  1948. -webkit-box-shadow:none;
  1949. box-shadow:none;
  1950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1951. font-weight:400;
  1952. font-style:normal;
  1953. font-size:12px;
  1954. line-height:25px;
  1955. }
  1956. #u152661 {
  1957. border-width:0px;
  1958. position:absolute;
  1959. left:-1192px;
  1960. top:172px;
  1961. width:188px;
  1962. height:100px;
  1963. display:flex;
  1964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1965. font-weight:400;
  1966. font-style:normal;
  1967. font-size:12px;
  1968. line-height:25px;
  1969. }
  1970. #u152661 .text {
  1971. position:absolute;
  1972. align-self:flex-start;
  1973. padding:0px 0px 0px 0px;
  1974. box-sizing:border-box;
  1975. width:100%;
  1976. }
  1977. #u152661_text {
  1978. border-width:0px;
  1979. white-space:nowrap;
  1980. text-transform:none;
  1981. }
  1982. #u152662_div {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:0px;
  1986. top:0px;
  1987. width:27px;
  1988. height:14px;
  1989. background:inherit;
  1990. background-color:rgba(24, 144, 255, 1);
  1991. border:none;
  1992. border-radius:14px;
  1993. -moz-box-shadow:none;
  1994. -webkit-box-shadow:none;
  1995. box-shadow:none;
  1996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1997. font-weight:400;
  1998. font-style:normal;
  1999. font-size:10px;
  2000. color:#FFFFFF;
  2001. text-align:center;
  2002. }
  2003. #u152662 {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:-1192px;
  2007. top:123px;
  2008. width:27px;
  2009. height:14px;
  2010. display:flex;
  2011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2012. font-weight:400;
  2013. font-style:normal;
  2014. font-size:10px;
  2015. color:#FFFFFF;
  2016. text-align:center;
  2017. }
  2018. #u152662 .text {
  2019. position:absolute;
  2020. align-self:flex-start;
  2021. padding:0px 0px 0px 0px;
  2022. box-sizing:border-box;
  2023. width:100%;
  2024. }
  2025. #u152662_text {
  2026. border-width:0px;
  2027. word-wrap:break-word;
  2028. text-transform:none;
  2029. }
  2030. #u152663_div {
  2031. border-width:0px;
  2032. position:absolute;
  2033. left:0px;
  2034. top:0px;
  2035. width:374px;
  2036. height:580px;
  2037. background:inherit;
  2038. background-color:rgba(255, 255, 255, 1);
  2039. border:none;
  2040. border-radius:0px;
  2041. -moz-box-shadow:none;
  2042. -webkit-box-shadow:none;
  2043. box-shadow:none;
  2044. }
  2045. #u152663 {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:29px;
  2049. top:195px;
  2050. width:374px;
  2051. height:580px;
  2052. display:flex;
  2053. }
  2054. #u152663 .text {
  2055. position:absolute;
  2056. align-self:center;
  2057. padding:2px 2px 2px 2px;
  2058. box-sizing:border-box;
  2059. width:100%;
  2060. }
  2061. #u152663_text {
  2062. border-width:0px;
  2063. word-wrap:break-word;
  2064. text-transform:none;
  2065. visibility:hidden;
  2066. }
  2067. #u152664_div {
  2068. border-width:0px;
  2069. position:absolute;
  2070. left:0px;
  2071. top:0px;
  2072. width:374px;
  2073. height:80px;
  2074. background:inherit;
  2075. background-color:rgba(255, 255, 255, 1);
  2076. border:none;
  2077. border-radius:0px;
  2078. -moz-box-shadow:none;
  2079. -webkit-box-shadow:none;
  2080. box-shadow:none;
  2081. }
  2082. #u152664 {
  2083. border-width:0px;
  2084. position:absolute;
  2085. left:29px;
  2086. top:105px;
  2087. width:374px;
  2088. height:80px;
  2089. display:flex;
  2090. }
  2091. #u152664 .text {
  2092. position:absolute;
  2093. align-self:center;
  2094. padding:2px 2px 2px 2px;
  2095. box-sizing:border-box;
  2096. width:100%;
  2097. }
  2098. #u152664_text {
  2099. border-width:0px;
  2100. word-wrap:break-word;
  2101. text-transform:none;
  2102. visibility:hidden;
  2103. }
  2104. #u152665_div {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:0px;
  2108. top:0px;
  2109. width:124px;
  2110. height:30px;
  2111. background:inherit;
  2112. background-color:rgba(255, 255, 255, 0);
  2113. border:none;
  2114. border-left:0px;
  2115. border-top:0px;
  2116. border-right:0px;
  2117. border-radius:0px;
  2118. border-bottom-right-radius:0px;
  2119. border-bottom-left-radius:0px;
  2120. -moz-box-shadow:none;
  2121. -webkit-box-shadow:none;
  2122. box-shadow:none;
  2123. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2124. font-weight:500;
  2125. font-style:normal;
  2126. font-size:18px;
  2127. line-height:30px;
  2128. }
  2129. #u152665 {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:61px;
  2133. top:115px;
  2134. width:124px;
  2135. height:30px;
  2136. display:flex;
  2137. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2138. font-weight:500;
  2139. font-style:normal;
  2140. font-size:18px;
  2141. line-height:30px;
  2142. }
  2143. #u152665 .text {
  2144. position:absolute;
  2145. align-self:flex-start;
  2146. padding:0px 0px 0px 0px;
  2147. box-sizing:border-box;
  2148. width:100%;
  2149. }
  2150. #u152665_text {
  2151. border-width:0px;
  2152. white-space:nowrap;
  2153. text-transform:none;
  2154. }
  2155. #u152666_div {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:0px;
  2159. top:0px;
  2160. width:29px;
  2161. height:30px;
  2162. background:inherit;
  2163. background-color:rgba(255, 255, 255, 0);
  2164. border:none;
  2165. border-left:0px;
  2166. border-top:0px;
  2167. border-right:0px;
  2168. border-radius:0px;
  2169. border-bottom-right-radius:0px;
  2170. border-bottom-left-radius:0px;
  2171. -moz-box-shadow:none;
  2172. -webkit-box-shadow:none;
  2173. box-shadow:none;
  2174. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2175. font-weight:500;
  2176. font-style:normal;
  2177. font-size:14px;
  2178. line-height:30px;
  2179. }
  2180. #u152666 {
  2181. border-width:0px;
  2182. position:absolute;
  2183. left:139px;
  2184. top:245px;
  2185. width:29px;
  2186. height:30px;
  2187. display:flex;
  2188. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2189. font-weight:500;
  2190. font-style:normal;
  2191. font-size:14px;
  2192. line-height:30px;
  2193. }
  2194. #u152666 .text {
  2195. position:absolute;
  2196. align-self:flex-start;
  2197. padding:0px 0px 0px 0px;
  2198. box-sizing:border-box;
  2199. width:100%;
  2200. }
  2201. #u152666_text {
  2202. border-width:0px;
  2203. white-space:nowrap;
  2204. text-transform:none;
  2205. }
  2206. #u152667_div {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:0px;
  2210. top:0px;
  2211. width:71px;
  2212. height:30px;
  2213. background:inherit;
  2214. background-color:rgba(255, 255, 255, 0);
  2215. border:none;
  2216. border-left:0px;
  2217. border-top:0px;
  2218. border-right:0px;
  2219. border-radius:0px;
  2220. border-bottom-right-radius:0px;
  2221. border-bottom-left-radius:0px;
  2222. -moz-box-shadow:none;
  2223. -webkit-box-shadow:none;
  2224. box-shadow:none;
  2225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2226. font-weight:400;
  2227. font-style:normal;
  2228. font-size:14px;
  2229. line-height:30px;
  2230. }
  2231. #u152667 {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:61px;
  2235. top:245px;
  2236. width:71px;
  2237. height:30px;
  2238. display:flex;
  2239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2240. font-weight:400;
  2241. font-style:normal;
  2242. font-size:14px;
  2243. line-height:30px;
  2244. }
  2245. #u152667 .text {
  2246. position:absolute;
  2247. align-self:flex-start;
  2248. padding:0px 0px 0px 0px;
  2249. box-sizing:border-box;
  2250. width:100%;
  2251. }
  2252. #u152667_text {
  2253. border-width:0px;
  2254. white-space:nowrap;
  2255. text-transform:none;
  2256. }
  2257. #u152668_div {
  2258. border-width:0px;
  2259. position:absolute;
  2260. left:0px;
  2261. top:0px;
  2262. width:29px;
  2263. height:30px;
  2264. background:inherit;
  2265. background-color:rgba(255, 255, 255, 0);
  2266. border:none;
  2267. border-left:0px;
  2268. border-top:0px;
  2269. border-right:0px;
  2270. border-radius:0px;
  2271. border-bottom-right-radius:0px;
  2272. border-bottom-left-radius:0px;
  2273. -moz-box-shadow:none;
  2274. -webkit-box-shadow:none;
  2275. box-shadow:none;
  2276. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2277. font-weight:500;
  2278. font-style:normal;
  2279. font-size:14px;
  2280. line-height:30px;
  2281. }
  2282. #u152668 {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:139px;
  2286. top:407px;
  2287. width:29px;
  2288. height:30px;
  2289. display:flex;
  2290. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2291. font-weight:500;
  2292. font-style:normal;
  2293. font-size:14px;
  2294. line-height:30px;
  2295. }
  2296. #u152668 .text {
  2297. position:absolute;
  2298. align-self:flex-start;
  2299. padding:0px 0px 0px 0px;
  2300. box-sizing:border-box;
  2301. width:100%;
  2302. }
  2303. #u152668_text {
  2304. border-width:0px;
  2305. white-space:nowrap;
  2306. text-transform:none;
  2307. }
  2308. #u152669_div {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:71px;
  2314. height:30px;
  2315. background:inherit;
  2316. background-color:rgba(255, 255, 255, 0);
  2317. border:none;
  2318. border-left:0px;
  2319. border-top:0px;
  2320. border-right:0px;
  2321. border-radius:0px;
  2322. border-bottom-right-radius:0px;
  2323. border-bottom-left-radius:0px;
  2324. -moz-box-shadow:none;
  2325. -webkit-box-shadow:none;
  2326. box-shadow:none;
  2327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2328. font-weight:400;
  2329. font-style:normal;
  2330. font-size:14px;
  2331. line-height:30px;
  2332. }
  2333. #u152669 {
  2334. border-width:0px;
  2335. position:absolute;
  2336. left:61px;
  2337. top:407px;
  2338. width:71px;
  2339. height:30px;
  2340. display:flex;
  2341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2342. font-weight:400;
  2343. font-style:normal;
  2344. font-size:14px;
  2345. line-height:30px;
  2346. }
  2347. #u152669 .text {
  2348. position:absolute;
  2349. align-self:flex-start;
  2350. padding:0px 0px 0px 0px;
  2351. box-sizing:border-box;
  2352. width:100%;
  2353. }
  2354. #u152669_text {
  2355. border-width:0px;
  2356. white-space:nowrap;
  2357. text-transform:none;
  2358. }
  2359. #u152670_div {
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:0px;
  2363. top:0px;
  2364. width:152px;
  2365. height:30px;
  2366. background:inherit;
  2367. background-color:rgba(255, 255, 255, 0);
  2368. border:none;
  2369. border-left:0px;
  2370. border-top:0px;
  2371. border-right:0px;
  2372. border-radius:0px;
  2373. border-bottom-right-radius:0px;
  2374. border-bottom-left-radius:0px;
  2375. -moz-box-shadow:none;
  2376. -webkit-box-shadow:none;
  2377. box-shadow:none;
  2378. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2379. font-weight:500;
  2380. font-style:normal;
  2381. font-size:14px;
  2382. line-height:30px;
  2383. }
  2384. #u152670 {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:139px;
  2388. top:437px;
  2389. width:152px;
  2390. height:30px;
  2391. display:flex;
  2392. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2393. font-weight:500;
  2394. font-style:normal;
  2395. font-size:14px;
  2396. line-height:30px;
  2397. }
  2398. #u152670 .text {
  2399. position:absolute;
  2400. align-self:flex-start;
  2401. padding:0px 0px 0px 0px;
  2402. box-sizing:border-box;
  2403. width:100%;
  2404. }
  2405. #u152670_text {
  2406. border-width:0px;
  2407. white-space:nowrap;
  2408. text-transform:none;
  2409. }
  2410. #u152671_div {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:0px;
  2414. top:0px;
  2415. width:71px;
  2416. height:30px;
  2417. background:inherit;
  2418. background-color:rgba(255, 255, 255, 0);
  2419. border:none;
  2420. border-left:0px;
  2421. border-top:0px;
  2422. border-right:0px;
  2423. border-radius:0px;
  2424. border-bottom-right-radius:0px;
  2425. border-bottom-left-radius:0px;
  2426. -moz-box-shadow:none;
  2427. -webkit-box-shadow:none;
  2428. box-shadow:none;
  2429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2430. font-weight:400;
  2431. font-style:normal;
  2432. font-size:14px;
  2433. line-height:30px;
  2434. }
  2435. #u152671 {
  2436. border-width:0px;
  2437. position:absolute;
  2438. left:61px;
  2439. top:437px;
  2440. width:71px;
  2441. height:30px;
  2442. display:flex;
  2443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2444. font-weight:400;
  2445. font-style:normal;
  2446. font-size:14px;
  2447. line-height:30px;
  2448. }
  2449. #u152671 .text {
  2450. position:absolute;
  2451. align-self:flex-start;
  2452. padding:0px 0px 0px 0px;
  2453. box-sizing:border-box;
  2454. width:100%;
  2455. }
  2456. #u152671_text {
  2457. border-width:0px;
  2458. white-space:nowrap;
  2459. text-transform:none;
  2460. }
  2461. #u152672_div {
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:0px;
  2465. top:0px;
  2466. width:91px;
  2467. height:30px;
  2468. background:inherit;
  2469. background-color:rgba(255, 255, 255, 0);
  2470. border:none;
  2471. border-left:0px;
  2472. border-top:0px;
  2473. border-right:0px;
  2474. border-radius:0px;
  2475. border-bottom-right-radius:0px;
  2476. border-bottom-left-radius:0px;
  2477. -moz-box-shadow:none;
  2478. -webkit-box-shadow:none;
  2479. box-shadow:none;
  2480. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2481. font-weight:500;
  2482. font-style:normal;
  2483. font-size:14px;
  2484. line-height:30px;
  2485. }
  2486. #u152672 {
  2487. border-width:0px;
  2488. position:absolute;
  2489. left:139px;
  2490. top:467px;
  2491. width:91px;
  2492. height:30px;
  2493. display:flex;
  2494. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2495. font-weight:500;
  2496. font-style:normal;
  2497. font-size:14px;
  2498. line-height:30px;
  2499. }
  2500. #u152672 .text {
  2501. position:absolute;
  2502. align-self:flex-start;
  2503. padding:0px 0px 0px 0px;
  2504. box-sizing:border-box;
  2505. width:100%;
  2506. }
  2507. #u152672_text {
  2508. border-width:0px;
  2509. white-space:nowrap;
  2510. text-transform:none;
  2511. }
  2512. #u152673_div {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:0px;
  2516. top:0px;
  2517. width:71px;
  2518. height:30px;
  2519. background:inherit;
  2520. background-color:rgba(255, 255, 255, 0);
  2521. border:none;
  2522. border-left:0px;
  2523. border-top:0px;
  2524. border-right:0px;
  2525. border-radius:0px;
  2526. border-bottom-right-radius:0px;
  2527. border-bottom-left-radius:0px;
  2528. -moz-box-shadow:none;
  2529. -webkit-box-shadow:none;
  2530. box-shadow:none;
  2531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2532. font-weight:400;
  2533. font-style:normal;
  2534. font-size:14px;
  2535. line-height:30px;
  2536. }
  2537. #u152673 {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:61px;
  2541. top:467px;
  2542. width:71px;
  2543. height:30px;
  2544. display:flex;
  2545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2546. font-weight:400;
  2547. font-style:normal;
  2548. font-size:14px;
  2549. line-height:30px;
  2550. }
  2551. #u152673 .text {
  2552. position:absolute;
  2553. align-self:flex-start;
  2554. padding:0px 0px 0px 0px;
  2555. box-sizing:border-box;
  2556. width:100%;
  2557. }
  2558. #u152673_text {
  2559. border-width:0px;
  2560. white-space:nowrap;
  2561. text-transform:none;
  2562. }
  2563. #u152674_div {
  2564. border-width:0px;
  2565. position:absolute;
  2566. left:0px;
  2567. top:0px;
  2568. width:137px;
  2569. height:30px;
  2570. background:inherit;
  2571. background-color:rgba(255, 255, 255, 0);
  2572. border:none;
  2573. border-left:0px;
  2574. border-top:0px;
  2575. border-right:0px;
  2576. border-radius:0px;
  2577. border-bottom-right-radius:0px;
  2578. border-bottom-left-radius:0px;
  2579. -moz-box-shadow:none;
  2580. -webkit-box-shadow:none;
  2581. box-shadow:none;
  2582. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2583. font-weight:500;
  2584. font-style:normal;
  2585. font-size:14px;
  2586. line-height:30px;
  2587. }
  2588. #u152674 {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:139px;
  2592. top:497px;
  2593. width:137px;
  2594. height:30px;
  2595. display:flex;
  2596. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2597. font-weight:500;
  2598. font-style:normal;
  2599. font-size:14px;
  2600. line-height:30px;
  2601. }
  2602. #u152674 .text {
  2603. position:absolute;
  2604. align-self:flex-start;
  2605. padding:0px 0px 0px 0px;
  2606. box-sizing:border-box;
  2607. width:100%;
  2608. }
  2609. #u152674_text {
  2610. border-width:0px;
  2611. white-space:nowrap;
  2612. text-transform:none;
  2613. }
  2614. #u152675_div {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:0px;
  2618. top:0px;
  2619. width:71px;
  2620. height:30px;
  2621. background:inherit;
  2622. background-color:rgba(255, 255, 255, 0);
  2623. border:none;
  2624. border-left:0px;
  2625. border-top:0px;
  2626. border-right:0px;
  2627. border-radius:0px;
  2628. border-bottom-right-radius:0px;
  2629. border-bottom-left-radius:0px;
  2630. -moz-box-shadow:none;
  2631. -webkit-box-shadow:none;
  2632. box-shadow:none;
  2633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2634. font-weight:400;
  2635. font-style:normal;
  2636. font-size:14px;
  2637. line-height:30px;
  2638. }
  2639. #u152675 {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:61px;
  2643. top:497px;
  2644. width:71px;
  2645. height:30px;
  2646. display:flex;
  2647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2648. font-weight:400;
  2649. font-style:normal;
  2650. font-size:14px;
  2651. line-height:30px;
  2652. }
  2653. #u152675 .text {
  2654. position:absolute;
  2655. align-self:flex-start;
  2656. padding:0px 0px 0px 0px;
  2657. box-sizing:border-box;
  2658. width:100%;
  2659. }
  2660. #u152675_text {
  2661. border-width:0px;
  2662. white-space:nowrap;
  2663. text-transform:none;
  2664. }
  2665. #u152676_div {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:0px;
  2669. top:0px;
  2670. width:85px;
  2671. height:30px;
  2672. background:inherit;
  2673. background-color:rgba(255, 255, 255, 0);
  2674. border:none;
  2675. border-left:0px;
  2676. border-top:0px;
  2677. border-right:0px;
  2678. border-radius:0px;
  2679. border-bottom-right-radius:0px;
  2680. border-bottom-left-radius:0px;
  2681. -moz-box-shadow:none;
  2682. -webkit-box-shadow:none;
  2683. box-shadow:none;
  2684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2685. font-weight:400;
  2686. font-style:normal;
  2687. font-size:14px;
  2688. line-height:30px;
  2689. }
  2690. #u152676 {
  2691. border-width:0px;
  2692. position:absolute;
  2693. left:61px;
  2694. top:145px;
  2695. width:85px;
  2696. height:30px;
  2697. display:flex;
  2698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2699. font-weight:400;
  2700. font-style:normal;
  2701. font-size:14px;
  2702. line-height:30px;
  2703. }
  2704. #u152676 .text {
  2705. position:absolute;
  2706. align-self:flex-start;
  2707. padding:0px 0px 0px 0px;
  2708. box-sizing:border-box;
  2709. width:100%;
  2710. }
  2711. #u152676_text {
  2712. border-width:0px;
  2713. white-space:nowrap;
  2714. text-transform:none;
  2715. }
  2716. #u152677_div {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:0px;
  2720. top:0px;
  2721. width:57px;
  2722. height:30px;
  2723. background:inherit;
  2724. background-color:rgba(255, 255, 255, 0);
  2725. border:none;
  2726. border-left:0px;
  2727. border-top:0px;
  2728. border-right:0px;
  2729. border-radius:0px;
  2730. border-bottom-right-radius:0px;
  2731. border-bottom-left-radius:0px;
  2732. -moz-box-shadow:none;
  2733. -webkit-box-shadow:none;
  2734. box-shadow:none;
  2735. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2736. font-weight:500;
  2737. font-style:normal;
  2738. font-size:14px;
  2739. line-height:30px;
  2740. }
  2741. #u152677 {
  2742. border-width:0px;
  2743. position:absolute;
  2744. left:61px;
  2745. top:205px;
  2746. width:57px;
  2747. height:30px;
  2748. display:flex;
  2749. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2750. font-weight:500;
  2751. font-style:normal;
  2752. font-size:14px;
  2753. line-height:30px;
  2754. }
  2755. #u152677 .text {
  2756. position:absolute;
  2757. align-self:flex-start;
  2758. padding:0px 0px 0px 0px;
  2759. box-sizing:border-box;
  2760. width:100%;
  2761. }
  2762. #u152677_text {
  2763. border-width:0px;
  2764. white-space:nowrap;
  2765. text-transform:none;
  2766. }
  2767. #u152678_div {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:0px;
  2771. top:0px;
  2772. width:71px;
  2773. height:30px;
  2774. background:inherit;
  2775. background-color:rgba(255, 255, 255, 0);
  2776. border:none;
  2777. border-left:0px;
  2778. border-top:0px;
  2779. border-right:0px;
  2780. border-radius:0px;
  2781. border-bottom-right-radius:0px;
  2782. border-bottom-left-radius:0px;
  2783. -moz-box-shadow:none;
  2784. -webkit-box-shadow:none;
  2785. box-shadow:none;
  2786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2787. font-weight:400;
  2788. font-style:normal;
  2789. font-size:14px;
  2790. line-height:30px;
  2791. }
  2792. #u152678 {
  2793. border-width:0px;
  2794. position:absolute;
  2795. left:61px;
  2796. top:275px;
  2797. width:71px;
  2798. height:30px;
  2799. display:flex;
  2800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2801. font-weight:400;
  2802. font-style:normal;
  2803. font-size:14px;
  2804. line-height:30px;
  2805. }
  2806. #u152678 .text {
  2807. position:absolute;
  2808. align-self:flex-start;
  2809. padding:0px 0px 0px 0px;
  2810. box-sizing:border-box;
  2811. width:100%;
  2812. }
  2813. #u152678_text {
  2814. border-width:0px;
  2815. white-space:nowrap;
  2816. text-transform:none;
  2817. }
  2818. #u152679_img {
  2819. border-width:0px;
  2820. position:absolute;
  2821. left:0px;
  2822. top:0px;
  2823. width:134px;
  2824. height:92px;
  2825. }
  2826. #u152679 {
  2827. border-width:0px;
  2828. position:absolute;
  2829. left:61px;
  2830. top:305px;
  2831. width:134px;
  2832. height:92px;
  2833. display:flex;
  2834. }
  2835. #u152679 .text {
  2836. position:absolute;
  2837. align-self:center;
  2838. padding:2px 2px 2px 2px;
  2839. box-sizing:border-box;
  2840. width:100%;
  2841. }
  2842. #u152679_text {
  2843. border-width:0px;
  2844. word-wrap:break-word;
  2845. text-transform:none;
  2846. visibility:hidden;
  2847. }
  2848. #u152680_img {
  2849. border-width:0px;
  2850. position:absolute;
  2851. left:0px;
  2852. top:0px;
  2853. width:134px;
  2854. height:92px;
  2855. }
  2856. #u152680 {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:204px;
  2860. top:305px;
  2861. width:134px;
  2862. height:92px;
  2863. display:flex;
  2864. }
  2865. #u152680 .text {
  2866. position:absolute;
  2867. align-self:center;
  2868. padding:2px 2px 2px 2px;
  2869. box-sizing:border-box;
  2870. width:100%;
  2871. }
  2872. #u152680_text {
  2873. border-width:0px;
  2874. word-wrap:break-word;
  2875. text-transform:none;
  2876. visibility:hidden;
  2877. }
  2878. #u152682_img {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:0px;
  2882. top:0px;
  2883. width:433px;
  2884. height:865px;
  2885. }
  2886. #u152682 {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:455px;
  2890. top:0px;
  2891. width:433px;
  2892. height:865px;
  2893. display:flex;
  2894. }
  2895. #u152682 .text {
  2896. position:absolute;
  2897. align-self:center;
  2898. padding:2px 2px 2px 2px;
  2899. box-sizing:border-box;
  2900. width:100%;
  2901. }
  2902. #u152682_text {
  2903. border-width:0px;
  2904. word-wrap:break-word;
  2905. text-transform:none;
  2906. visibility:hidden;
  2907. }
  2908. #u152683_div {
  2909. border-width:0px;
  2910. position:absolute;
  2911. left:0px;
  2912. top:0px;
  2913. width:375px;
  2914. height:40px;
  2915. background:inherit;
  2916. background-color:rgba(255, 255, 255, 1);
  2917. box-sizing:border-box;
  2918. border-width:1px;
  2919. border-style:solid;
  2920. border-color:rgba(215, 215, 215, 1);
  2921. border-left:0px;
  2922. border-top:0px;
  2923. border-right:0px;
  2924. border-radius:0px;
  2925. border-bottom-right-radius:0px;
  2926. border-bottom-left-radius:0px;
  2927. -moz-box-shadow:none;
  2928. -webkit-box-shadow:none;
  2929. box-shadow:none;
  2930. }
  2931. #u152683 {
  2932. border-width:0px;
  2933. position:absolute;
  2934. left:484px;
  2935. top:67px;
  2936. width:375px;
  2937. height:40px;
  2938. display:flex;
  2939. }
  2940. #u152683 .text {
  2941. position:absolute;
  2942. align-self:center;
  2943. padding:2px 2px 2px 2px;
  2944. box-sizing:border-box;
  2945. width:100%;
  2946. }
  2947. #u152683_text {
  2948. border-width:0px;
  2949. word-wrap:break-word;
  2950. text-transform:none;
  2951. visibility:hidden;
  2952. }
  2953. #u152684 {
  2954. border-width:0px;
  2955. position:absolute;
  2956. left:0px;
  2957. top:0px;
  2958. width:0px;
  2959. height:0px;
  2960. }
  2961. #u152685_div {
  2962. border-width:0px;
  2963. position:absolute;
  2964. left:0px;
  2965. top:0px;
  2966. width:88px;
  2967. height:32px;
  2968. background:inherit;
  2969. background-color:rgba(255, 255, 255, 1);
  2970. box-sizing:border-box;
  2971. border-width:1px;
  2972. border-style:solid;
  2973. border-color:rgba(242, 242, 242, 1);
  2974. border-radius:33px;
  2975. -moz-box-shadow:none;
  2976. -webkit-box-shadow:none;
  2977. box-shadow:none;
  2978. }
  2979. #u152685 {
  2980. border-width:0px;
  2981. position:absolute;
  2982. left:764px;
  2983. top:71px;
  2984. width:88px;
  2985. height:32px;
  2986. display:flex;
  2987. }
  2988. #u152685 .text {
  2989. position:absolute;
  2990. align-self:center;
  2991. padding:2px 2px 2px 2px;
  2992. box-sizing:border-box;
  2993. width:100%;
  2994. }
  2995. #u152685_text {
  2996. border-width:0px;
  2997. word-wrap:break-word;
  2998. text-transform:none;
  2999. visibility:hidden;
  3000. }
  3001. #u152686 {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:0px;
  3005. top:0px;
  3006. width:0px;
  3007. height:0px;
  3008. }
  3009. #u152687_img {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:0px;
  3013. top:0px;
  3014. width:18px;
  3015. height:18px;
  3016. }
  3017. #u152687 {
  3018. border-width:0px;
  3019. position:absolute;
  3020. left:827px;
  3021. top:78px;
  3022. width:18px;
  3023. height:18px;
  3024. display:flex;
  3025. }
  3026. #u152687 .text {
  3027. position:absolute;
  3028. align-self:center;
  3029. padding:2px 2px 2px 2px;
  3030. box-sizing:border-box;
  3031. width:100%;
  3032. }
  3033. #u152687_text {
  3034. border-width:0px;
  3035. word-wrap:break-word;
  3036. text-transform:none;
  3037. visibility:hidden;
  3038. }
  3039. #u152688_img {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:0px;
  3043. top:0px;
  3044. width:6px;
  3045. height:6px;
  3046. }
  3047. #u152688 {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:833px;
  3051. top:84px;
  3052. width:6px;
  3053. height:6px;
  3054. display:flex;
  3055. }
  3056. #u152688 .text {
  3057. position:absolute;
  3058. align-self:center;
  3059. padding:2px 2px 2px 2px;
  3060. box-sizing:border-box;
  3061. width:100%;
  3062. }
  3063. #u152688_text {
  3064. border-width:0px;
  3065. word-wrap:break-word;
  3066. text-transform:none;
  3067. visibility:hidden;
  3068. }
  3069. #u152689 {
  3070. border-width:0px;
  3071. position:absolute;
  3072. left:0px;
  3073. top:0px;
  3074. width:0px;
  3075. height:0px;
  3076. }
  3077. #u152690_img {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:0px;
  3081. top:0px;
  3082. width:5px;
  3083. height:5px;
  3084. }
  3085. #u152690 {
  3086. border-width:0px;
  3087. position:absolute;
  3088. left:778px;
  3089. top:85px;
  3090. width:5px;
  3091. height:5px;
  3092. display:flex;
  3093. }
  3094. #u152690 .text {
  3095. position:absolute;
  3096. align-self:center;
  3097. padding:2px 2px 2px 2px;
  3098. box-sizing:border-box;
  3099. width:100%;
  3100. }
  3101. #u152690_text {
  3102. border-width:0px;
  3103. word-wrap:break-word;
  3104. text-transform:none;
  3105. visibility:hidden;
  3106. }
  3107. #u152691_img {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:0px;
  3111. top:0px;
  3112. width:5px;
  3113. height:5px;
  3114. }
  3115. #u152691 {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:794px;
  3119. top:85px;
  3120. width:5px;
  3121. height:5px;
  3122. display:flex;
  3123. }
  3124. #u152691 .text {
  3125. position:absolute;
  3126. align-self:center;
  3127. padding:2px 2px 2px 2px;
  3128. box-sizing:border-box;
  3129. width:100%;
  3130. }
  3131. #u152691_text {
  3132. border-width:0px;
  3133. word-wrap:break-word;
  3134. text-transform:none;
  3135. visibility:hidden;
  3136. }
  3137. #u152692_img {
  3138. border-width:0px;
  3139. position:absolute;
  3140. left:0px;
  3141. top:0px;
  3142. width:7px;
  3143. height:7px;
  3144. }
  3145. #u152692 {
  3146. border-width:0px;
  3147. position:absolute;
  3148. left:785px;
  3149. top:84px;
  3150. width:7px;
  3151. height:7px;
  3152. display:flex;
  3153. }
  3154. #u152692 .text {
  3155. position:absolute;
  3156. align-self:center;
  3157. padding:2px 2px 2px 2px;
  3158. box-sizing:border-box;
  3159. width:100%;
  3160. }
  3161. #u152692_text {
  3162. border-width:0px;
  3163. word-wrap:break-word;
  3164. text-transform:none;
  3165. visibility:hidden;
  3166. }
  3167. #u152693_img {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:0px;
  3171. top:0px;
  3172. width:19px;
  3173. height:2px;
  3174. }
  3175. #u152693 {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:802px;
  3179. top:87px;
  3180. width:18px;
  3181. height:1px;
  3182. display:flex;
  3183. -webkit-transform:rotate(90deg);
  3184. -moz-transform:rotate(90deg);
  3185. -ms-transform:rotate(90deg);
  3186. transform:rotate(90deg);
  3187. }
  3188. #u152693 .text {
  3189. position:absolute;
  3190. align-self:center;
  3191. padding:2px 2px 2px 2px;
  3192. box-sizing:border-box;
  3193. width:100%;
  3194. }
  3195. #u152693_text {
  3196. border-width:0px;
  3197. word-wrap:break-word;
  3198. text-transform:none;
  3199. visibility:hidden;
  3200. }
  3201. #u152694_img {
  3202. border-width:0px;
  3203. position:absolute;
  3204. left:0px;
  3205. top:0px;
  3206. width:375px;
  3207. height:44px;
  3208. }
  3209. #u152694 {
  3210. border-width:0px;
  3211. position:absolute;
  3212. left:484px;
  3213. top:24px;
  3214. width:375px;
  3215. height:44px;
  3216. display:flex;
  3217. }
  3218. #u152694 .text {
  3219. position:absolute;
  3220. align-self:center;
  3221. padding:2px 2px 2px 2px;
  3222. box-sizing:border-box;
  3223. width:100%;
  3224. }
  3225. #u152694_text {
  3226. border-width:0px;
  3227. word-wrap:break-word;
  3228. text-transform:none;
  3229. visibility:hidden;
  3230. }
  3231. #u152695_div {
  3232. border-width:0px;
  3233. position:absolute;
  3234. left:0px;
  3235. top:0px;
  3236. width:375px;
  3237. height:50px;
  3238. background:inherit;
  3239. background-color:rgba(255, 255, 255, 1);
  3240. box-sizing:border-box;
  3241. border-width:1px;
  3242. border-style:solid;
  3243. border-color:rgba(242, 242, 242, 1);
  3244. border-radius:26px;
  3245. border-top-left-radius:0px;
  3246. border-top-right-radius:0px;
  3247. -moz-box-shadow:none;
  3248. -webkit-box-shadow:none;
  3249. box-shadow:none;
  3250. }
  3251. #u152695 {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:484px;
  3255. top:788px;
  3256. width:375px;
  3257. height:50px;
  3258. display:flex;
  3259. }
  3260. #u152695 .text {
  3261. position:absolute;
  3262. align-self:center;
  3263. padding:2px 2px 2px 2px;
  3264. box-sizing:border-box;
  3265. width:100%;
  3266. }
  3267. #u152695_text {
  3268. border-width:0px;
  3269. word-wrap:break-word;
  3270. text-transform:none;
  3271. visibility:hidden;
  3272. }
  3273. #u152696 {
  3274. border-width:0px;
  3275. position:absolute;
  3276. left:0px;
  3277. top:0px;
  3278. width:0px;
  3279. height:0px;
  3280. }
  3281. #u152697_img {
  3282. border-width:0px;
  3283. position:absolute;
  3284. left:0px;
  3285. top:0px;
  3286. width:24px;
  3287. height:24px;
  3288. }
  3289. #u152697 {
  3290. border-width:0px;
  3291. position:absolute;
  3292. left:524px;
  3293. top:792px;
  3294. width:24px;
  3295. height:24px;
  3296. display:flex;
  3297. font-size:8px;
  3298. }
  3299. #u152697 .text {
  3300. position:absolute;
  3301. align-self:center;
  3302. padding:2px 2px 2px 2px;
  3303. box-sizing:border-box;
  3304. width:100%;
  3305. }
  3306. #u152697_text {
  3307. border-width:0px;
  3308. word-wrap:break-word;
  3309. text-transform:none;
  3310. }
  3311. #u152698_div {
  3312. border-width:0px;
  3313. position:absolute;
  3314. left:0px;
  3315. top:0px;
  3316. width:25px;
  3317. height:17px;
  3318. background:inherit;
  3319. background-color:rgba(255, 255, 255, 0);
  3320. border:none;
  3321. border-radius:0px;
  3322. -moz-box-shadow:none;
  3323. -webkit-box-shadow:none;
  3324. box-shadow:none;
  3325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3326. font-weight:400;
  3327. font-style:normal;
  3328. font-size:12px;
  3329. }
  3330. #u152698 {
  3331. border-width:0px;
  3332. position:absolute;
  3333. left:524px;
  3334. top:817px;
  3335. width:25px;
  3336. height:17px;
  3337. display:flex;
  3338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3339. font-weight:400;
  3340. font-style:normal;
  3341. font-size:12px;
  3342. }
  3343. #u152698 .text {
  3344. position:absolute;
  3345. align-self:flex-start;
  3346. padding:0px 0px 0px 0px;
  3347. box-sizing:border-box;
  3348. width:100%;
  3349. }
  3350. #u152698_text {
  3351. border-width:0px;
  3352. white-space:nowrap;
  3353. text-transform:none;
  3354. }
  3355. #u152699 {
  3356. border-width:0px;
  3357. position:absolute;
  3358. left:0px;
  3359. top:0px;
  3360. width:0px;
  3361. height:0px;
  3362. }
  3363. #u152700_img {
  3364. border-width:0px;
  3365. position:absolute;
  3366. left:0px;
  3367. top:0px;
  3368. width:24px;
  3369. height:24px;
  3370. }
  3371. #u152700 {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:794px;
  3375. top:794px;
  3376. width:24px;
  3377. height:24px;
  3378. display:flex;
  3379. font-size:8px;
  3380. }
  3381. #u152700 .text {
  3382. position:absolute;
  3383. align-self:center;
  3384. padding:2px 2px 2px 2px;
  3385. box-sizing:border-box;
  3386. width:100%;
  3387. }
  3388. #u152700_text {
  3389. border-width:0px;
  3390. word-wrap:break-word;
  3391. text-transform:none;
  3392. }
  3393. #u152701_div {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:0px;
  3397. top:0px;
  3398. width:25px;
  3399. height:17px;
  3400. background:inherit;
  3401. background-color:rgba(255, 255, 255, 0);
  3402. border:none;
  3403. border-radius:0px;
  3404. -moz-box-shadow:none;
  3405. -webkit-box-shadow:none;
  3406. box-shadow:none;
  3407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3408. font-weight:400;
  3409. font-style:normal;
  3410. font-size:12px;
  3411. }
  3412. #u152701 {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:794px;
  3416. top:819px;
  3417. width:25px;
  3418. height:17px;
  3419. display:flex;
  3420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3421. font-weight:400;
  3422. font-style:normal;
  3423. font-size:12px;
  3424. }
  3425. #u152701 .text {
  3426. position:absolute;
  3427. align-self:flex-start;
  3428. padding:0px 0px 0px 0px;
  3429. box-sizing:border-box;
  3430. width:100%;
  3431. }
  3432. #u152701_text {
  3433. border-width:0px;
  3434. white-space:nowrap;
  3435. text-transform:none;
  3436. }
  3437. #u152702_div {
  3438. border-width:0px;
  3439. position:absolute;
  3440. left:0px;
  3441. top:0px;
  3442. width:375px;
  3443. height:681px;
  3444. background:inherit;
  3445. background-color:rgba(242, 242, 242, 0.462745098039216);
  3446. border:none;
  3447. border-radius:0px;
  3448. -moz-box-shadow:none;
  3449. -webkit-box-shadow:none;
  3450. box-shadow:none;
  3451. }
  3452. #u152702 {
  3453. border-width:0px;
  3454. position:absolute;
  3455. left:484px;
  3456. top:107px;
  3457. width:375px;
  3458. height:681px;
  3459. display:flex;
  3460. }
  3461. #u152702 .text {
  3462. position:absolute;
  3463. align-self:center;
  3464. padding:2px 2px 2px 2px;
  3465. box-sizing:border-box;
  3466. width:100%;
  3467. }
  3468. #u152702_text {
  3469. border-width:0px;
  3470. word-wrap:break-word;
  3471. text-transform:none;
  3472. visibility:hidden;
  3473. }
  3474. #u152703 {
  3475. border-width:0px;
  3476. position:absolute;
  3477. left:0px;
  3478. top:0px;
  3479. width:0px;
  3480. height:0px;
  3481. }
  3482. #u152704_img {
  3483. border-width:0px;
  3484. position:absolute;
  3485. left:0px;
  3486. top:0px;
  3487. width:24px;
  3488. height:24px;
  3489. }
  3490. #u152704 {
  3491. border-width:0px;
  3492. position:absolute;
  3493. left:706px;
  3494. top:792px;
  3495. width:24px;
  3496. height:24px;
  3497. display:flex;
  3498. font-size:8px;
  3499. }
  3500. #u152704 .text {
  3501. position:absolute;
  3502. align-self:center;
  3503. padding:2px 2px 2px 2px;
  3504. box-sizing:border-box;
  3505. width:100%;
  3506. }
  3507. #u152704_text {
  3508. border-width:0px;
  3509. word-wrap:break-word;
  3510. text-transform:none;
  3511. }
  3512. #u152705_div {
  3513. border-width:0px;
  3514. position:absolute;
  3515. left:0px;
  3516. top:0px;
  3517. width:37px;
  3518. height:17px;
  3519. background:inherit;
  3520. background-color:rgba(255, 255, 255, 0);
  3521. border:none;
  3522. border-radius:0px;
  3523. -moz-box-shadow:none;
  3524. -webkit-box-shadow:none;
  3525. box-shadow:none;
  3526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3527. font-weight:400;
  3528. font-style:normal;
  3529. font-size:12px;
  3530. }
  3531. #u152705 {
  3532. border-width:0px;
  3533. position:absolute;
  3534. left:700px;
  3535. top:817px;
  3536. width:37px;
  3537. height:17px;
  3538. display:flex;
  3539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3540. font-weight:400;
  3541. font-style:normal;
  3542. font-size:12px;
  3543. }
  3544. #u152705 .text {
  3545. position:absolute;
  3546. align-self:flex-start;
  3547. padding:0px 0px 0px 0px;
  3548. box-sizing:border-box;
  3549. width:100%;
  3550. }
  3551. #u152705_text {
  3552. border-width:0px;
  3553. white-space:nowrap;
  3554. text-transform:none;
  3555. }
  3556. #u152706 {
  3557. border-width:0px;
  3558. position:absolute;
  3559. left:0px;
  3560. top:0px;
  3561. width:0px;
  3562. height:0px;
  3563. }
  3564. #u152707_img {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:0px;
  3568. top:0px;
  3569. width:24px;
  3570. height:24px;
  3571. }
  3572. #u152707 {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:612px;
  3576. top:792px;
  3577. width:24px;
  3578. height:24px;
  3579. display:flex;
  3580. font-size:8px;
  3581. }
  3582. #u152707 .text {
  3583. position:absolute;
  3584. align-self:center;
  3585. padding:2px 2px 2px 2px;
  3586. box-sizing:border-box;
  3587. width:100%;
  3588. }
  3589. #u152707_text {
  3590. border-width:0px;
  3591. word-wrap:break-word;
  3592. text-transform:none;
  3593. }
  3594. #u152708_div {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:0px;
  3598. top:0px;
  3599. width:37px;
  3600. height:17px;
  3601. background:inherit;
  3602. background-color:rgba(255, 255, 255, 0);
  3603. border:none;
  3604. border-radius:0px;
  3605. -moz-box-shadow:none;
  3606. -webkit-box-shadow:none;
  3607. box-shadow:none;
  3608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3609. font-weight:400;
  3610. font-style:normal;
  3611. font-size:12px;
  3612. }
  3613. #u152708 {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:606px;
  3617. top:817px;
  3618. width:37px;
  3619. height:17px;
  3620. display:flex;
  3621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3622. font-weight:400;
  3623. font-style:normal;
  3624. font-size:12px;
  3625. }
  3626. #u152708 .text {
  3627. position:absolute;
  3628. align-self:flex-start;
  3629. padding:0px 0px 0px 0px;
  3630. box-sizing:border-box;
  3631. width:100%;
  3632. }
  3633. #u152708_text {
  3634. border-width:0px;
  3635. white-space:nowrap;
  3636. text-transform:none;
  3637. }
  3638. #u152709_div {
  3639. border-width:0px;
  3640. position:absolute;
  3641. left:0px;
  3642. top:0px;
  3643. width:375px;
  3644. height:735px;
  3645. background:inherit;
  3646. background-color:rgba(242, 242, 242, 1);
  3647. border:none;
  3648. border-top:0px;
  3649. border-radius:25px;
  3650. border-top-left-radius:0px;
  3651. border-top-right-radius:0px;
  3652. -moz-box-shadow:none;
  3653. -webkit-box-shadow:none;
  3654. box-shadow:none;
  3655. }
  3656. #u152709 {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:484px;
  3660. top:105px;
  3661. width:375px;
  3662. height:735px;
  3663. display:flex;
  3664. }
  3665. #u152709 .text {
  3666. position:absolute;
  3667. align-self:center;
  3668. padding:2px 2px 2px 2px;
  3669. box-sizing:border-box;
  3670. width:100%;
  3671. }
  3672. #u152709_text {
  3673. border-width:0px;
  3674. word-wrap:break-word;
  3675. text-transform:none;
  3676. visibility:hidden;
  3677. }
  3678. #u152710_div {
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:0px;
  3682. top:0px;
  3683. width:375px;
  3684. height:735px;
  3685. background:inherit;
  3686. background-color:rgba(242, 242, 242, 1);
  3687. border:none;
  3688. border-top:0px;
  3689. border-radius:22px;
  3690. border-top-left-radius:0px;
  3691. border-top-right-radius:0px;
  3692. -moz-box-shadow:none;
  3693. -webkit-box-shadow:none;
  3694. box-shadow:none;
  3695. }
  3696. #u152710 {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:484px;
  3700. top:105px;
  3701. width:375px;
  3702. height:735px;
  3703. display:flex;
  3704. }
  3705. #u152710 .text {
  3706. position:absolute;
  3707. align-self:center;
  3708. padding:2px 2px 2px 2px;
  3709. box-sizing:border-box;
  3710. width:100%;
  3711. }
  3712. #u152710_text {
  3713. border-width:0px;
  3714. word-wrap:break-word;
  3715. text-transform:none;
  3716. visibility:hidden;
  3717. }
  3718. #u152711_img {
  3719. border-width:0px;
  3720. position:absolute;
  3721. left:0px;
  3722. top:0px;
  3723. width:11px;
  3724. height:18px;
  3725. }
  3726. #u152711 {
  3727. border-width:0px;
  3728. position:absolute;
  3729. left:497px;
  3730. top:79px;
  3731. width:11px;
  3732. height:18px;
  3733. display:flex;
  3734. }
  3735. #u152711 .text {
  3736. position:absolute;
  3737. align-self:center;
  3738. padding:2px 2px 2px 2px;
  3739. box-sizing:border-box;
  3740. width:100%;
  3741. }
  3742. #u152711_text {
  3743. border-width:0px;
  3744. word-wrap:break-word;
  3745. text-transform:none;
  3746. visibility:hidden;
  3747. }
  3748. #u152712_div {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:0px;
  3752. top:0px;
  3753. width:73px;
  3754. height:30px;
  3755. background:inherit;
  3756. background-color:rgba(255, 255, 255, 0);
  3757. border:none;
  3758. border-left:0px;
  3759. border-top:0px;
  3760. border-right:0px;
  3761. border-radius:0px;
  3762. border-bottom-right-radius:0px;
  3763. border-bottom-left-radius:0px;
  3764. -moz-box-shadow:none;
  3765. -webkit-box-shadow:none;
  3766. box-shadow:none;
  3767. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3768. font-weight:500;
  3769. font-style:normal;
  3770. font-size:18px;
  3771. line-height:30px;
  3772. }
  3773. #u152712 {
  3774. border-width:0px;
  3775. position:absolute;
  3776. left:526px;
  3777. top:73px;
  3778. width:73px;
  3779. height:30px;
  3780. display:flex;
  3781. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3782. font-weight:500;
  3783. font-style:normal;
  3784. font-size:18px;
  3785. line-height:30px;
  3786. }
  3787. #u152712 .text {
  3788. position:absolute;
  3789. align-self:flex-start;
  3790. padding:0px 0px 0px 0px;
  3791. box-sizing:border-box;
  3792. width:100%;
  3793. }
  3794. #u152712_text {
  3795. border-width:0px;
  3796. white-space:nowrap;
  3797. text-transform:none;
  3798. }
  3799. #u152713 {
  3800. border-width:0px;
  3801. position:absolute;
  3802. left:0px;
  3803. top:0px;
  3804. width:0px;
  3805. height:0px;
  3806. }
  3807. #u152714_div {
  3808. border-width:0px;
  3809. position:absolute;
  3810. left:0px;
  3811. top:0px;
  3812. width:375px;
  3813. height:60px;
  3814. background:inherit;
  3815. background-color:rgba(255, 255, 255, 1);
  3816. box-sizing:border-box;
  3817. border-width:1px;
  3818. border-style:solid;
  3819. border-color:rgba(242, 242, 242, 1);
  3820. border-radius:20px;
  3821. border-top-left-radius:0px;
  3822. border-top-right-radius:0px;
  3823. -moz-box-shadow:none;
  3824. -webkit-box-shadow:none;
  3825. box-shadow:none;
  3826. }
  3827. #u152714 {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:484px;
  3831. top:780px;
  3832. width:375px;
  3833. height:60px;
  3834. display:flex;
  3835. }
  3836. #u152714 .text {
  3837. position:absolute;
  3838. align-self:center;
  3839. padding:2px 2px 2px 2px;
  3840. box-sizing:border-box;
  3841. width:100%;
  3842. }
  3843. #u152714_text {
  3844. border-width:0px;
  3845. word-wrap:break-word;
  3846. text-transform:none;
  3847. visibility:hidden;
  3848. }
  3849. #u152715_div {
  3850. border-width:0px;
  3851. position:absolute;
  3852. left:0px;
  3853. top:0px;
  3854. width:160px;
  3855. height:40px;
  3856. background:inherit;
  3857. background-color:rgba(0, 137, 254, 1);
  3858. border:none;
  3859. border-radius:63px;
  3860. -moz-box-shadow:none;
  3861. -webkit-box-shadow:none;
  3862. box-shadow:none;
  3863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3864. font-weight:400;
  3865. font-style:normal;
  3866. font-size:14px;
  3867. color:#FFFFFF;
  3868. }
  3869. #u152715 {
  3870. border-width:0px;
  3871. position:absolute;
  3872. left:679px;
  3873. top:790px;
  3874. width:160px;
  3875. height:40px;
  3876. display:flex;
  3877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3878. font-weight:400;
  3879. font-style:normal;
  3880. font-size:14px;
  3881. color:#FFFFFF;
  3882. }
  3883. #u152715 .text {
  3884. position:absolute;
  3885. align-self:center;
  3886. padding:2px 2px 2px 2px;
  3887. box-sizing:border-box;
  3888. width:100%;
  3889. }
  3890. #u152715_text {
  3891. border-width:0px;
  3892. word-wrap:break-word;
  3893. text-transform:none;
  3894. }
  3895. #u152716_div {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:0px;
  3899. top:0px;
  3900. width:160px;
  3901. height:40px;
  3902. background:inherit;
  3903. background-color:rgba(255, 255, 255, 1);
  3904. box-sizing:border-box;
  3905. border-width:1px;
  3906. border-style:solid;
  3907. border-color:rgba(121, 121, 121, 1);
  3908. border-radius:63px;
  3909. -moz-box-shadow:none;
  3910. -webkit-box-shadow:none;
  3911. box-shadow:none;
  3912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3913. font-weight:400;
  3914. font-style:normal;
  3915. font-size:14px;
  3916. }
  3917. #u152716 {
  3918. border-width:0px;
  3919. position:absolute;
  3920. left:504px;
  3921. top:790px;
  3922. width:160px;
  3923. height:40px;
  3924. display:flex;
  3925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3926. font-weight:400;
  3927. font-style:normal;
  3928. font-size:14px;
  3929. }
  3930. #u152716 .text {
  3931. position:absolute;
  3932. align-self:center;
  3933. padding:2px 2px 2px 2px;
  3934. box-sizing:border-box;
  3935. width:100%;
  3936. }
  3937. #u152716_text {
  3938. border-width:0px;
  3939. word-wrap:break-word;
  3940. text-transform:none;
  3941. }
  3942. #u152717_div {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:0px;
  3946. top:0px;
  3947. width:374px;
  3948. height:580px;
  3949. background:inherit;
  3950. background-color:rgba(255, 255, 255, 1);
  3951. border:none;
  3952. border-radius:0px;
  3953. -moz-box-shadow:none;
  3954. -webkit-box-shadow:none;
  3955. box-shadow:none;
  3956. }
  3957. #u152717 {
  3958. border-width:0px;
  3959. position:absolute;
  3960. left:484px;
  3961. top:195px;
  3962. width:374px;
  3963. height:580px;
  3964. display:flex;
  3965. }
  3966. #u152717 .text {
  3967. position:absolute;
  3968. align-self:center;
  3969. padding:2px 2px 2px 2px;
  3970. box-sizing:border-box;
  3971. width:100%;
  3972. }
  3973. #u152717_text {
  3974. border-width:0px;
  3975. word-wrap:break-word;
  3976. text-transform:none;
  3977. visibility:hidden;
  3978. }
  3979. #u152718_div {
  3980. border-width:0px;
  3981. position:absolute;
  3982. left:0px;
  3983. top:0px;
  3984. width:374px;
  3985. height:80px;
  3986. background:inherit;
  3987. background-color:rgba(255, 255, 255, 1);
  3988. border:none;
  3989. border-radius:0px;
  3990. -moz-box-shadow:none;
  3991. -webkit-box-shadow:none;
  3992. box-shadow:none;
  3993. }
  3994. #u152718 {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:484px;
  3998. top:105px;
  3999. width:374px;
  4000. height:80px;
  4001. display:flex;
  4002. }
  4003. #u152718 .text {
  4004. position:absolute;
  4005. align-self:center;
  4006. padding:2px 2px 2px 2px;
  4007. box-sizing:border-box;
  4008. width:100%;
  4009. }
  4010. #u152718_text {
  4011. border-width:0px;
  4012. word-wrap:break-word;
  4013. text-transform:none;
  4014. visibility:hidden;
  4015. }
  4016. #u152719_div {
  4017. border-width:0px;
  4018. position:absolute;
  4019. left:0px;
  4020. top:0px;
  4021. width:124px;
  4022. height:30px;
  4023. background:inherit;
  4024. background-color:rgba(255, 255, 255, 0);
  4025. border:none;
  4026. border-left:0px;
  4027. border-top:0px;
  4028. border-right:0px;
  4029. border-radius:0px;
  4030. border-bottom-right-radius:0px;
  4031. border-bottom-left-radius:0px;
  4032. -moz-box-shadow:none;
  4033. -webkit-box-shadow:none;
  4034. box-shadow:none;
  4035. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4036. font-weight:500;
  4037. font-style:normal;
  4038. font-size:18px;
  4039. line-height:30px;
  4040. }
  4041. #u152719 {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:516px;
  4045. top:115px;
  4046. width:124px;
  4047. height:30px;
  4048. display:flex;
  4049. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4050. font-weight:500;
  4051. font-style:normal;
  4052. font-size:18px;
  4053. line-height:30px;
  4054. }
  4055. #u152719 .text {
  4056. position:absolute;
  4057. align-self:flex-start;
  4058. padding:0px 0px 0px 0px;
  4059. box-sizing:border-box;
  4060. width:100%;
  4061. }
  4062. #u152719_text {
  4063. border-width:0px;
  4064. white-space:nowrap;
  4065. text-transform:none;
  4066. }
  4067. #u152720_div {
  4068. border-width:0px;
  4069. position:absolute;
  4070. left:0px;
  4071. top:0px;
  4072. width:29px;
  4073. height:30px;
  4074. background:inherit;
  4075. background-color:rgba(255, 255, 255, 0);
  4076. border:none;
  4077. border-left:0px;
  4078. border-top:0px;
  4079. border-right:0px;
  4080. border-radius:0px;
  4081. border-bottom-right-radius:0px;
  4082. border-bottom-left-radius:0px;
  4083. -moz-box-shadow:none;
  4084. -webkit-box-shadow:none;
  4085. box-shadow:none;
  4086. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4087. font-weight:500;
  4088. font-style:normal;
  4089. font-size:14px;
  4090. line-height:30px;
  4091. }
  4092. #u152720 {
  4093. border-width:0px;
  4094. position:absolute;
  4095. left:594px;
  4096. top:245px;
  4097. width:29px;
  4098. height:30px;
  4099. display:flex;
  4100. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4101. font-weight:500;
  4102. font-style:normal;
  4103. font-size:14px;
  4104. line-height:30px;
  4105. }
  4106. #u152720 .text {
  4107. position:absolute;
  4108. align-self:flex-start;
  4109. padding:0px 0px 0px 0px;
  4110. box-sizing:border-box;
  4111. width:100%;
  4112. }
  4113. #u152720_text {
  4114. border-width:0px;
  4115. white-space:nowrap;
  4116. text-transform:none;
  4117. }
  4118. #u152721_div {
  4119. border-width:0px;
  4120. position:absolute;
  4121. left:0px;
  4122. top:0px;
  4123. width:71px;
  4124. height:30px;
  4125. background:inherit;
  4126. background-color:rgba(255, 255, 255, 0);
  4127. border:none;
  4128. border-left:0px;
  4129. border-top:0px;
  4130. border-right:0px;
  4131. border-radius:0px;
  4132. border-bottom-right-radius:0px;
  4133. border-bottom-left-radius:0px;
  4134. -moz-box-shadow:none;
  4135. -webkit-box-shadow:none;
  4136. box-shadow:none;
  4137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4138. font-weight:400;
  4139. font-style:normal;
  4140. font-size:14px;
  4141. line-height:30px;
  4142. }
  4143. #u152721 {
  4144. border-width:0px;
  4145. position:absolute;
  4146. left:516px;
  4147. top:245px;
  4148. width:71px;
  4149. height:30px;
  4150. display:flex;
  4151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4152. font-weight:400;
  4153. font-style:normal;
  4154. font-size:14px;
  4155. line-height:30px;
  4156. }
  4157. #u152721 .text {
  4158. position:absolute;
  4159. align-self:flex-start;
  4160. padding:0px 0px 0px 0px;
  4161. box-sizing:border-box;
  4162. width:100%;
  4163. }
  4164. #u152721_text {
  4165. border-width:0px;
  4166. white-space:nowrap;
  4167. text-transform:none;
  4168. }
  4169. #u152722_div {
  4170. border-width:0px;
  4171. position:absolute;
  4172. left:0px;
  4173. top:0px;
  4174. width:29px;
  4175. height:30px;
  4176. background:inherit;
  4177. background-color:rgba(255, 255, 255, 0);
  4178. border:none;
  4179. border-left:0px;
  4180. border-top:0px;
  4181. border-right:0px;
  4182. border-radius:0px;
  4183. border-bottom-right-radius:0px;
  4184. border-bottom-left-radius:0px;
  4185. -moz-box-shadow:none;
  4186. -webkit-box-shadow:none;
  4187. box-shadow:none;
  4188. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4189. font-weight:500;
  4190. font-style:normal;
  4191. font-size:14px;
  4192. line-height:30px;
  4193. }
  4194. #u152722 {
  4195. border-width:0px;
  4196. position:absolute;
  4197. left:594px;
  4198. top:407px;
  4199. width:29px;
  4200. height:30px;
  4201. display:flex;
  4202. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4203. font-weight:500;
  4204. font-style:normal;
  4205. font-size:14px;
  4206. line-height:30px;
  4207. }
  4208. #u152722 .text {
  4209. position:absolute;
  4210. align-self:flex-start;
  4211. padding:0px 0px 0px 0px;
  4212. box-sizing:border-box;
  4213. width:100%;
  4214. }
  4215. #u152722_text {
  4216. border-width:0px;
  4217. white-space:nowrap;
  4218. text-transform:none;
  4219. }
  4220. #u152723_div {
  4221. border-width:0px;
  4222. position:absolute;
  4223. left:0px;
  4224. top:0px;
  4225. width:71px;
  4226. height:30px;
  4227. background:inherit;
  4228. background-color:rgba(255, 255, 255, 0);
  4229. border:none;
  4230. border-left:0px;
  4231. border-top:0px;
  4232. border-right:0px;
  4233. border-radius:0px;
  4234. border-bottom-right-radius:0px;
  4235. border-bottom-left-radius:0px;
  4236. -moz-box-shadow:none;
  4237. -webkit-box-shadow:none;
  4238. box-shadow:none;
  4239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4240. font-weight:400;
  4241. font-style:normal;
  4242. font-size:14px;
  4243. line-height:30px;
  4244. }
  4245. #u152723 {
  4246. border-width:0px;
  4247. position:absolute;
  4248. left:516px;
  4249. top:407px;
  4250. width:71px;
  4251. height:30px;
  4252. display:flex;
  4253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4254. font-weight:400;
  4255. font-style:normal;
  4256. font-size:14px;
  4257. line-height:30px;
  4258. }
  4259. #u152723 .text {
  4260. position:absolute;
  4261. align-self:flex-start;
  4262. padding:0px 0px 0px 0px;
  4263. box-sizing:border-box;
  4264. width:100%;
  4265. }
  4266. #u152723_text {
  4267. border-width:0px;
  4268. white-space:nowrap;
  4269. text-transform:none;
  4270. }
  4271. #u152724_div {
  4272. border-width:0px;
  4273. position:absolute;
  4274. left:0px;
  4275. top:0px;
  4276. width:152px;
  4277. height:30px;
  4278. background:inherit;
  4279. background-color:rgba(255, 255, 255, 0);
  4280. border:none;
  4281. border-left:0px;
  4282. border-top:0px;
  4283. border-right:0px;
  4284. border-radius:0px;
  4285. border-bottom-right-radius:0px;
  4286. border-bottom-left-radius:0px;
  4287. -moz-box-shadow:none;
  4288. -webkit-box-shadow:none;
  4289. box-shadow:none;
  4290. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4291. font-weight:500;
  4292. font-style:normal;
  4293. font-size:14px;
  4294. line-height:30px;
  4295. }
  4296. #u152724 {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:594px;
  4300. top:437px;
  4301. width:152px;
  4302. height:30px;
  4303. display:flex;
  4304. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4305. font-weight:500;
  4306. font-style:normal;
  4307. font-size:14px;
  4308. line-height:30px;
  4309. }
  4310. #u152724 .text {
  4311. position:absolute;
  4312. align-self:flex-start;
  4313. padding:0px 0px 0px 0px;
  4314. box-sizing:border-box;
  4315. width:100%;
  4316. }
  4317. #u152724_text {
  4318. border-width:0px;
  4319. white-space:nowrap;
  4320. text-transform:none;
  4321. }
  4322. #u152725_div {
  4323. border-width:0px;
  4324. position:absolute;
  4325. left:0px;
  4326. top:0px;
  4327. width:71px;
  4328. height:30px;
  4329. background:inherit;
  4330. background-color:rgba(255, 255, 255, 0);
  4331. border:none;
  4332. border-left:0px;
  4333. border-top:0px;
  4334. border-right:0px;
  4335. border-radius:0px;
  4336. border-bottom-right-radius:0px;
  4337. border-bottom-left-radius:0px;
  4338. -moz-box-shadow:none;
  4339. -webkit-box-shadow:none;
  4340. box-shadow:none;
  4341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4342. font-weight:400;
  4343. font-style:normal;
  4344. font-size:14px;
  4345. line-height:30px;
  4346. }
  4347. #u152725 {
  4348. border-width:0px;
  4349. position:absolute;
  4350. left:516px;
  4351. top:437px;
  4352. width:71px;
  4353. height:30px;
  4354. display:flex;
  4355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4356. font-weight:400;
  4357. font-style:normal;
  4358. font-size:14px;
  4359. line-height:30px;
  4360. }
  4361. #u152725 .text {
  4362. position:absolute;
  4363. align-self:flex-start;
  4364. padding:0px 0px 0px 0px;
  4365. box-sizing:border-box;
  4366. width:100%;
  4367. }
  4368. #u152725_text {
  4369. border-width:0px;
  4370. white-space:nowrap;
  4371. text-transform:none;
  4372. }
  4373. #u152726_div {
  4374. border-width:0px;
  4375. position:absolute;
  4376. left:0px;
  4377. top:0px;
  4378. width:91px;
  4379. height:30px;
  4380. background:inherit;
  4381. background-color:rgba(255, 255, 255, 0);
  4382. border:none;
  4383. border-left:0px;
  4384. border-top:0px;
  4385. border-right:0px;
  4386. border-radius:0px;
  4387. border-bottom-right-radius:0px;
  4388. border-bottom-left-radius:0px;
  4389. -moz-box-shadow:none;
  4390. -webkit-box-shadow:none;
  4391. box-shadow:none;
  4392. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4393. font-weight:500;
  4394. font-style:normal;
  4395. font-size:14px;
  4396. line-height:30px;
  4397. }
  4398. #u152726 {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:594px;
  4402. top:467px;
  4403. width:91px;
  4404. height:30px;
  4405. display:flex;
  4406. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4407. font-weight:500;
  4408. font-style:normal;
  4409. font-size:14px;
  4410. line-height:30px;
  4411. }
  4412. #u152726 .text {
  4413. position:absolute;
  4414. align-self:flex-start;
  4415. padding:0px 0px 0px 0px;
  4416. box-sizing:border-box;
  4417. width:100%;
  4418. }
  4419. #u152726_text {
  4420. border-width:0px;
  4421. white-space:nowrap;
  4422. text-transform:none;
  4423. }
  4424. #u152727_div {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:0px;
  4428. top:0px;
  4429. width:71px;
  4430. height:30px;
  4431. background:inherit;
  4432. background-color:rgba(255, 255, 255, 0);
  4433. border:none;
  4434. border-left:0px;
  4435. border-top:0px;
  4436. border-right:0px;
  4437. border-radius:0px;
  4438. border-bottom-right-radius:0px;
  4439. border-bottom-left-radius:0px;
  4440. -moz-box-shadow:none;
  4441. -webkit-box-shadow:none;
  4442. box-shadow:none;
  4443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4444. font-weight:400;
  4445. font-style:normal;
  4446. font-size:14px;
  4447. line-height:30px;
  4448. }
  4449. #u152727 {
  4450. border-width:0px;
  4451. position:absolute;
  4452. left:516px;
  4453. top:467px;
  4454. width:71px;
  4455. height:30px;
  4456. display:flex;
  4457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4458. font-weight:400;
  4459. font-style:normal;
  4460. font-size:14px;
  4461. line-height:30px;
  4462. }
  4463. #u152727 .text {
  4464. position:absolute;
  4465. align-self:flex-start;
  4466. padding:0px 0px 0px 0px;
  4467. box-sizing:border-box;
  4468. width:100%;
  4469. }
  4470. #u152727_text {
  4471. border-width:0px;
  4472. white-space:nowrap;
  4473. text-transform:none;
  4474. }
  4475. #u152728_div {
  4476. border-width:0px;
  4477. position:absolute;
  4478. left:0px;
  4479. top:0px;
  4480. width:137px;
  4481. height:30px;
  4482. background:inherit;
  4483. background-color:rgba(255, 255, 255, 0);
  4484. border:none;
  4485. border-left:0px;
  4486. border-top:0px;
  4487. border-right:0px;
  4488. border-radius:0px;
  4489. border-bottom-right-radius:0px;
  4490. border-bottom-left-radius:0px;
  4491. -moz-box-shadow:none;
  4492. -webkit-box-shadow:none;
  4493. box-shadow:none;
  4494. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4495. font-weight:500;
  4496. font-style:normal;
  4497. font-size:14px;
  4498. line-height:30px;
  4499. }
  4500. #u152728 {
  4501. border-width:0px;
  4502. position:absolute;
  4503. left:594px;
  4504. top:497px;
  4505. width:137px;
  4506. height:30px;
  4507. display:flex;
  4508. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4509. font-weight:500;
  4510. font-style:normal;
  4511. font-size:14px;
  4512. line-height:30px;
  4513. }
  4514. #u152728 .text {
  4515. position:absolute;
  4516. align-self:flex-start;
  4517. padding:0px 0px 0px 0px;
  4518. box-sizing:border-box;
  4519. width:100%;
  4520. }
  4521. #u152728_text {
  4522. border-width:0px;
  4523. white-space:nowrap;
  4524. text-transform:none;
  4525. }
  4526. #u152729_div {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:0px;
  4530. top:0px;
  4531. width:71px;
  4532. height:30px;
  4533. background:inherit;
  4534. background-color:rgba(255, 255, 255, 0);
  4535. border:none;
  4536. border-left:0px;
  4537. border-top:0px;
  4538. border-right:0px;
  4539. border-radius:0px;
  4540. border-bottom-right-radius:0px;
  4541. border-bottom-left-radius:0px;
  4542. -moz-box-shadow:none;
  4543. -webkit-box-shadow:none;
  4544. box-shadow:none;
  4545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4546. font-weight:400;
  4547. font-style:normal;
  4548. font-size:14px;
  4549. line-height:30px;
  4550. }
  4551. #u152729 {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:516px;
  4555. top:497px;
  4556. width:71px;
  4557. height:30px;
  4558. display:flex;
  4559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4560. font-weight:400;
  4561. font-style:normal;
  4562. font-size:14px;
  4563. line-height:30px;
  4564. }
  4565. #u152729 .text {
  4566. position:absolute;
  4567. align-self:flex-start;
  4568. padding:0px 0px 0px 0px;
  4569. box-sizing:border-box;
  4570. width:100%;
  4571. }
  4572. #u152729_text {
  4573. border-width:0px;
  4574. white-space:nowrap;
  4575. text-transform:none;
  4576. }
  4577. #u152730_div {
  4578. border-width:0px;
  4579. position:absolute;
  4580. left:0px;
  4581. top:0px;
  4582. width:85px;
  4583. height:30px;
  4584. background:inherit;
  4585. background-color:rgba(255, 255, 255, 0);
  4586. border:none;
  4587. border-left:0px;
  4588. border-top:0px;
  4589. border-right:0px;
  4590. border-radius:0px;
  4591. border-bottom-right-radius:0px;
  4592. border-bottom-left-radius:0px;
  4593. -moz-box-shadow:none;
  4594. -webkit-box-shadow:none;
  4595. box-shadow:none;
  4596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4597. font-weight:400;
  4598. font-style:normal;
  4599. font-size:14px;
  4600. line-height:30px;
  4601. }
  4602. #u152730 {
  4603. border-width:0px;
  4604. position:absolute;
  4605. left:516px;
  4606. top:145px;
  4607. width:85px;
  4608. height:30px;
  4609. display:flex;
  4610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4611. font-weight:400;
  4612. font-style:normal;
  4613. font-size:14px;
  4614. line-height:30px;
  4615. }
  4616. #u152730 .text {
  4617. position:absolute;
  4618. align-self:flex-start;
  4619. padding:0px 0px 0px 0px;
  4620. box-sizing:border-box;
  4621. width:100%;
  4622. }
  4623. #u152730_text {
  4624. border-width:0px;
  4625. white-space:nowrap;
  4626. text-transform:none;
  4627. }
  4628. #u152731_div {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:0px;
  4632. top:0px;
  4633. width:57px;
  4634. height:30px;
  4635. background:inherit;
  4636. background-color:rgba(255, 255, 255, 0);
  4637. border:none;
  4638. border-left:0px;
  4639. border-top:0px;
  4640. border-right:0px;
  4641. border-radius:0px;
  4642. border-bottom-right-radius:0px;
  4643. border-bottom-left-radius:0px;
  4644. -moz-box-shadow:none;
  4645. -webkit-box-shadow:none;
  4646. box-shadow:none;
  4647. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4648. font-weight:500;
  4649. font-style:normal;
  4650. font-size:14px;
  4651. line-height:30px;
  4652. }
  4653. #u152731 {
  4654. border-width:0px;
  4655. position:absolute;
  4656. left:516px;
  4657. top:205px;
  4658. width:57px;
  4659. height:30px;
  4660. display:flex;
  4661. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4662. font-weight:500;
  4663. font-style:normal;
  4664. font-size:14px;
  4665. line-height:30px;
  4666. }
  4667. #u152731 .text {
  4668. position:absolute;
  4669. align-self:flex-start;
  4670. padding:0px 0px 0px 0px;
  4671. box-sizing:border-box;
  4672. width:100%;
  4673. }
  4674. #u152731_text {
  4675. border-width:0px;
  4676. white-space:nowrap;
  4677. text-transform:none;
  4678. }
  4679. #u152732_div {
  4680. border-width:0px;
  4681. position:absolute;
  4682. left:0px;
  4683. top:0px;
  4684. width:71px;
  4685. height:30px;
  4686. background:inherit;
  4687. background-color:rgba(255, 255, 255, 0);
  4688. border:none;
  4689. border-left:0px;
  4690. border-top:0px;
  4691. border-right:0px;
  4692. border-radius:0px;
  4693. border-bottom-right-radius:0px;
  4694. border-bottom-left-radius:0px;
  4695. -moz-box-shadow:none;
  4696. -webkit-box-shadow:none;
  4697. box-shadow:none;
  4698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4699. font-weight:400;
  4700. font-style:normal;
  4701. font-size:14px;
  4702. line-height:30px;
  4703. }
  4704. #u152732 {
  4705. border-width:0px;
  4706. position:absolute;
  4707. left:516px;
  4708. top:275px;
  4709. width:71px;
  4710. height:30px;
  4711. display:flex;
  4712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4713. font-weight:400;
  4714. font-style:normal;
  4715. font-size:14px;
  4716. line-height:30px;
  4717. }
  4718. #u152732 .text {
  4719. position:absolute;
  4720. align-self:flex-start;
  4721. padding:0px 0px 0px 0px;
  4722. box-sizing:border-box;
  4723. width:100%;
  4724. }
  4725. #u152732_text {
  4726. border-width:0px;
  4727. white-space:nowrap;
  4728. text-transform:none;
  4729. }
  4730. #u152733_img {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:0px;
  4734. top:0px;
  4735. width:134px;
  4736. height:92px;
  4737. }
  4738. #u152733 {
  4739. border-width:0px;
  4740. position:absolute;
  4741. left:516px;
  4742. top:305px;
  4743. width:134px;
  4744. height:92px;
  4745. display:flex;
  4746. }
  4747. #u152733 .text {
  4748. position:absolute;
  4749. align-self:center;
  4750. padding:2px 2px 2px 2px;
  4751. box-sizing:border-box;
  4752. width:100%;
  4753. }
  4754. #u152733_text {
  4755. border-width:0px;
  4756. word-wrap:break-word;
  4757. text-transform:none;
  4758. visibility:hidden;
  4759. }
  4760. #u152734_img {
  4761. border-width:0px;
  4762. position:absolute;
  4763. left:0px;
  4764. top:0px;
  4765. width:134px;
  4766. height:92px;
  4767. }
  4768. #u152734 {
  4769. border-width:0px;
  4770. position:absolute;
  4771. left:659px;
  4772. top:305px;
  4773. width:134px;
  4774. height:92px;
  4775. display:flex;
  4776. }
  4777. #u152734 .text {
  4778. position:absolute;
  4779. align-self:center;
  4780. padding:2px 2px 2px 2px;
  4781. box-sizing:border-box;
  4782. width:100%;
  4783. }
  4784. #u152734_text {
  4785. border-width:0px;
  4786. word-wrap:break-word;
  4787. text-transform:none;
  4788. visibility:hidden;
  4789. }
  4790. #u152736_img {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:0px;
  4794. top:0px;
  4795. width:433px;
  4796. height:865px;
  4797. }
  4798. #u152736 {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:917px;
  4802. top:0px;
  4803. width:433px;
  4804. height:865px;
  4805. display:flex;
  4806. }
  4807. #u152736 .text {
  4808. position:absolute;
  4809. align-self:center;
  4810. padding:2px 2px 2px 2px;
  4811. box-sizing:border-box;
  4812. width:100%;
  4813. }
  4814. #u152736_text {
  4815. border-width:0px;
  4816. word-wrap:break-word;
  4817. text-transform:none;
  4818. visibility:hidden;
  4819. }
  4820. #u152737_div {
  4821. border-width:0px;
  4822. position:absolute;
  4823. left:0px;
  4824. top:0px;
  4825. width:375px;
  4826. height:40px;
  4827. background:inherit;
  4828. background-color:rgba(255, 255, 255, 1);
  4829. box-sizing:border-box;
  4830. border-width:1px;
  4831. border-style:solid;
  4832. border-color:rgba(215, 215, 215, 1);
  4833. border-left:0px;
  4834. border-top:0px;
  4835. border-right:0px;
  4836. border-radius:0px;
  4837. border-bottom-right-radius:0px;
  4838. border-bottom-left-radius:0px;
  4839. -moz-box-shadow:none;
  4840. -webkit-box-shadow:none;
  4841. box-shadow:none;
  4842. }
  4843. #u152737 {
  4844. border-width:0px;
  4845. position:absolute;
  4846. left:946px;
  4847. top:67px;
  4848. width:375px;
  4849. height:40px;
  4850. display:flex;
  4851. }
  4852. #u152737 .text {
  4853. position:absolute;
  4854. align-self:center;
  4855. padding:2px 2px 2px 2px;
  4856. box-sizing:border-box;
  4857. width:100%;
  4858. }
  4859. #u152737_text {
  4860. border-width:0px;
  4861. word-wrap:break-word;
  4862. text-transform:none;
  4863. visibility:hidden;
  4864. }
  4865. #u152738 {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:0px;
  4869. top:0px;
  4870. width:0px;
  4871. height:0px;
  4872. }
  4873. #u152739_div {
  4874. border-width:0px;
  4875. position:absolute;
  4876. left:0px;
  4877. top:0px;
  4878. width:88px;
  4879. height:32px;
  4880. background:inherit;
  4881. background-color:rgba(255, 255, 255, 1);
  4882. box-sizing:border-box;
  4883. border-width:1px;
  4884. border-style:solid;
  4885. border-color:rgba(242, 242, 242, 1);
  4886. border-radius:33px;
  4887. -moz-box-shadow:none;
  4888. -webkit-box-shadow:none;
  4889. box-shadow:none;
  4890. }
  4891. #u152739 {
  4892. border-width:0px;
  4893. position:absolute;
  4894. left:1226px;
  4895. top:71px;
  4896. width:88px;
  4897. height:32px;
  4898. display:flex;
  4899. }
  4900. #u152739 .text {
  4901. position:absolute;
  4902. align-self:center;
  4903. padding:2px 2px 2px 2px;
  4904. box-sizing:border-box;
  4905. width:100%;
  4906. }
  4907. #u152739_text {
  4908. border-width:0px;
  4909. word-wrap:break-word;
  4910. text-transform:none;
  4911. visibility:hidden;
  4912. }
  4913. #u152740 {
  4914. border-width:0px;
  4915. position:absolute;
  4916. left:0px;
  4917. top:0px;
  4918. width:0px;
  4919. height:0px;
  4920. }
  4921. #u152741_img {
  4922. border-width:0px;
  4923. position:absolute;
  4924. left:0px;
  4925. top:0px;
  4926. width:18px;
  4927. height:18px;
  4928. }
  4929. #u152741 {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:1289px;
  4933. top:78px;
  4934. width:18px;
  4935. height:18px;
  4936. display:flex;
  4937. }
  4938. #u152741 .text {
  4939. position:absolute;
  4940. align-self:center;
  4941. padding:2px 2px 2px 2px;
  4942. box-sizing:border-box;
  4943. width:100%;
  4944. }
  4945. #u152741_text {
  4946. border-width:0px;
  4947. word-wrap:break-word;
  4948. text-transform:none;
  4949. visibility:hidden;
  4950. }
  4951. #u152742_img {
  4952. border-width:0px;
  4953. position:absolute;
  4954. left:0px;
  4955. top:0px;
  4956. width:6px;
  4957. height:6px;
  4958. }
  4959. #u152742 {
  4960. border-width:0px;
  4961. position:absolute;
  4962. left:1295px;
  4963. top:84px;
  4964. width:6px;
  4965. height:6px;
  4966. display:flex;
  4967. }
  4968. #u152742 .text {
  4969. position:absolute;
  4970. align-self:center;
  4971. padding:2px 2px 2px 2px;
  4972. box-sizing:border-box;
  4973. width:100%;
  4974. }
  4975. #u152742_text {
  4976. border-width:0px;
  4977. word-wrap:break-word;
  4978. text-transform:none;
  4979. visibility:hidden;
  4980. }
  4981. #u152743 {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:0px;
  4985. top:0px;
  4986. width:0px;
  4987. height:0px;
  4988. }
  4989. #u152744_img {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:0px;
  4993. top:0px;
  4994. width:5px;
  4995. height:5px;
  4996. }
  4997. #u152744 {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:1240px;
  5001. top:85px;
  5002. width:5px;
  5003. height:5px;
  5004. display:flex;
  5005. }
  5006. #u152744 .text {
  5007. position:absolute;
  5008. align-self:center;
  5009. padding:2px 2px 2px 2px;
  5010. box-sizing:border-box;
  5011. width:100%;
  5012. }
  5013. #u152744_text {
  5014. border-width:0px;
  5015. word-wrap:break-word;
  5016. text-transform:none;
  5017. visibility:hidden;
  5018. }
  5019. #u152745_img {
  5020. border-width:0px;
  5021. position:absolute;
  5022. left:0px;
  5023. top:0px;
  5024. width:5px;
  5025. height:5px;
  5026. }
  5027. #u152745 {
  5028. border-width:0px;
  5029. position:absolute;
  5030. left:1256px;
  5031. top:85px;
  5032. width:5px;
  5033. height:5px;
  5034. display:flex;
  5035. }
  5036. #u152745 .text {
  5037. position:absolute;
  5038. align-self:center;
  5039. padding:2px 2px 2px 2px;
  5040. box-sizing:border-box;
  5041. width:100%;
  5042. }
  5043. #u152745_text {
  5044. border-width:0px;
  5045. word-wrap:break-word;
  5046. text-transform:none;
  5047. visibility:hidden;
  5048. }
  5049. #u152746_img {
  5050. border-width:0px;
  5051. position:absolute;
  5052. left:0px;
  5053. top:0px;
  5054. width:7px;
  5055. height:7px;
  5056. }
  5057. #u152746 {
  5058. border-width:0px;
  5059. position:absolute;
  5060. left:1247px;
  5061. top:84px;
  5062. width:7px;
  5063. height:7px;
  5064. display:flex;
  5065. }
  5066. #u152746 .text {
  5067. position:absolute;
  5068. align-self:center;
  5069. padding:2px 2px 2px 2px;
  5070. box-sizing:border-box;
  5071. width:100%;
  5072. }
  5073. #u152746_text {
  5074. border-width:0px;
  5075. word-wrap:break-word;
  5076. text-transform:none;
  5077. visibility:hidden;
  5078. }
  5079. #u152747_img {
  5080. border-width:0px;
  5081. position:absolute;
  5082. left:0px;
  5083. top:0px;
  5084. width:19px;
  5085. height:2px;
  5086. }
  5087. #u152747 {
  5088. border-width:0px;
  5089. position:absolute;
  5090. left:1264px;
  5091. top:87px;
  5092. width:18px;
  5093. height:1px;
  5094. display:flex;
  5095. -webkit-transform:rotate(90deg);
  5096. -moz-transform:rotate(90deg);
  5097. -ms-transform:rotate(90deg);
  5098. transform:rotate(90deg);
  5099. }
  5100. #u152747 .text {
  5101. position:absolute;
  5102. align-self:center;
  5103. padding:2px 2px 2px 2px;
  5104. box-sizing:border-box;
  5105. width:100%;
  5106. }
  5107. #u152747_text {
  5108. border-width:0px;
  5109. word-wrap:break-word;
  5110. text-transform:none;
  5111. visibility:hidden;
  5112. }
  5113. #u152748_img {
  5114. border-width:0px;
  5115. position:absolute;
  5116. left:0px;
  5117. top:0px;
  5118. width:375px;
  5119. height:44px;
  5120. }
  5121. #u152748 {
  5122. border-width:0px;
  5123. position:absolute;
  5124. left:946px;
  5125. top:24px;
  5126. width:375px;
  5127. height:44px;
  5128. display:flex;
  5129. }
  5130. #u152748 .text {
  5131. position:absolute;
  5132. align-self:center;
  5133. padding:2px 2px 2px 2px;
  5134. box-sizing:border-box;
  5135. width:100%;
  5136. }
  5137. #u152748_text {
  5138. border-width:0px;
  5139. word-wrap:break-word;
  5140. text-transform:none;
  5141. visibility:hidden;
  5142. }
  5143. #u152749_div {
  5144. border-width:0px;
  5145. position:absolute;
  5146. left:0px;
  5147. top:0px;
  5148. width:375px;
  5149. height:50px;
  5150. background:inherit;
  5151. background-color:rgba(255, 255, 255, 1);
  5152. box-sizing:border-box;
  5153. border-width:1px;
  5154. border-style:solid;
  5155. border-color:rgba(242, 242, 242, 1);
  5156. border-radius:26px;
  5157. border-top-left-radius:0px;
  5158. border-top-right-radius:0px;
  5159. -moz-box-shadow:none;
  5160. -webkit-box-shadow:none;
  5161. box-shadow:none;
  5162. }
  5163. #u152749 {
  5164. border-width:0px;
  5165. position:absolute;
  5166. left:946px;
  5167. top:788px;
  5168. width:375px;
  5169. height:50px;
  5170. display:flex;
  5171. }
  5172. #u152749 .text {
  5173. position:absolute;
  5174. align-self:center;
  5175. padding:2px 2px 2px 2px;
  5176. box-sizing:border-box;
  5177. width:100%;
  5178. }
  5179. #u152749_text {
  5180. border-width:0px;
  5181. word-wrap:break-word;
  5182. text-transform:none;
  5183. visibility:hidden;
  5184. }
  5185. #u152750 {
  5186. border-width:0px;
  5187. position:absolute;
  5188. left:0px;
  5189. top:0px;
  5190. width:0px;
  5191. height:0px;
  5192. }
  5193. #u152751_img {
  5194. border-width:0px;
  5195. position:absolute;
  5196. left:0px;
  5197. top:0px;
  5198. width:24px;
  5199. height:24px;
  5200. }
  5201. #u152751 {
  5202. border-width:0px;
  5203. position:absolute;
  5204. left:986px;
  5205. top:792px;
  5206. width:24px;
  5207. height:24px;
  5208. display:flex;
  5209. font-size:8px;
  5210. }
  5211. #u152751 .text {
  5212. position:absolute;
  5213. align-self:center;
  5214. padding:2px 2px 2px 2px;
  5215. box-sizing:border-box;
  5216. width:100%;
  5217. }
  5218. #u152751_text {
  5219. border-width:0px;
  5220. word-wrap:break-word;
  5221. text-transform:none;
  5222. }
  5223. #u152752_div {
  5224. border-width:0px;
  5225. position:absolute;
  5226. left:0px;
  5227. top:0px;
  5228. width:25px;
  5229. height:17px;
  5230. background:inherit;
  5231. background-color:rgba(255, 255, 255, 0);
  5232. border:none;
  5233. border-radius:0px;
  5234. -moz-box-shadow:none;
  5235. -webkit-box-shadow:none;
  5236. box-shadow:none;
  5237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5238. font-weight:400;
  5239. font-style:normal;
  5240. font-size:12px;
  5241. }
  5242. #u152752 {
  5243. border-width:0px;
  5244. position:absolute;
  5245. left:986px;
  5246. top:817px;
  5247. width:25px;
  5248. height:17px;
  5249. display:flex;
  5250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5251. font-weight:400;
  5252. font-style:normal;
  5253. font-size:12px;
  5254. }
  5255. #u152752 .text {
  5256. position:absolute;
  5257. align-self:flex-start;
  5258. padding:0px 0px 0px 0px;
  5259. box-sizing:border-box;
  5260. width:100%;
  5261. }
  5262. #u152752_text {
  5263. border-width:0px;
  5264. white-space:nowrap;
  5265. text-transform:none;
  5266. }
  5267. #u152753 {
  5268. border-width:0px;
  5269. position:absolute;
  5270. left:0px;
  5271. top:0px;
  5272. width:0px;
  5273. height:0px;
  5274. }
  5275. #u152754_img {
  5276. border-width:0px;
  5277. position:absolute;
  5278. left:0px;
  5279. top:0px;
  5280. width:24px;
  5281. height:24px;
  5282. }
  5283. #u152754 {
  5284. border-width:0px;
  5285. position:absolute;
  5286. left:1256px;
  5287. top:794px;
  5288. width:24px;
  5289. height:24px;
  5290. display:flex;
  5291. font-size:8px;
  5292. }
  5293. #u152754 .text {
  5294. position:absolute;
  5295. align-self:center;
  5296. padding:2px 2px 2px 2px;
  5297. box-sizing:border-box;
  5298. width:100%;
  5299. }
  5300. #u152754_text {
  5301. border-width:0px;
  5302. word-wrap:break-word;
  5303. text-transform:none;
  5304. }
  5305. #u152755_div {
  5306. border-width:0px;
  5307. position:absolute;
  5308. left:0px;
  5309. top:0px;
  5310. width:25px;
  5311. height:17px;
  5312. background:inherit;
  5313. background-color:rgba(255, 255, 255, 0);
  5314. border:none;
  5315. border-radius:0px;
  5316. -moz-box-shadow:none;
  5317. -webkit-box-shadow:none;
  5318. box-shadow:none;
  5319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5320. font-weight:400;
  5321. font-style:normal;
  5322. font-size:12px;
  5323. }
  5324. #u152755 {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:1256px;
  5328. top:819px;
  5329. width:25px;
  5330. height:17px;
  5331. display:flex;
  5332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5333. font-weight:400;
  5334. font-style:normal;
  5335. font-size:12px;
  5336. }
  5337. #u152755 .text {
  5338. position:absolute;
  5339. align-self:flex-start;
  5340. padding:0px 0px 0px 0px;
  5341. box-sizing:border-box;
  5342. width:100%;
  5343. }
  5344. #u152755_text {
  5345. border-width:0px;
  5346. white-space:nowrap;
  5347. text-transform:none;
  5348. }
  5349. #u152756_div {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:0px;
  5353. top:0px;
  5354. width:375px;
  5355. height:681px;
  5356. background:inherit;
  5357. background-color:rgba(242, 242, 242, 0.462745098039216);
  5358. border:none;
  5359. border-radius:0px;
  5360. -moz-box-shadow:none;
  5361. -webkit-box-shadow:none;
  5362. box-shadow:none;
  5363. }
  5364. #u152756 {
  5365. border-width:0px;
  5366. position:absolute;
  5367. left:946px;
  5368. top:107px;
  5369. width:375px;
  5370. height:681px;
  5371. display:flex;
  5372. }
  5373. #u152756 .text {
  5374. position:absolute;
  5375. align-self:center;
  5376. padding:2px 2px 2px 2px;
  5377. box-sizing:border-box;
  5378. width:100%;
  5379. }
  5380. #u152756_text {
  5381. border-width:0px;
  5382. word-wrap:break-word;
  5383. text-transform:none;
  5384. visibility:hidden;
  5385. }
  5386. #u152757 {
  5387. border-width:0px;
  5388. position:absolute;
  5389. left:0px;
  5390. top:0px;
  5391. width:0px;
  5392. height:0px;
  5393. }
  5394. #u152758_img {
  5395. border-width:0px;
  5396. position:absolute;
  5397. left:0px;
  5398. top:0px;
  5399. width:24px;
  5400. height:24px;
  5401. }
  5402. #u152758 {
  5403. border-width:0px;
  5404. position:absolute;
  5405. left:1168px;
  5406. top:792px;
  5407. width:24px;
  5408. height:24px;
  5409. display:flex;
  5410. font-size:8px;
  5411. }
  5412. #u152758 .text {
  5413. position:absolute;
  5414. align-self:center;
  5415. padding:2px 2px 2px 2px;
  5416. box-sizing:border-box;
  5417. width:100%;
  5418. }
  5419. #u152758_text {
  5420. border-width:0px;
  5421. word-wrap:break-word;
  5422. text-transform:none;
  5423. }
  5424. #u152759_div {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:0px;
  5428. top:0px;
  5429. width:37px;
  5430. height:17px;
  5431. background:inherit;
  5432. background-color:rgba(255, 255, 255, 0);
  5433. border:none;
  5434. border-radius:0px;
  5435. -moz-box-shadow:none;
  5436. -webkit-box-shadow:none;
  5437. box-shadow:none;
  5438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5439. font-weight:400;
  5440. font-style:normal;
  5441. font-size:12px;
  5442. }
  5443. #u152759 {
  5444. border-width:0px;
  5445. position:absolute;
  5446. left:1162px;
  5447. top:817px;
  5448. width:37px;
  5449. height:17px;
  5450. display:flex;
  5451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5452. font-weight:400;
  5453. font-style:normal;
  5454. font-size:12px;
  5455. }
  5456. #u152759 .text {
  5457. position:absolute;
  5458. align-self:flex-start;
  5459. padding:0px 0px 0px 0px;
  5460. box-sizing:border-box;
  5461. width:100%;
  5462. }
  5463. #u152759_text {
  5464. border-width:0px;
  5465. white-space:nowrap;
  5466. text-transform:none;
  5467. }
  5468. #u152760 {
  5469. border-width:0px;
  5470. position:absolute;
  5471. left:0px;
  5472. top:0px;
  5473. width:0px;
  5474. height:0px;
  5475. }
  5476. #u152761_img {
  5477. border-width:0px;
  5478. position:absolute;
  5479. left:0px;
  5480. top:0px;
  5481. width:24px;
  5482. height:24px;
  5483. }
  5484. #u152761 {
  5485. border-width:0px;
  5486. position:absolute;
  5487. left:1074px;
  5488. top:792px;
  5489. width:24px;
  5490. height:24px;
  5491. display:flex;
  5492. font-size:8px;
  5493. }
  5494. #u152761 .text {
  5495. position:absolute;
  5496. align-self:center;
  5497. padding:2px 2px 2px 2px;
  5498. box-sizing:border-box;
  5499. width:100%;
  5500. }
  5501. #u152761_text {
  5502. border-width:0px;
  5503. word-wrap:break-word;
  5504. text-transform:none;
  5505. }
  5506. #u152762_div {
  5507. border-width:0px;
  5508. position:absolute;
  5509. left:0px;
  5510. top:0px;
  5511. width:37px;
  5512. height:17px;
  5513. background:inherit;
  5514. background-color:rgba(255, 255, 255, 0);
  5515. border:none;
  5516. border-radius:0px;
  5517. -moz-box-shadow:none;
  5518. -webkit-box-shadow:none;
  5519. box-shadow:none;
  5520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5521. font-weight:400;
  5522. font-style:normal;
  5523. font-size:12px;
  5524. }
  5525. #u152762 {
  5526. border-width:0px;
  5527. position:absolute;
  5528. left:1068px;
  5529. top:817px;
  5530. width:37px;
  5531. height:17px;
  5532. display:flex;
  5533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5534. font-weight:400;
  5535. font-style:normal;
  5536. font-size:12px;
  5537. }
  5538. #u152762 .text {
  5539. position:absolute;
  5540. align-self:flex-start;
  5541. padding:0px 0px 0px 0px;
  5542. box-sizing:border-box;
  5543. width:100%;
  5544. }
  5545. #u152762_text {
  5546. border-width:0px;
  5547. white-space:nowrap;
  5548. text-transform:none;
  5549. }
  5550. #u152763_div {
  5551. border-width:0px;
  5552. position:absolute;
  5553. left:0px;
  5554. top:0px;
  5555. width:375px;
  5556. height:735px;
  5557. background:inherit;
  5558. background-color:rgba(242, 242, 242, 1);
  5559. border:none;
  5560. border-top:0px;
  5561. border-radius:25px;
  5562. border-top-left-radius:0px;
  5563. border-top-right-radius:0px;
  5564. -moz-box-shadow:none;
  5565. -webkit-box-shadow:none;
  5566. box-shadow:none;
  5567. }
  5568. #u152763 {
  5569. border-width:0px;
  5570. position:absolute;
  5571. left:946px;
  5572. top:105px;
  5573. width:375px;
  5574. height:735px;
  5575. display:flex;
  5576. }
  5577. #u152763 .text {
  5578. position:absolute;
  5579. align-self:center;
  5580. padding:2px 2px 2px 2px;
  5581. box-sizing:border-box;
  5582. width:100%;
  5583. }
  5584. #u152763_text {
  5585. border-width:0px;
  5586. word-wrap:break-word;
  5587. text-transform:none;
  5588. visibility:hidden;
  5589. }
  5590. #u152764_div {
  5591. border-width:0px;
  5592. position:absolute;
  5593. left:0px;
  5594. top:0px;
  5595. width:375px;
  5596. height:735px;
  5597. background:inherit;
  5598. background-color:rgba(242, 242, 242, 1);
  5599. border:none;
  5600. border-top:0px;
  5601. border-radius:22px;
  5602. border-top-left-radius:0px;
  5603. border-top-right-radius:0px;
  5604. -moz-box-shadow:none;
  5605. -webkit-box-shadow:none;
  5606. box-shadow:none;
  5607. }
  5608. #u152764 {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:946px;
  5612. top:105px;
  5613. width:375px;
  5614. height:735px;
  5615. display:flex;
  5616. }
  5617. #u152764 .text {
  5618. position:absolute;
  5619. align-self:center;
  5620. padding:2px 2px 2px 2px;
  5621. box-sizing:border-box;
  5622. width:100%;
  5623. }
  5624. #u152764_text {
  5625. border-width:0px;
  5626. word-wrap:break-word;
  5627. text-transform:none;
  5628. visibility:hidden;
  5629. }
  5630. #u152765_img {
  5631. border-width:0px;
  5632. position:absolute;
  5633. left:0px;
  5634. top:0px;
  5635. width:11px;
  5636. height:18px;
  5637. }
  5638. #u152765 {
  5639. border-width:0px;
  5640. position:absolute;
  5641. left:959px;
  5642. top:79px;
  5643. width:11px;
  5644. height:18px;
  5645. display:flex;
  5646. }
  5647. #u152765 .text {
  5648. position:absolute;
  5649. align-self:center;
  5650. padding:2px 2px 2px 2px;
  5651. box-sizing:border-box;
  5652. width:100%;
  5653. }
  5654. #u152765_text {
  5655. border-width:0px;
  5656. word-wrap:break-word;
  5657. text-transform:none;
  5658. visibility:hidden;
  5659. }
  5660. #u152766_div {
  5661. border-width:0px;
  5662. position:absolute;
  5663. left:0px;
  5664. top:0px;
  5665. width:73px;
  5666. height:30px;
  5667. background:inherit;
  5668. background-color:rgba(255, 255, 255, 0);
  5669. border:none;
  5670. border-left:0px;
  5671. border-top:0px;
  5672. border-right:0px;
  5673. border-radius:0px;
  5674. border-bottom-right-radius:0px;
  5675. border-bottom-left-radius:0px;
  5676. -moz-box-shadow:none;
  5677. -webkit-box-shadow:none;
  5678. box-shadow:none;
  5679. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5680. font-weight:500;
  5681. font-style:normal;
  5682. font-size:18px;
  5683. line-height:30px;
  5684. }
  5685. #u152766 {
  5686. border-width:0px;
  5687. position:absolute;
  5688. left:988px;
  5689. top:73px;
  5690. width:73px;
  5691. height:30px;
  5692. display:flex;
  5693. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5694. font-weight:500;
  5695. font-style:normal;
  5696. font-size:18px;
  5697. line-height:30px;
  5698. }
  5699. #u152766 .text {
  5700. position:absolute;
  5701. align-self:flex-start;
  5702. padding:0px 0px 0px 0px;
  5703. box-sizing:border-box;
  5704. width:100%;
  5705. }
  5706. #u152766_text {
  5707. border-width:0px;
  5708. white-space:nowrap;
  5709. text-transform:none;
  5710. }
  5711. #u152767 {
  5712. border-width:0px;
  5713. position:absolute;
  5714. left:0px;
  5715. top:0px;
  5716. width:0px;
  5717. height:0px;
  5718. }
  5719. #u152768_div {
  5720. border-width:0px;
  5721. position:absolute;
  5722. left:0px;
  5723. top:0px;
  5724. width:375px;
  5725. height:60px;
  5726. background:inherit;
  5727. background-color:rgba(255, 255, 255, 1);
  5728. box-sizing:border-box;
  5729. border-width:1px;
  5730. border-style:solid;
  5731. border-color:rgba(242, 242, 242, 1);
  5732. border-radius:20px;
  5733. border-top-left-radius:0px;
  5734. border-top-right-radius:0px;
  5735. -moz-box-shadow:none;
  5736. -webkit-box-shadow:none;
  5737. box-shadow:none;
  5738. }
  5739. #u152768 {
  5740. border-width:0px;
  5741. position:absolute;
  5742. left:946px;
  5743. top:780px;
  5744. width:375px;
  5745. height:60px;
  5746. display:flex;
  5747. }
  5748. #u152768 .text {
  5749. position:absolute;
  5750. align-self:center;
  5751. padding:2px 2px 2px 2px;
  5752. box-sizing:border-box;
  5753. width:100%;
  5754. }
  5755. #u152768_text {
  5756. border-width:0px;
  5757. word-wrap:break-word;
  5758. text-transform:none;
  5759. visibility:hidden;
  5760. }
  5761. #u152769_div {
  5762. border-width:0px;
  5763. position:absolute;
  5764. left:0px;
  5765. top:0px;
  5766. width:160px;
  5767. height:40px;
  5768. background:inherit;
  5769. background-color:rgba(0, 137, 254, 1);
  5770. border:none;
  5771. border-radius:63px;
  5772. -moz-box-shadow:none;
  5773. -webkit-box-shadow:none;
  5774. box-shadow:none;
  5775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5776. font-weight:400;
  5777. font-style:normal;
  5778. font-size:14px;
  5779. color:#FFFFFF;
  5780. }
  5781. #u152769 {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:1141px;
  5785. top:790px;
  5786. width:160px;
  5787. height:40px;
  5788. display:flex;
  5789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5790. font-weight:400;
  5791. font-style:normal;
  5792. font-size:14px;
  5793. color:#FFFFFF;
  5794. }
  5795. #u152769 .text {
  5796. position:absolute;
  5797. align-self:center;
  5798. padding:2px 2px 2px 2px;
  5799. box-sizing:border-box;
  5800. width:100%;
  5801. }
  5802. #u152769_text {
  5803. border-width:0px;
  5804. word-wrap:break-word;
  5805. text-transform:none;
  5806. }
  5807. #u152770_div {
  5808. border-width:0px;
  5809. position:absolute;
  5810. left:0px;
  5811. top:0px;
  5812. width:160px;
  5813. height:40px;
  5814. background:inherit;
  5815. background-color:rgba(255, 255, 255, 1);
  5816. box-sizing:border-box;
  5817. border-width:1px;
  5818. border-style:solid;
  5819. border-color:rgba(121, 121, 121, 1);
  5820. border-radius:63px;
  5821. -moz-box-shadow:none;
  5822. -webkit-box-shadow:none;
  5823. box-shadow:none;
  5824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5825. font-weight:400;
  5826. font-style:normal;
  5827. font-size:14px;
  5828. }
  5829. #u152770 {
  5830. border-width:0px;
  5831. position:absolute;
  5832. left:966px;
  5833. top:790px;
  5834. width:160px;
  5835. height:40px;
  5836. display:flex;
  5837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5838. font-weight:400;
  5839. font-style:normal;
  5840. font-size:14px;
  5841. }
  5842. #u152770 .text {
  5843. position:absolute;
  5844. align-self:center;
  5845. padding:2px 2px 2px 2px;
  5846. box-sizing:border-box;
  5847. width:100%;
  5848. }
  5849. #u152770_text {
  5850. border-width:0px;
  5851. word-wrap:break-word;
  5852. text-transform:none;
  5853. }
  5854. #u152771_div {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:0px;
  5858. top:0px;
  5859. width:374px;
  5860. height:580px;
  5861. background:inherit;
  5862. background-color:rgba(255, 255, 255, 1);
  5863. border:none;
  5864. border-radius:0px;
  5865. -moz-box-shadow:none;
  5866. -webkit-box-shadow:none;
  5867. box-shadow:none;
  5868. }
  5869. #u152771 {
  5870. border-width:0px;
  5871. position:absolute;
  5872. left:946px;
  5873. top:195px;
  5874. width:374px;
  5875. height:580px;
  5876. display:flex;
  5877. }
  5878. #u152771 .text {
  5879. position:absolute;
  5880. align-self:center;
  5881. padding:2px 2px 2px 2px;
  5882. box-sizing:border-box;
  5883. width:100%;
  5884. }
  5885. #u152771_text {
  5886. border-width:0px;
  5887. word-wrap:break-word;
  5888. text-transform:none;
  5889. visibility:hidden;
  5890. }
  5891. #u152772_div {
  5892. border-width:0px;
  5893. position:absolute;
  5894. left:0px;
  5895. top:0px;
  5896. width:374px;
  5897. height:80px;
  5898. background:inherit;
  5899. background-color:rgba(255, 255, 255, 1);
  5900. border:none;
  5901. border-radius:0px;
  5902. -moz-box-shadow:none;
  5903. -webkit-box-shadow:none;
  5904. box-shadow:none;
  5905. }
  5906. #u152772 {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:946px;
  5910. top:105px;
  5911. width:374px;
  5912. height:80px;
  5913. display:flex;
  5914. }
  5915. #u152772 .text {
  5916. position:absolute;
  5917. align-self:center;
  5918. padding:2px 2px 2px 2px;
  5919. box-sizing:border-box;
  5920. width:100%;
  5921. }
  5922. #u152772_text {
  5923. border-width:0px;
  5924. word-wrap:break-word;
  5925. text-transform:none;
  5926. visibility:hidden;
  5927. }
  5928. #u152773_div {
  5929. border-width:0px;
  5930. position:absolute;
  5931. left:0px;
  5932. top:0px;
  5933. width:124px;
  5934. height:30px;
  5935. background:inherit;
  5936. background-color:rgba(255, 255, 255, 0);
  5937. border:none;
  5938. border-left:0px;
  5939. border-top:0px;
  5940. border-right:0px;
  5941. border-radius:0px;
  5942. border-bottom-right-radius:0px;
  5943. border-bottom-left-radius:0px;
  5944. -moz-box-shadow:none;
  5945. -webkit-box-shadow:none;
  5946. box-shadow:none;
  5947. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5948. font-weight:500;
  5949. font-style:normal;
  5950. font-size:18px;
  5951. line-height:30px;
  5952. }
  5953. #u152773 {
  5954. border-width:0px;
  5955. position:absolute;
  5956. left:978px;
  5957. top:115px;
  5958. width:124px;
  5959. height:30px;
  5960. display:flex;
  5961. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5962. font-weight:500;
  5963. font-style:normal;
  5964. font-size:18px;
  5965. line-height:30px;
  5966. }
  5967. #u152773 .text {
  5968. position:absolute;
  5969. align-self:flex-start;
  5970. padding:0px 0px 0px 0px;
  5971. box-sizing:border-box;
  5972. width:100%;
  5973. }
  5974. #u152773_text {
  5975. border-width:0px;
  5976. white-space:nowrap;
  5977. text-transform:none;
  5978. }
  5979. #u152774_div {
  5980. border-width:0px;
  5981. position:absolute;
  5982. left:0px;
  5983. top:0px;
  5984. width:29px;
  5985. height:30px;
  5986. background:inherit;
  5987. background-color:rgba(255, 255, 255, 0);
  5988. border:none;
  5989. border-left:0px;
  5990. border-top:0px;
  5991. border-right:0px;
  5992. border-radius:0px;
  5993. border-bottom-right-radius:0px;
  5994. border-bottom-left-radius:0px;
  5995. -moz-box-shadow:none;
  5996. -webkit-box-shadow:none;
  5997. box-shadow:none;
  5998. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5999. font-weight:500;
  6000. font-style:normal;
  6001. font-size:14px;
  6002. line-height:30px;
  6003. }
  6004. #u152774 {
  6005. border-width:0px;
  6006. position:absolute;
  6007. left:1056px;
  6008. top:245px;
  6009. width:29px;
  6010. height:30px;
  6011. display:flex;
  6012. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6013. font-weight:500;
  6014. font-style:normal;
  6015. font-size:14px;
  6016. line-height:30px;
  6017. }
  6018. #u152774 .text {
  6019. position:absolute;
  6020. align-self:flex-start;
  6021. padding:0px 0px 0px 0px;
  6022. box-sizing:border-box;
  6023. width:100%;
  6024. }
  6025. #u152774_text {
  6026. border-width:0px;
  6027. white-space:nowrap;
  6028. text-transform:none;
  6029. }
  6030. #u152775_div {
  6031. border-width:0px;
  6032. position:absolute;
  6033. left:0px;
  6034. top:0px;
  6035. width:71px;
  6036. height:30px;
  6037. background:inherit;
  6038. background-color:rgba(255, 255, 255, 0);
  6039. border:none;
  6040. border-left:0px;
  6041. border-top:0px;
  6042. border-right:0px;
  6043. border-radius:0px;
  6044. border-bottom-right-radius:0px;
  6045. border-bottom-left-radius:0px;
  6046. -moz-box-shadow:none;
  6047. -webkit-box-shadow:none;
  6048. box-shadow:none;
  6049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6050. font-weight:400;
  6051. font-style:normal;
  6052. font-size:14px;
  6053. line-height:30px;
  6054. }
  6055. #u152775 {
  6056. border-width:0px;
  6057. position:absolute;
  6058. left:978px;
  6059. top:245px;
  6060. width:71px;
  6061. height:30px;
  6062. display:flex;
  6063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6064. font-weight:400;
  6065. font-style:normal;
  6066. font-size:14px;
  6067. line-height:30px;
  6068. }
  6069. #u152775 .text {
  6070. position:absolute;
  6071. align-self:flex-start;
  6072. padding:0px 0px 0px 0px;
  6073. box-sizing:border-box;
  6074. width:100%;
  6075. }
  6076. #u152775_text {
  6077. border-width:0px;
  6078. white-space:nowrap;
  6079. text-transform:none;
  6080. }
  6081. #u152776_div {
  6082. border-width:0px;
  6083. position:absolute;
  6084. left:0px;
  6085. top:0px;
  6086. width:29px;
  6087. height:30px;
  6088. background:inherit;
  6089. background-color:rgba(255, 255, 255, 0);
  6090. border:none;
  6091. border-left:0px;
  6092. border-top:0px;
  6093. border-right:0px;
  6094. border-radius:0px;
  6095. border-bottom-right-radius:0px;
  6096. border-bottom-left-radius:0px;
  6097. -moz-box-shadow:none;
  6098. -webkit-box-shadow:none;
  6099. box-shadow:none;
  6100. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6101. font-weight:500;
  6102. font-style:normal;
  6103. font-size:14px;
  6104. line-height:30px;
  6105. }
  6106. #u152776 {
  6107. border-width:0px;
  6108. position:absolute;
  6109. left:1056px;
  6110. top:407px;
  6111. width:29px;
  6112. height:30px;
  6113. display:flex;
  6114. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6115. font-weight:500;
  6116. font-style:normal;
  6117. font-size:14px;
  6118. line-height:30px;
  6119. }
  6120. #u152776 .text {
  6121. position:absolute;
  6122. align-self:flex-start;
  6123. padding:0px 0px 0px 0px;
  6124. box-sizing:border-box;
  6125. width:100%;
  6126. }
  6127. #u152776_text {
  6128. border-width:0px;
  6129. white-space:nowrap;
  6130. text-transform:none;
  6131. }
  6132. #u152777_div {
  6133. border-width:0px;
  6134. position:absolute;
  6135. left:0px;
  6136. top:0px;
  6137. width:71px;
  6138. height:30px;
  6139. background:inherit;
  6140. background-color:rgba(255, 255, 255, 0);
  6141. border:none;
  6142. border-left:0px;
  6143. border-top:0px;
  6144. border-right:0px;
  6145. border-radius:0px;
  6146. border-bottom-right-radius:0px;
  6147. border-bottom-left-radius:0px;
  6148. -moz-box-shadow:none;
  6149. -webkit-box-shadow:none;
  6150. box-shadow:none;
  6151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6152. font-weight:400;
  6153. font-style:normal;
  6154. font-size:14px;
  6155. line-height:30px;
  6156. }
  6157. #u152777 {
  6158. border-width:0px;
  6159. position:absolute;
  6160. left:978px;
  6161. top:407px;
  6162. width:71px;
  6163. height:30px;
  6164. display:flex;
  6165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6166. font-weight:400;
  6167. font-style:normal;
  6168. font-size:14px;
  6169. line-height:30px;
  6170. }
  6171. #u152777 .text {
  6172. position:absolute;
  6173. align-self:flex-start;
  6174. padding:0px 0px 0px 0px;
  6175. box-sizing:border-box;
  6176. width:100%;
  6177. }
  6178. #u152777_text {
  6179. border-width:0px;
  6180. white-space:nowrap;
  6181. text-transform:none;
  6182. }
  6183. #u152778_div {
  6184. border-width:0px;
  6185. position:absolute;
  6186. left:0px;
  6187. top:0px;
  6188. width:152px;
  6189. height:30px;
  6190. background:inherit;
  6191. background-color:rgba(255, 255, 255, 0);
  6192. border:none;
  6193. border-left:0px;
  6194. border-top:0px;
  6195. border-right:0px;
  6196. border-radius:0px;
  6197. border-bottom-right-radius:0px;
  6198. border-bottom-left-radius:0px;
  6199. -moz-box-shadow:none;
  6200. -webkit-box-shadow:none;
  6201. box-shadow:none;
  6202. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6203. font-weight:500;
  6204. font-style:normal;
  6205. font-size:14px;
  6206. line-height:30px;
  6207. }
  6208. #u152778 {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:1056px;
  6212. top:437px;
  6213. width:152px;
  6214. height:30px;
  6215. display:flex;
  6216. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6217. font-weight:500;
  6218. font-style:normal;
  6219. font-size:14px;
  6220. line-height:30px;
  6221. }
  6222. #u152778 .text {
  6223. position:absolute;
  6224. align-self:flex-start;
  6225. padding:0px 0px 0px 0px;
  6226. box-sizing:border-box;
  6227. width:100%;
  6228. }
  6229. #u152778_text {
  6230. border-width:0px;
  6231. white-space:nowrap;
  6232. text-transform:none;
  6233. }
  6234. #u152779_div {
  6235. border-width:0px;
  6236. position:absolute;
  6237. left:0px;
  6238. top:0px;
  6239. width:71px;
  6240. height:30px;
  6241. background:inherit;
  6242. background-color:rgba(255, 255, 255, 0);
  6243. border:none;
  6244. border-left:0px;
  6245. border-top:0px;
  6246. border-right:0px;
  6247. border-radius:0px;
  6248. border-bottom-right-radius:0px;
  6249. border-bottom-left-radius:0px;
  6250. -moz-box-shadow:none;
  6251. -webkit-box-shadow:none;
  6252. box-shadow:none;
  6253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6254. font-weight:400;
  6255. font-style:normal;
  6256. font-size:14px;
  6257. line-height:30px;
  6258. }
  6259. #u152779 {
  6260. border-width:0px;
  6261. position:absolute;
  6262. left:978px;
  6263. top:437px;
  6264. width:71px;
  6265. height:30px;
  6266. display:flex;
  6267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6268. font-weight:400;
  6269. font-style:normal;
  6270. font-size:14px;
  6271. line-height:30px;
  6272. }
  6273. #u152779 .text {
  6274. position:absolute;
  6275. align-self:flex-start;
  6276. padding:0px 0px 0px 0px;
  6277. box-sizing:border-box;
  6278. width:100%;
  6279. }
  6280. #u152779_text {
  6281. border-width:0px;
  6282. white-space:nowrap;
  6283. text-transform:none;
  6284. }
  6285. #u152780_div {
  6286. border-width:0px;
  6287. position:absolute;
  6288. left:0px;
  6289. top:0px;
  6290. width:91px;
  6291. height:30px;
  6292. background:inherit;
  6293. background-color:rgba(255, 255, 255, 0);
  6294. border:none;
  6295. border-left:0px;
  6296. border-top:0px;
  6297. border-right:0px;
  6298. border-radius:0px;
  6299. border-bottom-right-radius:0px;
  6300. border-bottom-left-radius:0px;
  6301. -moz-box-shadow:none;
  6302. -webkit-box-shadow:none;
  6303. box-shadow:none;
  6304. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6305. font-weight:500;
  6306. font-style:normal;
  6307. font-size:14px;
  6308. line-height:30px;
  6309. }
  6310. #u152780 {
  6311. border-width:0px;
  6312. position:absolute;
  6313. left:1056px;
  6314. top:467px;
  6315. width:91px;
  6316. height:30px;
  6317. display:flex;
  6318. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6319. font-weight:500;
  6320. font-style:normal;
  6321. font-size:14px;
  6322. line-height:30px;
  6323. }
  6324. #u152780 .text {
  6325. position:absolute;
  6326. align-self:flex-start;
  6327. padding:0px 0px 0px 0px;
  6328. box-sizing:border-box;
  6329. width:100%;
  6330. }
  6331. #u152780_text {
  6332. border-width:0px;
  6333. white-space:nowrap;
  6334. text-transform:none;
  6335. }
  6336. #u152781_div {
  6337. border-width:0px;
  6338. position:absolute;
  6339. left:0px;
  6340. top:0px;
  6341. width:71px;
  6342. height:30px;
  6343. background:inherit;
  6344. background-color:rgba(255, 255, 255, 0);
  6345. border:none;
  6346. border-left:0px;
  6347. border-top:0px;
  6348. border-right:0px;
  6349. border-radius:0px;
  6350. border-bottom-right-radius:0px;
  6351. border-bottom-left-radius:0px;
  6352. -moz-box-shadow:none;
  6353. -webkit-box-shadow:none;
  6354. box-shadow:none;
  6355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6356. font-weight:400;
  6357. font-style:normal;
  6358. font-size:14px;
  6359. line-height:30px;
  6360. }
  6361. #u152781 {
  6362. border-width:0px;
  6363. position:absolute;
  6364. left:978px;
  6365. top:467px;
  6366. width:71px;
  6367. height:30px;
  6368. display:flex;
  6369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6370. font-weight:400;
  6371. font-style:normal;
  6372. font-size:14px;
  6373. line-height:30px;
  6374. }
  6375. #u152781 .text {
  6376. position:absolute;
  6377. align-self:flex-start;
  6378. padding:0px 0px 0px 0px;
  6379. box-sizing:border-box;
  6380. width:100%;
  6381. }
  6382. #u152781_text {
  6383. border-width:0px;
  6384. white-space:nowrap;
  6385. text-transform:none;
  6386. }
  6387. #u152782_div {
  6388. border-width:0px;
  6389. position:absolute;
  6390. left:0px;
  6391. top:0px;
  6392. width:137px;
  6393. height:30px;
  6394. background:inherit;
  6395. background-color:rgba(255, 255, 255, 0);
  6396. border:none;
  6397. border-left:0px;
  6398. border-top:0px;
  6399. border-right:0px;
  6400. border-radius:0px;
  6401. border-bottom-right-radius:0px;
  6402. border-bottom-left-radius:0px;
  6403. -moz-box-shadow:none;
  6404. -webkit-box-shadow:none;
  6405. box-shadow:none;
  6406. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6407. font-weight:500;
  6408. font-style:normal;
  6409. font-size:14px;
  6410. line-height:30px;
  6411. }
  6412. #u152782 {
  6413. border-width:0px;
  6414. position:absolute;
  6415. left:1056px;
  6416. top:497px;
  6417. width:137px;
  6418. height:30px;
  6419. display:flex;
  6420. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6421. font-weight:500;
  6422. font-style:normal;
  6423. font-size:14px;
  6424. line-height:30px;
  6425. }
  6426. #u152782 .text {
  6427. position:absolute;
  6428. align-self:flex-start;
  6429. padding:0px 0px 0px 0px;
  6430. box-sizing:border-box;
  6431. width:100%;
  6432. }
  6433. #u152782_text {
  6434. border-width:0px;
  6435. white-space:nowrap;
  6436. text-transform:none;
  6437. }
  6438. #u152783_div {
  6439. border-width:0px;
  6440. position:absolute;
  6441. left:0px;
  6442. top:0px;
  6443. width:71px;
  6444. height:30px;
  6445. background:inherit;
  6446. background-color:rgba(255, 255, 255, 0);
  6447. border:none;
  6448. border-left:0px;
  6449. border-top:0px;
  6450. border-right:0px;
  6451. border-radius:0px;
  6452. border-bottom-right-radius:0px;
  6453. border-bottom-left-radius:0px;
  6454. -moz-box-shadow:none;
  6455. -webkit-box-shadow:none;
  6456. box-shadow:none;
  6457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6458. font-weight:400;
  6459. font-style:normal;
  6460. font-size:14px;
  6461. line-height:30px;
  6462. }
  6463. #u152783 {
  6464. border-width:0px;
  6465. position:absolute;
  6466. left:978px;
  6467. top:497px;
  6468. width:71px;
  6469. height:30px;
  6470. display:flex;
  6471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6472. font-weight:400;
  6473. font-style:normal;
  6474. font-size:14px;
  6475. line-height:30px;
  6476. }
  6477. #u152783 .text {
  6478. position:absolute;
  6479. align-self:flex-start;
  6480. padding:0px 0px 0px 0px;
  6481. box-sizing:border-box;
  6482. width:100%;
  6483. }
  6484. #u152783_text {
  6485. border-width:0px;
  6486. white-space:nowrap;
  6487. text-transform:none;
  6488. }
  6489. #u152784_div {
  6490. border-width:0px;
  6491. position:absolute;
  6492. left:0px;
  6493. top:0px;
  6494. width:85px;
  6495. height:30px;
  6496. background:inherit;
  6497. background-color:rgba(255, 255, 255, 0);
  6498. border:none;
  6499. border-left:0px;
  6500. border-top:0px;
  6501. border-right:0px;
  6502. border-radius:0px;
  6503. border-bottom-right-radius:0px;
  6504. border-bottom-left-radius:0px;
  6505. -moz-box-shadow:none;
  6506. -webkit-box-shadow:none;
  6507. box-shadow:none;
  6508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6509. font-weight:400;
  6510. font-style:normal;
  6511. font-size:14px;
  6512. line-height:30px;
  6513. }
  6514. #u152784 {
  6515. border-width:0px;
  6516. position:absolute;
  6517. left:978px;
  6518. top:145px;
  6519. width:85px;
  6520. height:30px;
  6521. display:flex;
  6522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6523. font-weight:400;
  6524. font-style:normal;
  6525. font-size:14px;
  6526. line-height:30px;
  6527. }
  6528. #u152784 .text {
  6529. position:absolute;
  6530. align-self:flex-start;
  6531. padding:0px 0px 0px 0px;
  6532. box-sizing:border-box;
  6533. width:100%;
  6534. }
  6535. #u152784_text {
  6536. border-width:0px;
  6537. white-space:nowrap;
  6538. text-transform:none;
  6539. }
  6540. #u152785_div {
  6541. border-width:0px;
  6542. position:absolute;
  6543. left:0px;
  6544. top:0px;
  6545. width:57px;
  6546. height:30px;
  6547. background:inherit;
  6548. background-color:rgba(255, 255, 255, 0);
  6549. border:none;
  6550. border-left:0px;
  6551. border-top:0px;
  6552. border-right:0px;
  6553. border-radius:0px;
  6554. border-bottom-right-radius:0px;
  6555. border-bottom-left-radius:0px;
  6556. -moz-box-shadow:none;
  6557. -webkit-box-shadow:none;
  6558. box-shadow:none;
  6559. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6560. font-weight:500;
  6561. font-style:normal;
  6562. font-size:14px;
  6563. line-height:30px;
  6564. }
  6565. #u152785 {
  6566. border-width:0px;
  6567. position:absolute;
  6568. left:978px;
  6569. top:205px;
  6570. width:57px;
  6571. height:30px;
  6572. display:flex;
  6573. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6574. font-weight:500;
  6575. font-style:normal;
  6576. font-size:14px;
  6577. line-height:30px;
  6578. }
  6579. #u152785 .text {
  6580. position:absolute;
  6581. align-self:flex-start;
  6582. padding:0px 0px 0px 0px;
  6583. box-sizing:border-box;
  6584. width:100%;
  6585. }
  6586. #u152785_text {
  6587. border-width:0px;
  6588. white-space:nowrap;
  6589. text-transform:none;
  6590. }
  6591. #u152786_div {
  6592. border-width:0px;
  6593. position:absolute;
  6594. left:0px;
  6595. top:0px;
  6596. width:71px;
  6597. height:30px;
  6598. background:inherit;
  6599. background-color:rgba(255, 255, 255, 0);
  6600. border:none;
  6601. border-left:0px;
  6602. border-top:0px;
  6603. border-right:0px;
  6604. border-radius:0px;
  6605. border-bottom-right-radius:0px;
  6606. border-bottom-left-radius:0px;
  6607. -moz-box-shadow:none;
  6608. -webkit-box-shadow:none;
  6609. box-shadow:none;
  6610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6611. font-weight:400;
  6612. font-style:normal;
  6613. font-size:14px;
  6614. line-height:30px;
  6615. }
  6616. #u152786 {
  6617. border-width:0px;
  6618. position:absolute;
  6619. left:978px;
  6620. top:275px;
  6621. width:71px;
  6622. height:30px;
  6623. display:flex;
  6624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6625. font-weight:400;
  6626. font-style:normal;
  6627. font-size:14px;
  6628. line-height:30px;
  6629. }
  6630. #u152786 .text {
  6631. position:absolute;
  6632. align-self:flex-start;
  6633. padding:0px 0px 0px 0px;
  6634. box-sizing:border-box;
  6635. width:100%;
  6636. }
  6637. #u152786_text {
  6638. border-width:0px;
  6639. white-space:nowrap;
  6640. text-transform:none;
  6641. }
  6642. #u152787_img {
  6643. border-width:0px;
  6644. position:absolute;
  6645. left:0px;
  6646. top:0px;
  6647. width:134px;
  6648. height:92px;
  6649. }
  6650. #u152787 {
  6651. border-width:0px;
  6652. position:absolute;
  6653. left:978px;
  6654. top:305px;
  6655. width:134px;
  6656. height:92px;
  6657. display:flex;
  6658. }
  6659. #u152787 .text {
  6660. position:absolute;
  6661. align-self:center;
  6662. padding:2px 2px 2px 2px;
  6663. box-sizing:border-box;
  6664. width:100%;
  6665. }
  6666. #u152787_text {
  6667. border-width:0px;
  6668. word-wrap:break-word;
  6669. text-transform:none;
  6670. visibility:hidden;
  6671. }
  6672. #u152788_img {
  6673. border-width:0px;
  6674. position:absolute;
  6675. left:0px;
  6676. top:0px;
  6677. width:134px;
  6678. height:92px;
  6679. }
  6680. #u152788 {
  6681. border-width:0px;
  6682. position:absolute;
  6683. left:1121px;
  6684. top:305px;
  6685. width:134px;
  6686. height:92px;
  6687. display:flex;
  6688. }
  6689. #u152788 .text {
  6690. position:absolute;
  6691. align-self:center;
  6692. padding:2px 2px 2px 2px;
  6693. box-sizing:border-box;
  6694. width:100%;
  6695. }
  6696. #u152788_text {
  6697. border-width:0px;
  6698. word-wrap:break-word;
  6699. text-transform:none;
  6700. visibility:hidden;
  6701. }