styles.css 130 KB

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