styles.css 137 KB

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