styles.css 120 KB

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