styles.css 129 KB

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