styles.css 130 KB

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