styles.css 112 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1339px;
  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. #u135891_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u135891 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u135891 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u135891_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u135892_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. #u135892 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u135892 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u135892_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u135893 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u135894_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. #u135894 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u135894 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u135894_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u135895 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u135896_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u135896 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u135896 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u135896_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u135897_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u135897 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u135897 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u135897_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u135898 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u135899_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u135899 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u135899 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u135899_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u135900_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u135900 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u135900 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u135900_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u135901_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u135901 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u135901 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u135901_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u135902_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u135902 {
  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. #u135902 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u135902_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u135903_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u135903 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u135903 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u135903_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u135904_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. #u135904 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u135904 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u135904_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u135905 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u135906_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u135906 {
  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. #u135906 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u135906_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u135907_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. #u135907 {
  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. #u135907 .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. #u135907_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u135908 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u135909_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u135909 {
  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. #u135909 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u135909_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u135910_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. #u135910 {
  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. #u135910 .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. #u135910_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u135911_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. #u135911 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u135911 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u135911_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u135912 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u135913_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u135913 {
  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. #u135913 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u135913_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u135914_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. #u135914 {
  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. #u135914 .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. #u135914_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u135915 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u135916_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u135916 {
  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. #u135916 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u135916_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u135917_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. #u135917 {
  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. #u135917 .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. #u135917_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u135918_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:735px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. border:none;
  789. border-top:0px;
  790. border-radius:25px;
  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. #u135918 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:105px;
  802. width:375px;
  803. height:735px;
  804. display:flex;
  805. }
  806. #u135918 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u135918_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u135919_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:57px;
  825. height:30px;
  826. background:inherit;
  827. background-color:rgba(255, 255, 255, 0);
  828. border:none;
  829. border-left:0px;
  830. border-top:0px;
  831. border-right:0px;
  832. border-radius:0px;
  833. border-bottom-right-radius:0px;
  834. border-bottom-left-radius:0px;
  835. -moz-box-shadow:none;
  836. -webkit-box-shadow:none;
  837. box-shadow:none;
  838. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  839. font-weight:500;
  840. font-style:normal;
  841. font-size:14px;
  842. line-height:30px;
  843. }
  844. #u135919 {
  845. border-width:0px;
  846. position:absolute;
  847. left:189px;
  848. top:73px;
  849. width:57px;
  850. height:30px;
  851. display:flex;
  852. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  853. font-weight:500;
  854. font-style:normal;
  855. font-size:14px;
  856. line-height:30px;
  857. }
  858. #u135919 .text {
  859. position:absolute;
  860. align-self:flex-start;
  861. padding:0px 0px 0px 0px;
  862. box-sizing:border-box;
  863. width:100%;
  864. }
  865. #u135919_text {
  866. border-width:0px;
  867. white-space:nowrap;
  868. text-transform:none;
  869. }
  870. #u135920 {
  871. border-width:0px;
  872. position:absolute;
  873. left:0px;
  874. top:0px;
  875. width:0px;
  876. height:0px;
  877. }
  878. #u135921_img {
  879. border-width:0px;
  880. position:absolute;
  881. left:0px;
  882. top:0px;
  883. width:11px;
  884. height:18px;
  885. }
  886. #u135921 {
  887. border-width:0px;
  888. position:absolute;
  889. left:42px;
  890. top:79px;
  891. width:11px;
  892. height:18px;
  893. display:flex;
  894. }
  895. #u135921 .text {
  896. position:absolute;
  897. align-self:center;
  898. padding:2px 2px 2px 2px;
  899. box-sizing:border-box;
  900. width:100%;
  901. }
  902. #u135921_text {
  903. border-width:0px;
  904. word-wrap:break-word;
  905. text-transform:none;
  906. visibility:hidden;
  907. }
  908. #u135922_div {
  909. border-width:0px;
  910. position:absolute;
  911. left:0px;
  912. top:0px;
  913. width:375px;
  914. height:60px;
  915. background:inherit;
  916. background-color:rgba(255, 255, 255, 1);
  917. border:none;
  918. border-left:0px;
  919. border-top:0px;
  920. border-right:0px;
  921. border-radius:0px;
  922. border-bottom-right-radius:0px;
  923. border-bottom-left-radius:0px;
  924. -moz-box-shadow:none;
  925. -webkit-box-shadow:none;
  926. box-shadow:none;
  927. }
  928. #u135922 {
  929. border-width:0px;
  930. position:absolute;
  931. left:29px;
  932. top:105px;
  933. width:375px;
  934. height:60px;
  935. display:flex;
  936. }
  937. #u135922 .text {
  938. position:absolute;
  939. align-self:center;
  940. padding:2px 2px 2px 2px;
  941. box-sizing:border-box;
  942. width:100%;
  943. }
  944. #u135922_text {
  945. border-width:0px;
  946. word-wrap:break-word;
  947. text-transform:none;
  948. visibility:hidden;
  949. }
  950. #u135923_div {
  951. border-width:0px;
  952. position:absolute;
  953. left:0px;
  954. top:0px;
  955. width:339px;
  956. height:30px;
  957. background:inherit;
  958. background-color:rgba(255, 255, 255, 0);
  959. border:none;
  960. border-left:0px;
  961. border-top:0px;
  962. border-right:0px;
  963. border-radius:0px;
  964. border-bottom-right-radius:0px;
  965. border-bottom-left-radius:0px;
  966. -moz-box-shadow:none;
  967. -webkit-box-shadow:none;
  968. box-shadow:none;
  969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  970. font-weight:400;
  971. font-style:normal;
  972. font-size:12px;
  973. color:#7F7F7F;
  974. line-height:30px;
  975. }
  976. #u135923 {
  977. border-width:0px;
  978. position:absolute;
  979. left:48px;
  980. top:165px;
  981. width:339px;
  982. height:30px;
  983. display:flex;
  984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  985. font-weight:400;
  986. font-style:normal;
  987. font-size:12px;
  988. color:#7F7F7F;
  989. line-height:30px;
  990. }
  991. #u135923 .text {
  992. position:absolute;
  993. align-self:flex-start;
  994. padding:0px 0px 0px 0px;
  995. box-sizing:border-box;
  996. width:100%;
  997. }
  998. #u135923_text {
  999. border-width:0px;
  1000. word-wrap:break-word;
  1001. text-transform:none;
  1002. }
  1003. #u135924 {
  1004. border-width:0px;
  1005. position:absolute;
  1006. left:0px;
  1007. top:0px;
  1008. width:0px;
  1009. height:0px;
  1010. }
  1011. #u135925_div {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:375px;
  1017. height:70px;
  1018. background:inherit;
  1019. background-color:rgba(255, 255, 255, 1);
  1020. border:none;
  1021. border-left:0px;
  1022. border-top:0px;
  1023. border-right:0px;
  1024. border-radius:0px;
  1025. border-bottom-right-radius:0px;
  1026. border-bottom-left-radius:0px;
  1027. -moz-box-shadow:none;
  1028. -webkit-box-shadow:none;
  1029. box-shadow:none;
  1030. }
  1031. #u135925 {
  1032. border-width:0px;
  1033. position:absolute;
  1034. left:29px;
  1035. top:195px;
  1036. width:375px;
  1037. height:70px;
  1038. display:flex;
  1039. }
  1040. #u135925 .text {
  1041. position:absolute;
  1042. align-self:center;
  1043. padding:2px 2px 2px 2px;
  1044. box-sizing:border-box;
  1045. width:100%;
  1046. }
  1047. #u135925_text {
  1048. border-width:0px;
  1049. word-wrap:break-word;
  1050. text-transform:none;
  1051. visibility:hidden;
  1052. }
  1053. #u135926_div {
  1054. border-width:0px;
  1055. position:absolute;
  1056. left:0px;
  1057. top:0px;
  1058. width:37px;
  1059. height:30px;
  1060. background:inherit;
  1061. background-color:rgba(255, 255, 255, 0);
  1062. border:none;
  1063. border-left:0px;
  1064. border-top:0px;
  1065. border-right:0px;
  1066. border-radius:0px;
  1067. border-bottom-right-radius:0px;
  1068. border-bottom-left-radius:0px;
  1069. -moz-box-shadow:none;
  1070. -webkit-box-shadow:none;
  1071. box-shadow:none;
  1072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1073. font-weight:400;
  1074. font-style:normal;
  1075. font-size:18px;
  1076. line-height:30px;
  1077. }
  1078. #u135926 {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:50px;
  1082. top:205px;
  1083. width:37px;
  1084. height:30px;
  1085. display:flex;
  1086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1087. font-weight:400;
  1088. font-style:normal;
  1089. font-size:18px;
  1090. line-height:30px;
  1091. }
  1092. #u135926 .text {
  1093. position:absolute;
  1094. align-self:flex-start;
  1095. padding:0px 0px 0px 0px;
  1096. box-sizing:border-box;
  1097. width:100%;
  1098. }
  1099. #u135926_text {
  1100. border-width:0px;
  1101. white-space:nowrap;
  1102. text-transform:none;
  1103. }
  1104. #u135927 {
  1105. border-width:0px;
  1106. position:absolute;
  1107. left:0px;
  1108. top:0px;
  1109. width:0px;
  1110. height:0px;
  1111. }
  1112. #u135928_img {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:8px;
  1118. height:13px;
  1119. }
  1120. #u135928 {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:376px;
  1124. top:219px;
  1125. width:8px;
  1126. height:13px;
  1127. display:flex;
  1128. -webkit-transform:rotate(270deg);
  1129. -moz-transform:rotate(270deg);
  1130. -ms-transform:rotate(270deg);
  1131. transform:rotate(270deg);
  1132. }
  1133. #u135928 .text {
  1134. position:absolute;
  1135. align-self:center;
  1136. padding:2px 2px 2px 2px;
  1137. box-sizing:border-box;
  1138. width:100%;
  1139. }
  1140. #u135928_text {
  1141. border-width:0px;
  1142. word-wrap:break-word;
  1143. text-transform:none;
  1144. visibility:hidden;
  1145. }
  1146. #u135929_div {
  1147. border-width:0px;
  1148. position:absolute;
  1149. left:0px;
  1150. top:0px;
  1151. width:339px;
  1152. height:17px;
  1153. background:inherit;
  1154. background-color:rgba(255, 255, 255, 0);
  1155. border:none;
  1156. border-left:0px;
  1157. border-top:0px;
  1158. border-right:0px;
  1159. border-radius:0px;
  1160. border-bottom-right-radius:0px;
  1161. border-bottom-left-radius:0px;
  1162. -moz-box-shadow:none;
  1163. -webkit-box-shadow:none;
  1164. box-shadow:none;
  1165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1166. font-weight:400;
  1167. font-style:normal;
  1168. font-size:12px;
  1169. color:#AAAAAA;
  1170. }
  1171. #u135929 {
  1172. border-width:0px;
  1173. position:absolute;
  1174. left:50px;
  1175. top:240px;
  1176. width:339px;
  1177. height:17px;
  1178. display:flex;
  1179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1180. font-weight:400;
  1181. font-style:normal;
  1182. font-size:12px;
  1183. color:#AAAAAA;
  1184. }
  1185. #u135929 .text {
  1186. position:absolute;
  1187. align-self:flex-start;
  1188. padding:0px 0px 0px 0px;
  1189. box-sizing:border-box;
  1190. width:100%;
  1191. }
  1192. #u135929_text {
  1193. border-width:0px;
  1194. word-wrap:break-word;
  1195. text-transform:none;
  1196. }
  1197. #u135930_div {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:339px;
  1203. height:34px;
  1204. background:inherit;
  1205. background-color:rgba(255, 255, 255, 0);
  1206. border:none;
  1207. border-left:0px;
  1208. border-top:0px;
  1209. border-right:0px;
  1210. border-radius:0px;
  1211. border-bottom-right-radius:0px;
  1212. border-bottom-left-radius:0px;
  1213. -moz-box-shadow:none;
  1214. -webkit-box-shadow:none;
  1215. box-shadow:none;
  1216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1217. font-weight:400;
  1218. font-style:normal;
  1219. font-size:12px;
  1220. }
  1221. #u135930 {
  1222. border-width:0px;
  1223. position:absolute;
  1224. left:50px;
  1225. top:118px;
  1226. width:339px;
  1227. height:34px;
  1228. display:flex;
  1229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1230. font-weight:400;
  1231. font-style:normal;
  1232. font-size:12px;
  1233. }
  1234. #u135930 .text {
  1235. position:absolute;
  1236. align-self:flex-start;
  1237. padding:0px 0px 0px 0px;
  1238. box-sizing:border-box;
  1239. width:100%;
  1240. }
  1241. #u135930_text {
  1242. border-width:0px;
  1243. word-wrap:break-word;
  1244. text-transform:none;
  1245. }
  1246. #u135931 {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:0px;
  1252. height:0px;
  1253. }
  1254. #u135932_div {
  1255. border-width:0px;
  1256. position:absolute;
  1257. left:0px;
  1258. top:0px;
  1259. width:375px;
  1260. height:70px;
  1261. background:inherit;
  1262. background-color:rgba(255, 255, 255, 1);
  1263. border:none;
  1264. border-left:0px;
  1265. border-top:0px;
  1266. border-right:0px;
  1267. border-radius:0px;
  1268. border-bottom-right-radius:0px;
  1269. border-bottom-left-radius:0px;
  1270. -moz-box-shadow:none;
  1271. -webkit-box-shadow:none;
  1272. box-shadow:none;
  1273. }
  1274. #u135932 {
  1275. border-width:0px;
  1276. position:absolute;
  1277. left:29px;
  1278. top:388px;
  1279. width:375px;
  1280. height:70px;
  1281. display:flex;
  1282. }
  1283. #u135932 .text {
  1284. position:absolute;
  1285. align-self:center;
  1286. padding:2px 2px 2px 2px;
  1287. box-sizing:border-box;
  1288. width:100%;
  1289. }
  1290. #u135932_text {
  1291. border-width:0px;
  1292. word-wrap:break-word;
  1293. text-transform:none;
  1294. visibility:hidden;
  1295. }
  1296. #u135933_div {
  1297. border-width:0px;
  1298. position:absolute;
  1299. left:0px;
  1300. top:0px;
  1301. width:37px;
  1302. height:30px;
  1303. background:inherit;
  1304. background-color:rgba(255, 255, 255, 0);
  1305. border:none;
  1306. border-left:0px;
  1307. border-top:0px;
  1308. border-right:0px;
  1309. border-radius:0px;
  1310. border-bottom-right-radius:0px;
  1311. border-bottom-left-radius:0px;
  1312. -moz-box-shadow:none;
  1313. -webkit-box-shadow:none;
  1314. box-shadow:none;
  1315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1316. font-weight:400;
  1317. font-style:normal;
  1318. font-size:18px;
  1319. line-height:30px;
  1320. }
  1321. #u135933 {
  1322. border-width:0px;
  1323. position:absolute;
  1324. left:50px;
  1325. top:398px;
  1326. width:37px;
  1327. height:30px;
  1328. display:flex;
  1329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1330. font-weight:400;
  1331. font-style:normal;
  1332. font-size:18px;
  1333. line-height:30px;
  1334. }
  1335. #u135933 .text {
  1336. position:absolute;
  1337. align-self:flex-start;
  1338. padding:0px 0px 0px 0px;
  1339. box-sizing:border-box;
  1340. width:100%;
  1341. }
  1342. #u135933_text {
  1343. border-width:0px;
  1344. white-space:nowrap;
  1345. text-transform:none;
  1346. }
  1347. #u135934 {
  1348. border-width:0px;
  1349. position:absolute;
  1350. left:0px;
  1351. top:0px;
  1352. width:0px;
  1353. height:0px;
  1354. }
  1355. #u135935_img {
  1356. border-width:0px;
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:8px;
  1361. height:13px;
  1362. }
  1363. #u135935 {
  1364. border-width:0px;
  1365. position:absolute;
  1366. left:376px;
  1367. top:412px;
  1368. width:8px;
  1369. height:13px;
  1370. display:flex;
  1371. -webkit-transform:rotate(180deg);
  1372. -moz-transform:rotate(180deg);
  1373. -ms-transform:rotate(180deg);
  1374. transform:rotate(180deg);
  1375. }
  1376. #u135935 .text {
  1377. position:absolute;
  1378. align-self:center;
  1379. padding:2px 2px 2px 2px;
  1380. box-sizing:border-box;
  1381. width:100%;
  1382. }
  1383. #u135935_text {
  1384. border-width:0px;
  1385. word-wrap:break-word;
  1386. text-transform:none;
  1387. visibility:hidden;
  1388. }
  1389. #u135936_div {
  1390. border-width:0px;
  1391. position:absolute;
  1392. left:0px;
  1393. top:0px;
  1394. width:339px;
  1395. height:17px;
  1396. background:inherit;
  1397. background-color:rgba(255, 255, 255, 0);
  1398. border:none;
  1399. border-left:0px;
  1400. border-top:0px;
  1401. border-right:0px;
  1402. border-radius:0px;
  1403. border-bottom-right-radius:0px;
  1404. border-bottom-left-radius:0px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. font-size:12px;
  1412. color:#AAAAAA;
  1413. }
  1414. #u135936 {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:50px;
  1418. top:433px;
  1419. width:339px;
  1420. height:17px;
  1421. display:flex;
  1422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1423. font-weight:400;
  1424. font-style:normal;
  1425. font-size:12px;
  1426. color:#AAAAAA;
  1427. }
  1428. #u135936 .text {
  1429. position:absolute;
  1430. align-self:flex-start;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u135936_text {
  1436. border-width:0px;
  1437. word-wrap:break-word;
  1438. text-transform:none;
  1439. }
  1440. #u135937 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:0px;
  1446. height:0px;
  1447. }
  1448. #u135938_div {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:0px;
  1452. top:0px;
  1453. width:375px;
  1454. height:70px;
  1455. background:inherit;
  1456. background-color:rgba(255, 255, 255, 1);
  1457. border:none;
  1458. border-left:0px;
  1459. border-top:0px;
  1460. border-right:0px;
  1461. border-radius:0px;
  1462. border-bottom-right-radius:0px;
  1463. border-bottom-left-radius:0px;
  1464. -moz-box-shadow:none;
  1465. -webkit-box-shadow:none;
  1466. box-shadow:none;
  1467. }
  1468. #u135938 {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:29px;
  1472. top:459px;
  1473. width:375px;
  1474. height:70px;
  1475. display:flex;
  1476. }
  1477. #u135938 .text {
  1478. position:absolute;
  1479. align-self:center;
  1480. padding:2px 2px 2px 2px;
  1481. box-sizing:border-box;
  1482. width:100%;
  1483. }
  1484. #u135938_text {
  1485. border-width:0px;
  1486. word-wrap:break-word;
  1487. text-transform:none;
  1488. visibility:hidden;
  1489. }
  1490. #u135939_div {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:0px;
  1494. top:0px;
  1495. width:37px;
  1496. height:30px;
  1497. background:inherit;
  1498. background-color:rgba(255, 255, 255, 0);
  1499. border:none;
  1500. border-left:0px;
  1501. border-top:0px;
  1502. border-right:0px;
  1503. border-radius:0px;
  1504. border-bottom-right-radius:0px;
  1505. border-bottom-left-radius:0px;
  1506. -moz-box-shadow:none;
  1507. -webkit-box-shadow:none;
  1508. box-shadow:none;
  1509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1510. font-weight:400;
  1511. font-style:normal;
  1512. font-size:18px;
  1513. line-height:30px;
  1514. }
  1515. #u135939 {
  1516. border-width:0px;
  1517. position:absolute;
  1518. left:50px;
  1519. top:469px;
  1520. width:37px;
  1521. height:30px;
  1522. display:flex;
  1523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1524. font-weight:400;
  1525. font-style:normal;
  1526. font-size:18px;
  1527. line-height:30px;
  1528. }
  1529. #u135939 .text {
  1530. position:absolute;
  1531. align-self:flex-start;
  1532. padding:0px 0px 0px 0px;
  1533. box-sizing:border-box;
  1534. width:100%;
  1535. }
  1536. #u135939_text {
  1537. border-width:0px;
  1538. white-space:nowrap;
  1539. text-transform:none;
  1540. }
  1541. #u135940 {
  1542. border-width:0px;
  1543. position:absolute;
  1544. left:0px;
  1545. top:0px;
  1546. width:0px;
  1547. height:0px;
  1548. }
  1549. #u135941_img {
  1550. border-width:0px;
  1551. position:absolute;
  1552. left:0px;
  1553. top:0px;
  1554. width:8px;
  1555. height:13px;
  1556. }
  1557. #u135941 {
  1558. border-width:0px;
  1559. position:absolute;
  1560. left:376px;
  1561. top:483px;
  1562. width:8px;
  1563. height:13px;
  1564. display:flex;
  1565. -webkit-transform:rotate(180deg);
  1566. -moz-transform:rotate(180deg);
  1567. -ms-transform:rotate(180deg);
  1568. transform:rotate(180deg);
  1569. }
  1570. #u135941 .text {
  1571. position:absolute;
  1572. align-self:center;
  1573. padding:2px 2px 2px 2px;
  1574. box-sizing:border-box;
  1575. width:100%;
  1576. }
  1577. #u135941_text {
  1578. border-width:0px;
  1579. word-wrap:break-word;
  1580. text-transform:none;
  1581. visibility:hidden;
  1582. }
  1583. #u135942_div {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:0px;
  1587. top:0px;
  1588. width:80px;
  1589. height:17px;
  1590. background:inherit;
  1591. background-color:rgba(255, 255, 255, 0);
  1592. border:none;
  1593. border-radius:0px;
  1594. -moz-box-shadow:none;
  1595. -webkit-box-shadow:none;
  1596. box-shadow:none;
  1597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1598. font-weight:400;
  1599. font-style:normal;
  1600. font-size:12px;
  1601. color:#AAAAAA;
  1602. }
  1603. #u135942 {
  1604. border-width:0px;
  1605. position:absolute;
  1606. left:50px;
  1607. top:504px;
  1608. width:80px;
  1609. height:17px;
  1610. display:flex;
  1611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1612. font-weight:400;
  1613. font-style:normal;
  1614. font-size:12px;
  1615. color:#AAAAAA;
  1616. }
  1617. #u135942 .text {
  1618. position:absolute;
  1619. align-self:flex-start;
  1620. padding:0px 0px 0px 0px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u135942_text {
  1625. border-width:0px;
  1626. white-space:nowrap;
  1627. text-transform:none;
  1628. }
  1629. #u135943 {
  1630. border-width:0px;
  1631. position:absolute;
  1632. left:0px;
  1633. top:0px;
  1634. width:0px;
  1635. height:0px;
  1636. }
  1637. #u135944_div {
  1638. border-width:0px;
  1639. position:absolute;
  1640. left:0px;
  1641. top:0px;
  1642. width:375px;
  1643. height:60px;
  1644. background:inherit;
  1645. background-color:rgba(255, 255, 255, 1);
  1646. border:none;
  1647. border-top:0px;
  1648. border-radius:28px;
  1649. border-top-left-radius:0px;
  1650. border-top-right-radius:0px;
  1651. -moz-box-shadow:none;
  1652. -webkit-box-shadow:none;
  1653. box-shadow:none;
  1654. }
  1655. #u135944 {
  1656. border-width:0px;
  1657. position:absolute;
  1658. left:29px;
  1659. top:780px;
  1660. width:375px;
  1661. height:60px;
  1662. display:flex;
  1663. }
  1664. #u135944 .text {
  1665. position:absolute;
  1666. align-self:center;
  1667. padding:2px 2px 2px 2px;
  1668. box-sizing:border-box;
  1669. width:100%;
  1670. }
  1671. #u135944_text {
  1672. border-width:0px;
  1673. word-wrap:break-word;
  1674. text-transform:none;
  1675. visibility:hidden;
  1676. }
  1677. #u135945_div {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:0px;
  1681. top:0px;
  1682. width:79px;
  1683. height:30px;
  1684. background:inherit;
  1685. background-color:rgba(255, 255, 255, 0);
  1686. border:none;
  1687. border-left:0px;
  1688. border-top:0px;
  1689. border-right:0px;
  1690. border-radius:0px;
  1691. border-bottom-right-radius:0px;
  1692. border-bottom-left-radius:0px;
  1693. -moz-box-shadow:none;
  1694. -webkit-box-shadow:none;
  1695. box-shadow:none;
  1696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1697. font-weight:400;
  1698. font-style:normal;
  1699. font-size:14px;
  1700. color:#1890FF;
  1701. line-height:30px;
  1702. }
  1703. #u135945 {
  1704. border-width:0px;
  1705. position:absolute;
  1706. left:49px;
  1707. top:795px;
  1708. width:79px;
  1709. height:30px;
  1710. display:flex;
  1711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1712. font-weight:400;
  1713. font-style:normal;
  1714. font-size:14px;
  1715. color:#1890FF;
  1716. line-height:30px;
  1717. }
  1718. #u135945 .text {
  1719. position:absolute;
  1720. align-self:flex-start;
  1721. padding:0px 0px 0px 0px;
  1722. box-sizing:border-box;
  1723. width:100%;
  1724. }
  1725. #u135945_text {
  1726. border-width:0px;
  1727. white-space:nowrap;
  1728. text-transform:none;
  1729. }
  1730. #u135946 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:0px;
  1734. top:0px;
  1735. width:0px;
  1736. height:0px;
  1737. }
  1738. #u135947_div {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:0px;
  1742. top:0px;
  1743. width:65px;
  1744. height:30px;
  1745. background:inherit;
  1746. background-color:rgba(255, 255, 255, 0);
  1747. border:none;
  1748. border-left:0px;
  1749. border-top:0px;
  1750. border-right:0px;
  1751. border-radius:0px;
  1752. border-bottom-right-radius:0px;
  1753. border-bottom-left-radius:0px;
  1754. -moz-box-shadow:none;
  1755. -webkit-box-shadow:none;
  1756. box-shadow:none;
  1757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1758. font-weight:400;
  1759. font-style:normal;
  1760. font-size:14px;
  1761. color:#1890FF;
  1762. line-height:30px;
  1763. }
  1764. #u135947 {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:188px;
  1768. top:795px;
  1769. width:65px;
  1770. height:30px;
  1771. display:flex;
  1772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1773. font-weight:400;
  1774. font-style:normal;
  1775. font-size:14px;
  1776. color:#1890FF;
  1777. line-height:30px;
  1778. }
  1779. #u135947 .text {
  1780. position:absolute;
  1781. align-self:flex-start;
  1782. padding:0px 0px 0px 0px;
  1783. box-sizing:border-box;
  1784. width:100%;
  1785. }
  1786. #u135947_text {
  1787. border-width:0px;
  1788. white-space:nowrap;
  1789. text-transform:none;
  1790. }
  1791. #u135948_div {
  1792. border-width:0px;
  1793. position:absolute;
  1794. left:0px;
  1795. top:0px;
  1796. width:71px;
  1797. height:30px;
  1798. background:inherit;
  1799. background-color:rgba(255, 255, 255, 0);
  1800. border:none;
  1801. border-left:0px;
  1802. border-top:0px;
  1803. border-right:0px;
  1804. border-radius:0px;
  1805. border-bottom-right-radius:0px;
  1806. border-bottom-left-radius:0px;
  1807. -moz-box-shadow:none;
  1808. -webkit-box-shadow:none;
  1809. box-shadow:none;
  1810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1811. font-weight:400;
  1812. font-style:normal;
  1813. font-size:14px;
  1814. color:#1890FF;
  1815. line-height:30px;
  1816. }
  1817. #u135948 {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:313px;
  1821. top:795px;
  1822. width:71px;
  1823. height:30px;
  1824. display:flex;
  1825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1826. font-weight:400;
  1827. font-style:normal;
  1828. font-size:14px;
  1829. color:#1890FF;
  1830. line-height:30px;
  1831. }
  1832. #u135948 .text {
  1833. position:absolute;
  1834. align-self:flex-start;
  1835. padding:0px 0px 0px 0px;
  1836. box-sizing:border-box;
  1837. width:100%;
  1838. }
  1839. #u135948_text {
  1840. border-width:0px;
  1841. white-space:nowrap;
  1842. text-transform:none;
  1843. }
  1844. #u135949_img {
  1845. border-width:0px;
  1846. position:absolute;
  1847. left:0px;
  1848. top:0px;
  1849. width:2px;
  1850. height:11px;
  1851. }
  1852. #u135949 {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:159px;
  1856. top:806px;
  1857. width:1px;
  1858. height:10px;
  1859. display:flex;
  1860. }
  1861. #u135949 .text {
  1862. position:absolute;
  1863. align-self:center;
  1864. padding:2px 2px 2px 2px;
  1865. box-sizing:border-box;
  1866. width:100%;
  1867. }
  1868. #u135949_text {
  1869. border-width:0px;
  1870. word-wrap:break-word;
  1871. text-transform:none;
  1872. visibility:hidden;
  1873. }
  1874. #u135950_img {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:0px;
  1878. top:0px;
  1879. width:2px;
  1880. height:11px;
  1881. }
  1882. #u135950 {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:284px;
  1886. top:806px;
  1887. width:1px;
  1888. height:10px;
  1889. display:flex;
  1890. }
  1891. #u135950 .text {
  1892. position:absolute;
  1893. align-self:center;
  1894. padding:2px 2px 2px 2px;
  1895. box-sizing:border-box;
  1896. width:100%;
  1897. }
  1898. #u135950_text {
  1899. border-width:0px;
  1900. word-wrap:break-word;
  1901. text-transform:none;
  1902. visibility:hidden;
  1903. }
  1904. #u135952_img {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:0px;
  1908. top:0px;
  1909. width:433px;
  1910. height:865px;
  1911. }
  1912. #u135952 {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:453px;
  1916. top:0px;
  1917. width:433px;
  1918. height:865px;
  1919. display:flex;
  1920. }
  1921. #u135952 .text {
  1922. position:absolute;
  1923. align-self:center;
  1924. padding:2px 2px 2px 2px;
  1925. box-sizing:border-box;
  1926. width:100%;
  1927. }
  1928. #u135952_text {
  1929. border-width:0px;
  1930. word-wrap:break-word;
  1931. text-transform:none;
  1932. visibility:hidden;
  1933. }
  1934. #u135953_div {
  1935. border-width:0px;
  1936. position:absolute;
  1937. left:0px;
  1938. top:0px;
  1939. width:375px;
  1940. height:40px;
  1941. background:inherit;
  1942. background-color:rgba(255, 255, 255, 1);
  1943. box-sizing:border-box;
  1944. border-width:1px;
  1945. border-style:solid;
  1946. border-color:rgba(215, 215, 215, 1);
  1947. border-left:0px;
  1948. border-top:0px;
  1949. border-right:0px;
  1950. border-radius:0px;
  1951. border-bottom-right-radius:0px;
  1952. border-bottom-left-radius:0px;
  1953. -moz-box-shadow:none;
  1954. -webkit-box-shadow:none;
  1955. box-shadow:none;
  1956. }
  1957. #u135953 {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:482px;
  1961. top:67px;
  1962. width:375px;
  1963. height:40px;
  1964. display:flex;
  1965. }
  1966. #u135953 .text {
  1967. position:absolute;
  1968. align-self:center;
  1969. padding:2px 2px 2px 2px;
  1970. box-sizing:border-box;
  1971. width:100%;
  1972. }
  1973. #u135953_text {
  1974. border-width:0px;
  1975. word-wrap:break-word;
  1976. text-transform:none;
  1977. visibility:hidden;
  1978. }
  1979. #u135954 {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:0px;
  1983. top:0px;
  1984. width:0px;
  1985. height:0px;
  1986. }
  1987. #u135955_div {
  1988. border-width:0px;
  1989. position:absolute;
  1990. left:0px;
  1991. top:0px;
  1992. width:88px;
  1993. height:32px;
  1994. background:inherit;
  1995. background-color:rgba(255, 255, 255, 1);
  1996. box-sizing:border-box;
  1997. border-width:1px;
  1998. border-style:solid;
  1999. border-color:rgba(242, 242, 242, 1);
  2000. border-radius:33px;
  2001. -moz-box-shadow:none;
  2002. -webkit-box-shadow:none;
  2003. box-shadow:none;
  2004. }
  2005. #u135955 {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:762px;
  2009. top:71px;
  2010. width:88px;
  2011. height:32px;
  2012. display:flex;
  2013. }
  2014. #u135955 .text {
  2015. position:absolute;
  2016. align-self:center;
  2017. padding:2px 2px 2px 2px;
  2018. box-sizing:border-box;
  2019. width:100%;
  2020. }
  2021. #u135955_text {
  2022. border-width:0px;
  2023. word-wrap:break-word;
  2024. text-transform:none;
  2025. visibility:hidden;
  2026. }
  2027. #u135956 {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:0px;
  2031. top:0px;
  2032. width:0px;
  2033. height:0px;
  2034. }
  2035. #u135957_img {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:0px;
  2039. top:0px;
  2040. width:18px;
  2041. height:18px;
  2042. }
  2043. #u135957 {
  2044. border-width:0px;
  2045. position:absolute;
  2046. left:825px;
  2047. top:78px;
  2048. width:18px;
  2049. height:18px;
  2050. display:flex;
  2051. }
  2052. #u135957 .text {
  2053. position:absolute;
  2054. align-self:center;
  2055. padding:2px 2px 2px 2px;
  2056. box-sizing:border-box;
  2057. width:100%;
  2058. }
  2059. #u135957_text {
  2060. border-width:0px;
  2061. word-wrap:break-word;
  2062. text-transform:none;
  2063. visibility:hidden;
  2064. }
  2065. #u135958_img {
  2066. border-width:0px;
  2067. position:absolute;
  2068. left:0px;
  2069. top:0px;
  2070. width:6px;
  2071. height:6px;
  2072. }
  2073. #u135958 {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:831px;
  2077. top:84px;
  2078. width:6px;
  2079. height:6px;
  2080. display:flex;
  2081. }
  2082. #u135958 .text {
  2083. position:absolute;
  2084. align-self:center;
  2085. padding:2px 2px 2px 2px;
  2086. box-sizing:border-box;
  2087. width:100%;
  2088. }
  2089. #u135958_text {
  2090. border-width:0px;
  2091. word-wrap:break-word;
  2092. text-transform:none;
  2093. visibility:hidden;
  2094. }
  2095. #u135959 {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:0px;
  2099. top:0px;
  2100. width:0px;
  2101. height:0px;
  2102. }
  2103. #u135960_img {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:0px;
  2107. top:0px;
  2108. width:5px;
  2109. height:5px;
  2110. }
  2111. #u135960 {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:776px;
  2115. top:85px;
  2116. width:5px;
  2117. height:5px;
  2118. display:flex;
  2119. }
  2120. #u135960 .text {
  2121. position:absolute;
  2122. align-self:center;
  2123. padding:2px 2px 2px 2px;
  2124. box-sizing:border-box;
  2125. width:100%;
  2126. }
  2127. #u135960_text {
  2128. border-width:0px;
  2129. word-wrap:break-word;
  2130. text-transform:none;
  2131. visibility:hidden;
  2132. }
  2133. #u135961_img {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:0px;
  2137. top:0px;
  2138. width:5px;
  2139. height:5px;
  2140. }
  2141. #u135961 {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:792px;
  2145. top:85px;
  2146. width:5px;
  2147. height:5px;
  2148. display:flex;
  2149. }
  2150. #u135961 .text {
  2151. position:absolute;
  2152. align-self:center;
  2153. padding:2px 2px 2px 2px;
  2154. box-sizing:border-box;
  2155. width:100%;
  2156. }
  2157. #u135961_text {
  2158. border-width:0px;
  2159. word-wrap:break-word;
  2160. text-transform:none;
  2161. visibility:hidden;
  2162. }
  2163. #u135962_img {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:0px;
  2167. top:0px;
  2168. width:7px;
  2169. height:7px;
  2170. }
  2171. #u135962 {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:783px;
  2175. top:84px;
  2176. width:7px;
  2177. height:7px;
  2178. display:flex;
  2179. }
  2180. #u135962 .text {
  2181. position:absolute;
  2182. align-self:center;
  2183. padding:2px 2px 2px 2px;
  2184. box-sizing:border-box;
  2185. width:100%;
  2186. }
  2187. #u135962_text {
  2188. border-width:0px;
  2189. word-wrap:break-word;
  2190. text-transform:none;
  2191. visibility:hidden;
  2192. }
  2193. #u135963_img {
  2194. border-width:0px;
  2195. position:absolute;
  2196. left:0px;
  2197. top:0px;
  2198. width:19px;
  2199. height:2px;
  2200. }
  2201. #u135963 {
  2202. border-width:0px;
  2203. position:absolute;
  2204. left:800px;
  2205. top:87px;
  2206. width:18px;
  2207. height:1px;
  2208. display:flex;
  2209. -webkit-transform:rotate(90deg);
  2210. -moz-transform:rotate(90deg);
  2211. -ms-transform:rotate(90deg);
  2212. transform:rotate(90deg);
  2213. }
  2214. #u135963 .text {
  2215. position:absolute;
  2216. align-self:center;
  2217. padding:2px 2px 2px 2px;
  2218. box-sizing:border-box;
  2219. width:100%;
  2220. }
  2221. #u135963_text {
  2222. border-width:0px;
  2223. word-wrap:break-word;
  2224. text-transform:none;
  2225. visibility:hidden;
  2226. }
  2227. #u135964_img {
  2228. border-width:0px;
  2229. position:absolute;
  2230. left:0px;
  2231. top:0px;
  2232. width:375px;
  2233. height:44px;
  2234. }
  2235. #u135964 {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:482px;
  2239. top:24px;
  2240. width:375px;
  2241. height:44px;
  2242. display:flex;
  2243. }
  2244. #u135964 .text {
  2245. position:absolute;
  2246. align-self:center;
  2247. padding:2px 2px 2px 2px;
  2248. box-sizing:border-box;
  2249. width:100%;
  2250. }
  2251. #u135964_text {
  2252. border-width:0px;
  2253. word-wrap:break-word;
  2254. text-transform:none;
  2255. visibility:hidden;
  2256. }
  2257. #u135965_div {
  2258. border-width:0px;
  2259. position:absolute;
  2260. left:0px;
  2261. top:0px;
  2262. width:375px;
  2263. height:50px;
  2264. background:inherit;
  2265. background-color:rgba(255, 255, 255, 1);
  2266. box-sizing:border-box;
  2267. border-width:1px;
  2268. border-style:solid;
  2269. border-color:rgba(242, 242, 242, 1);
  2270. border-radius:26px;
  2271. border-top-left-radius:0px;
  2272. border-top-right-radius:0px;
  2273. -moz-box-shadow:none;
  2274. -webkit-box-shadow:none;
  2275. box-shadow:none;
  2276. }
  2277. #u135965 {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:482px;
  2281. top:788px;
  2282. width:375px;
  2283. height:50px;
  2284. display:flex;
  2285. }
  2286. #u135965 .text {
  2287. position:absolute;
  2288. align-self:center;
  2289. padding:2px 2px 2px 2px;
  2290. box-sizing:border-box;
  2291. width:100%;
  2292. }
  2293. #u135965_text {
  2294. border-width:0px;
  2295. word-wrap:break-word;
  2296. text-transform:none;
  2297. visibility:hidden;
  2298. }
  2299. #u135966 {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:0px;
  2303. top:0px;
  2304. width:0px;
  2305. height:0px;
  2306. }
  2307. #u135967_img {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:0px;
  2311. top:0px;
  2312. width:24px;
  2313. height:24px;
  2314. }
  2315. #u135967 {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:522px;
  2319. top:792px;
  2320. width:24px;
  2321. height:24px;
  2322. display:flex;
  2323. font-size:8px;
  2324. }
  2325. #u135967 .text {
  2326. position:absolute;
  2327. align-self:center;
  2328. padding:2px 2px 2px 2px;
  2329. box-sizing:border-box;
  2330. width:100%;
  2331. }
  2332. #u135967_text {
  2333. border-width:0px;
  2334. word-wrap:break-word;
  2335. text-transform:none;
  2336. }
  2337. #u135968_div {
  2338. border-width:0px;
  2339. position:absolute;
  2340. left:0px;
  2341. top:0px;
  2342. width:25px;
  2343. height:17px;
  2344. background:inherit;
  2345. background-color:rgba(255, 255, 255, 0);
  2346. border:none;
  2347. border-radius:0px;
  2348. -moz-box-shadow:none;
  2349. -webkit-box-shadow:none;
  2350. box-shadow:none;
  2351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2352. font-weight:400;
  2353. font-style:normal;
  2354. font-size:12px;
  2355. }
  2356. #u135968 {
  2357. border-width:0px;
  2358. position:absolute;
  2359. left:522px;
  2360. top:817px;
  2361. width:25px;
  2362. height:17px;
  2363. display:flex;
  2364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2365. font-weight:400;
  2366. font-style:normal;
  2367. font-size:12px;
  2368. }
  2369. #u135968 .text {
  2370. position:absolute;
  2371. align-self:flex-start;
  2372. padding:0px 0px 0px 0px;
  2373. box-sizing:border-box;
  2374. width:100%;
  2375. }
  2376. #u135968_text {
  2377. border-width:0px;
  2378. white-space:nowrap;
  2379. text-transform:none;
  2380. }
  2381. #u135969 {
  2382. border-width:0px;
  2383. position:absolute;
  2384. left:0px;
  2385. top:0px;
  2386. width:0px;
  2387. height:0px;
  2388. }
  2389. #u135970_img {
  2390. border-width:0px;
  2391. position:absolute;
  2392. left:0px;
  2393. top:0px;
  2394. width:24px;
  2395. height:24px;
  2396. }
  2397. #u135970 {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:792px;
  2401. top:794px;
  2402. width:24px;
  2403. height:24px;
  2404. display:flex;
  2405. font-size:8px;
  2406. }
  2407. #u135970 .text {
  2408. position:absolute;
  2409. align-self:center;
  2410. padding:2px 2px 2px 2px;
  2411. box-sizing:border-box;
  2412. width:100%;
  2413. }
  2414. #u135970_text {
  2415. border-width:0px;
  2416. word-wrap:break-word;
  2417. text-transform:none;
  2418. }
  2419. #u135971_div {
  2420. border-width:0px;
  2421. position:absolute;
  2422. left:0px;
  2423. top:0px;
  2424. width:25px;
  2425. height:17px;
  2426. background:inherit;
  2427. background-color:rgba(255, 255, 255, 0);
  2428. border:none;
  2429. border-radius:0px;
  2430. -moz-box-shadow:none;
  2431. -webkit-box-shadow:none;
  2432. box-shadow:none;
  2433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2434. font-weight:400;
  2435. font-style:normal;
  2436. font-size:12px;
  2437. }
  2438. #u135971 {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:792px;
  2442. top:819px;
  2443. width:25px;
  2444. height:17px;
  2445. display:flex;
  2446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2447. font-weight:400;
  2448. font-style:normal;
  2449. font-size:12px;
  2450. }
  2451. #u135971 .text {
  2452. position:absolute;
  2453. align-self:flex-start;
  2454. padding:0px 0px 0px 0px;
  2455. box-sizing:border-box;
  2456. width:100%;
  2457. }
  2458. #u135971_text {
  2459. border-width:0px;
  2460. white-space:nowrap;
  2461. text-transform:none;
  2462. }
  2463. #u135972_div {
  2464. border-width:0px;
  2465. position:absolute;
  2466. left:0px;
  2467. top:0px;
  2468. width:375px;
  2469. height:681px;
  2470. background:inherit;
  2471. background-color:rgba(242, 242, 242, 0.462745098039216);
  2472. border:none;
  2473. border-radius:0px;
  2474. -moz-box-shadow:none;
  2475. -webkit-box-shadow:none;
  2476. box-shadow:none;
  2477. }
  2478. #u135972 {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:482px;
  2482. top:107px;
  2483. width:375px;
  2484. height:681px;
  2485. display:flex;
  2486. }
  2487. #u135972 .text {
  2488. position:absolute;
  2489. align-self:center;
  2490. padding:2px 2px 2px 2px;
  2491. box-sizing:border-box;
  2492. width:100%;
  2493. }
  2494. #u135972_text {
  2495. border-width:0px;
  2496. word-wrap:break-word;
  2497. text-transform:none;
  2498. visibility:hidden;
  2499. }
  2500. #u135973 {
  2501. border-width:0px;
  2502. position:absolute;
  2503. left:0px;
  2504. top:0px;
  2505. width:0px;
  2506. height:0px;
  2507. }
  2508. #u135974_img {
  2509. border-width:0px;
  2510. position:absolute;
  2511. left:0px;
  2512. top:0px;
  2513. width:24px;
  2514. height:24px;
  2515. }
  2516. #u135974 {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:704px;
  2520. top:792px;
  2521. width:24px;
  2522. height:24px;
  2523. display:flex;
  2524. font-size:8px;
  2525. }
  2526. #u135974 .text {
  2527. position:absolute;
  2528. align-self:center;
  2529. padding:2px 2px 2px 2px;
  2530. box-sizing:border-box;
  2531. width:100%;
  2532. }
  2533. #u135974_text {
  2534. border-width:0px;
  2535. word-wrap:break-word;
  2536. text-transform:none;
  2537. }
  2538. #u135975_div {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:0px;
  2542. top:0px;
  2543. width:37px;
  2544. height:17px;
  2545. background:inherit;
  2546. background-color:rgba(255, 255, 255, 0);
  2547. border:none;
  2548. border-radius:0px;
  2549. -moz-box-shadow:none;
  2550. -webkit-box-shadow:none;
  2551. box-shadow:none;
  2552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2553. font-weight:400;
  2554. font-style:normal;
  2555. font-size:12px;
  2556. }
  2557. #u135975 {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:698px;
  2561. top:817px;
  2562. width:37px;
  2563. height:17px;
  2564. display:flex;
  2565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2566. font-weight:400;
  2567. font-style:normal;
  2568. font-size:12px;
  2569. }
  2570. #u135975 .text {
  2571. position:absolute;
  2572. align-self:flex-start;
  2573. padding:0px 0px 0px 0px;
  2574. box-sizing:border-box;
  2575. width:100%;
  2576. }
  2577. #u135975_text {
  2578. border-width:0px;
  2579. white-space:nowrap;
  2580. text-transform:none;
  2581. }
  2582. #u135976 {
  2583. border-width:0px;
  2584. position:absolute;
  2585. left:0px;
  2586. top:0px;
  2587. width:0px;
  2588. height:0px;
  2589. }
  2590. #u135977_img {
  2591. border-width:0px;
  2592. position:absolute;
  2593. left:0px;
  2594. top:0px;
  2595. width:24px;
  2596. height:24px;
  2597. }
  2598. #u135977 {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:610px;
  2602. top:792px;
  2603. width:24px;
  2604. height:24px;
  2605. display:flex;
  2606. font-size:8px;
  2607. }
  2608. #u135977 .text {
  2609. position:absolute;
  2610. align-self:center;
  2611. padding:2px 2px 2px 2px;
  2612. box-sizing:border-box;
  2613. width:100%;
  2614. }
  2615. #u135977_text {
  2616. border-width:0px;
  2617. word-wrap:break-word;
  2618. text-transform:none;
  2619. }
  2620. #u135978_div {
  2621. border-width:0px;
  2622. position:absolute;
  2623. left:0px;
  2624. top:0px;
  2625. width:37px;
  2626. height:17px;
  2627. background:inherit;
  2628. background-color:rgba(255, 255, 255, 0);
  2629. border:none;
  2630. border-radius:0px;
  2631. -moz-box-shadow:none;
  2632. -webkit-box-shadow:none;
  2633. box-shadow:none;
  2634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2635. font-weight:400;
  2636. font-style:normal;
  2637. font-size:12px;
  2638. }
  2639. #u135978 {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:604px;
  2643. top:817px;
  2644. width:37px;
  2645. height:17px;
  2646. display:flex;
  2647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2648. font-weight:400;
  2649. font-style:normal;
  2650. font-size:12px;
  2651. }
  2652. #u135978 .text {
  2653. position:absolute;
  2654. align-self:flex-start;
  2655. padding:0px 0px 0px 0px;
  2656. box-sizing:border-box;
  2657. width:100%;
  2658. }
  2659. #u135978_text {
  2660. border-width:0px;
  2661. white-space:nowrap;
  2662. text-transform:none;
  2663. }
  2664. #u135979_div {
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:0px;
  2668. top:0px;
  2669. width:375px;
  2670. height:735px;
  2671. background:inherit;
  2672. background-color:rgba(242, 242, 242, 1);
  2673. border:none;
  2674. border-top:0px;
  2675. border-radius:25px;
  2676. border-top-left-radius:0px;
  2677. border-top-right-radius:0px;
  2678. -moz-box-shadow:none;
  2679. -webkit-box-shadow:none;
  2680. box-shadow:none;
  2681. }
  2682. #u135979 {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:482px;
  2686. top:105px;
  2687. width:375px;
  2688. height:735px;
  2689. display:flex;
  2690. }
  2691. #u135979 .text {
  2692. position:absolute;
  2693. align-self:center;
  2694. padding:2px 2px 2px 2px;
  2695. box-sizing:border-box;
  2696. width:100%;
  2697. }
  2698. #u135979_text {
  2699. border-width:0px;
  2700. word-wrap:break-word;
  2701. text-transform:none;
  2702. visibility:hidden;
  2703. }
  2704. #u135980_div {
  2705. border-width:0px;
  2706. position:absolute;
  2707. left:0px;
  2708. top:0px;
  2709. width:57px;
  2710. height:30px;
  2711. background:inherit;
  2712. background-color:rgba(255, 255, 255, 0);
  2713. border:none;
  2714. border-left:0px;
  2715. border-top:0px;
  2716. border-right:0px;
  2717. border-radius:0px;
  2718. border-bottom-right-radius:0px;
  2719. border-bottom-left-radius:0px;
  2720. -moz-box-shadow:none;
  2721. -webkit-box-shadow:none;
  2722. box-shadow:none;
  2723. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2724. font-weight:500;
  2725. font-style:normal;
  2726. font-size:14px;
  2727. line-height:30px;
  2728. }
  2729. #u135980 {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:642px;
  2733. top:73px;
  2734. width:57px;
  2735. height:30px;
  2736. display:flex;
  2737. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2738. font-weight:500;
  2739. font-style:normal;
  2740. font-size:14px;
  2741. line-height:30px;
  2742. }
  2743. #u135980 .text {
  2744. position:absolute;
  2745. align-self:flex-start;
  2746. padding:0px 0px 0px 0px;
  2747. box-sizing:border-box;
  2748. width:100%;
  2749. }
  2750. #u135980_text {
  2751. border-width:0px;
  2752. white-space:nowrap;
  2753. text-transform:none;
  2754. }
  2755. #u135981 {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:0px;
  2759. top:0px;
  2760. width:0px;
  2761. height:0px;
  2762. }
  2763. #u135982_img {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:0px;
  2767. top:0px;
  2768. width:11px;
  2769. height:18px;
  2770. }
  2771. #u135982 {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:495px;
  2775. top:79px;
  2776. width:11px;
  2777. height:18px;
  2778. display:flex;
  2779. }
  2780. #u135982 .text {
  2781. position:absolute;
  2782. align-self:center;
  2783. padding:2px 2px 2px 2px;
  2784. box-sizing:border-box;
  2785. width:100%;
  2786. }
  2787. #u135982_text {
  2788. border-width:0px;
  2789. word-wrap:break-word;
  2790. text-transform:none;
  2791. visibility:hidden;
  2792. }
  2793. #u135983_div {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:0px;
  2797. top:0px;
  2798. width:375px;
  2799. height:60px;
  2800. background:inherit;
  2801. background-color:rgba(255, 255, 255, 1);
  2802. border:none;
  2803. border-left:0px;
  2804. border-top:0px;
  2805. border-right:0px;
  2806. border-radius:0px;
  2807. border-bottom-right-radius:0px;
  2808. border-bottom-left-radius:0px;
  2809. -moz-box-shadow:none;
  2810. -webkit-box-shadow:none;
  2811. box-shadow:none;
  2812. }
  2813. #u135983 {
  2814. border-width:0px;
  2815. position:absolute;
  2816. left:482px;
  2817. top:105px;
  2818. width:375px;
  2819. height:60px;
  2820. display:flex;
  2821. }
  2822. #u135983 .text {
  2823. position:absolute;
  2824. align-self:center;
  2825. padding:2px 2px 2px 2px;
  2826. box-sizing:border-box;
  2827. width:100%;
  2828. }
  2829. #u135983_text {
  2830. border-width:0px;
  2831. word-wrap:break-word;
  2832. text-transform:none;
  2833. visibility:hidden;
  2834. }
  2835. #u135984_div {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:0px;
  2839. top:0px;
  2840. width:339px;
  2841. height:30px;
  2842. background:inherit;
  2843. background-color:rgba(255, 255, 255, 0);
  2844. border:none;
  2845. border-left:0px;
  2846. border-top:0px;
  2847. border-right:0px;
  2848. border-radius:0px;
  2849. border-bottom-right-radius:0px;
  2850. border-bottom-left-radius:0px;
  2851. -moz-box-shadow:none;
  2852. -webkit-box-shadow:none;
  2853. box-shadow:none;
  2854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2855. font-weight:400;
  2856. font-style:normal;
  2857. font-size:12px;
  2858. color:#7F7F7F;
  2859. line-height:30px;
  2860. }
  2861. #u135984 {
  2862. border-width:0px;
  2863. position:absolute;
  2864. left:501px;
  2865. top:165px;
  2866. width:339px;
  2867. height:30px;
  2868. display:flex;
  2869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2870. font-weight:400;
  2871. font-style:normal;
  2872. font-size:12px;
  2873. color:#7F7F7F;
  2874. line-height:30px;
  2875. }
  2876. #u135984 .text {
  2877. position:absolute;
  2878. align-self:flex-start;
  2879. padding:0px 0px 0px 0px;
  2880. box-sizing:border-box;
  2881. width:100%;
  2882. }
  2883. #u135984_text {
  2884. border-width:0px;
  2885. word-wrap:break-word;
  2886. text-transform:none;
  2887. }
  2888. #u135985_div {
  2889. border-width:0px;
  2890. position:absolute;
  2891. left:0px;
  2892. top:0px;
  2893. width:339px;
  2894. height:34px;
  2895. background:inherit;
  2896. background-color:rgba(255, 255, 255, 0);
  2897. border:none;
  2898. border-left:0px;
  2899. border-top:0px;
  2900. border-right:0px;
  2901. border-radius:0px;
  2902. border-bottom-right-radius:0px;
  2903. border-bottom-left-radius:0px;
  2904. -moz-box-shadow:none;
  2905. -webkit-box-shadow:none;
  2906. box-shadow:none;
  2907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2908. font-weight:400;
  2909. font-style:normal;
  2910. font-size:12px;
  2911. color:#7F7F7F;
  2912. }
  2913. #u135985 {
  2914. border-width:0px;
  2915. position:absolute;
  2916. left:503px;
  2917. top:118px;
  2918. width:339px;
  2919. height:34px;
  2920. display:flex;
  2921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2922. font-weight:400;
  2923. font-style:normal;
  2924. font-size:12px;
  2925. color:#7F7F7F;
  2926. }
  2927. #u135985 .text {
  2928. position:absolute;
  2929. align-self:flex-start;
  2930. padding:0px 0px 0px 0px;
  2931. box-sizing:border-box;
  2932. width:100%;
  2933. }
  2934. #u135985_text {
  2935. border-width:0px;
  2936. word-wrap:break-word;
  2937. text-transform:none;
  2938. }
  2939. #u135987_img {
  2940. border-width:0px;
  2941. position:absolute;
  2942. left:0px;
  2943. top:0px;
  2944. width:433px;
  2945. height:865px;
  2946. }
  2947. #u135987 {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:906px;
  2951. top:0px;
  2952. width:433px;
  2953. height:865px;
  2954. display:flex;
  2955. }
  2956. #u135987 .text {
  2957. position:absolute;
  2958. align-self:center;
  2959. padding:2px 2px 2px 2px;
  2960. box-sizing:border-box;
  2961. width:100%;
  2962. }
  2963. #u135987_text {
  2964. border-width:0px;
  2965. word-wrap:break-word;
  2966. text-transform:none;
  2967. visibility:hidden;
  2968. }
  2969. #u135988_div {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:0px;
  2973. top:0px;
  2974. width:375px;
  2975. height:40px;
  2976. background:inherit;
  2977. background-color:rgba(255, 255, 255, 1);
  2978. box-sizing:border-box;
  2979. border-width:1px;
  2980. border-style:solid;
  2981. border-color:rgba(215, 215, 215, 1);
  2982. border-left:0px;
  2983. border-top:0px;
  2984. border-right:0px;
  2985. border-radius:0px;
  2986. border-bottom-right-radius:0px;
  2987. border-bottom-left-radius:0px;
  2988. -moz-box-shadow:none;
  2989. -webkit-box-shadow:none;
  2990. box-shadow:none;
  2991. }
  2992. #u135988 {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:935px;
  2996. top:67px;
  2997. width:375px;
  2998. height:40px;
  2999. display:flex;
  3000. }
  3001. #u135988 .text {
  3002. position:absolute;
  3003. align-self:center;
  3004. padding:2px 2px 2px 2px;
  3005. box-sizing:border-box;
  3006. width:100%;
  3007. }
  3008. #u135988_text {
  3009. border-width:0px;
  3010. word-wrap:break-word;
  3011. text-transform:none;
  3012. visibility:hidden;
  3013. }
  3014. #u135989 {
  3015. border-width:0px;
  3016. position:absolute;
  3017. left:0px;
  3018. top:0px;
  3019. width:0px;
  3020. height:0px;
  3021. }
  3022. #u135990_div {
  3023. border-width:0px;
  3024. position:absolute;
  3025. left:0px;
  3026. top:0px;
  3027. width:88px;
  3028. height:32px;
  3029. background:inherit;
  3030. background-color:rgba(255, 255, 255, 1);
  3031. box-sizing:border-box;
  3032. border-width:1px;
  3033. border-style:solid;
  3034. border-color:rgba(242, 242, 242, 1);
  3035. border-radius:33px;
  3036. -moz-box-shadow:none;
  3037. -webkit-box-shadow:none;
  3038. box-shadow:none;
  3039. }
  3040. #u135990 {
  3041. border-width:0px;
  3042. position:absolute;
  3043. left:1215px;
  3044. top:71px;
  3045. width:88px;
  3046. height:32px;
  3047. display:flex;
  3048. }
  3049. #u135990 .text {
  3050. position:absolute;
  3051. align-self:center;
  3052. padding:2px 2px 2px 2px;
  3053. box-sizing:border-box;
  3054. width:100%;
  3055. }
  3056. #u135990_text {
  3057. border-width:0px;
  3058. word-wrap:break-word;
  3059. text-transform:none;
  3060. visibility:hidden;
  3061. }
  3062. #u135991 {
  3063. border-width:0px;
  3064. position:absolute;
  3065. left:0px;
  3066. top:0px;
  3067. width:0px;
  3068. height:0px;
  3069. }
  3070. #u135992_img {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:0px;
  3074. top:0px;
  3075. width:18px;
  3076. height:18px;
  3077. }
  3078. #u135992 {
  3079. border-width:0px;
  3080. position:absolute;
  3081. left:1278px;
  3082. top:78px;
  3083. width:18px;
  3084. height:18px;
  3085. display:flex;
  3086. }
  3087. #u135992 .text {
  3088. position:absolute;
  3089. align-self:center;
  3090. padding:2px 2px 2px 2px;
  3091. box-sizing:border-box;
  3092. width:100%;
  3093. }
  3094. #u135992_text {
  3095. border-width:0px;
  3096. word-wrap:break-word;
  3097. text-transform:none;
  3098. visibility:hidden;
  3099. }
  3100. #u135993_img {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:0px;
  3104. top:0px;
  3105. width:6px;
  3106. height:6px;
  3107. }
  3108. #u135993 {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:1284px;
  3112. top:84px;
  3113. width:6px;
  3114. height:6px;
  3115. display:flex;
  3116. }
  3117. #u135993 .text {
  3118. position:absolute;
  3119. align-self:center;
  3120. padding:2px 2px 2px 2px;
  3121. box-sizing:border-box;
  3122. width:100%;
  3123. }
  3124. #u135993_text {
  3125. border-width:0px;
  3126. word-wrap:break-word;
  3127. text-transform:none;
  3128. visibility:hidden;
  3129. }
  3130. #u135994 {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:0px;
  3134. top:0px;
  3135. width:0px;
  3136. height:0px;
  3137. }
  3138. #u135995_img {
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:0px;
  3142. top:0px;
  3143. width:5px;
  3144. height:5px;
  3145. }
  3146. #u135995 {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:1229px;
  3150. top:85px;
  3151. width:5px;
  3152. height:5px;
  3153. display:flex;
  3154. }
  3155. #u135995 .text {
  3156. position:absolute;
  3157. align-self:center;
  3158. padding:2px 2px 2px 2px;
  3159. box-sizing:border-box;
  3160. width:100%;
  3161. }
  3162. #u135995_text {
  3163. border-width:0px;
  3164. word-wrap:break-word;
  3165. text-transform:none;
  3166. visibility:hidden;
  3167. }
  3168. #u135996_img {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:0px;
  3172. top:0px;
  3173. width:5px;
  3174. height:5px;
  3175. }
  3176. #u135996 {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:1245px;
  3180. top:85px;
  3181. width:5px;
  3182. height:5px;
  3183. display:flex;
  3184. }
  3185. #u135996 .text {
  3186. position:absolute;
  3187. align-self:center;
  3188. padding:2px 2px 2px 2px;
  3189. box-sizing:border-box;
  3190. width:100%;
  3191. }
  3192. #u135996_text {
  3193. border-width:0px;
  3194. word-wrap:break-word;
  3195. text-transform:none;
  3196. visibility:hidden;
  3197. }
  3198. #u135997_img {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:0px;
  3202. top:0px;
  3203. width:7px;
  3204. height:7px;
  3205. }
  3206. #u135997 {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:1236px;
  3210. top:84px;
  3211. width:7px;
  3212. height:7px;
  3213. display:flex;
  3214. }
  3215. #u135997 .text {
  3216. position:absolute;
  3217. align-self:center;
  3218. padding:2px 2px 2px 2px;
  3219. box-sizing:border-box;
  3220. width:100%;
  3221. }
  3222. #u135997_text {
  3223. border-width:0px;
  3224. word-wrap:break-word;
  3225. text-transform:none;
  3226. visibility:hidden;
  3227. }
  3228. #u135998_img {
  3229. border-width:0px;
  3230. position:absolute;
  3231. left:0px;
  3232. top:0px;
  3233. width:19px;
  3234. height:2px;
  3235. }
  3236. #u135998 {
  3237. border-width:0px;
  3238. position:absolute;
  3239. left:1253px;
  3240. top:87px;
  3241. width:18px;
  3242. height:1px;
  3243. display:flex;
  3244. -webkit-transform:rotate(90deg);
  3245. -moz-transform:rotate(90deg);
  3246. -ms-transform:rotate(90deg);
  3247. transform:rotate(90deg);
  3248. }
  3249. #u135998 .text {
  3250. position:absolute;
  3251. align-self:center;
  3252. padding:2px 2px 2px 2px;
  3253. box-sizing:border-box;
  3254. width:100%;
  3255. }
  3256. #u135998_text {
  3257. border-width:0px;
  3258. word-wrap:break-word;
  3259. text-transform:none;
  3260. visibility:hidden;
  3261. }
  3262. #u135999_img {
  3263. border-width:0px;
  3264. position:absolute;
  3265. left:0px;
  3266. top:0px;
  3267. width:375px;
  3268. height:44px;
  3269. }
  3270. #u135999 {
  3271. border-width:0px;
  3272. position:absolute;
  3273. left:935px;
  3274. top:24px;
  3275. width:375px;
  3276. height:44px;
  3277. display:flex;
  3278. }
  3279. #u135999 .text {
  3280. position:absolute;
  3281. align-self:center;
  3282. padding:2px 2px 2px 2px;
  3283. box-sizing:border-box;
  3284. width:100%;
  3285. }
  3286. #u135999_text {
  3287. border-width:0px;
  3288. word-wrap:break-word;
  3289. text-transform:none;
  3290. visibility:hidden;
  3291. }
  3292. #u136000_div {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:0px;
  3296. top:0px;
  3297. width:375px;
  3298. height:50px;
  3299. background:inherit;
  3300. background-color:rgba(255, 255, 255, 1);
  3301. box-sizing:border-box;
  3302. border-width:1px;
  3303. border-style:solid;
  3304. border-color:rgba(242, 242, 242, 1);
  3305. border-radius:26px;
  3306. border-top-left-radius:0px;
  3307. border-top-right-radius:0px;
  3308. -moz-box-shadow:none;
  3309. -webkit-box-shadow:none;
  3310. box-shadow:none;
  3311. }
  3312. #u136000 {
  3313. border-width:0px;
  3314. position:absolute;
  3315. left:935px;
  3316. top:788px;
  3317. width:375px;
  3318. height:50px;
  3319. display:flex;
  3320. }
  3321. #u136000 .text {
  3322. position:absolute;
  3323. align-self:center;
  3324. padding:2px 2px 2px 2px;
  3325. box-sizing:border-box;
  3326. width:100%;
  3327. }
  3328. #u136000_text {
  3329. border-width:0px;
  3330. word-wrap:break-word;
  3331. text-transform:none;
  3332. visibility:hidden;
  3333. }
  3334. #u136001 {
  3335. border-width:0px;
  3336. position:absolute;
  3337. left:0px;
  3338. top:0px;
  3339. width:0px;
  3340. height:0px;
  3341. }
  3342. #u136002_img {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:0px;
  3346. top:0px;
  3347. width:24px;
  3348. height:24px;
  3349. }
  3350. #u136002 {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:975px;
  3354. top:792px;
  3355. width:24px;
  3356. height:24px;
  3357. display:flex;
  3358. font-size:8px;
  3359. }
  3360. #u136002 .text {
  3361. position:absolute;
  3362. align-self:center;
  3363. padding:2px 2px 2px 2px;
  3364. box-sizing:border-box;
  3365. width:100%;
  3366. }
  3367. #u136002_text {
  3368. border-width:0px;
  3369. word-wrap:break-word;
  3370. text-transform:none;
  3371. }
  3372. #u136003_div {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:0px;
  3376. top:0px;
  3377. width:25px;
  3378. height:17px;
  3379. background:inherit;
  3380. background-color:rgba(255, 255, 255, 0);
  3381. border:none;
  3382. border-radius:0px;
  3383. -moz-box-shadow:none;
  3384. -webkit-box-shadow:none;
  3385. box-shadow:none;
  3386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3387. font-weight:400;
  3388. font-style:normal;
  3389. font-size:12px;
  3390. }
  3391. #u136003 {
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:975px;
  3395. top:817px;
  3396. width:25px;
  3397. height:17px;
  3398. display:flex;
  3399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3400. font-weight:400;
  3401. font-style:normal;
  3402. font-size:12px;
  3403. }
  3404. #u136003 .text {
  3405. position:absolute;
  3406. align-self:flex-start;
  3407. padding:0px 0px 0px 0px;
  3408. box-sizing:border-box;
  3409. width:100%;
  3410. }
  3411. #u136003_text {
  3412. border-width:0px;
  3413. white-space:nowrap;
  3414. text-transform:none;
  3415. }
  3416. #u136004 {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:0px;
  3420. top:0px;
  3421. width:0px;
  3422. height:0px;
  3423. }
  3424. #u136005_img {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:0px;
  3428. top:0px;
  3429. width:24px;
  3430. height:24px;
  3431. }
  3432. #u136005 {
  3433. border-width:0px;
  3434. position:absolute;
  3435. left:1245px;
  3436. top:794px;
  3437. width:24px;
  3438. height:24px;
  3439. display:flex;
  3440. font-size:8px;
  3441. }
  3442. #u136005 .text {
  3443. position:absolute;
  3444. align-self:center;
  3445. padding:2px 2px 2px 2px;
  3446. box-sizing:border-box;
  3447. width:100%;
  3448. }
  3449. #u136005_text {
  3450. border-width:0px;
  3451. word-wrap:break-word;
  3452. text-transform:none;
  3453. }
  3454. #u136006_div {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:0px;
  3458. top:0px;
  3459. width:25px;
  3460. height:17px;
  3461. background:inherit;
  3462. background-color:rgba(255, 255, 255, 0);
  3463. border:none;
  3464. border-radius:0px;
  3465. -moz-box-shadow:none;
  3466. -webkit-box-shadow:none;
  3467. box-shadow:none;
  3468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3469. font-weight:400;
  3470. font-style:normal;
  3471. font-size:12px;
  3472. }
  3473. #u136006 {
  3474. border-width:0px;
  3475. position:absolute;
  3476. left:1245px;
  3477. top:819px;
  3478. width:25px;
  3479. height:17px;
  3480. display:flex;
  3481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3482. font-weight:400;
  3483. font-style:normal;
  3484. font-size:12px;
  3485. }
  3486. #u136006 .text {
  3487. position:absolute;
  3488. align-self:flex-start;
  3489. padding:0px 0px 0px 0px;
  3490. box-sizing:border-box;
  3491. width:100%;
  3492. }
  3493. #u136006_text {
  3494. border-width:0px;
  3495. white-space:nowrap;
  3496. text-transform:none;
  3497. }
  3498. #u136007_div {
  3499. border-width:0px;
  3500. position:absolute;
  3501. left:0px;
  3502. top:0px;
  3503. width:375px;
  3504. height:681px;
  3505. background:inherit;
  3506. background-color:rgba(242, 242, 242, 0.462745098039216);
  3507. border:none;
  3508. border-radius:0px;
  3509. -moz-box-shadow:none;
  3510. -webkit-box-shadow:none;
  3511. box-shadow:none;
  3512. }
  3513. #u136007 {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:935px;
  3517. top:107px;
  3518. width:375px;
  3519. height:681px;
  3520. display:flex;
  3521. }
  3522. #u136007 .text {
  3523. position:absolute;
  3524. align-self:center;
  3525. padding:2px 2px 2px 2px;
  3526. box-sizing:border-box;
  3527. width:100%;
  3528. }
  3529. #u136007_text {
  3530. border-width:0px;
  3531. word-wrap:break-word;
  3532. text-transform:none;
  3533. visibility:hidden;
  3534. }
  3535. #u136008 {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:0px;
  3539. top:0px;
  3540. width:0px;
  3541. height:0px;
  3542. }
  3543. #u136009_img {
  3544. border-width:0px;
  3545. position:absolute;
  3546. left:0px;
  3547. top:0px;
  3548. width:24px;
  3549. height:24px;
  3550. }
  3551. #u136009 {
  3552. border-width:0px;
  3553. position:absolute;
  3554. left:1157px;
  3555. top:792px;
  3556. width:24px;
  3557. height:24px;
  3558. display:flex;
  3559. font-size:8px;
  3560. }
  3561. #u136009 .text {
  3562. position:absolute;
  3563. align-self:center;
  3564. padding:2px 2px 2px 2px;
  3565. box-sizing:border-box;
  3566. width:100%;
  3567. }
  3568. #u136009_text {
  3569. border-width:0px;
  3570. word-wrap:break-word;
  3571. text-transform:none;
  3572. }
  3573. #u136010_div {
  3574. border-width:0px;
  3575. position:absolute;
  3576. left:0px;
  3577. top:0px;
  3578. width:37px;
  3579. height:17px;
  3580. background:inherit;
  3581. background-color:rgba(255, 255, 255, 0);
  3582. border:none;
  3583. border-radius:0px;
  3584. -moz-box-shadow:none;
  3585. -webkit-box-shadow:none;
  3586. box-shadow:none;
  3587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3588. font-weight:400;
  3589. font-style:normal;
  3590. font-size:12px;
  3591. }
  3592. #u136010 {
  3593. border-width:0px;
  3594. position:absolute;
  3595. left:1151px;
  3596. top:817px;
  3597. width:37px;
  3598. height:17px;
  3599. display:flex;
  3600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3601. font-weight:400;
  3602. font-style:normal;
  3603. font-size:12px;
  3604. }
  3605. #u136010 .text {
  3606. position:absolute;
  3607. align-self:flex-start;
  3608. padding:0px 0px 0px 0px;
  3609. box-sizing:border-box;
  3610. width:100%;
  3611. }
  3612. #u136010_text {
  3613. border-width:0px;
  3614. white-space:nowrap;
  3615. text-transform:none;
  3616. }
  3617. #u136011 {
  3618. border-width:0px;
  3619. position:absolute;
  3620. left:0px;
  3621. top:0px;
  3622. width:0px;
  3623. height:0px;
  3624. }
  3625. #u136012_img {
  3626. border-width:0px;
  3627. position:absolute;
  3628. left:0px;
  3629. top:0px;
  3630. width:24px;
  3631. height:24px;
  3632. }
  3633. #u136012 {
  3634. border-width:0px;
  3635. position:absolute;
  3636. left:1063px;
  3637. top:792px;
  3638. width:24px;
  3639. height:24px;
  3640. display:flex;
  3641. font-size:8px;
  3642. }
  3643. #u136012 .text {
  3644. position:absolute;
  3645. align-self:center;
  3646. padding:2px 2px 2px 2px;
  3647. box-sizing:border-box;
  3648. width:100%;
  3649. }
  3650. #u136012_text {
  3651. border-width:0px;
  3652. word-wrap:break-word;
  3653. text-transform:none;
  3654. }
  3655. #u136013_div {
  3656. border-width:0px;
  3657. position:absolute;
  3658. left:0px;
  3659. top:0px;
  3660. width:37px;
  3661. height:17px;
  3662. background:inherit;
  3663. background-color:rgba(255, 255, 255, 0);
  3664. border:none;
  3665. border-radius:0px;
  3666. -moz-box-shadow:none;
  3667. -webkit-box-shadow:none;
  3668. box-shadow:none;
  3669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3670. font-weight:400;
  3671. font-style:normal;
  3672. font-size:12px;
  3673. }
  3674. #u136013 {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:1057px;
  3678. top:817px;
  3679. width:37px;
  3680. height:17px;
  3681. display:flex;
  3682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3683. font-weight:400;
  3684. font-style:normal;
  3685. font-size:12px;
  3686. }
  3687. #u136013 .text {
  3688. position:absolute;
  3689. align-self:flex-start;
  3690. padding:0px 0px 0px 0px;
  3691. box-sizing:border-box;
  3692. width:100%;
  3693. }
  3694. #u136013_text {
  3695. border-width:0px;
  3696. white-space:nowrap;
  3697. text-transform:none;
  3698. }
  3699. #u136014_div {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:0px;
  3703. top:0px;
  3704. width:375px;
  3705. height:735px;
  3706. background:inherit;
  3707. background-color:rgba(242, 242, 242, 1);
  3708. border:none;
  3709. border-top:0px;
  3710. border-radius:25px;
  3711. border-top-left-radius:0px;
  3712. border-top-right-radius:0px;
  3713. -moz-box-shadow:none;
  3714. -webkit-box-shadow:none;
  3715. box-shadow:none;
  3716. }
  3717. #u136014 {
  3718. border-width:0px;
  3719. position:absolute;
  3720. left:935px;
  3721. top:105px;
  3722. width:375px;
  3723. height:735px;
  3724. display:flex;
  3725. }
  3726. #u136014 .text {
  3727. position:absolute;
  3728. align-self:center;
  3729. padding:2px 2px 2px 2px;
  3730. box-sizing:border-box;
  3731. width:100%;
  3732. }
  3733. #u136014_text {
  3734. border-width:0px;
  3735. word-wrap:break-word;
  3736. text-transform:none;
  3737. visibility:hidden;
  3738. }
  3739. #u136015_div {
  3740. border-width:0px;
  3741. position:absolute;
  3742. left:0px;
  3743. top:0px;
  3744. width:57px;
  3745. height:30px;
  3746. background:inherit;
  3747. background-color:rgba(255, 255, 255, 0);
  3748. border:none;
  3749. border-left:0px;
  3750. border-top:0px;
  3751. border-right:0px;
  3752. border-radius:0px;
  3753. border-bottom-right-radius:0px;
  3754. border-bottom-left-radius:0px;
  3755. -moz-box-shadow:none;
  3756. -webkit-box-shadow:none;
  3757. box-shadow:none;
  3758. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3759. font-weight:500;
  3760. font-style:normal;
  3761. font-size:14px;
  3762. line-height:30px;
  3763. }
  3764. #u136015 {
  3765. border-width:0px;
  3766. position:absolute;
  3767. left:1095px;
  3768. top:73px;
  3769. width:57px;
  3770. height:30px;
  3771. display:flex;
  3772. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3773. font-weight:500;
  3774. font-style:normal;
  3775. font-size:14px;
  3776. line-height:30px;
  3777. }
  3778. #u136015 .text {
  3779. position:absolute;
  3780. align-self:flex-start;
  3781. padding:0px 0px 0px 0px;
  3782. box-sizing:border-box;
  3783. width:100%;
  3784. }
  3785. #u136015_text {
  3786. border-width:0px;
  3787. white-space:nowrap;
  3788. text-transform:none;
  3789. }
  3790. #u136016 {
  3791. border-width:0px;
  3792. position:absolute;
  3793. left:0px;
  3794. top:0px;
  3795. width:0px;
  3796. height:0px;
  3797. }
  3798. #u136017_img {
  3799. border-width:0px;
  3800. position:absolute;
  3801. left:0px;
  3802. top:0px;
  3803. width:11px;
  3804. height:18px;
  3805. }
  3806. #u136017 {
  3807. border-width:0px;
  3808. position:absolute;
  3809. left:948px;
  3810. top:79px;
  3811. width:11px;
  3812. height:18px;
  3813. display:flex;
  3814. }
  3815. #u136017 .text {
  3816. position:absolute;
  3817. align-self:center;
  3818. padding:2px 2px 2px 2px;
  3819. box-sizing:border-box;
  3820. width:100%;
  3821. }
  3822. #u136017_text {
  3823. border-width:0px;
  3824. word-wrap:break-word;
  3825. text-transform:none;
  3826. visibility:hidden;
  3827. }
  3828. #u136018_div {
  3829. border-width:0px;
  3830. position:absolute;
  3831. left:0px;
  3832. top:0px;
  3833. width:375px;
  3834. height:60px;
  3835. background:inherit;
  3836. background-color:rgba(255, 255, 255, 1);
  3837. border:none;
  3838. border-left:0px;
  3839. border-top:0px;
  3840. border-right:0px;
  3841. border-radius:0px;
  3842. border-bottom-right-radius:0px;
  3843. border-bottom-left-radius:0px;
  3844. -moz-box-shadow:none;
  3845. -webkit-box-shadow:none;
  3846. box-shadow:none;
  3847. }
  3848. #u136018 {
  3849. border-width:0px;
  3850. position:absolute;
  3851. left:935px;
  3852. top:105px;
  3853. width:375px;
  3854. height:60px;
  3855. display:flex;
  3856. }
  3857. #u136018 .text {
  3858. position:absolute;
  3859. align-self:center;
  3860. padding:2px 2px 2px 2px;
  3861. box-sizing:border-box;
  3862. width:100%;
  3863. }
  3864. #u136018_text {
  3865. border-width:0px;
  3866. word-wrap:break-word;
  3867. text-transform:none;
  3868. visibility:hidden;
  3869. }
  3870. #u136019_div {
  3871. border-width:0px;
  3872. position:absolute;
  3873. left:0px;
  3874. top:0px;
  3875. width:339px;
  3876. height:30px;
  3877. background:inherit;
  3878. background-color:rgba(255, 255, 255, 0);
  3879. border:none;
  3880. border-left:0px;
  3881. border-top:0px;
  3882. border-right:0px;
  3883. border-radius:0px;
  3884. border-bottom-right-radius:0px;
  3885. border-bottom-left-radius:0px;
  3886. -moz-box-shadow:none;
  3887. -webkit-box-shadow:none;
  3888. box-shadow:none;
  3889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3890. font-weight:400;
  3891. font-style:normal;
  3892. font-size:12px;
  3893. color:#7F7F7F;
  3894. line-height:30px;
  3895. }
  3896. #u136019 {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:954px;
  3900. top:165px;
  3901. width:339px;
  3902. height:30px;
  3903. display:flex;
  3904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3905. font-weight:400;
  3906. font-style:normal;
  3907. font-size:12px;
  3908. color:#7F7F7F;
  3909. line-height:30px;
  3910. }
  3911. #u136019 .text {
  3912. position:absolute;
  3913. align-self:flex-start;
  3914. padding:0px 0px 0px 0px;
  3915. box-sizing:border-box;
  3916. width:100%;
  3917. }
  3918. #u136019_text {
  3919. border-width:0px;
  3920. word-wrap:break-word;
  3921. text-transform:none;
  3922. }
  3923. #u136020_div {
  3924. border-width:0px;
  3925. position:absolute;
  3926. left:0px;
  3927. top:0px;
  3928. width:339px;
  3929. height:34px;
  3930. background:inherit;
  3931. background-color:rgba(255, 255, 255, 0);
  3932. border:none;
  3933. border-left:0px;
  3934. border-top:0px;
  3935. border-right:0px;
  3936. border-radius:0px;
  3937. border-bottom-right-radius:0px;
  3938. border-bottom-left-radius:0px;
  3939. -moz-box-shadow:none;
  3940. -webkit-box-shadow:none;
  3941. box-shadow:none;
  3942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3943. font-weight:400;
  3944. font-style:normal;
  3945. font-size:12px;
  3946. color:#7F7F7F;
  3947. }
  3948. #u136020 {
  3949. border-width:0px;
  3950. position:absolute;
  3951. left:956px;
  3952. top:118px;
  3953. width:339px;
  3954. height:34px;
  3955. display:flex;
  3956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3957. font-weight:400;
  3958. font-style:normal;
  3959. font-size:12px;
  3960. color:#7F7F7F;
  3961. }
  3962. #u136020 .text {
  3963. position:absolute;
  3964. align-self:flex-start;
  3965. padding:0px 0px 0px 0px;
  3966. box-sizing:border-box;
  3967. width:100%;
  3968. }
  3969. #u136020_text {
  3970. border-width:0px;
  3971. word-wrap:break-word;
  3972. text-transform:none;
  3973. }
  3974. #u136021 {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:0px;
  3978. top:0px;
  3979. width:0px;
  3980. height:0px;
  3981. }
  3982. #u136022_div {
  3983. border-width:0px;
  3984. position:absolute;
  3985. left:0px;
  3986. top:0px;
  3987. width:375px;
  3988. height:60px;
  3989. background:inherit;
  3990. background-color:rgba(255, 255, 255, 1);
  3991. border:none;
  3992. border-left:0px;
  3993. border-top:0px;
  3994. border-right:0px;
  3995. border-radius:0px;
  3996. border-bottom-right-radius:0px;
  3997. border-bottom-left-radius:0px;
  3998. -moz-box-shadow:none;
  3999. -webkit-box-shadow:none;
  4000. box-shadow:none;
  4001. }
  4002. #u136022 {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:29px;
  4006. top:266px;
  4007. width:375px;
  4008. height:60px;
  4009. display:flex;
  4010. }
  4011. #u136022 .text {
  4012. position:absolute;
  4013. align-self:center;
  4014. padding:2px 2px 2px 2px;
  4015. box-sizing:border-box;
  4016. width:100%;
  4017. }
  4018. #u136022_text {
  4019. border-width:0px;
  4020. word-wrap:break-word;
  4021. text-transform:none;
  4022. visibility:hidden;
  4023. }
  4024. #u136023_div {
  4025. border-width:0px;
  4026. position:absolute;
  4027. left:0px;
  4028. top:0px;
  4029. width:73px;
  4030. height:30px;
  4031. background:inherit;
  4032. background-color:rgba(255, 255, 255, 0);
  4033. border:none;
  4034. border-left:0px;
  4035. border-top:0px;
  4036. border-right:0px;
  4037. border-radius:0px;
  4038. border-bottom-right-radius:0px;
  4039. border-bottom-left-radius:0px;
  4040. -moz-box-shadow:none;
  4041. -webkit-box-shadow:none;
  4042. box-shadow:none;
  4043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4044. font-weight:400;
  4045. font-style:normal;
  4046. font-size:18px;
  4047. line-height:30px;
  4048. }
  4049. #u136023 {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:70px;
  4053. top:281px;
  4054. width:73px;
  4055. height:30px;
  4056. display:flex;
  4057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4058. font-weight:400;
  4059. font-style:normal;
  4060. font-size:18px;
  4061. line-height:30px;
  4062. }
  4063. #u136023 .text {
  4064. position:absolute;
  4065. align-self:flex-start;
  4066. padding:0px 0px 0px 0px;
  4067. box-sizing:border-box;
  4068. width:100%;
  4069. }
  4070. #u136023_text {
  4071. border-width:0px;
  4072. white-space:nowrap;
  4073. text-transform:none;
  4074. }
  4075. #u136024 {
  4076. border-width:0px;
  4077. position:absolute;
  4078. left:0px;
  4079. top:0px;
  4080. width:0px;
  4081. height:0px;
  4082. }
  4083. #u136025_img {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:0px;
  4087. top:0px;
  4088. width:8px;
  4089. height:13px;
  4090. }
  4091. #u136025 {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:376px;
  4095. top:290px;
  4096. width:8px;
  4097. height:13px;
  4098. display:flex;
  4099. -webkit-transform:rotate(180deg);
  4100. -moz-transform:rotate(180deg);
  4101. -ms-transform:rotate(180deg);
  4102. transform:rotate(180deg);
  4103. }
  4104. #u136025 .text {
  4105. position:absolute;
  4106. align-self:center;
  4107. padding:2px 2px 2px 2px;
  4108. box-sizing:border-box;
  4109. width:100%;
  4110. }
  4111. #u136025_text {
  4112. border-width:0px;
  4113. word-wrap:break-word;
  4114. text-transform:none;
  4115. visibility:hidden;
  4116. }
  4117. #u136026 {
  4118. border-width:0px;
  4119. position:absolute;
  4120. left:0px;
  4121. top:0px;
  4122. width:0px;
  4123. height:0px;
  4124. }
  4125. #u136027_div {
  4126. border-width:0px;
  4127. position:absolute;
  4128. left:0px;
  4129. top:0px;
  4130. width:375px;
  4131. height:60px;
  4132. background:inherit;
  4133. background-color:rgba(255, 255, 255, 1);
  4134. border:none;
  4135. border-left:0px;
  4136. border-top:0px;
  4137. border-right:0px;
  4138. border-radius:0px;
  4139. border-bottom-right-radius:0px;
  4140. border-bottom-left-radius:0px;
  4141. -moz-box-shadow:none;
  4142. -webkit-box-shadow:none;
  4143. box-shadow:none;
  4144. }
  4145. #u136027 {
  4146. border-width:0px;
  4147. position:absolute;
  4148. left:29px;
  4149. top:327px;
  4150. width:375px;
  4151. height:60px;
  4152. display:flex;
  4153. }
  4154. #u136027 .text {
  4155. position:absolute;
  4156. align-self:center;
  4157. padding:2px 2px 2px 2px;
  4158. box-sizing:border-box;
  4159. width:100%;
  4160. }
  4161. #u136027_text {
  4162. border-width:0px;
  4163. word-wrap:break-word;
  4164. text-transform:none;
  4165. visibility:hidden;
  4166. }
  4167. #u136028_div {
  4168. border-width:0px;
  4169. position:absolute;
  4170. left:0px;
  4171. top:0px;
  4172. width:37px;
  4173. height:30px;
  4174. background:inherit;
  4175. background-color:rgba(255, 255, 255, 0);
  4176. border:none;
  4177. border-left:0px;
  4178. border-top:0px;
  4179. border-right:0px;
  4180. border-radius:0px;
  4181. border-bottom-right-radius:0px;
  4182. border-bottom-left-radius:0px;
  4183. -moz-box-shadow:none;
  4184. -webkit-box-shadow:none;
  4185. box-shadow:none;
  4186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4187. font-weight:400;
  4188. font-style:normal;
  4189. font-size:18px;
  4190. line-height:30px;
  4191. }
  4192. #u136028 {
  4193. border-width:0px;
  4194. position:absolute;
  4195. left:70px;
  4196. top:342px;
  4197. width:37px;
  4198. height:30px;
  4199. display:flex;
  4200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4201. font-weight:400;
  4202. font-style:normal;
  4203. font-size:18px;
  4204. line-height:30px;
  4205. }
  4206. #u136028 .text {
  4207. position:absolute;
  4208. align-self:flex-start;
  4209. padding:0px 0px 0px 0px;
  4210. box-sizing:border-box;
  4211. width:100%;
  4212. }
  4213. #u136028_text {
  4214. border-width:0px;
  4215. white-space:nowrap;
  4216. text-transform:none;
  4217. }
  4218. #u136029 {
  4219. border-width:0px;
  4220. position:absolute;
  4221. left:0px;
  4222. top:0px;
  4223. width:0px;
  4224. height:0px;
  4225. }
  4226. #u136030_img {
  4227. border-width:0px;
  4228. position:absolute;
  4229. left:0px;
  4230. top:0px;
  4231. width:8px;
  4232. height:13px;
  4233. }
  4234. #u136030 {
  4235. border-width:0px;
  4236. position:absolute;
  4237. left:376px;
  4238. top:351px;
  4239. width:8px;
  4240. height:13px;
  4241. display:flex;
  4242. -webkit-transform:rotate(180deg);
  4243. -moz-transform:rotate(180deg);
  4244. -ms-transform:rotate(180deg);
  4245. transform:rotate(180deg);
  4246. }
  4247. #u136030 .text {
  4248. position:absolute;
  4249. align-self:center;
  4250. padding:2px 2px 2px 2px;
  4251. box-sizing:border-box;
  4252. width:100%;
  4253. }
  4254. #u136030_text {
  4255. border-width:0px;
  4256. word-wrap:break-word;
  4257. text-transform:none;
  4258. visibility:hidden;
  4259. }
  4260. #u136031 {
  4261. border-width:0px;
  4262. position:absolute;
  4263. left:0px;
  4264. top:0px;
  4265. width:0px;
  4266. height:0px;
  4267. }
  4268. #u136032_div {
  4269. border-width:0px;
  4270. position:absolute;
  4271. left:0px;
  4272. top:0px;
  4273. width:375px;
  4274. height:60px;
  4275. background:inherit;
  4276. background-color:rgba(255, 255, 255, 1);
  4277. border:none;
  4278. border-left:0px;
  4279. border-top:0px;
  4280. border-right:0px;
  4281. border-radius:0px;
  4282. border-bottom-right-radius:0px;
  4283. border-bottom-left-radius:0px;
  4284. -moz-box-shadow:none;
  4285. -webkit-box-shadow:none;
  4286. box-shadow:none;
  4287. }
  4288. #u136032 {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:482px;
  4292. top:337px;
  4293. width:375px;
  4294. height:60px;
  4295. display:flex;
  4296. }
  4297. #u136032 .text {
  4298. position:absolute;
  4299. align-self:center;
  4300. padding:2px 2px 2px 2px;
  4301. box-sizing:border-box;
  4302. width:100%;
  4303. }
  4304. #u136032_text {
  4305. border-width:0px;
  4306. word-wrap:break-word;
  4307. text-transform:none;
  4308. visibility:hidden;
  4309. }
  4310. #u136033_div {
  4311. border-width:0px;
  4312. position:absolute;
  4313. left:0px;
  4314. top:0px;
  4315. width:37px;
  4316. height:30px;
  4317. background:inherit;
  4318. background-color:rgba(255, 255, 255, 0);
  4319. border:none;
  4320. border-left:0px;
  4321. border-top:0px;
  4322. border-right:0px;
  4323. border-radius:0px;
  4324. border-bottom-right-radius:0px;
  4325. border-bottom-left-radius:0px;
  4326. -moz-box-shadow:none;
  4327. -webkit-box-shadow:none;
  4328. box-shadow:none;
  4329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4330. font-weight:400;
  4331. font-style:normal;
  4332. font-size:18px;
  4333. line-height:30px;
  4334. }
  4335. #u136033 {
  4336. border-width:0px;
  4337. position:absolute;
  4338. left:523px;
  4339. top:352px;
  4340. width:37px;
  4341. height:30px;
  4342. display:flex;
  4343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4344. font-weight:400;
  4345. font-style:normal;
  4346. font-size:18px;
  4347. line-height:30px;
  4348. }
  4349. #u136033 .text {
  4350. position:absolute;
  4351. align-self:flex-start;
  4352. padding:0px 0px 0px 0px;
  4353. box-sizing:border-box;
  4354. width:100%;
  4355. }
  4356. #u136033_text {
  4357. border-width:0px;
  4358. white-space:nowrap;
  4359. text-transform:none;
  4360. }
  4361. #u136034 {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:0px;
  4365. top:0px;
  4366. width:0px;
  4367. height:0px;
  4368. }
  4369. #u136035_img {
  4370. border-width:0px;
  4371. position:absolute;
  4372. left:0px;
  4373. top:0px;
  4374. width:8px;
  4375. height:13px;
  4376. }
  4377. #u136035 {
  4378. border-width:0px;
  4379. position:absolute;
  4380. left:829px;
  4381. top:361px;
  4382. width:8px;
  4383. height:13px;
  4384. display:flex;
  4385. -webkit-transform:rotate(180deg);
  4386. -moz-transform:rotate(180deg);
  4387. -ms-transform:rotate(180deg);
  4388. transform:rotate(180deg);
  4389. }
  4390. #u136035 .text {
  4391. position:absolute;
  4392. align-self:center;
  4393. padding:2px 2px 2px 2px;
  4394. box-sizing:border-box;
  4395. width:100%;
  4396. }
  4397. #u136035_text {
  4398. border-width:0px;
  4399. word-wrap:break-word;
  4400. text-transform:none;
  4401. visibility:hidden;
  4402. }
  4403. #u136036 {
  4404. border-width:0px;
  4405. position:absolute;
  4406. left:0px;
  4407. top:0px;
  4408. width:0px;
  4409. height:0px;
  4410. }
  4411. #u136037_div {
  4412. border-width:0px;
  4413. position:absolute;
  4414. left:0px;
  4415. top:0px;
  4416. width:375px;
  4417. height:60px;
  4418. background:inherit;
  4419. background-color:rgba(255, 255, 255, 1);
  4420. border:none;
  4421. border-left:0px;
  4422. border-top:0px;
  4423. border-right:0px;
  4424. border-radius:0px;
  4425. border-bottom-right-radius:0px;
  4426. border-bottom-left-radius:0px;
  4427. -moz-box-shadow:none;
  4428. -webkit-box-shadow:none;
  4429. box-shadow:none;
  4430. }
  4431. #u136037 {
  4432. border-width:0px;
  4433. position:absolute;
  4434. left:482px;
  4435. top:398px;
  4436. width:375px;
  4437. height:60px;
  4438. display:flex;
  4439. }
  4440. #u136037 .text {
  4441. position:absolute;
  4442. align-self:center;
  4443. padding:2px 2px 2px 2px;
  4444. box-sizing:border-box;
  4445. width:100%;
  4446. }
  4447. #u136037_text {
  4448. border-width:0px;
  4449. word-wrap:break-word;
  4450. text-transform:none;
  4451. visibility:hidden;
  4452. }
  4453. #u136038_div {
  4454. border-width:0px;
  4455. position:absolute;
  4456. left:0px;
  4457. top:0px;
  4458. width:37px;
  4459. height:30px;
  4460. background:inherit;
  4461. background-color:rgba(255, 255, 255, 0);
  4462. border:none;
  4463. border-left:0px;
  4464. border-top:0px;
  4465. border-right:0px;
  4466. border-radius:0px;
  4467. border-bottom-right-radius:0px;
  4468. border-bottom-left-radius:0px;
  4469. -moz-box-shadow:none;
  4470. -webkit-box-shadow:none;
  4471. box-shadow:none;
  4472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4473. font-weight:400;
  4474. font-style:normal;
  4475. font-size:18px;
  4476. line-height:30px;
  4477. }
  4478. #u136038 {
  4479. border-width:0px;
  4480. position:absolute;
  4481. left:523px;
  4482. top:413px;
  4483. width:37px;
  4484. height:30px;
  4485. display:flex;
  4486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4487. font-weight:400;
  4488. font-style:normal;
  4489. font-size:18px;
  4490. line-height:30px;
  4491. }
  4492. #u136038 .text {
  4493. position:absolute;
  4494. align-self:flex-start;
  4495. padding:0px 0px 0px 0px;
  4496. box-sizing:border-box;
  4497. width:100%;
  4498. }
  4499. #u136038_text {
  4500. border-width:0px;
  4501. white-space:nowrap;
  4502. text-transform:none;
  4503. }
  4504. #u136039 {
  4505. border-width:0px;
  4506. position:absolute;
  4507. left:0px;
  4508. top:0px;
  4509. width:0px;
  4510. height:0px;
  4511. }
  4512. #u136040_img {
  4513. border-width:0px;
  4514. position:absolute;
  4515. left:0px;
  4516. top:0px;
  4517. width:8px;
  4518. height:13px;
  4519. }
  4520. #u136040 {
  4521. border-width:0px;
  4522. position:absolute;
  4523. left:829px;
  4524. top:422px;
  4525. width:8px;
  4526. height:13px;
  4527. display:flex;
  4528. -webkit-transform:rotate(180deg);
  4529. -moz-transform:rotate(180deg);
  4530. -ms-transform:rotate(180deg);
  4531. transform:rotate(180deg);
  4532. }
  4533. #u136040 .text {
  4534. position:absolute;
  4535. align-self:center;
  4536. padding:2px 2px 2px 2px;
  4537. box-sizing:border-box;
  4538. width:100%;
  4539. }
  4540. #u136040_text {
  4541. border-width:0px;
  4542. word-wrap:break-word;
  4543. text-transform:none;
  4544. visibility:hidden;
  4545. }
  4546. #u136041 {
  4547. border-width:0px;
  4548. position:absolute;
  4549. left:0px;
  4550. top:0px;
  4551. width:0px;
  4552. height:0px;
  4553. }
  4554. #u136042_div {
  4555. border-width:0px;
  4556. position:absolute;
  4557. left:0px;
  4558. top:0px;
  4559. width:375px;
  4560. height:60px;
  4561. background:inherit;
  4562. background-color:rgba(255, 255, 255, 1);
  4563. border:none;
  4564. border-left:0px;
  4565. border-top:0px;
  4566. border-right:0px;
  4567. border-radius:0px;
  4568. border-bottom-right-radius:0px;
  4569. border-bottom-left-radius:0px;
  4570. -moz-box-shadow:none;
  4571. -webkit-box-shadow:none;
  4572. box-shadow:none;
  4573. }
  4574. #u136042 {
  4575. border-width:0px;
  4576. position:absolute;
  4577. left:482px;
  4578. top:459px;
  4579. width:375px;
  4580. height:60px;
  4581. display:flex;
  4582. }
  4583. #u136042 .text {
  4584. position:absolute;
  4585. align-self:center;
  4586. padding:2px 2px 2px 2px;
  4587. box-sizing:border-box;
  4588. width:100%;
  4589. }
  4590. #u136042_text {
  4591. border-width:0px;
  4592. word-wrap:break-word;
  4593. text-transform:none;
  4594. visibility:hidden;
  4595. }
  4596. #u136043_div {
  4597. border-width:0px;
  4598. position:absolute;
  4599. left:0px;
  4600. top:0px;
  4601. width:37px;
  4602. height:30px;
  4603. background:inherit;
  4604. background-color:rgba(255, 255, 255, 0);
  4605. border:none;
  4606. border-left:0px;
  4607. border-top:0px;
  4608. border-right:0px;
  4609. border-radius:0px;
  4610. border-bottom-right-radius:0px;
  4611. border-bottom-left-radius:0px;
  4612. -moz-box-shadow:none;
  4613. -webkit-box-shadow:none;
  4614. box-shadow:none;
  4615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4616. font-weight:400;
  4617. font-style:normal;
  4618. font-size:18px;
  4619. line-height:30px;
  4620. }
  4621. #u136043 {
  4622. border-width:0px;
  4623. position:absolute;
  4624. left:523px;
  4625. top:474px;
  4626. width:37px;
  4627. height:30px;
  4628. display:flex;
  4629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4630. font-weight:400;
  4631. font-style:normal;
  4632. font-size:18px;
  4633. line-height:30px;
  4634. }
  4635. #u136043 .text {
  4636. position:absolute;
  4637. align-self:flex-start;
  4638. padding:0px 0px 0px 0px;
  4639. box-sizing:border-box;
  4640. width:100%;
  4641. }
  4642. #u136043_text {
  4643. border-width:0px;
  4644. white-space:nowrap;
  4645. text-transform:none;
  4646. }
  4647. #u136044 {
  4648. border-width:0px;
  4649. position:absolute;
  4650. left:0px;
  4651. top:0px;
  4652. width:0px;
  4653. height:0px;
  4654. }
  4655. #u136045_img {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:0px;
  4659. top:0px;
  4660. width:8px;
  4661. height:13px;
  4662. }
  4663. #u136045 {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:829px;
  4667. top:483px;
  4668. width:8px;
  4669. height:13px;
  4670. display:flex;
  4671. -webkit-transform:rotate(180deg);
  4672. -moz-transform:rotate(180deg);
  4673. -ms-transform:rotate(180deg);
  4674. transform:rotate(180deg);
  4675. }
  4676. #u136045 .text {
  4677. position:absolute;
  4678. align-self:center;
  4679. padding:2px 2px 2px 2px;
  4680. box-sizing:border-box;
  4681. width:100%;
  4682. }
  4683. #u136045_text {
  4684. border-width:0px;
  4685. word-wrap:break-word;
  4686. text-transform:none;
  4687. visibility:hidden;
  4688. }
  4689. #u136046 {
  4690. border-width:0px;
  4691. position:absolute;
  4692. left:0px;
  4693. top:0px;
  4694. width:0px;
  4695. height:0px;
  4696. }
  4697. #u136047_div {
  4698. border-width:0px;
  4699. position:absolute;
  4700. left:0px;
  4701. top:0px;
  4702. width:375px;
  4703. height:70px;
  4704. background:inherit;
  4705. background-color:rgba(255, 255, 255, 1);
  4706. border:none;
  4707. border-left:0px;
  4708. border-top:0px;
  4709. border-right:0px;
  4710. border-radius:0px;
  4711. border-bottom-right-radius:0px;
  4712. border-bottom-left-radius:0px;
  4713. -moz-box-shadow:none;
  4714. -webkit-box-shadow:none;
  4715. box-shadow:none;
  4716. }
  4717. #u136047 {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:482px;
  4721. top:520px;
  4722. width:375px;
  4723. height:70px;
  4724. display:flex;
  4725. }
  4726. #u136047 .text {
  4727. position:absolute;
  4728. align-self:center;
  4729. padding:2px 2px 2px 2px;
  4730. box-sizing:border-box;
  4731. width:100%;
  4732. }
  4733. #u136047_text {
  4734. border-width:0px;
  4735. word-wrap:break-word;
  4736. text-transform:none;
  4737. visibility:hidden;
  4738. }
  4739. #u136048_div {
  4740. border-width:0px;
  4741. position:absolute;
  4742. left:0px;
  4743. top:0px;
  4744. width:37px;
  4745. height:30px;
  4746. background:inherit;
  4747. background-color:rgba(255, 255, 255, 0);
  4748. border:none;
  4749. border-left:0px;
  4750. border-top:0px;
  4751. border-right:0px;
  4752. border-radius:0px;
  4753. border-bottom-right-radius:0px;
  4754. border-bottom-left-radius:0px;
  4755. -moz-box-shadow:none;
  4756. -webkit-box-shadow:none;
  4757. box-shadow:none;
  4758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4759. font-weight:400;
  4760. font-style:normal;
  4761. font-size:18px;
  4762. line-height:30px;
  4763. }
  4764. #u136048 {
  4765. border-width:0px;
  4766. position:absolute;
  4767. left:503px;
  4768. top:530px;
  4769. width:37px;
  4770. height:30px;
  4771. display:flex;
  4772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4773. font-weight:400;
  4774. font-style:normal;
  4775. font-size:18px;
  4776. line-height:30px;
  4777. }
  4778. #u136048 .text {
  4779. position:absolute;
  4780. align-self:flex-start;
  4781. padding:0px 0px 0px 0px;
  4782. box-sizing:border-box;
  4783. width:100%;
  4784. }
  4785. #u136048_text {
  4786. border-width:0px;
  4787. white-space:nowrap;
  4788. text-transform:none;
  4789. }
  4790. #u136049 {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:0px;
  4794. top:0px;
  4795. width:0px;
  4796. height:0px;
  4797. }
  4798. #u136050_img {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:0px;
  4802. top:0px;
  4803. width:8px;
  4804. height:13px;
  4805. }
  4806. #u136050 {
  4807. border-width:0px;
  4808. position:absolute;
  4809. left:829px;
  4810. top:544px;
  4811. width:8px;
  4812. height:13px;
  4813. display:flex;
  4814. -webkit-transform:rotate(180deg);
  4815. -moz-transform:rotate(180deg);
  4816. -ms-transform:rotate(180deg);
  4817. transform:rotate(180deg);
  4818. }
  4819. #u136050 .text {
  4820. position:absolute;
  4821. align-self:center;
  4822. padding:2px 2px 2px 2px;
  4823. box-sizing:border-box;
  4824. width:100%;
  4825. }
  4826. #u136050_text {
  4827. border-width:0px;
  4828. word-wrap:break-word;
  4829. text-transform:none;
  4830. visibility:hidden;
  4831. }
  4832. #u136051_div {
  4833. border-width:0px;
  4834. position:absolute;
  4835. left:0px;
  4836. top:0px;
  4837. width:80px;
  4838. height:17px;
  4839. background:inherit;
  4840. background-color:rgba(255, 255, 255, 0);
  4841. border:none;
  4842. border-radius:0px;
  4843. -moz-box-shadow:none;
  4844. -webkit-box-shadow:none;
  4845. box-shadow:none;
  4846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4847. font-weight:400;
  4848. font-style:normal;
  4849. font-size:12px;
  4850. color:#AAAAAA;
  4851. }
  4852. #u136051 {
  4853. border-width:0px;
  4854. position:absolute;
  4855. left:503px;
  4856. top:565px;
  4857. width:80px;
  4858. height:17px;
  4859. display:flex;
  4860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4861. font-weight:400;
  4862. font-style:normal;
  4863. font-size:12px;
  4864. color:#AAAAAA;
  4865. }
  4866. #u136051 .text {
  4867. position:absolute;
  4868. align-self:flex-start;
  4869. padding:0px 0px 0px 0px;
  4870. box-sizing:border-box;
  4871. width:100%;
  4872. }
  4873. #u136051_text {
  4874. border-width:0px;
  4875. white-space:nowrap;
  4876. text-transform:none;
  4877. }
  4878. #u136052 {
  4879. border-width:0px;
  4880. position:absolute;
  4881. left:0px;
  4882. top:0px;
  4883. width:0px;
  4884. height:0px;
  4885. }
  4886. #u136053_div {
  4887. border-width:0px;
  4888. position:absolute;
  4889. left:0px;
  4890. top:0px;
  4891. width:375px;
  4892. height:70px;
  4893. background:inherit;
  4894. background-color:rgba(255, 255, 255, 1);
  4895. border:none;
  4896. border-left:0px;
  4897. border-top:0px;
  4898. border-right:0px;
  4899. border-radius:0px;
  4900. border-bottom-right-radius:0px;
  4901. border-bottom-left-radius:0px;
  4902. -moz-box-shadow:none;
  4903. -webkit-box-shadow:none;
  4904. box-shadow:none;
  4905. }
  4906. #u136053 {
  4907. border-width:0px;
  4908. position:absolute;
  4909. left:482px;
  4910. top:195px;
  4911. width:375px;
  4912. height:70px;
  4913. display:flex;
  4914. }
  4915. #u136053 .text {
  4916. position:absolute;
  4917. align-self:center;
  4918. padding:2px 2px 2px 2px;
  4919. box-sizing:border-box;
  4920. width:100%;
  4921. }
  4922. #u136053_text {
  4923. border-width:0px;
  4924. word-wrap:break-word;
  4925. text-transform:none;
  4926. visibility:hidden;
  4927. }
  4928. #u136054_div {
  4929. border-width:0px;
  4930. position:absolute;
  4931. left:0px;
  4932. top:0px;
  4933. width:37px;
  4934. height:30px;
  4935. background:inherit;
  4936. background-color:rgba(255, 255, 255, 0);
  4937. border:none;
  4938. border-left:0px;
  4939. border-top:0px;
  4940. border-right:0px;
  4941. border-radius:0px;
  4942. border-bottom-right-radius:0px;
  4943. border-bottom-left-radius:0px;
  4944. -moz-box-shadow:none;
  4945. -webkit-box-shadow:none;
  4946. box-shadow:none;
  4947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4948. font-weight:400;
  4949. font-style:normal;
  4950. font-size:18px;
  4951. line-height:30px;
  4952. }
  4953. #u136054 {
  4954. border-width:0px;
  4955. position:absolute;
  4956. left:503px;
  4957. top:205px;
  4958. width:37px;
  4959. height:30px;
  4960. display:flex;
  4961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4962. font-weight:400;
  4963. font-style:normal;
  4964. font-size:18px;
  4965. line-height:30px;
  4966. }
  4967. #u136054 .text {
  4968. position:absolute;
  4969. align-self:flex-start;
  4970. padding:0px 0px 0px 0px;
  4971. box-sizing:border-box;
  4972. width:100%;
  4973. }
  4974. #u136054_text {
  4975. border-width:0px;
  4976. white-space:nowrap;
  4977. text-transform:none;
  4978. }
  4979. #u136055 {
  4980. border-width:0px;
  4981. position:absolute;
  4982. left:0px;
  4983. top:0px;
  4984. width:0px;
  4985. height:0px;
  4986. }
  4987. #u136056_img {
  4988. border-width:0px;
  4989. position:absolute;
  4990. left:0px;
  4991. top:0px;
  4992. width:8px;
  4993. height:13px;
  4994. }
  4995. #u136056 {
  4996. border-width:0px;
  4997. position:absolute;
  4998. left:829px;
  4999. top:219px;
  5000. width:8px;
  5001. height:13px;
  5002. display:flex;
  5003. -webkit-transform:rotate(270deg);
  5004. -moz-transform:rotate(270deg);
  5005. -ms-transform:rotate(270deg);
  5006. transform:rotate(270deg);
  5007. }
  5008. #u136056 .text {
  5009. position:absolute;
  5010. align-self:center;
  5011. padding:2px 2px 2px 2px;
  5012. box-sizing:border-box;
  5013. width:100%;
  5014. }
  5015. #u136056_text {
  5016. border-width:0px;
  5017. word-wrap:break-word;
  5018. text-transform:none;
  5019. visibility:hidden;
  5020. }
  5021. #u136057_div {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:0px;
  5025. top:0px;
  5026. width:339px;
  5027. height:17px;
  5028. background:inherit;
  5029. background-color:rgba(255, 255, 255, 0);
  5030. border:none;
  5031. border-left:0px;
  5032. border-top:0px;
  5033. border-right:0px;
  5034. border-radius:0px;
  5035. border-bottom-right-radius:0px;
  5036. border-bottom-left-radius:0px;
  5037. -moz-box-shadow:none;
  5038. -webkit-box-shadow:none;
  5039. box-shadow:none;
  5040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5041. font-weight:400;
  5042. font-style:normal;
  5043. font-size:12px;
  5044. color:#AAAAAA;
  5045. }
  5046. #u136057 {
  5047. border-width:0px;
  5048. position:absolute;
  5049. left:503px;
  5050. top:240px;
  5051. width:339px;
  5052. height:17px;
  5053. display:flex;
  5054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5055. font-weight:400;
  5056. font-style:normal;
  5057. font-size:12px;
  5058. color:#AAAAAA;
  5059. }
  5060. #u136057 .text {
  5061. position:absolute;
  5062. align-self:flex-start;
  5063. padding:0px 0px 0px 0px;
  5064. box-sizing:border-box;
  5065. width:100%;
  5066. }
  5067. #u136057_text {
  5068. border-width:0px;
  5069. word-wrap:break-word;
  5070. text-transform:none;
  5071. }
  5072. #u136058 {
  5073. border-width:0px;
  5074. position:absolute;
  5075. left:0px;
  5076. top:0px;
  5077. width:0px;
  5078. height:0px;
  5079. }
  5080. #u136059_div {
  5081. border-width:0px;
  5082. position:absolute;
  5083. left:0px;
  5084. top:0px;
  5085. width:375px;
  5086. height:70px;
  5087. background:inherit;
  5088. background-color:rgba(255, 255, 255, 1);
  5089. border:none;
  5090. border-left:0px;
  5091. border-top:0px;
  5092. border-right:0px;
  5093. border-radius:0px;
  5094. border-bottom-right-radius:0px;
  5095. border-bottom-left-radius:0px;
  5096. -moz-box-shadow:none;
  5097. -webkit-box-shadow:none;
  5098. box-shadow:none;
  5099. }
  5100. #u136059 {
  5101. border-width:0px;
  5102. position:absolute;
  5103. left:482px;
  5104. top:266px;
  5105. width:375px;
  5106. height:70px;
  5107. display:flex;
  5108. }
  5109. #u136059 .text {
  5110. position:absolute;
  5111. align-self:center;
  5112. padding:2px 2px 2px 2px;
  5113. box-sizing:border-box;
  5114. width:100%;
  5115. }
  5116. #u136059_text {
  5117. border-width:0px;
  5118. word-wrap:break-word;
  5119. text-transform:none;
  5120. visibility:hidden;
  5121. }
  5122. #u136060_div {
  5123. border-width:0px;
  5124. position:absolute;
  5125. left:0px;
  5126. top:0px;
  5127. width:37px;
  5128. height:30px;
  5129. background:inherit;
  5130. background-color:rgba(255, 255, 255, 0);
  5131. border:none;
  5132. border-left:0px;
  5133. border-top:0px;
  5134. border-right:0px;
  5135. border-radius:0px;
  5136. border-bottom-right-radius:0px;
  5137. border-bottom-left-radius:0px;
  5138. -moz-box-shadow:none;
  5139. -webkit-box-shadow:none;
  5140. box-shadow:none;
  5141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5142. font-weight:400;
  5143. font-style:normal;
  5144. font-size:18px;
  5145. line-height:30px;
  5146. }
  5147. #u136060 {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:503px;
  5151. top:276px;
  5152. width:37px;
  5153. height:30px;
  5154. display:flex;
  5155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5156. font-weight:400;
  5157. font-style:normal;
  5158. font-size:18px;
  5159. line-height:30px;
  5160. }
  5161. #u136060 .text {
  5162. position:absolute;
  5163. align-self:flex-start;
  5164. padding:0px 0px 0px 0px;
  5165. box-sizing:border-box;
  5166. width:100%;
  5167. }
  5168. #u136060_text {
  5169. border-width:0px;
  5170. white-space:nowrap;
  5171. text-transform:none;
  5172. }
  5173. #u136061 {
  5174. border-width:0px;
  5175. position:absolute;
  5176. left:0px;
  5177. top:0px;
  5178. width:0px;
  5179. height:0px;
  5180. }
  5181. #u136062_img {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:0px;
  5185. top:0px;
  5186. width:8px;
  5187. height:13px;
  5188. }
  5189. #u136062 {
  5190. border-width:0px;
  5191. position:absolute;
  5192. left:829px;
  5193. top:290px;
  5194. width:8px;
  5195. height:13px;
  5196. display:flex;
  5197. -webkit-transform:rotate(180deg);
  5198. -moz-transform:rotate(180deg);
  5199. -ms-transform:rotate(180deg);
  5200. transform:rotate(180deg);
  5201. }
  5202. #u136062 .text {
  5203. position:absolute;
  5204. align-self:center;
  5205. padding:2px 2px 2px 2px;
  5206. box-sizing:border-box;
  5207. width:100%;
  5208. }
  5209. #u136062_text {
  5210. border-width:0px;
  5211. word-wrap:break-word;
  5212. text-transform:none;
  5213. visibility:hidden;
  5214. }
  5215. #u136063_div {
  5216. border-width:0px;
  5217. position:absolute;
  5218. left:0px;
  5219. top:0px;
  5220. width:339px;
  5221. height:17px;
  5222. background:inherit;
  5223. background-color:rgba(255, 255, 255, 0);
  5224. border:none;
  5225. border-left:0px;
  5226. border-top:0px;
  5227. border-right:0px;
  5228. border-radius:0px;
  5229. border-bottom-right-radius:0px;
  5230. border-bottom-left-radius:0px;
  5231. -moz-box-shadow:none;
  5232. -webkit-box-shadow:none;
  5233. box-shadow:none;
  5234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5235. font-weight:400;
  5236. font-style:normal;
  5237. font-size:12px;
  5238. color:#AAAAAA;
  5239. }
  5240. #u136063 {
  5241. border-width:0px;
  5242. position:absolute;
  5243. left:503px;
  5244. top:311px;
  5245. width:339px;
  5246. height:17px;
  5247. display:flex;
  5248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5249. font-weight:400;
  5250. font-style:normal;
  5251. font-size:12px;
  5252. color:#AAAAAA;
  5253. }
  5254. #u136063 .text {
  5255. position:absolute;
  5256. align-self:flex-start;
  5257. padding:0px 0px 0px 0px;
  5258. box-sizing:border-box;
  5259. width:100%;
  5260. }
  5261. #u136063_text {
  5262. border-width:0px;
  5263. word-wrap:break-word;
  5264. text-transform:none;
  5265. }
  5266. #u136064 {
  5267. border-width:0px;
  5268. position:absolute;
  5269. left:0px;
  5270. top:0px;
  5271. width:0px;
  5272. height:0px;
  5273. }
  5274. #u136065_div {
  5275. border-width:0px;
  5276. position:absolute;
  5277. left:0px;
  5278. top:0px;
  5279. width:375px;
  5280. height:70px;
  5281. background:inherit;
  5282. background-color:rgba(255, 255, 255, 1);
  5283. border:none;
  5284. border-left:0px;
  5285. border-top:0px;
  5286. border-right:0px;
  5287. border-radius:0px;
  5288. border-bottom-right-radius:0px;
  5289. border-bottom-left-radius:0px;
  5290. -moz-box-shadow:none;
  5291. -webkit-box-shadow:none;
  5292. box-shadow:none;
  5293. }
  5294. #u136065 {
  5295. border-width:0px;
  5296. position:absolute;
  5297. left:935px;
  5298. top:195px;
  5299. width:375px;
  5300. height:70px;
  5301. display:flex;
  5302. }
  5303. #u136065 .text {
  5304. position:absolute;
  5305. align-self:center;
  5306. padding:2px 2px 2px 2px;
  5307. box-sizing:border-box;
  5308. width:100%;
  5309. }
  5310. #u136065_text {
  5311. border-width:0px;
  5312. word-wrap:break-word;
  5313. text-transform:none;
  5314. visibility:hidden;
  5315. }
  5316. #u136066_div {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:0px;
  5320. top:0px;
  5321. width:37px;
  5322. height:30px;
  5323. background:inherit;
  5324. background-color:rgba(255, 255, 255, 0);
  5325. border:none;
  5326. border-left:0px;
  5327. border-top:0px;
  5328. border-right:0px;
  5329. border-radius:0px;
  5330. border-bottom-right-radius:0px;
  5331. border-bottom-left-radius:0px;
  5332. -moz-box-shadow:none;
  5333. -webkit-box-shadow:none;
  5334. box-shadow:none;
  5335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5336. font-weight:400;
  5337. font-style:normal;
  5338. font-size:18px;
  5339. line-height:30px;
  5340. }
  5341. #u136066 {
  5342. border-width:0px;
  5343. position:absolute;
  5344. left:956px;
  5345. top:205px;
  5346. width:37px;
  5347. height:30px;
  5348. display:flex;
  5349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5350. font-weight:400;
  5351. font-style:normal;
  5352. font-size:18px;
  5353. line-height:30px;
  5354. }
  5355. #u136066 .text {
  5356. position:absolute;
  5357. align-self:flex-start;
  5358. padding:0px 0px 0px 0px;
  5359. box-sizing:border-box;
  5360. width:100%;
  5361. }
  5362. #u136066_text {
  5363. border-width:0px;
  5364. white-space:nowrap;
  5365. text-transform:none;
  5366. }
  5367. #u136067 {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:0px;
  5371. top:0px;
  5372. width:0px;
  5373. height:0px;
  5374. }
  5375. #u136068_img {
  5376. border-width:0px;
  5377. position:absolute;
  5378. left:0px;
  5379. top:0px;
  5380. width:8px;
  5381. height:13px;
  5382. }
  5383. #u136068 {
  5384. border-width:0px;
  5385. position:absolute;
  5386. left:1282px;
  5387. top:219px;
  5388. width:8px;
  5389. height:13px;
  5390. display:flex;
  5391. -webkit-transform:rotate(270deg);
  5392. -moz-transform:rotate(270deg);
  5393. -ms-transform:rotate(270deg);
  5394. transform:rotate(270deg);
  5395. }
  5396. #u136068 .text {
  5397. position:absolute;
  5398. align-self:center;
  5399. padding:2px 2px 2px 2px;
  5400. box-sizing:border-box;
  5401. width:100%;
  5402. }
  5403. #u136068_text {
  5404. border-width:0px;
  5405. word-wrap:break-word;
  5406. text-transform:none;
  5407. visibility:hidden;
  5408. }
  5409. #u136069_div {
  5410. border-width:0px;
  5411. position:absolute;
  5412. left:0px;
  5413. top:0px;
  5414. width:339px;
  5415. height:17px;
  5416. background:inherit;
  5417. background-color:rgba(255, 255, 255, 0);
  5418. border:none;
  5419. border-left:0px;
  5420. border-top:0px;
  5421. border-right:0px;
  5422. border-radius:0px;
  5423. border-bottom-right-radius:0px;
  5424. border-bottom-left-radius:0px;
  5425. -moz-box-shadow:none;
  5426. -webkit-box-shadow:none;
  5427. box-shadow:none;
  5428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5429. font-weight:400;
  5430. font-style:normal;
  5431. font-size:12px;
  5432. color:#AAAAAA;
  5433. }
  5434. #u136069 {
  5435. border-width:0px;
  5436. position:absolute;
  5437. left:956px;
  5438. top:240px;
  5439. width:339px;
  5440. height:17px;
  5441. display:flex;
  5442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5443. font-weight:400;
  5444. font-style:normal;
  5445. font-size:12px;
  5446. color:#AAAAAA;
  5447. }
  5448. #u136069 .text {
  5449. position:absolute;
  5450. align-self:flex-start;
  5451. padding:0px 0px 0px 0px;
  5452. box-sizing:border-box;
  5453. width:100%;
  5454. }
  5455. #u136069_text {
  5456. border-width:0px;
  5457. word-wrap:break-word;
  5458. text-transform:none;
  5459. }
  5460. #u136070 {
  5461. border-width:0px;
  5462. position:absolute;
  5463. left:0px;
  5464. top:0px;
  5465. width:0px;
  5466. height:0px;
  5467. }
  5468. #u136071_div {
  5469. border-width:0px;
  5470. position:absolute;
  5471. left:0px;
  5472. top:0px;
  5473. width:375px;
  5474. height:70px;
  5475. background:inherit;
  5476. background-color:rgba(255, 255, 255, 1);
  5477. border:none;
  5478. border-left:0px;
  5479. border-top:0px;
  5480. border-right:0px;
  5481. border-radius:0px;
  5482. border-bottom-right-radius:0px;
  5483. border-bottom-left-radius:0px;
  5484. -moz-box-shadow:none;
  5485. -webkit-box-shadow:none;
  5486. box-shadow:none;
  5487. }
  5488. #u136071 {
  5489. border-width:0px;
  5490. position:absolute;
  5491. left:935px;
  5492. top:266px;
  5493. width:375px;
  5494. height:70px;
  5495. display:flex;
  5496. }
  5497. #u136071 .text {
  5498. position:absolute;
  5499. align-self:center;
  5500. padding:2px 2px 2px 2px;
  5501. box-sizing:border-box;
  5502. width:100%;
  5503. }
  5504. #u136071_text {
  5505. border-width:0px;
  5506. word-wrap:break-word;
  5507. text-transform:none;
  5508. visibility:hidden;
  5509. }
  5510. #u136072_div {
  5511. border-width:0px;
  5512. position:absolute;
  5513. left:0px;
  5514. top:0px;
  5515. width:37px;
  5516. height:30px;
  5517. background:inherit;
  5518. background-color:rgba(255, 255, 255, 0);
  5519. border:none;
  5520. border-left:0px;
  5521. border-top:0px;
  5522. border-right:0px;
  5523. border-radius:0px;
  5524. border-bottom-right-radius:0px;
  5525. border-bottom-left-radius:0px;
  5526. -moz-box-shadow:none;
  5527. -webkit-box-shadow:none;
  5528. box-shadow:none;
  5529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5530. font-weight:400;
  5531. font-style:normal;
  5532. font-size:18px;
  5533. line-height:30px;
  5534. }
  5535. #u136072 {
  5536. border-width:0px;
  5537. position:absolute;
  5538. left:956px;
  5539. top:276px;
  5540. width:37px;
  5541. height:30px;
  5542. display:flex;
  5543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5544. font-weight:400;
  5545. font-style:normal;
  5546. font-size:18px;
  5547. line-height:30px;
  5548. }
  5549. #u136072 .text {
  5550. position:absolute;
  5551. align-self:flex-start;
  5552. padding:0px 0px 0px 0px;
  5553. box-sizing:border-box;
  5554. width:100%;
  5555. }
  5556. #u136072_text {
  5557. border-width:0px;
  5558. white-space:nowrap;
  5559. text-transform:none;
  5560. }
  5561. #u136073 {
  5562. border-width:0px;
  5563. position:absolute;
  5564. left:0px;
  5565. top:0px;
  5566. width:0px;
  5567. height:0px;
  5568. }
  5569. #u136074_img {
  5570. border-width:0px;
  5571. position:absolute;
  5572. left:0px;
  5573. top:0px;
  5574. width:8px;
  5575. height:13px;
  5576. }
  5577. #u136074 {
  5578. border-width:0px;
  5579. position:absolute;
  5580. left:1282px;
  5581. top:290px;
  5582. width:8px;
  5583. height:13px;
  5584. display:flex;
  5585. -webkit-transform:rotate(180deg);
  5586. -moz-transform:rotate(180deg);
  5587. -ms-transform:rotate(180deg);
  5588. transform:rotate(180deg);
  5589. }
  5590. #u136074 .text {
  5591. position:absolute;
  5592. align-self:center;
  5593. padding:2px 2px 2px 2px;
  5594. box-sizing:border-box;
  5595. width:100%;
  5596. }
  5597. #u136074_text {
  5598. border-width:0px;
  5599. word-wrap:break-word;
  5600. text-transform:none;
  5601. visibility:hidden;
  5602. }
  5603. #u136075_div {
  5604. border-width:0px;
  5605. position:absolute;
  5606. left:0px;
  5607. top:0px;
  5608. width:339px;
  5609. height:17px;
  5610. background:inherit;
  5611. background-color:rgba(255, 255, 255, 0);
  5612. border:none;
  5613. border-left:0px;
  5614. border-top:0px;
  5615. border-right:0px;
  5616. border-radius:0px;
  5617. border-bottom-right-radius:0px;
  5618. border-bottom-left-radius:0px;
  5619. -moz-box-shadow:none;
  5620. -webkit-box-shadow:none;
  5621. box-shadow:none;
  5622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5623. font-weight:400;
  5624. font-style:normal;
  5625. font-size:12px;
  5626. color:#AAAAAA;
  5627. }
  5628. #u136075 {
  5629. border-width:0px;
  5630. position:absolute;
  5631. left:956px;
  5632. top:311px;
  5633. width:339px;
  5634. height:17px;
  5635. display:flex;
  5636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5637. font-weight:400;
  5638. font-style:normal;
  5639. font-size:12px;
  5640. color:#AAAAAA;
  5641. }
  5642. #u136075 .text {
  5643. position:absolute;
  5644. align-self:flex-start;
  5645. padding:0px 0px 0px 0px;
  5646. box-sizing:border-box;
  5647. width:100%;
  5648. }
  5649. #u136075_text {
  5650. border-width:0px;
  5651. word-wrap:break-word;
  5652. text-transform:none;
  5653. }
  5654. #u136076 {
  5655. border-width:0px;
  5656. position:absolute;
  5657. left:0px;
  5658. top:0px;
  5659. width:0px;
  5660. height:0px;
  5661. }
  5662. #u136077_div {
  5663. border-width:0px;
  5664. position:absolute;
  5665. left:0px;
  5666. top:0px;
  5667. width:375px;
  5668. height:70px;
  5669. background:inherit;
  5670. background-color:rgba(255, 255, 255, 1);
  5671. border:none;
  5672. border-left:0px;
  5673. border-top:0px;
  5674. border-right:0px;
  5675. border-radius:0px;
  5676. border-bottom-right-radius:0px;
  5677. border-bottom-left-radius:0px;
  5678. -moz-box-shadow:none;
  5679. -webkit-box-shadow:none;
  5680. box-shadow:none;
  5681. }
  5682. #u136077 {
  5683. border-width:0px;
  5684. position:absolute;
  5685. left:935px;
  5686. top:336px;
  5687. width:375px;
  5688. height:70px;
  5689. display:flex;
  5690. }
  5691. #u136077 .text {
  5692. position:absolute;
  5693. align-self:center;
  5694. padding:2px 2px 2px 2px;
  5695. box-sizing:border-box;
  5696. width:100%;
  5697. }
  5698. #u136077_text {
  5699. border-width:0px;
  5700. word-wrap:break-word;
  5701. text-transform:none;
  5702. visibility:hidden;
  5703. }
  5704. #u136078_div {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:0px;
  5708. top:0px;
  5709. width:37px;
  5710. height:30px;
  5711. background:inherit;
  5712. background-color:rgba(255, 255, 255, 0);
  5713. border:none;
  5714. border-left:0px;
  5715. border-top:0px;
  5716. border-right:0px;
  5717. border-radius:0px;
  5718. border-bottom-right-radius:0px;
  5719. border-bottom-left-radius:0px;
  5720. -moz-box-shadow:none;
  5721. -webkit-box-shadow:none;
  5722. box-shadow:none;
  5723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5724. font-weight:400;
  5725. font-style:normal;
  5726. font-size:18px;
  5727. line-height:30px;
  5728. }
  5729. #u136078 {
  5730. border-width:0px;
  5731. position:absolute;
  5732. left:956px;
  5733. top:346px;
  5734. width:37px;
  5735. height:30px;
  5736. display:flex;
  5737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5738. font-weight:400;
  5739. font-style:normal;
  5740. font-size:18px;
  5741. line-height:30px;
  5742. }
  5743. #u136078 .text {
  5744. position:absolute;
  5745. align-self:flex-start;
  5746. padding:0px 0px 0px 0px;
  5747. box-sizing:border-box;
  5748. width:100%;
  5749. }
  5750. #u136078_text {
  5751. border-width:0px;
  5752. white-space:nowrap;
  5753. text-transform:none;
  5754. }
  5755. #u136079 {
  5756. border-width:0px;
  5757. position:absolute;
  5758. left:0px;
  5759. top:0px;
  5760. width:0px;
  5761. height:0px;
  5762. }
  5763. #u136080_img {
  5764. border-width:0px;
  5765. position:absolute;
  5766. left:0px;
  5767. top:0px;
  5768. width:8px;
  5769. height:13px;
  5770. }
  5771. #u136080 {
  5772. border-width:0px;
  5773. position:absolute;
  5774. left:1282px;
  5775. top:360px;
  5776. width:8px;
  5777. height:13px;
  5778. display:flex;
  5779. -webkit-transform:rotate(180deg);
  5780. -moz-transform:rotate(180deg);
  5781. -ms-transform:rotate(180deg);
  5782. transform:rotate(180deg);
  5783. }
  5784. #u136080 .text {
  5785. position:absolute;
  5786. align-self:center;
  5787. padding:2px 2px 2px 2px;
  5788. box-sizing:border-box;
  5789. width:100%;
  5790. }
  5791. #u136080_text {
  5792. border-width:0px;
  5793. word-wrap:break-word;
  5794. text-transform:none;
  5795. visibility:hidden;
  5796. }
  5797. #u136081_div {
  5798. border-width:0px;
  5799. position:absolute;
  5800. left:0px;
  5801. top:0px;
  5802. width:80px;
  5803. height:17px;
  5804. background:inherit;
  5805. background-color:rgba(255, 255, 255, 0);
  5806. border:none;
  5807. border-radius:0px;
  5808. -moz-box-shadow:none;
  5809. -webkit-box-shadow:none;
  5810. box-shadow:none;
  5811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5812. font-weight:400;
  5813. font-style:normal;
  5814. font-size:12px;
  5815. color:#AAAAAA;
  5816. }
  5817. #u136081 {
  5818. border-width:0px;
  5819. position:absolute;
  5820. left:956px;
  5821. top:381px;
  5822. width:80px;
  5823. height:17px;
  5824. display:flex;
  5825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5826. font-weight:400;
  5827. font-style:normal;
  5828. font-size:12px;
  5829. color:#AAAAAA;
  5830. }
  5831. #u136081 .text {
  5832. position:absolute;
  5833. align-self:flex-start;
  5834. padding:0px 0px 0px 0px;
  5835. box-sizing:border-box;
  5836. width:100%;
  5837. }
  5838. #u136081_text {
  5839. border-width:0px;
  5840. white-space:nowrap;
  5841. text-transform:none;
  5842. }
  5843. #u136082 {
  5844. border-width:0px;
  5845. position:absolute;
  5846. left:0px;
  5847. top:0px;
  5848. width:0px;
  5849. height:0px;
  5850. }
  5851. #u136083_div {
  5852. border-width:0px;
  5853. position:absolute;
  5854. left:0px;
  5855. top:0px;
  5856. width:375px;
  5857. height:60px;
  5858. background:inherit;
  5859. background-color:rgba(255, 255, 255, 1);
  5860. border:none;
  5861. border-top:0px;
  5862. border-radius:28px;
  5863. border-top-left-radius:0px;
  5864. border-top-right-radius:0px;
  5865. -moz-box-shadow:none;
  5866. -webkit-box-shadow:none;
  5867. box-shadow:none;
  5868. }
  5869. #u136083 {
  5870. border-width:0px;
  5871. position:absolute;
  5872. left:482px;
  5873. top:780px;
  5874. width:375px;
  5875. height:60px;
  5876. display:flex;
  5877. }
  5878. #u136083 .text {
  5879. position:absolute;
  5880. align-self:center;
  5881. padding:2px 2px 2px 2px;
  5882. box-sizing:border-box;
  5883. width:100%;
  5884. }
  5885. #u136083_text {
  5886. border-width:0px;
  5887. word-wrap:break-word;
  5888. text-transform:none;
  5889. visibility:hidden;
  5890. }
  5891. #u136084_div {
  5892. border-width:0px;
  5893. position:absolute;
  5894. left:0px;
  5895. top:0px;
  5896. width:79px;
  5897. height:30px;
  5898. background:inherit;
  5899. background-color:rgba(255, 255, 255, 0);
  5900. border:none;
  5901. border-left:0px;
  5902. border-top:0px;
  5903. border-right:0px;
  5904. border-radius:0px;
  5905. border-bottom-right-radius:0px;
  5906. border-bottom-left-radius:0px;
  5907. -moz-box-shadow:none;
  5908. -webkit-box-shadow:none;
  5909. box-shadow:none;
  5910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5911. font-weight:400;
  5912. font-style:normal;
  5913. font-size:14px;
  5914. color:#1890FF;
  5915. line-height:30px;
  5916. }
  5917. #u136084 {
  5918. border-width:0px;
  5919. position:absolute;
  5920. left:502px;
  5921. top:795px;
  5922. width:79px;
  5923. height:30px;
  5924. display:flex;
  5925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5926. font-weight:400;
  5927. font-style:normal;
  5928. font-size:14px;
  5929. color:#1890FF;
  5930. line-height:30px;
  5931. }
  5932. #u136084 .text {
  5933. position:absolute;
  5934. align-self:flex-start;
  5935. padding:0px 0px 0px 0px;
  5936. box-sizing:border-box;
  5937. width:100%;
  5938. }
  5939. #u136084_text {
  5940. border-width:0px;
  5941. white-space:nowrap;
  5942. text-transform:none;
  5943. }
  5944. #u136085 {
  5945. border-width:0px;
  5946. position:absolute;
  5947. left:0px;
  5948. top:0px;
  5949. width:0px;
  5950. height:0px;
  5951. }
  5952. #u136086_div {
  5953. border-width:0px;
  5954. position:absolute;
  5955. left:0px;
  5956. top:0px;
  5957. width:65px;
  5958. height:30px;
  5959. background:inherit;
  5960. background-color:rgba(255, 255, 255, 0);
  5961. border:none;
  5962. border-left:0px;
  5963. border-top:0px;
  5964. border-right:0px;
  5965. border-radius:0px;
  5966. border-bottom-right-radius:0px;
  5967. border-bottom-left-radius:0px;
  5968. -moz-box-shadow:none;
  5969. -webkit-box-shadow:none;
  5970. box-shadow:none;
  5971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5972. font-weight:400;
  5973. font-style:normal;
  5974. font-size:14px;
  5975. color:#1890FF;
  5976. line-height:30px;
  5977. }
  5978. #u136086 {
  5979. border-width:0px;
  5980. position:absolute;
  5981. left:641px;
  5982. top:795px;
  5983. width:65px;
  5984. height:30px;
  5985. display:flex;
  5986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5987. font-weight:400;
  5988. font-style:normal;
  5989. font-size:14px;
  5990. color:#1890FF;
  5991. line-height:30px;
  5992. }
  5993. #u136086 .text {
  5994. position:absolute;
  5995. align-self:flex-start;
  5996. padding:0px 0px 0px 0px;
  5997. box-sizing:border-box;
  5998. width:100%;
  5999. }
  6000. #u136086_text {
  6001. border-width:0px;
  6002. white-space:nowrap;
  6003. text-transform:none;
  6004. }
  6005. #u136087_div {
  6006. border-width:0px;
  6007. position:absolute;
  6008. left:0px;
  6009. top:0px;
  6010. width:71px;
  6011. height:30px;
  6012. background:inherit;
  6013. background-color:rgba(255, 255, 255, 0);
  6014. border:none;
  6015. border-left:0px;
  6016. border-top:0px;
  6017. border-right:0px;
  6018. border-radius:0px;
  6019. border-bottom-right-radius:0px;
  6020. border-bottom-left-radius:0px;
  6021. -moz-box-shadow:none;
  6022. -webkit-box-shadow:none;
  6023. box-shadow:none;
  6024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6025. font-weight:400;
  6026. font-style:normal;
  6027. font-size:14px;
  6028. color:#1890FF;
  6029. line-height:30px;
  6030. }
  6031. #u136087 {
  6032. border-width:0px;
  6033. position:absolute;
  6034. left:766px;
  6035. top:795px;
  6036. width:71px;
  6037. height:30px;
  6038. display:flex;
  6039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6040. font-weight:400;
  6041. font-style:normal;
  6042. font-size:14px;
  6043. color:#1890FF;
  6044. line-height:30px;
  6045. }
  6046. #u136087 .text {
  6047. position:absolute;
  6048. align-self:flex-start;
  6049. padding:0px 0px 0px 0px;
  6050. box-sizing:border-box;
  6051. width:100%;
  6052. }
  6053. #u136087_text {
  6054. border-width:0px;
  6055. white-space:nowrap;
  6056. text-transform:none;
  6057. }
  6058. #u136088_img {
  6059. border-width:0px;
  6060. position:absolute;
  6061. left:0px;
  6062. top:0px;
  6063. width:2px;
  6064. height:11px;
  6065. }
  6066. #u136088 {
  6067. border-width:0px;
  6068. position:absolute;
  6069. left:612px;
  6070. top:806px;
  6071. width:1px;
  6072. height:10px;
  6073. display:flex;
  6074. }
  6075. #u136088 .text {
  6076. position:absolute;
  6077. align-self:center;
  6078. padding:2px 2px 2px 2px;
  6079. box-sizing:border-box;
  6080. width:100%;
  6081. }
  6082. #u136088_text {
  6083. border-width:0px;
  6084. word-wrap:break-word;
  6085. text-transform:none;
  6086. visibility:hidden;
  6087. }
  6088. #u136089_img {
  6089. border-width:0px;
  6090. position:absolute;
  6091. left:0px;
  6092. top:0px;
  6093. width:2px;
  6094. height:11px;
  6095. }
  6096. #u136089 {
  6097. border-width:0px;
  6098. position:absolute;
  6099. left:737px;
  6100. top:806px;
  6101. width:1px;
  6102. height:10px;
  6103. display:flex;
  6104. }
  6105. #u136089 .text {
  6106. position:absolute;
  6107. align-self:center;
  6108. padding:2px 2px 2px 2px;
  6109. box-sizing:border-box;
  6110. width:100%;
  6111. }
  6112. #u136089_text {
  6113. border-width:0px;
  6114. word-wrap:break-word;
  6115. text-transform:none;
  6116. visibility:hidden;
  6117. }
  6118. #u136090 {
  6119. border-width:0px;
  6120. position:absolute;
  6121. left:0px;
  6122. top:0px;
  6123. width:0px;
  6124. height:0px;
  6125. }
  6126. #u136091_div {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:0px;
  6130. top:0px;
  6131. width:375px;
  6132. height:60px;
  6133. background:inherit;
  6134. background-color:rgba(255, 255, 255, 1);
  6135. border:none;
  6136. border-top:0px;
  6137. border-radius:28px;
  6138. border-top-left-radius:0px;
  6139. border-top-right-radius:0px;
  6140. -moz-box-shadow:none;
  6141. -webkit-box-shadow:none;
  6142. box-shadow:none;
  6143. }
  6144. #u136091 {
  6145. border-width:0px;
  6146. position:absolute;
  6147. left:935px;
  6148. top:780px;
  6149. width:375px;
  6150. height:60px;
  6151. display:flex;
  6152. }
  6153. #u136091 .text {
  6154. position:absolute;
  6155. align-self:center;
  6156. padding:2px 2px 2px 2px;
  6157. box-sizing:border-box;
  6158. width:100%;
  6159. }
  6160. #u136091_text {
  6161. border-width:0px;
  6162. word-wrap:break-word;
  6163. text-transform:none;
  6164. visibility:hidden;
  6165. }
  6166. #u136092_div {
  6167. border-width:0px;
  6168. position:absolute;
  6169. left:0px;
  6170. top:0px;
  6171. width:79px;
  6172. height:30px;
  6173. background:inherit;
  6174. background-color:rgba(255, 255, 255, 0);
  6175. border:none;
  6176. border-left:0px;
  6177. border-top:0px;
  6178. border-right:0px;
  6179. border-radius:0px;
  6180. border-bottom-right-radius:0px;
  6181. border-bottom-left-radius:0px;
  6182. -moz-box-shadow:none;
  6183. -webkit-box-shadow:none;
  6184. box-shadow:none;
  6185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6186. font-weight:400;
  6187. font-style:normal;
  6188. font-size:14px;
  6189. color:#1890FF;
  6190. line-height:30px;
  6191. }
  6192. #u136092 {
  6193. border-width:0px;
  6194. position:absolute;
  6195. left:955px;
  6196. top:795px;
  6197. width:79px;
  6198. height:30px;
  6199. display:flex;
  6200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6201. font-weight:400;
  6202. font-style:normal;
  6203. font-size:14px;
  6204. color:#1890FF;
  6205. line-height:30px;
  6206. }
  6207. #u136092 .text {
  6208. position:absolute;
  6209. align-self:flex-start;
  6210. padding:0px 0px 0px 0px;
  6211. box-sizing:border-box;
  6212. width:100%;
  6213. }
  6214. #u136092_text {
  6215. border-width:0px;
  6216. white-space:nowrap;
  6217. text-transform:none;
  6218. }
  6219. #u136093 {
  6220. border-width:0px;
  6221. position:absolute;
  6222. left:0px;
  6223. top:0px;
  6224. width:0px;
  6225. height:0px;
  6226. }
  6227. #u136094_div {
  6228. border-width:0px;
  6229. position:absolute;
  6230. left:0px;
  6231. top:0px;
  6232. width:65px;
  6233. height:30px;
  6234. background:inherit;
  6235. background-color:rgba(255, 255, 255, 0);
  6236. border:none;
  6237. border-left:0px;
  6238. border-top:0px;
  6239. border-right:0px;
  6240. border-radius:0px;
  6241. border-bottom-right-radius:0px;
  6242. border-bottom-left-radius:0px;
  6243. -moz-box-shadow:none;
  6244. -webkit-box-shadow:none;
  6245. box-shadow:none;
  6246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6247. font-weight:400;
  6248. font-style:normal;
  6249. font-size:14px;
  6250. color:#1890FF;
  6251. line-height:30px;
  6252. }
  6253. #u136094 {
  6254. border-width:0px;
  6255. position:absolute;
  6256. left:1094px;
  6257. top:795px;
  6258. width:65px;
  6259. height:30px;
  6260. display:flex;
  6261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6262. font-weight:400;
  6263. font-style:normal;
  6264. font-size:14px;
  6265. color:#1890FF;
  6266. line-height:30px;
  6267. }
  6268. #u136094 .text {
  6269. position:absolute;
  6270. align-self:flex-start;
  6271. padding:0px 0px 0px 0px;
  6272. box-sizing:border-box;
  6273. width:100%;
  6274. }
  6275. #u136094_text {
  6276. border-width:0px;
  6277. white-space:nowrap;
  6278. text-transform:none;
  6279. }
  6280. #u136095_div {
  6281. border-width:0px;
  6282. position:absolute;
  6283. left:0px;
  6284. top:0px;
  6285. width:71px;
  6286. height:30px;
  6287. background:inherit;
  6288. background-color:rgba(255, 255, 255, 0);
  6289. border:none;
  6290. border-left:0px;
  6291. border-top:0px;
  6292. border-right:0px;
  6293. border-radius:0px;
  6294. border-bottom-right-radius:0px;
  6295. border-bottom-left-radius:0px;
  6296. -moz-box-shadow:none;
  6297. -webkit-box-shadow:none;
  6298. box-shadow:none;
  6299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6300. font-weight:400;
  6301. font-style:normal;
  6302. font-size:14px;
  6303. color:#1890FF;
  6304. line-height:30px;
  6305. }
  6306. #u136095 {
  6307. border-width:0px;
  6308. position:absolute;
  6309. left:1219px;
  6310. top:795px;
  6311. width:71px;
  6312. height:30px;
  6313. display:flex;
  6314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6315. font-weight:400;
  6316. font-style:normal;
  6317. font-size:14px;
  6318. color:#1890FF;
  6319. line-height:30px;
  6320. }
  6321. #u136095 .text {
  6322. position:absolute;
  6323. align-self:flex-start;
  6324. padding:0px 0px 0px 0px;
  6325. box-sizing:border-box;
  6326. width:100%;
  6327. }
  6328. #u136095_text {
  6329. border-width:0px;
  6330. white-space:nowrap;
  6331. text-transform:none;
  6332. }
  6333. #u136096_img {
  6334. border-width:0px;
  6335. position:absolute;
  6336. left:0px;
  6337. top:0px;
  6338. width:2px;
  6339. height:11px;
  6340. }
  6341. #u136096 {
  6342. border-width:0px;
  6343. position:absolute;
  6344. left:1065px;
  6345. top:806px;
  6346. width:1px;
  6347. height:10px;
  6348. display:flex;
  6349. }
  6350. #u136096 .text {
  6351. position:absolute;
  6352. align-self:center;
  6353. padding:2px 2px 2px 2px;
  6354. box-sizing:border-box;
  6355. width:100%;
  6356. }
  6357. #u136096_text {
  6358. border-width:0px;
  6359. word-wrap:break-word;
  6360. text-transform:none;
  6361. visibility:hidden;
  6362. }
  6363. #u136097_img {
  6364. border-width:0px;
  6365. position:absolute;
  6366. left:0px;
  6367. top:0px;
  6368. width:2px;
  6369. height:11px;
  6370. }
  6371. #u136097 {
  6372. border-width:0px;
  6373. position:absolute;
  6374. left:1190px;
  6375. top:806px;
  6376. width:1px;
  6377. height:10px;
  6378. display:flex;
  6379. }
  6380. #u136097 .text {
  6381. position:absolute;
  6382. align-self:center;
  6383. padding:2px 2px 2px 2px;
  6384. box-sizing:border-box;
  6385. width:100%;
  6386. }
  6387. #u136097_text {
  6388. border-width:0px;
  6389. word-wrap:break-word;
  6390. text-transform:none;
  6391. visibility:hidden;
  6392. }