styles.css 126 KB

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