styles.css 139 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:425px;
  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. #u130159_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u130159 {
  28. border-width:0px;
  29. position:absolute;
  30. left:-934px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u130159 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u130159_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u130160_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. #u130160 {
  73. border-width:0px;
  74. position:absolute;
  75. left:-905px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u130160 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u130160_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u130161 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u130162_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. #u130162 {
  121. border-width:0px;
  122. position:absolute;
  123. left:-625px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u130162 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u130162_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u130163 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u130164_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u130164 {
  159. border-width:0px;
  160. position:absolute;
  161. left:-562px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u130164 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u130164_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u130165_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u130165 {
  189. border-width:0px;
  190. position:absolute;
  191. left:-556px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u130165 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u130165_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u130166 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u130167_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u130167 {
  227. border-width:0px;
  228. position:absolute;
  229. left:-611px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u130167 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u130167_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u130168_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u130168 {
  257. border-width:0px;
  258. position:absolute;
  259. left:-595px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u130168 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u130168_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u130169_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u130169 {
  287. border-width:0px;
  288. position:absolute;
  289. left:-604px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u130169 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u130169_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u130170_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u130170 {
  317. border-width:0px;
  318. position:absolute;
  319. left:-587px;
  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. #u130170 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u130170_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u130171_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u130171 {
  351. border-width:0px;
  352. position:absolute;
  353. left:-905px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u130171 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u130171_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u130172_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. #u130172 {
  393. border-width:0px;
  394. position:absolute;
  395. left:-905px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u130172 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u130172_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u130173 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u130174_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u130174 {
  431. border-width:0px;
  432. position:absolute;
  433. left:-865px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u130174 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u130174_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u130175_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. #u130175 {
  472. border-width:0px;
  473. position:absolute;
  474. left:-865px;
  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. #u130175 .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. #u130175_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u130176 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u130177_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u130177 {
  513. border-width:0px;
  514. position:absolute;
  515. left:-595px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u130177 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u130177_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u130178_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. #u130178 {
  554. border-width:0px;
  555. position:absolute;
  556. left:-595px;
  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. #u130178 .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. #u130178_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u130179_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. #u130179 {
  594. border-width:0px;
  595. position:absolute;
  596. left:-905px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u130179 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u130179_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u130180 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u130181_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u130181 {
  632. border-width:0px;
  633. position:absolute;
  634. left:-683px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u130181 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u130181_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u130182_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. #u130182 {
  673. border-width:0px;
  674. position:absolute;
  675. left:-689px;
  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. #u130182 .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. #u130182_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u130183 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u130184_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u130184 {
  714. border-width:0px;
  715. position:absolute;
  716. left:-777px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u130184 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u130184_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u130185_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. #u130185 {
  755. border-width:0px;
  756. position:absolute;
  757. left:-783px;
  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. #u130185 .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. #u130185_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u130186_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:40px;
  786. background:inherit;
  787. background-color:rgba(255, 255, 255, 1);
  788. box-sizing:border-box;
  789. border-width:1px;
  790. border-style:solid;
  791. border-color:rgba(215, 215, 215, 1);
  792. border-left:0px;
  793. border-top:0px;
  794. border-right:0px;
  795. border-radius:0px;
  796. border-bottom-right-radius:0px;
  797. border-bottom-left-radius:0px;
  798. -moz-box-shadow:none;
  799. -webkit-box-shadow:none;
  800. box-shadow:none;
  801. }
  802. #u130186 {
  803. border-width:0px;
  804. position:absolute;
  805. left:-905px;
  806. top:67px;
  807. width:375px;
  808. height:40px;
  809. display:flex;
  810. }
  811. #u130186 .text {
  812. position:absolute;
  813. align-self:center;
  814. padding:2px 2px 2px 2px;
  815. box-sizing:border-box;
  816. width:100%;
  817. }
  818. #u130186_text {
  819. border-width:0px;
  820. word-wrap:break-word;
  821. text-transform:none;
  822. visibility:hidden;
  823. }
  824. #u130187_img {
  825. border-width:0px;
  826. position:absolute;
  827. left:0px;
  828. top:0px;
  829. width:375px;
  830. height:44px;
  831. }
  832. #u130187 {
  833. border-width:0px;
  834. position:absolute;
  835. left:-905px;
  836. top:24px;
  837. width:375px;
  838. height:44px;
  839. display:flex;
  840. }
  841. #u130187 .text {
  842. position:absolute;
  843. align-self:center;
  844. padding:2px 2px 2px 2px;
  845. box-sizing:border-box;
  846. width:100%;
  847. }
  848. #u130187_text {
  849. border-width:0px;
  850. word-wrap:break-word;
  851. text-transform:none;
  852. visibility:hidden;
  853. }
  854. #u130188_div {
  855. border-width:0px;
  856. position:absolute;
  857. left:0px;
  858. top:0px;
  859. width:65px;
  860. height:22px;
  861. background:inherit;
  862. background-color:rgba(255, 255, 255, 0);
  863. border:none;
  864. border-radius:0px;
  865. -moz-box-shadow:none;
  866. -webkit-box-shadow:none;
  867. box-shadow:none;
  868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  869. font-weight:400;
  870. font-style:normal;
  871. font-size:16px;
  872. color:#000000;
  873. }
  874. #u130188 {
  875. border-width:0px;
  876. position:absolute;
  877. left:-750px;
  878. top:78px;
  879. width:65px;
  880. height:22px;
  881. display:flex;
  882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  883. font-weight:400;
  884. font-style:normal;
  885. font-size:16px;
  886. color:#000000;
  887. }
  888. #u130188 .text {
  889. position:absolute;
  890. align-self:flex-start;
  891. padding:0px 0px 0px 0px;
  892. box-sizing:border-box;
  893. width:100%;
  894. }
  895. #u130188_text {
  896. border-width:0px;
  897. white-space:nowrap;
  898. text-transform:none;
  899. }
  900. #u130189_div {
  901. border-width:0px;
  902. position:absolute;
  903. left:0px;
  904. top:0px;
  905. width:12px;
  906. height:12px;
  907. background:inherit;
  908. background-color:rgba(255, 255, 255, 0);
  909. box-sizing:border-box;
  910. border-width:2px;
  911. border-style:solid;
  912. border-color:rgba(51, 51, 51, 1);
  913. border-right:0px;
  914. border-bottom:0px;
  915. border-radius:0px;
  916. border-top-right-radius:0px;
  917. border-bottom-left-radius:0px;
  918. -moz-box-shadow:none;
  919. -webkit-box-shadow:none;
  920. box-shadow:none;
  921. }
  922. #u130189 {
  923. border-width:0px;
  924. position:absolute;
  925. left:-888px;
  926. top:81px;
  927. width:12px;
  928. height:12px;
  929. display:flex;
  930. -webkit-transform:rotate(315deg);
  931. -moz-transform:rotate(315deg);
  932. -ms-transform:rotate(315deg);
  933. transform:rotate(315deg);
  934. }
  935. #u130189 .text {
  936. position:absolute;
  937. align-self:center;
  938. padding:2px 2px 2px 2px;
  939. box-sizing:border-box;
  940. width:100%;
  941. }
  942. #u130189_text {
  943. border-width:0px;
  944. word-wrap:break-word;
  945. text-transform:none;
  946. visibility:hidden;
  947. }
  948. #u130190_img {
  949. border-width:0px;
  950. position:absolute;
  951. left:0px;
  952. top:0px;
  953. width:23px;
  954. height:23px;
  955. }
  956. #u130190 {
  957. border-width:0px;
  958. position:absolute;
  959. left:-861px;
  960. top:76px;
  961. width:23px;
  962. height:23px;
  963. display:flex;
  964. }
  965. #u130190 .text {
  966. position:absolute;
  967. align-self:center;
  968. padding:2px 2px 2px 2px;
  969. box-sizing:border-box;
  970. width:100%;
  971. }
  972. #u130190_text {
  973. border-width:0px;
  974. word-wrap:break-word;
  975. text-transform:none;
  976. visibility:hidden;
  977. }
  978. #u130191_div {
  979. border-width:0px;
  980. position:absolute;
  981. left:0px;
  982. top:0px;
  983. width:375px;
  984. height:736px;
  985. background:inherit;
  986. background-color:rgba(242, 242, 242, 0.996078431372549);
  987. border:none;
  988. border-top:0px;
  989. border-radius:41px;
  990. border-top-left-radius:0px;
  991. border-top-right-radius:0px;
  992. -moz-box-shadow:none;
  993. -webkit-box-shadow:none;
  994. box-shadow:none;
  995. }
  996. #u130191 {
  997. border-width:0px;
  998. position:absolute;
  999. left:-905px;
  1000. top:106px;
  1001. width:375px;
  1002. height:736px;
  1003. display:flex;
  1004. }
  1005. #u130191 .text {
  1006. position:absolute;
  1007. align-self:center;
  1008. padding:2px 2px 2px 2px;
  1009. box-sizing:border-box;
  1010. width:100%;
  1011. }
  1012. #u130191_text {
  1013. border-width:0px;
  1014. word-wrap:break-word;
  1015. text-transform:none;
  1016. visibility:hidden;
  1017. }
  1018. #u130192 {
  1019. border-width:0px;
  1020. position:absolute;
  1021. left:0px;
  1022. top:0px;
  1023. width:0px;
  1024. height:0px;
  1025. }
  1026. #u130193_div {
  1027. border-width:0px;
  1028. position:absolute;
  1029. left:0px;
  1030. top:0px;
  1031. width:355px;
  1032. height:80px;
  1033. background:inherit;
  1034. background-color:rgba(255, 255, 255, 1);
  1035. border:none;
  1036. border-radius:4px;
  1037. -moz-box-shadow:none;
  1038. -webkit-box-shadow:none;
  1039. box-shadow:none;
  1040. }
  1041. #u130193 {
  1042. border-width:0px;
  1043. position:absolute;
  1044. left:-895px;
  1045. top:116px;
  1046. width:355px;
  1047. height:80px;
  1048. display:flex;
  1049. }
  1050. #u130193 .text {
  1051. position:absolute;
  1052. align-self:center;
  1053. padding:2px 2px 2px 2px;
  1054. box-sizing:border-box;
  1055. width:100%;
  1056. }
  1057. #u130193_text {
  1058. border-width:0px;
  1059. word-wrap:break-word;
  1060. text-transform:none;
  1061. visibility:hidden;
  1062. }
  1063. #u130194_div {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:65px;
  1069. height:22px;
  1070. background:inherit;
  1071. background-color:rgba(255, 255, 255, 0);
  1072. border:none;
  1073. border-radius:0px;
  1074. -moz-box-shadow:none;
  1075. -webkit-box-shadow:none;
  1076. box-shadow:none;
  1077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1078. font-weight:400;
  1079. font-style:normal;
  1080. font-size:16px;
  1081. color:#000000;
  1082. }
  1083. #u130194 {
  1084. border-width:0px;
  1085. position:absolute;
  1086. left:-875px;
  1087. top:131px;
  1088. width:65px;
  1089. height:22px;
  1090. display:flex;
  1091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1092. font-weight:400;
  1093. font-style:normal;
  1094. font-size:16px;
  1095. color:#000000;
  1096. }
  1097. #u130194 .text {
  1098. position:absolute;
  1099. align-self:flex-start;
  1100. padding:0px 0px 0px 0px;
  1101. box-sizing:border-box;
  1102. width:100%;
  1103. }
  1104. #u130194_text {
  1105. border-width:0px;
  1106. white-space:nowrap;
  1107. text-transform:none;
  1108. }
  1109. #u130195_div {
  1110. border-width:0px;
  1111. position:absolute;
  1112. left:0px;
  1113. top:0px;
  1114. width:157px;
  1115. height:17px;
  1116. background:inherit;
  1117. background-color:rgba(255, 255, 255, 0);
  1118. border:none;
  1119. border-radius:0px;
  1120. -moz-box-shadow:none;
  1121. -webkit-box-shadow:none;
  1122. box-shadow:none;
  1123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1124. font-weight:400;
  1125. font-style:normal;
  1126. font-size:12px;
  1127. color:#000000;
  1128. }
  1129. #u130195 {
  1130. border-width:0px;
  1131. position:absolute;
  1132. left:-875px;
  1133. top:162px;
  1134. width:157px;
  1135. height:17px;
  1136. display:flex;
  1137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1138. font-weight:400;
  1139. font-style:normal;
  1140. font-size:12px;
  1141. color:#000000;
  1142. }
  1143. #u130195 .text {
  1144. position:absolute;
  1145. align-self:flex-start;
  1146. padding:0px 0px 0px 0px;
  1147. box-sizing:border-box;
  1148. width:100%;
  1149. }
  1150. #u130195_text {
  1151. border-width:0px;
  1152. white-space:nowrap;
  1153. text-transform:none;
  1154. }
  1155. #u130196_div {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:0px;
  1159. top:0px;
  1160. width:12px;
  1161. height:12px;
  1162. background:inherit;
  1163. background-color:rgba(255, 255, 255, 0);
  1164. box-sizing:border-box;
  1165. border-width:1px;
  1166. border-style:solid;
  1167. border-color:rgba(51, 51, 51, 1);
  1168. border-right:0px;
  1169. border-bottom:0px;
  1170. border-radius:0px;
  1171. border-top-right-radius:0px;
  1172. border-bottom-left-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. }
  1177. #u130196 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:-576px;
  1181. top:150px;
  1182. width:12px;
  1183. height:12px;
  1184. display:flex;
  1185. -webkit-transform:rotate(135deg);
  1186. -moz-transform:rotate(135deg);
  1187. -ms-transform:rotate(135deg);
  1188. transform:rotate(135deg);
  1189. }
  1190. #u130196 .text {
  1191. position:absolute;
  1192. align-self:center;
  1193. padding:2px 2px 2px 2px;
  1194. box-sizing:border-box;
  1195. width:100%;
  1196. }
  1197. #u130196_text {
  1198. border-width:0px;
  1199. word-wrap:break-word;
  1200. text-transform:none;
  1201. visibility:hidden;
  1202. }
  1203. #u130197 {
  1204. border-width:0px;
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:0px;
  1209. height:0px;
  1210. }
  1211. #u130198_div {
  1212. border-width:0px;
  1213. position:absolute;
  1214. left:0px;
  1215. top:0px;
  1216. width:355px;
  1217. height:80px;
  1218. background:inherit;
  1219. background-color:rgba(255, 255, 255, 1);
  1220. border:none;
  1221. border-radius:4px;
  1222. -moz-box-shadow:none;
  1223. -webkit-box-shadow:none;
  1224. box-shadow:none;
  1225. }
  1226. #u130198 {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:-895px;
  1230. top:206px;
  1231. width:355px;
  1232. height:80px;
  1233. display:flex;
  1234. }
  1235. #u130198 .text {
  1236. position:absolute;
  1237. align-self:center;
  1238. padding:2px 2px 2px 2px;
  1239. box-sizing:border-box;
  1240. width:100%;
  1241. }
  1242. #u130198_text {
  1243. border-width:0px;
  1244. word-wrap:break-word;
  1245. text-transform:none;
  1246. visibility:hidden;
  1247. }
  1248. #u130199_div {
  1249. border-width:0px;
  1250. position:absolute;
  1251. left:0px;
  1252. top:0px;
  1253. width:65px;
  1254. height:22px;
  1255. background:inherit;
  1256. background-color:rgba(255, 255, 255, 0);
  1257. border:none;
  1258. border-radius:0px;
  1259. -moz-box-shadow:none;
  1260. -webkit-box-shadow:none;
  1261. box-shadow:none;
  1262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1263. font-weight:400;
  1264. font-style:normal;
  1265. font-size:16px;
  1266. color:#000000;
  1267. }
  1268. #u130199 {
  1269. border-width:0px;
  1270. position:absolute;
  1271. left:-875px;
  1272. top:221px;
  1273. width:65px;
  1274. height:22px;
  1275. display:flex;
  1276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1277. font-weight:400;
  1278. font-style:normal;
  1279. font-size:16px;
  1280. color:#000000;
  1281. }
  1282. #u130199 .text {
  1283. position:absolute;
  1284. align-self:flex-start;
  1285. padding:0px 0px 0px 0px;
  1286. box-sizing:border-box;
  1287. width:100%;
  1288. }
  1289. #u130199_text {
  1290. border-width:0px;
  1291. white-space:nowrap;
  1292. text-transform:none;
  1293. }
  1294. #u130200_div {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:133px;
  1300. height:17px;
  1301. background:inherit;
  1302. background-color:rgba(255, 255, 255, 0);
  1303. border:none;
  1304. border-radius:0px;
  1305. -moz-box-shadow:none;
  1306. -webkit-box-shadow:none;
  1307. box-shadow:none;
  1308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1309. font-weight:400;
  1310. font-style:normal;
  1311. font-size:12px;
  1312. color:#000000;
  1313. }
  1314. #u130200 {
  1315. border-width:0px;
  1316. position:absolute;
  1317. left:-875px;
  1318. top:252px;
  1319. width:133px;
  1320. height:17px;
  1321. display:flex;
  1322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1323. font-weight:400;
  1324. font-style:normal;
  1325. font-size:12px;
  1326. color:#000000;
  1327. }
  1328. #u130200 .text {
  1329. position:absolute;
  1330. align-self:flex-start;
  1331. padding:0px 0px 0px 0px;
  1332. box-sizing:border-box;
  1333. width:100%;
  1334. }
  1335. #u130200_text {
  1336. border-width:0px;
  1337. white-space:nowrap;
  1338. text-transform:none;
  1339. }
  1340. #u130201_div {
  1341. border-width:0px;
  1342. position:absolute;
  1343. left:0px;
  1344. top:0px;
  1345. width:12px;
  1346. height:12px;
  1347. background:inherit;
  1348. background-color:rgba(255, 255, 255, 0);
  1349. box-sizing:border-box;
  1350. border-width:1px;
  1351. border-style:solid;
  1352. border-color:rgba(51, 51, 51, 1);
  1353. border-right:0px;
  1354. border-bottom:0px;
  1355. border-radius:0px;
  1356. border-top-right-radius:0px;
  1357. border-bottom-left-radius:0px;
  1358. -moz-box-shadow:none;
  1359. -webkit-box-shadow:none;
  1360. box-shadow:none;
  1361. }
  1362. #u130201 {
  1363. border-width:0px;
  1364. position:absolute;
  1365. left:-576px;
  1366. top:240px;
  1367. width:12px;
  1368. height:12px;
  1369. display:flex;
  1370. -webkit-transform:rotate(135deg);
  1371. -moz-transform:rotate(135deg);
  1372. -ms-transform:rotate(135deg);
  1373. transform:rotate(135deg);
  1374. }
  1375. #u130201 .text {
  1376. position:absolute;
  1377. align-self:center;
  1378. padding:2px 2px 2px 2px;
  1379. box-sizing:border-box;
  1380. width:100%;
  1381. }
  1382. #u130201_text {
  1383. border-width:0px;
  1384. word-wrap:break-word;
  1385. text-transform:none;
  1386. visibility:hidden;
  1387. }
  1388. #u130202 {
  1389. border-width:0px;
  1390. position:absolute;
  1391. left:0px;
  1392. top:0px;
  1393. width:0px;
  1394. height:0px;
  1395. }
  1396. #u130203_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:355px;
  1402. height:80px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 1);
  1405. border:none;
  1406. border-radius:4px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. }
  1411. #u130203 {
  1412. border-width:0px;
  1413. position:absolute;
  1414. left:-895px;
  1415. top:296px;
  1416. width:355px;
  1417. height:80px;
  1418. display:flex;
  1419. }
  1420. #u130203 .text {
  1421. position:absolute;
  1422. align-self:center;
  1423. padding:2px 2px 2px 2px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u130203_text {
  1428. border-width:0px;
  1429. word-wrap:break-word;
  1430. text-transform:none;
  1431. visibility:hidden;
  1432. }
  1433. #u130204_div {
  1434. border-width:0px;
  1435. position:absolute;
  1436. left:0px;
  1437. top:0px;
  1438. width:65px;
  1439. height:22px;
  1440. background:inherit;
  1441. background-color:rgba(255, 255, 255, 0);
  1442. border:none;
  1443. border-radius:0px;
  1444. -moz-box-shadow:none;
  1445. -webkit-box-shadow:none;
  1446. box-shadow:none;
  1447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1448. font-weight:400;
  1449. font-style:normal;
  1450. font-size:16px;
  1451. color:#000000;
  1452. }
  1453. #u130204 {
  1454. border-width:0px;
  1455. position:absolute;
  1456. left:-875px;
  1457. top:311px;
  1458. width:65px;
  1459. height:22px;
  1460. display:flex;
  1461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1462. font-weight:400;
  1463. font-style:normal;
  1464. font-size:16px;
  1465. color:#000000;
  1466. }
  1467. #u130204 .text {
  1468. position:absolute;
  1469. align-self:flex-start;
  1470. padding:0px 0px 0px 0px;
  1471. box-sizing:border-box;
  1472. width:100%;
  1473. }
  1474. #u130204_text {
  1475. border-width:0px;
  1476. white-space:nowrap;
  1477. text-transform:none;
  1478. }
  1479. #u130205_div {
  1480. border-width:0px;
  1481. position:absolute;
  1482. left:0px;
  1483. top:0px;
  1484. width:193px;
  1485. height:17px;
  1486. background:inherit;
  1487. background-color:rgba(255, 255, 255, 0);
  1488. border:none;
  1489. border-radius:0px;
  1490. -moz-box-shadow:none;
  1491. -webkit-box-shadow:none;
  1492. box-shadow:none;
  1493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1494. font-weight:400;
  1495. font-style:normal;
  1496. font-size:12px;
  1497. color:#000000;
  1498. }
  1499. #u130205 {
  1500. border-width:0px;
  1501. position:absolute;
  1502. left:-875px;
  1503. top:342px;
  1504. width:193px;
  1505. height:17px;
  1506. display:flex;
  1507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1508. font-weight:400;
  1509. font-style:normal;
  1510. font-size:12px;
  1511. color:#000000;
  1512. }
  1513. #u130205 .text {
  1514. position:absolute;
  1515. align-self:flex-start;
  1516. padding:0px 0px 0px 0px;
  1517. box-sizing:border-box;
  1518. width:100%;
  1519. }
  1520. #u130205_text {
  1521. border-width:0px;
  1522. white-space:nowrap;
  1523. text-transform:none;
  1524. }
  1525. #u130206_div {
  1526. border-width:0px;
  1527. position:absolute;
  1528. left:0px;
  1529. top:0px;
  1530. width:12px;
  1531. height:12px;
  1532. background:inherit;
  1533. background-color:rgba(255, 255, 255, 0);
  1534. box-sizing:border-box;
  1535. border-width:1px;
  1536. border-style:solid;
  1537. border-color:rgba(51, 51, 51, 1);
  1538. border-right:0px;
  1539. border-bottom:0px;
  1540. border-radius:0px;
  1541. border-top-right-radius:0px;
  1542. border-bottom-left-radius:0px;
  1543. -moz-box-shadow:none;
  1544. -webkit-box-shadow:none;
  1545. box-shadow:none;
  1546. }
  1547. #u130206 {
  1548. border-width:0px;
  1549. position:absolute;
  1550. left:-576px;
  1551. top:330px;
  1552. width:12px;
  1553. height:12px;
  1554. display:flex;
  1555. -webkit-transform:rotate(135deg);
  1556. -moz-transform:rotate(135deg);
  1557. -ms-transform:rotate(135deg);
  1558. transform:rotate(135deg);
  1559. }
  1560. #u130206 .text {
  1561. position:absolute;
  1562. align-self:center;
  1563. padding:2px 2px 2px 2px;
  1564. box-sizing:border-box;
  1565. width:100%;
  1566. }
  1567. #u130206_text {
  1568. border-width:0px;
  1569. word-wrap:break-word;
  1570. text-transform:none;
  1571. visibility:hidden;
  1572. }
  1573. #u130208_img {
  1574. border-width:0px;
  1575. position:absolute;
  1576. left:0px;
  1577. top:0px;
  1578. width:433px;
  1579. height:865px;
  1580. }
  1581. #u130208 {
  1582. border-width:0px;
  1583. position:absolute;
  1584. left:0px;
  1585. top:0px;
  1586. width:433px;
  1587. height:865px;
  1588. display:flex;
  1589. }
  1590. #u130208 .text {
  1591. position:absolute;
  1592. align-self:center;
  1593. padding:2px 2px 2px 2px;
  1594. box-sizing:border-box;
  1595. width:100%;
  1596. }
  1597. #u130208_text {
  1598. border-width:0px;
  1599. word-wrap:break-word;
  1600. text-transform:none;
  1601. visibility:hidden;
  1602. }
  1603. #u130209_div {
  1604. border-width:0px;
  1605. position:absolute;
  1606. left:0px;
  1607. top:0px;
  1608. width:375px;
  1609. height:40px;
  1610. background:inherit;
  1611. background-color:rgba(255, 255, 255, 1);
  1612. box-sizing:border-box;
  1613. border-width:1px;
  1614. border-style:solid;
  1615. border-color:rgba(215, 215, 215, 1);
  1616. border-left:0px;
  1617. border-top:0px;
  1618. border-right:0px;
  1619. border-radius:0px;
  1620. border-bottom-right-radius:0px;
  1621. border-bottom-left-radius:0px;
  1622. -moz-box-shadow:none;
  1623. -webkit-box-shadow:none;
  1624. box-shadow:none;
  1625. }
  1626. #u130209 {
  1627. border-width:0px;
  1628. position:absolute;
  1629. left:29px;
  1630. top:67px;
  1631. width:375px;
  1632. height:40px;
  1633. display:flex;
  1634. }
  1635. #u130209 .text {
  1636. position:absolute;
  1637. align-self:center;
  1638. padding:2px 2px 2px 2px;
  1639. box-sizing:border-box;
  1640. width:100%;
  1641. }
  1642. #u130209_text {
  1643. border-width:0px;
  1644. word-wrap:break-word;
  1645. text-transform:none;
  1646. visibility:hidden;
  1647. }
  1648. #u130210 {
  1649. border-width:0px;
  1650. position:absolute;
  1651. left:0px;
  1652. top:0px;
  1653. width:0px;
  1654. height:0px;
  1655. }
  1656. #u130211_div {
  1657. border-width:0px;
  1658. position:absolute;
  1659. left:0px;
  1660. top:0px;
  1661. width:88px;
  1662. height:32px;
  1663. background:inherit;
  1664. background-color:rgba(255, 255, 255, 1);
  1665. box-sizing:border-box;
  1666. border-width:1px;
  1667. border-style:solid;
  1668. border-color:rgba(242, 242, 242, 1);
  1669. border-radius:33px;
  1670. -moz-box-shadow:none;
  1671. -webkit-box-shadow:none;
  1672. box-shadow:none;
  1673. }
  1674. #u130211 {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:309px;
  1678. top:71px;
  1679. width:88px;
  1680. height:32px;
  1681. display:flex;
  1682. }
  1683. #u130211 .text {
  1684. position:absolute;
  1685. align-self:center;
  1686. padding:2px 2px 2px 2px;
  1687. box-sizing:border-box;
  1688. width:100%;
  1689. }
  1690. #u130211_text {
  1691. border-width:0px;
  1692. word-wrap:break-word;
  1693. text-transform:none;
  1694. visibility:hidden;
  1695. }
  1696. #u130212 {
  1697. border-width:0px;
  1698. position:absolute;
  1699. left:0px;
  1700. top:0px;
  1701. width:0px;
  1702. height:0px;
  1703. }
  1704. #u130213_img {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:0px;
  1708. top:0px;
  1709. width:18px;
  1710. height:18px;
  1711. }
  1712. #u130213 {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:372px;
  1716. top:78px;
  1717. width:18px;
  1718. height:18px;
  1719. display:flex;
  1720. }
  1721. #u130213 .text {
  1722. position:absolute;
  1723. align-self:center;
  1724. padding:2px 2px 2px 2px;
  1725. box-sizing:border-box;
  1726. width:100%;
  1727. }
  1728. #u130213_text {
  1729. border-width:0px;
  1730. word-wrap:break-word;
  1731. text-transform:none;
  1732. visibility:hidden;
  1733. }
  1734. #u130214_img {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:0px;
  1738. top:0px;
  1739. width:6px;
  1740. height:6px;
  1741. }
  1742. #u130214 {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:378px;
  1746. top:84px;
  1747. width:6px;
  1748. height:6px;
  1749. display:flex;
  1750. }
  1751. #u130214 .text {
  1752. position:absolute;
  1753. align-self:center;
  1754. padding:2px 2px 2px 2px;
  1755. box-sizing:border-box;
  1756. width:100%;
  1757. }
  1758. #u130214_text {
  1759. border-width:0px;
  1760. word-wrap:break-word;
  1761. text-transform:none;
  1762. visibility:hidden;
  1763. }
  1764. #u130215 {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:0px;
  1768. top:0px;
  1769. width:0px;
  1770. height:0px;
  1771. }
  1772. #u130216_img {
  1773. border-width:0px;
  1774. position:absolute;
  1775. left:0px;
  1776. top:0px;
  1777. width:5px;
  1778. height:5px;
  1779. }
  1780. #u130216 {
  1781. border-width:0px;
  1782. position:absolute;
  1783. left:323px;
  1784. top:85px;
  1785. width:5px;
  1786. height:5px;
  1787. display:flex;
  1788. }
  1789. #u130216 .text {
  1790. position:absolute;
  1791. align-self:center;
  1792. padding:2px 2px 2px 2px;
  1793. box-sizing:border-box;
  1794. width:100%;
  1795. }
  1796. #u130216_text {
  1797. border-width:0px;
  1798. word-wrap:break-word;
  1799. text-transform:none;
  1800. visibility:hidden;
  1801. }
  1802. #u130217_img {
  1803. border-width:0px;
  1804. position:absolute;
  1805. left:0px;
  1806. top:0px;
  1807. width:5px;
  1808. height:5px;
  1809. }
  1810. #u130217 {
  1811. border-width:0px;
  1812. position:absolute;
  1813. left:339px;
  1814. top:85px;
  1815. width:5px;
  1816. height:5px;
  1817. display:flex;
  1818. }
  1819. #u130217 .text {
  1820. position:absolute;
  1821. align-self:center;
  1822. padding:2px 2px 2px 2px;
  1823. box-sizing:border-box;
  1824. width:100%;
  1825. }
  1826. #u130217_text {
  1827. border-width:0px;
  1828. word-wrap:break-word;
  1829. text-transform:none;
  1830. visibility:hidden;
  1831. }
  1832. #u130218_img {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:0px;
  1836. top:0px;
  1837. width:7px;
  1838. height:7px;
  1839. }
  1840. #u130218 {
  1841. border-width:0px;
  1842. position:absolute;
  1843. left:330px;
  1844. top:84px;
  1845. width:7px;
  1846. height:7px;
  1847. display:flex;
  1848. }
  1849. #u130218 .text {
  1850. position:absolute;
  1851. align-self:center;
  1852. padding:2px 2px 2px 2px;
  1853. box-sizing:border-box;
  1854. width:100%;
  1855. }
  1856. #u130218_text {
  1857. border-width:0px;
  1858. word-wrap:break-word;
  1859. text-transform:none;
  1860. visibility:hidden;
  1861. }
  1862. #u130219_img {
  1863. border-width:0px;
  1864. position:absolute;
  1865. left:0px;
  1866. top:0px;
  1867. width:19px;
  1868. height:2px;
  1869. }
  1870. #u130219 {
  1871. border-width:0px;
  1872. position:absolute;
  1873. left:347px;
  1874. top:87px;
  1875. width:18px;
  1876. height:1px;
  1877. display:flex;
  1878. -webkit-transform:rotate(90deg);
  1879. -moz-transform:rotate(90deg);
  1880. -ms-transform:rotate(90deg);
  1881. transform:rotate(90deg);
  1882. }
  1883. #u130219 .text {
  1884. position:absolute;
  1885. align-self:center;
  1886. padding:2px 2px 2px 2px;
  1887. box-sizing:border-box;
  1888. width:100%;
  1889. }
  1890. #u130219_text {
  1891. border-width:0px;
  1892. word-wrap:break-word;
  1893. text-transform:none;
  1894. visibility:hidden;
  1895. }
  1896. #u130220_img {
  1897. border-width:0px;
  1898. position:absolute;
  1899. left:0px;
  1900. top:0px;
  1901. width:375px;
  1902. height:44px;
  1903. }
  1904. #u130220 {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:29px;
  1908. top:24px;
  1909. width:375px;
  1910. height:44px;
  1911. display:flex;
  1912. }
  1913. #u130220 .text {
  1914. position:absolute;
  1915. align-self:center;
  1916. padding:2px 2px 2px 2px;
  1917. box-sizing:border-box;
  1918. width:100%;
  1919. }
  1920. #u130220_text {
  1921. border-width:0px;
  1922. word-wrap:break-word;
  1923. text-transform:none;
  1924. visibility:hidden;
  1925. }
  1926. #u130221_div {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:0px;
  1930. top:0px;
  1931. width:375px;
  1932. height:50px;
  1933. background:inherit;
  1934. background-color:rgba(255, 255, 255, 1);
  1935. box-sizing:border-box;
  1936. border-width:1px;
  1937. border-style:solid;
  1938. border-color:rgba(242, 242, 242, 1);
  1939. border-radius:26px;
  1940. border-top-left-radius:0px;
  1941. border-top-right-radius:0px;
  1942. -moz-box-shadow:none;
  1943. -webkit-box-shadow:none;
  1944. box-shadow:none;
  1945. }
  1946. #u130221 {
  1947. border-width:0px;
  1948. position:absolute;
  1949. left:29px;
  1950. top:788px;
  1951. width:375px;
  1952. height:50px;
  1953. display:flex;
  1954. }
  1955. #u130221 .text {
  1956. position:absolute;
  1957. align-self:center;
  1958. padding:2px 2px 2px 2px;
  1959. box-sizing:border-box;
  1960. width:100%;
  1961. }
  1962. #u130221_text {
  1963. border-width:0px;
  1964. word-wrap:break-word;
  1965. text-transform:none;
  1966. visibility:hidden;
  1967. }
  1968. #u130222 {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:0px;
  1972. top:0px;
  1973. width:0px;
  1974. height:0px;
  1975. }
  1976. #u130223_img {
  1977. border-width:0px;
  1978. position:absolute;
  1979. left:0px;
  1980. top:0px;
  1981. width:24px;
  1982. height:24px;
  1983. }
  1984. #u130223 {
  1985. border-width:0px;
  1986. position:absolute;
  1987. left:69px;
  1988. top:792px;
  1989. width:24px;
  1990. height:24px;
  1991. display:flex;
  1992. font-size:8px;
  1993. }
  1994. #u130223 .text {
  1995. position:absolute;
  1996. align-self:center;
  1997. padding:2px 2px 2px 2px;
  1998. box-sizing:border-box;
  1999. width:100%;
  2000. }
  2001. #u130223_text {
  2002. border-width:0px;
  2003. word-wrap:break-word;
  2004. text-transform:none;
  2005. }
  2006. #u130224_div {
  2007. border-width:0px;
  2008. position:absolute;
  2009. left:0px;
  2010. top:0px;
  2011. width:25px;
  2012. height:17px;
  2013. background:inherit;
  2014. background-color:rgba(255, 255, 255, 0);
  2015. border:none;
  2016. border-radius:0px;
  2017. -moz-box-shadow:none;
  2018. -webkit-box-shadow:none;
  2019. box-shadow:none;
  2020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2021. font-weight:400;
  2022. font-style:normal;
  2023. font-size:12px;
  2024. }
  2025. #u130224 {
  2026. border-width:0px;
  2027. position:absolute;
  2028. left:69px;
  2029. top:817px;
  2030. width:25px;
  2031. height:17px;
  2032. display:flex;
  2033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2034. font-weight:400;
  2035. font-style:normal;
  2036. font-size:12px;
  2037. }
  2038. #u130224 .text {
  2039. position:absolute;
  2040. align-self:flex-start;
  2041. padding:0px 0px 0px 0px;
  2042. box-sizing:border-box;
  2043. width:100%;
  2044. }
  2045. #u130224_text {
  2046. border-width:0px;
  2047. white-space:nowrap;
  2048. text-transform:none;
  2049. }
  2050. #u130225 {
  2051. border-width:0px;
  2052. position:absolute;
  2053. left:0px;
  2054. top:0px;
  2055. width:0px;
  2056. height:0px;
  2057. }
  2058. #u130226_img {
  2059. border-width:0px;
  2060. position:absolute;
  2061. left:0px;
  2062. top:0px;
  2063. width:24px;
  2064. height:24px;
  2065. }
  2066. #u130226 {
  2067. border-width:0px;
  2068. position:absolute;
  2069. left:339px;
  2070. top:794px;
  2071. width:24px;
  2072. height:24px;
  2073. display:flex;
  2074. font-size:8px;
  2075. }
  2076. #u130226 .text {
  2077. position:absolute;
  2078. align-self:center;
  2079. padding:2px 2px 2px 2px;
  2080. box-sizing:border-box;
  2081. width:100%;
  2082. }
  2083. #u130226_text {
  2084. border-width:0px;
  2085. word-wrap:break-word;
  2086. text-transform:none;
  2087. }
  2088. #u130227_div {
  2089. border-width:0px;
  2090. position:absolute;
  2091. left:0px;
  2092. top:0px;
  2093. width:25px;
  2094. height:17px;
  2095. background:inherit;
  2096. background-color:rgba(255, 255, 255, 0);
  2097. border:none;
  2098. border-radius:0px;
  2099. -moz-box-shadow:none;
  2100. -webkit-box-shadow:none;
  2101. box-shadow:none;
  2102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2103. font-weight:400;
  2104. font-style:normal;
  2105. font-size:12px;
  2106. }
  2107. #u130227 {
  2108. border-width:0px;
  2109. position:absolute;
  2110. left:339px;
  2111. top:819px;
  2112. width:25px;
  2113. height:17px;
  2114. display:flex;
  2115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2116. font-weight:400;
  2117. font-style:normal;
  2118. font-size:12px;
  2119. }
  2120. #u130227 .text {
  2121. position:absolute;
  2122. align-self:flex-start;
  2123. padding:0px 0px 0px 0px;
  2124. box-sizing:border-box;
  2125. width:100%;
  2126. }
  2127. #u130227_text {
  2128. border-width:0px;
  2129. white-space:nowrap;
  2130. text-transform:none;
  2131. }
  2132. #u130228_div {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:0px;
  2136. top:0px;
  2137. width:375px;
  2138. height:681px;
  2139. background:inherit;
  2140. background-color:rgba(242, 242, 242, 0.462745098039216);
  2141. border:none;
  2142. border-radius:0px;
  2143. -moz-box-shadow:none;
  2144. -webkit-box-shadow:none;
  2145. box-shadow:none;
  2146. }
  2147. #u130228 {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:29px;
  2151. top:107px;
  2152. width:375px;
  2153. height:681px;
  2154. display:flex;
  2155. }
  2156. #u130228 .text {
  2157. position:absolute;
  2158. align-self:center;
  2159. padding:2px 2px 2px 2px;
  2160. box-sizing:border-box;
  2161. width:100%;
  2162. }
  2163. #u130228_text {
  2164. border-width:0px;
  2165. word-wrap:break-word;
  2166. text-transform:none;
  2167. visibility:hidden;
  2168. }
  2169. #u130229 {
  2170. border-width:0px;
  2171. position:absolute;
  2172. left:0px;
  2173. top:0px;
  2174. width:0px;
  2175. height:0px;
  2176. }
  2177. #u130230_img {
  2178. border-width:0px;
  2179. position:absolute;
  2180. left:0px;
  2181. top:0px;
  2182. width:24px;
  2183. height:24px;
  2184. }
  2185. #u130230 {
  2186. border-width:0px;
  2187. position:absolute;
  2188. left:251px;
  2189. top:792px;
  2190. width:24px;
  2191. height:24px;
  2192. display:flex;
  2193. font-size:8px;
  2194. }
  2195. #u130230 .text {
  2196. position:absolute;
  2197. align-self:center;
  2198. padding:2px 2px 2px 2px;
  2199. box-sizing:border-box;
  2200. width:100%;
  2201. }
  2202. #u130230_text {
  2203. border-width:0px;
  2204. word-wrap:break-word;
  2205. text-transform:none;
  2206. }
  2207. #u130231_div {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:0px;
  2211. top:0px;
  2212. width:37px;
  2213. height:17px;
  2214. background:inherit;
  2215. background-color:rgba(255, 255, 255, 0);
  2216. border:none;
  2217. border-radius:0px;
  2218. -moz-box-shadow:none;
  2219. -webkit-box-shadow:none;
  2220. box-shadow:none;
  2221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2222. font-weight:400;
  2223. font-style:normal;
  2224. font-size:12px;
  2225. }
  2226. #u130231 {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:245px;
  2230. top:817px;
  2231. width:37px;
  2232. height:17px;
  2233. display:flex;
  2234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2235. font-weight:400;
  2236. font-style:normal;
  2237. font-size:12px;
  2238. }
  2239. #u130231 .text {
  2240. position:absolute;
  2241. align-self:flex-start;
  2242. padding:0px 0px 0px 0px;
  2243. box-sizing:border-box;
  2244. width:100%;
  2245. }
  2246. #u130231_text {
  2247. border-width:0px;
  2248. white-space:nowrap;
  2249. text-transform:none;
  2250. }
  2251. #u130232 {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:0px;
  2255. top:0px;
  2256. width:0px;
  2257. height:0px;
  2258. }
  2259. #u130233_img {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:0px;
  2263. top:0px;
  2264. width:24px;
  2265. height:24px;
  2266. }
  2267. #u130233 {
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:157px;
  2271. top:792px;
  2272. width:24px;
  2273. height:24px;
  2274. display:flex;
  2275. font-size:8px;
  2276. }
  2277. #u130233 .text {
  2278. position:absolute;
  2279. align-self:center;
  2280. padding:2px 2px 2px 2px;
  2281. box-sizing:border-box;
  2282. width:100%;
  2283. }
  2284. #u130233_text {
  2285. border-width:0px;
  2286. word-wrap:break-word;
  2287. text-transform:none;
  2288. }
  2289. #u130234_div {
  2290. border-width:0px;
  2291. position:absolute;
  2292. left:0px;
  2293. top:0px;
  2294. width:37px;
  2295. height:17px;
  2296. background:inherit;
  2297. background-color:rgba(255, 255, 255, 0);
  2298. border:none;
  2299. border-radius:0px;
  2300. -moz-box-shadow:none;
  2301. -webkit-box-shadow:none;
  2302. box-shadow:none;
  2303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2304. font-weight:400;
  2305. font-style:normal;
  2306. font-size:12px;
  2307. }
  2308. #u130234 {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:151px;
  2312. top:817px;
  2313. width:37px;
  2314. height:17px;
  2315. display:flex;
  2316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2317. font-weight:400;
  2318. font-style:normal;
  2319. font-size:12px;
  2320. }
  2321. #u130234 .text {
  2322. position:absolute;
  2323. align-self:flex-start;
  2324. padding:0px 0px 0px 0px;
  2325. box-sizing:border-box;
  2326. width:100%;
  2327. }
  2328. #u130234_text {
  2329. border-width:0px;
  2330. white-space:nowrap;
  2331. text-transform:none;
  2332. }
  2333. #u130235_div {
  2334. border-width:0px;
  2335. position:absolute;
  2336. left:0px;
  2337. top:0px;
  2338. width:375px;
  2339. height:732px;
  2340. background:inherit;
  2341. background-color:rgba(242, 242, 242, 0.996078431372549);
  2342. border:none;
  2343. border-top:0px;
  2344. border-radius:28px;
  2345. border-top-left-radius:0px;
  2346. border-top-right-radius:0px;
  2347. -moz-box-shadow:none;
  2348. -webkit-box-shadow:none;
  2349. box-shadow:none;
  2350. }
  2351. #u130235 {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:29px;
  2355. top:107px;
  2356. width:375px;
  2357. height:732px;
  2358. display:flex;
  2359. }
  2360. #u130235 .text {
  2361. position:absolute;
  2362. align-self:center;
  2363. padding:2px 2px 2px 2px;
  2364. box-sizing:border-box;
  2365. width:100%;
  2366. }
  2367. #u130235_text {
  2368. border-width:0px;
  2369. word-wrap:break-word;
  2370. text-transform:none;
  2371. visibility:hidden;
  2372. }
  2373. #u130236_img {
  2374. border-width:0px;
  2375. position:absolute;
  2376. left:0px;
  2377. top:0px;
  2378. width:375px;
  2379. height:44px;
  2380. }
  2381. #u130236 {
  2382. border-width:0px;
  2383. position:absolute;
  2384. left:29px;
  2385. top:24px;
  2386. width:375px;
  2387. height:44px;
  2388. display:flex;
  2389. }
  2390. #u130236 .text {
  2391. position:absolute;
  2392. align-self:center;
  2393. padding:2px 2px 2px 2px;
  2394. box-sizing:border-box;
  2395. width:100%;
  2396. }
  2397. #u130236_text {
  2398. border-width:0px;
  2399. word-wrap:break-word;
  2400. text-transform:none;
  2401. visibility:hidden;
  2402. }
  2403. #u130237 {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:0px;
  2407. top:0px;
  2408. width:0px;
  2409. height:0px;
  2410. }
  2411. #u130238_img {
  2412. border-width:0px;
  2413. position:absolute;
  2414. left:0px;
  2415. top:0px;
  2416. width:355px;
  2417. height:170px;
  2418. }
  2419. #u130238 {
  2420. border-width:0px;
  2421. position:absolute;
  2422. left:39px;
  2423. top:207px;
  2424. width:355px;
  2425. height:170px;
  2426. display:flex;
  2427. }
  2428. #u130238 .text {
  2429. position:absolute;
  2430. align-self:center;
  2431. padding:2px 2px 2px 2px;
  2432. box-sizing:border-box;
  2433. width:100%;
  2434. }
  2435. #u130238_text {
  2436. border-width:0px;
  2437. word-wrap:break-word;
  2438. text-transform:none;
  2439. visibility:hidden;
  2440. }
  2441. #u130239_div {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:0px;
  2445. top:0px;
  2446. width:211px;
  2447. height:30px;
  2448. background:inherit;
  2449. background-color:rgba(255, 255, 255, 0);
  2450. border:none;
  2451. border-left:0px;
  2452. border-top:0px;
  2453. border-right:0px;
  2454. border-radius:0px;
  2455. border-bottom-right-radius:0px;
  2456. border-bottom-left-radius:0px;
  2457. -moz-box-shadow:none;
  2458. -webkit-box-shadow:none;
  2459. box-shadow:none;
  2460. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2461. font-weight:500;
  2462. font-style:normal;
  2463. font-size:14px;
  2464. line-height:30px;
  2465. }
  2466. #u130239 {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:56px;
  2470. top:214px;
  2471. width:211px;
  2472. height:30px;
  2473. display:flex;
  2474. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2475. font-weight:500;
  2476. font-style:normal;
  2477. font-size:14px;
  2478. line-height:30px;
  2479. }
  2480. #u130239 .text {
  2481. position:absolute;
  2482. align-self:flex-start;
  2483. padding:0px 0px 0px 0px;
  2484. box-sizing:border-box;
  2485. width:100%;
  2486. }
  2487. #u130239_text {
  2488. border-width:0px;
  2489. white-space:nowrap;
  2490. text-transform:none;
  2491. }
  2492. #u130240_div {
  2493. border-width:0px;
  2494. position:absolute;
  2495. left:0px;
  2496. top:0px;
  2497. width:325px;
  2498. height:125px;
  2499. background:inherit;
  2500. background-color:rgba(255, 255, 255, 0);
  2501. border:none;
  2502. border-left:0px;
  2503. border-top:0px;
  2504. border-right:0px;
  2505. border-radius:0px;
  2506. border-bottom-right-radius:0px;
  2507. border-bottom-left-radius:0px;
  2508. -moz-box-shadow:none;
  2509. -webkit-box-shadow:none;
  2510. box-shadow:none;
  2511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2512. font-weight:400;
  2513. font-style:normal;
  2514. font-size:12px;
  2515. line-height:25px;
  2516. }
  2517. #u130240 {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:55px;
  2521. top:247px;
  2522. width:325px;
  2523. height:125px;
  2524. display:flex;
  2525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2526. font-weight:400;
  2527. font-style:normal;
  2528. font-size:12px;
  2529. line-height:25px;
  2530. }
  2531. #u130240 .text {
  2532. position:absolute;
  2533. align-self:flex-start;
  2534. padding:0px 0px 0px 0px;
  2535. box-sizing:border-box;
  2536. width:100%;
  2537. }
  2538. #u130240_text {
  2539. border-width:0px;
  2540. word-wrap:break-word;
  2541. text-transform:none;
  2542. }
  2543. #u130241 {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:0px;
  2547. top:0px;
  2548. width:0px;
  2549. height:0px;
  2550. }
  2551. #u130242_img {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:0px;
  2555. top:0px;
  2556. width:355px;
  2557. height:170px;
  2558. }
  2559. #u130242 {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:42px;
  2563. top:387px;
  2564. width:355px;
  2565. height:170px;
  2566. display:flex;
  2567. }
  2568. #u130242 .text {
  2569. position:absolute;
  2570. align-self:center;
  2571. padding:2px 2px 2px 2px;
  2572. box-sizing:border-box;
  2573. width:100%;
  2574. }
  2575. #u130242_text {
  2576. border-width:0px;
  2577. word-wrap:break-word;
  2578. text-transform:none;
  2579. visibility:hidden;
  2580. }
  2581. #u130243_div {
  2582. border-width:0px;
  2583. position:absolute;
  2584. left:0px;
  2585. top:0px;
  2586. width:132px;
  2587. height:30px;
  2588. background:inherit;
  2589. background-color:rgba(255, 255, 255, 0);
  2590. border:none;
  2591. border-left:0px;
  2592. border-top:0px;
  2593. border-right:0px;
  2594. border-radius:0px;
  2595. border-bottom-right-radius:0px;
  2596. border-bottom-left-radius:0px;
  2597. -moz-box-shadow:none;
  2598. -webkit-box-shadow:none;
  2599. box-shadow:none;
  2600. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2601. font-weight:500;
  2602. font-style:normal;
  2603. font-size:14px;
  2604. line-height:30px;
  2605. }
  2606. #u130243 {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:59px;
  2610. top:394px;
  2611. width:132px;
  2612. height:30px;
  2613. display:flex;
  2614. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2615. font-weight:500;
  2616. font-style:normal;
  2617. font-size:14px;
  2618. line-height:30px;
  2619. }
  2620. #u130243 .text {
  2621. position:absolute;
  2622. align-self:flex-start;
  2623. padding:0px 0px 0px 0px;
  2624. box-sizing:border-box;
  2625. width:100%;
  2626. }
  2627. #u130243_text {
  2628. border-width:0px;
  2629. white-space:nowrap;
  2630. text-transform:none;
  2631. }
  2632. #u130244_div {
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:0px;
  2636. top:0px;
  2637. width:325px;
  2638. height:125px;
  2639. background:inherit;
  2640. background-color:rgba(255, 255, 255, 0);
  2641. border:none;
  2642. border-left:0px;
  2643. border-top:0px;
  2644. border-right:0px;
  2645. border-radius:0px;
  2646. border-bottom-right-radius:0px;
  2647. border-bottom-left-radius:0px;
  2648. -moz-box-shadow:none;
  2649. -webkit-box-shadow:none;
  2650. box-shadow:none;
  2651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2652. font-weight:400;
  2653. font-style:normal;
  2654. font-size:12px;
  2655. line-height:25px;
  2656. }
  2657. #u130244 {
  2658. border-width:0px;
  2659. position:absolute;
  2660. left:58px;
  2661. top:427px;
  2662. width:325px;
  2663. height:125px;
  2664. display:flex;
  2665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2666. font-weight:400;
  2667. font-style:normal;
  2668. font-size:12px;
  2669. line-height:25px;
  2670. }
  2671. #u130244 .text {
  2672. position:absolute;
  2673. align-self:flex-start;
  2674. padding:0px 0px 0px 0px;
  2675. box-sizing:border-box;
  2676. width:100%;
  2677. }
  2678. #u130244_text {
  2679. border-width:0px;
  2680. word-wrap:break-word;
  2681. text-transform:none;
  2682. }
  2683. #u130245_div {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:0px;
  2687. top:0px;
  2688. width:482px;
  2689. height:180px;
  2690. background:inherit;
  2691. background-color:rgba(255, 255, 255, 0);
  2692. border:none;
  2693. border-left:0px;
  2694. border-top:0px;
  2695. border-right:0px;
  2696. border-radius:0px;
  2697. border-bottom-right-radius:0px;
  2698. border-bottom-left-radius:0px;
  2699. -moz-box-shadow:none;
  2700. -webkit-box-shadow:none;
  2701. box-shadow:none;
  2702. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2703. font-weight:500;
  2704. font-style:normal;
  2705. line-height:30px;
  2706. }
  2707. #u130245 {
  2708. border-width:0px;
  2709. position:absolute;
  2710. left:-843px;
  2711. top:459px;
  2712. width:482px;
  2713. height:180px;
  2714. display:flex;
  2715. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2716. font-weight:500;
  2717. font-style:normal;
  2718. line-height:30px;
  2719. }
  2720. #u130245 .text {
  2721. position:absolute;
  2722. align-self:flex-start;
  2723. padding:0px 0px 0px 0px;
  2724. box-sizing:border-box;
  2725. width:100%;
  2726. }
  2727. #u130245_text {
  2728. border-width:0px;
  2729. word-wrap:break-word;
  2730. text-transform:none;
  2731. }
  2732. #u130246 {
  2733. border-width:0px;
  2734. position:absolute;
  2735. left:0px;
  2736. top:0px;
  2737. width:0px;
  2738. height:0px;
  2739. }
  2740. #u130247_div {
  2741. border-width:0px;
  2742. position:absolute;
  2743. left:0px;
  2744. top:0px;
  2745. width:375px;
  2746. height:40px;
  2747. background:inherit;
  2748. background-color:rgba(255, 255, 255, 1);
  2749. box-sizing:border-box;
  2750. border-width:1px;
  2751. border-style:solid;
  2752. border-color:rgba(215, 215, 215, 1);
  2753. border-left:0px;
  2754. border-top:0px;
  2755. border-right:0px;
  2756. border-radius:0px;
  2757. border-bottom-right-radius:0px;
  2758. border-bottom-left-radius:0px;
  2759. -moz-box-shadow:none;
  2760. -webkit-box-shadow:none;
  2761. box-shadow:none;
  2762. }
  2763. #u130247 {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:29px;
  2767. top:67px;
  2768. width:375px;
  2769. height:40px;
  2770. display:flex;
  2771. }
  2772. #u130247 .text {
  2773. position:absolute;
  2774. align-self:center;
  2775. padding:2px 2px 2px 2px;
  2776. box-sizing:border-box;
  2777. width:100%;
  2778. }
  2779. #u130247_text {
  2780. border-width:0px;
  2781. word-wrap:break-word;
  2782. text-transform:none;
  2783. visibility:hidden;
  2784. }
  2785. #u130248 {
  2786. border-width:0px;
  2787. position:absolute;
  2788. left:0px;
  2789. top:0px;
  2790. width:0px;
  2791. height:0px;
  2792. }
  2793. #u130249_div {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:0px;
  2797. top:0px;
  2798. width:88px;
  2799. height:32px;
  2800. background:inherit;
  2801. background-color:rgba(255, 255, 255, 1);
  2802. box-sizing:border-box;
  2803. border-width:1px;
  2804. border-style:solid;
  2805. border-color:rgba(242, 242, 242, 1);
  2806. border-radius:33px;
  2807. -moz-box-shadow:none;
  2808. -webkit-box-shadow:none;
  2809. box-shadow:none;
  2810. }
  2811. #u130249 {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:309px;
  2815. top:71px;
  2816. width:88px;
  2817. height:32px;
  2818. display:flex;
  2819. }
  2820. #u130249 .text {
  2821. position:absolute;
  2822. align-self:center;
  2823. padding:2px 2px 2px 2px;
  2824. box-sizing:border-box;
  2825. width:100%;
  2826. }
  2827. #u130249_text {
  2828. border-width:0px;
  2829. word-wrap:break-word;
  2830. text-transform:none;
  2831. visibility:hidden;
  2832. }
  2833. #u130250 {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:0px;
  2839. height:0px;
  2840. }
  2841. #u130251_img {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:0px;
  2845. top:0px;
  2846. width:18px;
  2847. height:18px;
  2848. }
  2849. #u130251 {
  2850. border-width:0px;
  2851. position:absolute;
  2852. left:372px;
  2853. top:78px;
  2854. width:18px;
  2855. height:18px;
  2856. display:flex;
  2857. }
  2858. #u130251 .text {
  2859. position:absolute;
  2860. align-self:center;
  2861. padding:2px 2px 2px 2px;
  2862. box-sizing:border-box;
  2863. width:100%;
  2864. }
  2865. #u130251_text {
  2866. border-width:0px;
  2867. word-wrap:break-word;
  2868. text-transform:none;
  2869. visibility:hidden;
  2870. }
  2871. #u130252_img {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:0px;
  2875. top:0px;
  2876. width:6px;
  2877. height:6px;
  2878. }
  2879. #u130252 {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:378px;
  2883. top:84px;
  2884. width:6px;
  2885. height:6px;
  2886. display:flex;
  2887. }
  2888. #u130252 .text {
  2889. position:absolute;
  2890. align-self:center;
  2891. padding:2px 2px 2px 2px;
  2892. box-sizing:border-box;
  2893. width:100%;
  2894. }
  2895. #u130252_text {
  2896. border-width:0px;
  2897. word-wrap:break-word;
  2898. text-transform:none;
  2899. visibility:hidden;
  2900. }
  2901. #u130253 {
  2902. border-width:0px;
  2903. position:absolute;
  2904. left:0px;
  2905. top:0px;
  2906. width:0px;
  2907. height:0px;
  2908. }
  2909. #u130254_img {
  2910. border-width:0px;
  2911. position:absolute;
  2912. left:0px;
  2913. top:0px;
  2914. width:5px;
  2915. height:5px;
  2916. }
  2917. #u130254 {
  2918. border-width:0px;
  2919. position:absolute;
  2920. left:323px;
  2921. top:85px;
  2922. width:5px;
  2923. height:5px;
  2924. display:flex;
  2925. }
  2926. #u130254 .text {
  2927. position:absolute;
  2928. align-self:center;
  2929. padding:2px 2px 2px 2px;
  2930. box-sizing:border-box;
  2931. width:100%;
  2932. }
  2933. #u130254_text {
  2934. border-width:0px;
  2935. word-wrap:break-word;
  2936. text-transform:none;
  2937. visibility:hidden;
  2938. }
  2939. #u130255_img {
  2940. border-width:0px;
  2941. position:absolute;
  2942. left:0px;
  2943. top:0px;
  2944. width:5px;
  2945. height:5px;
  2946. }
  2947. #u130255 {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:339px;
  2951. top:85px;
  2952. width:5px;
  2953. height:5px;
  2954. display:flex;
  2955. }
  2956. #u130255 .text {
  2957. position:absolute;
  2958. align-self:center;
  2959. padding:2px 2px 2px 2px;
  2960. box-sizing:border-box;
  2961. width:100%;
  2962. }
  2963. #u130255_text {
  2964. border-width:0px;
  2965. word-wrap:break-word;
  2966. text-transform:none;
  2967. visibility:hidden;
  2968. }
  2969. #u130256_img {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:0px;
  2973. top:0px;
  2974. width:7px;
  2975. height:7px;
  2976. }
  2977. #u130256 {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:330px;
  2981. top:84px;
  2982. width:7px;
  2983. height:7px;
  2984. display:flex;
  2985. }
  2986. #u130256 .text {
  2987. position:absolute;
  2988. align-self:center;
  2989. padding:2px 2px 2px 2px;
  2990. box-sizing:border-box;
  2991. width:100%;
  2992. }
  2993. #u130256_text {
  2994. border-width:0px;
  2995. word-wrap:break-word;
  2996. text-transform:none;
  2997. visibility:hidden;
  2998. }
  2999. #u130257_img {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:0px;
  3003. top:0px;
  3004. width:19px;
  3005. height:2px;
  3006. }
  3007. #u130257 {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:347px;
  3011. top:87px;
  3012. width:18px;
  3013. height:1px;
  3014. display:flex;
  3015. -webkit-transform:rotate(90deg);
  3016. -moz-transform:rotate(90deg);
  3017. -ms-transform:rotate(90deg);
  3018. transform:rotate(90deg);
  3019. }
  3020. #u130257 .text {
  3021. position:absolute;
  3022. align-self:center;
  3023. padding:2px 2px 2px 2px;
  3024. box-sizing:border-box;
  3025. width:100%;
  3026. }
  3027. #u130257_text {
  3028. border-width:0px;
  3029. word-wrap:break-word;
  3030. text-transform:none;
  3031. visibility:hidden;
  3032. }
  3033. #u130258_div {
  3034. border-width:0px;
  3035. position:absolute;
  3036. left:0px;
  3037. top:0px;
  3038. width:65px;
  3039. height:22px;
  3040. background:inherit;
  3041. background-color:rgba(255, 255, 255, 0);
  3042. border:none;
  3043. border-radius:0px;
  3044. -moz-box-shadow:none;
  3045. -webkit-box-shadow:none;
  3046. box-shadow:none;
  3047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3048. font-weight:400;
  3049. font-style:normal;
  3050. font-size:16px;
  3051. color:#000000;
  3052. }
  3053. #u130258 {
  3054. border-width:0px;
  3055. position:absolute;
  3056. left:182px;
  3057. top:76px;
  3058. width:65px;
  3059. height:22px;
  3060. display:flex;
  3061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3062. font-weight:400;
  3063. font-style:normal;
  3064. font-size:16px;
  3065. color:#000000;
  3066. }
  3067. #u130258 .text {
  3068. position:absolute;
  3069. align-self:flex-start;
  3070. padding:0px 0px 0px 0px;
  3071. box-sizing:border-box;
  3072. width:100%;
  3073. }
  3074. #u130258_text {
  3075. border-width:0px;
  3076. white-space:nowrap;
  3077. text-transform:none;
  3078. }
  3079. #u130259_div {
  3080. border-width:0px;
  3081. position:absolute;
  3082. left:0px;
  3083. top:0px;
  3084. width:12px;
  3085. height:12px;
  3086. background:inherit;
  3087. background-color:rgba(255, 255, 255, 0);
  3088. box-sizing:border-box;
  3089. border-width:2px;
  3090. border-style:solid;
  3091. border-color:rgba(51, 51, 51, 1);
  3092. border-right:0px;
  3093. border-bottom:0px;
  3094. border-radius:0px;
  3095. border-top-right-radius:0px;
  3096. border-bottom-left-radius:0px;
  3097. -moz-box-shadow:none;
  3098. -webkit-box-shadow:none;
  3099. box-shadow:none;
  3100. }
  3101. #u130259 {
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:44px;
  3105. top:81px;
  3106. width:12px;
  3107. height:12px;
  3108. display:flex;
  3109. -webkit-transform:rotate(315deg);
  3110. -moz-transform:rotate(315deg);
  3111. -ms-transform:rotate(315deg);
  3112. transform:rotate(315deg);
  3113. }
  3114. #u130259 .text {
  3115. position:absolute;
  3116. align-self:center;
  3117. padding:2px 2px 2px 2px;
  3118. box-sizing:border-box;
  3119. width:100%;
  3120. }
  3121. #u130259_text {
  3122. border-width:0px;
  3123. word-wrap:break-word;
  3124. text-transform:none;
  3125. visibility:hidden;
  3126. }
  3127. #u130260_img {
  3128. border-width:0px;
  3129. position:absolute;
  3130. left:0px;
  3131. top:0px;
  3132. width:23px;
  3133. height:23px;
  3134. }
  3135. #u130260 {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:71px;
  3139. top:76px;
  3140. width:23px;
  3141. height:23px;
  3142. display:flex;
  3143. }
  3144. #u130260 .text {
  3145. position:absolute;
  3146. align-self:center;
  3147. padding:2px 2px 2px 2px;
  3148. box-sizing:border-box;
  3149. width:100%;
  3150. }
  3151. #u130260_text {
  3152. border-width:0px;
  3153. word-wrap:break-word;
  3154. text-transform:none;
  3155. visibility:hidden;
  3156. }
  3157. #u130261 {
  3158. border-width:0px;
  3159. position:absolute;
  3160. left:0px;
  3161. top:0px;
  3162. width:0px;
  3163. height:0px;
  3164. }
  3165. #u130262_div {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:0px;
  3169. top:0px;
  3170. width:375px;
  3171. height:41px;
  3172. background:inherit;
  3173. background-color:rgba(255, 255, 255, 1);
  3174. border:none;
  3175. border-radius:0px;
  3176. -moz-box-shadow:none;
  3177. -webkit-box-shadow:none;
  3178. box-shadow:none;
  3179. }
  3180. #u130262 {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:29px;
  3184. top:157px;
  3185. width:375px;
  3186. height:41px;
  3187. display:flex;
  3188. }
  3189. #u130262 .text {
  3190. position:absolute;
  3191. align-self:center;
  3192. padding:2px 2px 2px 2px;
  3193. box-sizing:border-box;
  3194. width:100%;
  3195. }
  3196. #u130262_text {
  3197. border-width:0px;
  3198. word-wrap:break-word;
  3199. text-transform:none;
  3200. visibility:hidden;
  3201. }
  3202. #u130263_div {
  3203. border-width:0px;
  3204. position:absolute;
  3205. left:0px;
  3206. top:0px;
  3207. width:37px;
  3208. height:40px;
  3209. background:inherit;
  3210. background-color:rgba(255, 255, 255, 0);
  3211. border:none;
  3212. border-left:0px;
  3213. border-top:0px;
  3214. border-right:0px;
  3215. border-radius:0px;
  3216. border-bottom-right-radius:0px;
  3217. border-bottom-left-radius:0px;
  3218. -moz-box-shadow:none;
  3219. -webkit-box-shadow:none;
  3220. box-shadow:none;
  3221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3222. font-weight:400;
  3223. font-style:normal;
  3224. font-size:12px;
  3225. text-align:center;
  3226. }
  3227. #u130263 {
  3228. border-width:0px;
  3229. position:absolute;
  3230. left:111px;
  3231. top:157px;
  3232. width:37px;
  3233. height:40px;
  3234. display:flex;
  3235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3236. font-weight:400;
  3237. font-style:normal;
  3238. font-size:12px;
  3239. text-align:center;
  3240. }
  3241. #u130263 .text {
  3242. position:absolute;
  3243. align-self:center;
  3244. padding:0px 0px 0px 0px;
  3245. box-sizing:border-box;
  3246. width:100%;
  3247. }
  3248. #u130263_text {
  3249. border-width:0px;
  3250. white-space:nowrap;
  3251. text-transform:none;
  3252. }
  3253. #u130264_div {
  3254. border-width:0px;
  3255. position:absolute;
  3256. left:0px;
  3257. top:0px;
  3258. width:37px;
  3259. height:40px;
  3260. background:inherit;
  3261. background-color:rgba(255, 255, 255, 0);
  3262. box-sizing:border-box;
  3263. border-width:2px;
  3264. border-style:solid;
  3265. border-color:rgba(24, 144, 255, 1);
  3266. border-left:0px;
  3267. border-top:0px;
  3268. border-right:0px;
  3269. border-radius:0px;
  3270. border-bottom-right-radius:0px;
  3271. border-bottom-left-radius:0px;
  3272. -moz-box-shadow:none;
  3273. -webkit-box-shadow:none;
  3274. box-shadow:none;
  3275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3276. font-weight:400;
  3277. font-style:normal;
  3278. font-size:12px;
  3279. color:#1890FF;
  3280. text-align:center;
  3281. }
  3282. #u130264 {
  3283. border-width:0px;
  3284. position:absolute;
  3285. left:45px;
  3286. top:157px;
  3287. width:37px;
  3288. height:40px;
  3289. display:flex;
  3290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3291. font-weight:400;
  3292. font-style:normal;
  3293. font-size:12px;
  3294. color:#1890FF;
  3295. text-align:center;
  3296. }
  3297. #u130264 .text {
  3298. position:absolute;
  3299. align-self:center;
  3300. padding:0px 0px 0px 0px;
  3301. box-sizing:border-box;
  3302. width:100%;
  3303. }
  3304. #u130264_text {
  3305. border-width:0px;
  3306. white-space:nowrap;
  3307. text-transform:none;
  3308. }
  3309. #u130265_div {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:0px;
  3313. top:0px;
  3314. width:11px;
  3315. height:11px;
  3316. background:inherit;
  3317. background-color:rgba(217, 0, 27, 1);
  3318. border:none;
  3319. border-radius:7px;
  3320. -moz-box-shadow:none;
  3321. -webkit-box-shadow:none;
  3322. box-shadow:none;
  3323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3324. font-weight:400;
  3325. font-style:normal;
  3326. font-size:8px;
  3327. color:#FFFFFF;
  3328. text-align:center;
  3329. }
  3330. #u130265 {
  3331. border-width:0px;
  3332. position:absolute;
  3333. left:79px;
  3334. top:161px;
  3335. width:11px;
  3336. height:11px;
  3337. display:flex;
  3338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3339. font-weight:400;
  3340. font-style:normal;
  3341. font-size:8px;
  3342. color:#FFFFFF;
  3343. text-align:center;
  3344. }
  3345. #u130265 .text {
  3346. position:absolute;
  3347. align-self:flex-start;
  3348. padding:0px 0px 0px 0px;
  3349. box-sizing:border-box;
  3350. width:100%;
  3351. }
  3352. #u130265_text {
  3353. border-width:0px;
  3354. word-wrap:break-word;
  3355. text-transform:none;
  3356. }
  3357. #u130266_div {
  3358. border-width:0px;
  3359. position:absolute;
  3360. left:0px;
  3361. top:0px;
  3362. width:49px;
  3363. height:40px;
  3364. background:inherit;
  3365. background-color:rgba(255, 255, 255, 0);
  3366. border:none;
  3367. border-left:0px;
  3368. border-top:0px;
  3369. border-right:0px;
  3370. border-radius:0px;
  3371. border-bottom-right-radius:0px;
  3372. border-bottom-left-radius:0px;
  3373. -moz-box-shadow:none;
  3374. -webkit-box-shadow:none;
  3375. box-shadow:none;
  3376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3377. font-weight:400;
  3378. font-style:normal;
  3379. font-size:12px;
  3380. text-align:center;
  3381. }
  3382. #u130266 {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:172px;
  3386. top:157px;
  3387. width:49px;
  3388. height:40px;
  3389. display:flex;
  3390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3391. font-weight:400;
  3392. font-style:normal;
  3393. font-size:12px;
  3394. text-align:center;
  3395. }
  3396. #u130266 .text {
  3397. position:absolute;
  3398. align-self:center;
  3399. padding:0px 0px 0px 0px;
  3400. box-sizing:border-box;
  3401. width:100%;
  3402. }
  3403. #u130266_text {
  3404. border-width:0px;
  3405. white-space:nowrap;
  3406. text-transform:none;
  3407. }
  3408. #u130267 {
  3409. border-width:0px;
  3410. position:absolute;
  3411. left:0px;
  3412. top:0px;
  3413. width:0px;
  3414. height:0px;
  3415. }
  3416. #u130268_div {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:0px;
  3420. top:0px;
  3421. width:375px;
  3422. height:50px;
  3423. background:inherit;
  3424. background-color:rgba(255, 255, 255, 1);
  3425. border:none;
  3426. border-radius:0px;
  3427. -moz-box-shadow:none;
  3428. -webkit-box-shadow:none;
  3429. box-shadow:none;
  3430. }
  3431. #u130268 {
  3432. border-width:0px;
  3433. position:absolute;
  3434. left:30px;
  3435. top:107px;
  3436. width:375px;
  3437. height:50px;
  3438. display:flex;
  3439. }
  3440. #u130268 .text {
  3441. position:absolute;
  3442. align-self:center;
  3443. padding:2px 2px 2px 2px;
  3444. box-sizing:border-box;
  3445. width:100%;
  3446. }
  3447. #u130268_text {
  3448. border-width:0px;
  3449. word-wrap:break-word;
  3450. text-transform:none;
  3451. visibility:hidden;
  3452. }
  3453. #u130269 {
  3454. border-width:0px;
  3455. position:absolute;
  3456. left:0px;
  3457. top:0px;
  3458. width:0px;
  3459. height:0px;
  3460. }
  3461. #u130270 {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:0px;
  3465. top:0px;
  3466. width:0px;
  3467. height:0px;
  3468. }
  3469. #u130271_div {
  3470. border-width:0px;
  3471. position:absolute;
  3472. left:0px;
  3473. top:0px;
  3474. width:135px;
  3475. height:30px;
  3476. background:inherit;
  3477. background-color:rgba(242, 242, 242, 1);
  3478. border:none;
  3479. border-radius:20px;
  3480. -moz-box-shadow:none;
  3481. -webkit-box-shadow:none;
  3482. box-shadow:none;
  3483. }
  3484. #u130271 {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:43px;
  3488. top:117px;
  3489. width:135px;
  3490. height:30px;
  3491. display:flex;
  3492. }
  3493. #u130271 .text {
  3494. position:absolute;
  3495. align-self:center;
  3496. padding:2px 2px 2px 2px;
  3497. box-sizing:border-box;
  3498. width:100%;
  3499. }
  3500. #u130271_text {
  3501. border-width:0px;
  3502. word-wrap:break-word;
  3503. text-transform:none;
  3504. visibility:hidden;
  3505. }
  3506. #u130272_input {
  3507. position:absolute;
  3508. left:0px;
  3509. top:0px;
  3510. width:121px;
  3511. height:22px;
  3512. padding:2px 2px 2px 2px;
  3513. font-family:'ArialMT', 'Arial', sans-serif;
  3514. font-weight:400;
  3515. font-style:normal;
  3516. font-size:12px;
  3517. letter-spacing:normal;
  3518. color:#7F7F7F;
  3519. vertical-align:none;
  3520. text-align:left;
  3521. text-transform:none;
  3522. background-color:transparent;
  3523. border-color:transparent;
  3524. }
  3525. #u130272_input.disabled {
  3526. position:absolute;
  3527. left:0px;
  3528. top:0px;
  3529. width:121px;
  3530. height:22px;
  3531. padding:2px 2px 2px 2px;
  3532. font-family:'ArialMT', 'Arial', sans-serif;
  3533. font-weight:400;
  3534. font-style:normal;
  3535. font-size:12px;
  3536. letter-spacing:normal;
  3537. color:#7F7F7F;
  3538. vertical-align:none;
  3539. text-align:left;
  3540. text-transform:none;
  3541. background-color:transparent;
  3542. border-color:transparent;
  3543. }
  3544. #u130272_div {
  3545. border-width:0px;
  3546. position:absolute;
  3547. left:0px;
  3548. top:0px;
  3549. width:121px;
  3550. height:22px;
  3551. background:inherit;
  3552. background-color:rgba(255, 255, 255, 0);
  3553. border:none;
  3554. border-radius:0px;
  3555. -moz-box-shadow:none;
  3556. -webkit-box-shadow:none;
  3557. box-shadow:none;
  3558. font-size:12px;
  3559. color:#7F7F7F;
  3560. }
  3561. #u130272 {
  3562. border-width:0px;
  3563. position:absolute;
  3564. left:50px;
  3565. top:121px;
  3566. width:121px;
  3567. height:22px;
  3568. display:flex;
  3569. font-size:12px;
  3570. color:#7F7F7F;
  3571. }
  3572. #u130272 .text {
  3573. position:absolute;
  3574. align-self:flex-start;
  3575. padding:2px 2px 2px 2px;
  3576. box-sizing:border-box;
  3577. width:100%;
  3578. }
  3579. #u130272_div.disabled {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:0px;
  3583. top:0px;
  3584. width:121px;
  3585. height:22px;
  3586. background:inherit;
  3587. background-color:rgba(240, 240, 240, 1);
  3588. border:none;
  3589. border-radius:0px;
  3590. -moz-box-shadow:none;
  3591. -webkit-box-shadow:none;
  3592. box-shadow:none;
  3593. font-size:12px;
  3594. color:#7F7F7F;
  3595. }
  3596. #u130272.disabled {
  3597. }
  3598. .u130272_input_option {
  3599. font-size:12px;
  3600. }
  3601. #u130273_div {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:0px;
  3605. top:0px;
  3606. width:64px;
  3607. height:30px;
  3608. background:inherit;
  3609. background-color:rgba(255, 255, 255, 0);
  3610. border:none;
  3611. border-left:0px;
  3612. border-top:0px;
  3613. border-right:0px;
  3614. border-radius:0px;
  3615. border-bottom-right-radius:0px;
  3616. border-bottom-left-radius:0px;
  3617. -moz-box-shadow:none;
  3618. -webkit-box-shadow:none;
  3619. box-shadow:none;
  3620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3621. font-weight:400;
  3622. font-style:normal;
  3623. font-size:12px;
  3624. color:#1890FF;
  3625. line-height:30px;
  3626. }
  3627. #u130273 {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:333px;
  3631. top:117px;
  3632. width:64px;
  3633. height:30px;
  3634. display:flex;
  3635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3636. font-weight:400;
  3637. font-style:normal;
  3638. font-size:12px;
  3639. color:#1890FF;
  3640. line-height:30px;
  3641. }
  3642. #u130273 .text {
  3643. position:absolute;
  3644. align-self:flex-start;
  3645. padding:0px 0px 0px 0px;
  3646. box-sizing:border-box;
  3647. width:100%;
  3648. }
  3649. #u130273_text {
  3650. border-width:0px;
  3651. white-space:nowrap;
  3652. text-transform:none;
  3653. }
  3654. #u130274 {
  3655. border-width:0px;
  3656. position:absolute;
  3657. left:0px;
  3658. top:0px;
  3659. width:0px;
  3660. height:0px;
  3661. }
  3662. #u130275_div {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:0px;
  3666. top:0px;
  3667. width:135px;
  3668. height:30px;
  3669. background:inherit;
  3670. background-color:rgba(242, 242, 242, 1);
  3671. border:none;
  3672. border-radius:20px;
  3673. -moz-box-shadow:none;
  3674. -webkit-box-shadow:none;
  3675. box-shadow:none;
  3676. }
  3677. #u130275 {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:188px;
  3681. top:117px;
  3682. width:135px;
  3683. height:30px;
  3684. display:flex;
  3685. }
  3686. #u130275 .text {
  3687. position:absolute;
  3688. align-self:center;
  3689. padding:2px 2px 2px 2px;
  3690. box-sizing:border-box;
  3691. width:100%;
  3692. }
  3693. #u130275_text {
  3694. border-width:0px;
  3695. word-wrap:break-word;
  3696. text-transform:none;
  3697. visibility:hidden;
  3698. }
  3699. #u130276_input {
  3700. position:absolute;
  3701. left:0px;
  3702. top:0px;
  3703. width:121px;
  3704. height:22px;
  3705. padding:2px 2px 2px 2px;
  3706. font-family:'ArialMT', 'Arial', sans-serif;
  3707. font-weight:400;
  3708. font-style:normal;
  3709. font-size:12px;
  3710. letter-spacing:normal;
  3711. color:#7F7F7F;
  3712. vertical-align:none;
  3713. text-align:left;
  3714. text-transform:none;
  3715. background-color:transparent;
  3716. border-color:transparent;
  3717. }
  3718. #u130276_input.disabled {
  3719. position:absolute;
  3720. left:0px;
  3721. top:0px;
  3722. width:121px;
  3723. height:22px;
  3724. padding:2px 2px 2px 2px;
  3725. font-family:'ArialMT', 'Arial', sans-serif;
  3726. font-weight:400;
  3727. font-style:normal;
  3728. font-size:12px;
  3729. letter-spacing:normal;
  3730. color:#7F7F7F;
  3731. vertical-align:none;
  3732. text-align:left;
  3733. text-transform:none;
  3734. background-color:transparent;
  3735. border-color:transparent;
  3736. }
  3737. #u130276_div {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:0px;
  3741. top:0px;
  3742. width:121px;
  3743. height:22px;
  3744. background:inherit;
  3745. background-color:rgba(255, 255, 255, 0);
  3746. border:none;
  3747. border-radius:0px;
  3748. -moz-box-shadow:none;
  3749. -webkit-box-shadow:none;
  3750. box-shadow:none;
  3751. font-size:12px;
  3752. color:#7F7F7F;
  3753. }
  3754. #u130276 {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:195px;
  3758. top:121px;
  3759. width:121px;
  3760. height:22px;
  3761. display:flex;
  3762. font-size:12px;
  3763. color:#7F7F7F;
  3764. }
  3765. #u130276 .text {
  3766. position:absolute;
  3767. align-self:flex-start;
  3768. padding:2px 2px 2px 2px;
  3769. box-sizing:border-box;
  3770. width:100%;
  3771. }
  3772. #u130276_div.disabled {
  3773. border-width:0px;
  3774. position:absolute;
  3775. left:0px;
  3776. top:0px;
  3777. width:121px;
  3778. height:22px;
  3779. background:inherit;
  3780. background-color:rgba(240, 240, 240, 1);
  3781. border:none;
  3782. border-radius:0px;
  3783. -moz-box-shadow:none;
  3784. -webkit-box-shadow:none;
  3785. box-shadow:none;
  3786. font-size:12px;
  3787. color:#7F7F7F;
  3788. }
  3789. #u130276.disabled {
  3790. }
  3791. .u130276_input_option {
  3792. font-size:12px;
  3793. }
  3794. #u130278_img {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:0px;
  3798. top:0px;
  3799. width:433px;
  3800. height:865px;
  3801. }
  3802. #u130278 {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:463px;
  3806. top:0px;
  3807. width:433px;
  3808. height:865px;
  3809. display:flex;
  3810. }
  3811. #u130278 .text {
  3812. position:absolute;
  3813. align-self:center;
  3814. padding:2px 2px 2px 2px;
  3815. box-sizing:border-box;
  3816. width:100%;
  3817. }
  3818. #u130278_text {
  3819. border-width:0px;
  3820. word-wrap:break-word;
  3821. text-transform:none;
  3822. visibility:hidden;
  3823. }
  3824. #u130279_div {
  3825. border-width:0px;
  3826. position:absolute;
  3827. left:0px;
  3828. top:0px;
  3829. width:375px;
  3830. height:40px;
  3831. background:inherit;
  3832. background-color:rgba(255, 255, 255, 1);
  3833. box-sizing:border-box;
  3834. border-width:1px;
  3835. border-style:solid;
  3836. border-color:rgba(215, 215, 215, 1);
  3837. border-left:0px;
  3838. border-top:0px;
  3839. border-right:0px;
  3840. border-radius:0px;
  3841. border-bottom-right-radius:0px;
  3842. border-bottom-left-radius:0px;
  3843. -moz-box-shadow:none;
  3844. -webkit-box-shadow:none;
  3845. box-shadow:none;
  3846. }
  3847. #u130279 {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:492px;
  3851. top:67px;
  3852. width:375px;
  3853. height:40px;
  3854. display:flex;
  3855. }
  3856. #u130279 .text {
  3857. position:absolute;
  3858. align-self:center;
  3859. padding:2px 2px 2px 2px;
  3860. box-sizing:border-box;
  3861. width:100%;
  3862. }
  3863. #u130279_text {
  3864. border-width:0px;
  3865. word-wrap:break-word;
  3866. text-transform:none;
  3867. visibility:hidden;
  3868. }
  3869. #u130280 {
  3870. border-width:0px;
  3871. position:absolute;
  3872. left:0px;
  3873. top:0px;
  3874. width:0px;
  3875. height:0px;
  3876. }
  3877. #u130281_div {
  3878. border-width:0px;
  3879. position:absolute;
  3880. left:0px;
  3881. top:0px;
  3882. width:88px;
  3883. height:32px;
  3884. background:inherit;
  3885. background-color:rgba(255, 255, 255, 1);
  3886. box-sizing:border-box;
  3887. border-width:1px;
  3888. border-style:solid;
  3889. border-color:rgba(242, 242, 242, 1);
  3890. border-radius:33px;
  3891. -moz-box-shadow:none;
  3892. -webkit-box-shadow:none;
  3893. box-shadow:none;
  3894. }
  3895. #u130281 {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:772px;
  3899. top:71px;
  3900. width:88px;
  3901. height:32px;
  3902. display:flex;
  3903. }
  3904. #u130281 .text {
  3905. position:absolute;
  3906. align-self:center;
  3907. padding:2px 2px 2px 2px;
  3908. box-sizing:border-box;
  3909. width:100%;
  3910. }
  3911. #u130281_text {
  3912. border-width:0px;
  3913. word-wrap:break-word;
  3914. text-transform:none;
  3915. visibility:hidden;
  3916. }
  3917. #u130282 {
  3918. border-width:0px;
  3919. position:absolute;
  3920. left:0px;
  3921. top:0px;
  3922. width:0px;
  3923. height:0px;
  3924. }
  3925. #u130283_img {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:0px;
  3929. top:0px;
  3930. width:18px;
  3931. height:18px;
  3932. }
  3933. #u130283 {
  3934. border-width:0px;
  3935. position:absolute;
  3936. left:835px;
  3937. top:78px;
  3938. width:18px;
  3939. height:18px;
  3940. display:flex;
  3941. }
  3942. #u130283 .text {
  3943. position:absolute;
  3944. align-self:center;
  3945. padding:2px 2px 2px 2px;
  3946. box-sizing:border-box;
  3947. width:100%;
  3948. }
  3949. #u130283_text {
  3950. border-width:0px;
  3951. word-wrap:break-word;
  3952. text-transform:none;
  3953. visibility:hidden;
  3954. }
  3955. #u130284_img {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:0px;
  3959. top:0px;
  3960. width:6px;
  3961. height:6px;
  3962. }
  3963. #u130284 {
  3964. border-width:0px;
  3965. position:absolute;
  3966. left:841px;
  3967. top:84px;
  3968. width:6px;
  3969. height:6px;
  3970. display:flex;
  3971. }
  3972. #u130284 .text {
  3973. position:absolute;
  3974. align-self:center;
  3975. padding:2px 2px 2px 2px;
  3976. box-sizing:border-box;
  3977. width:100%;
  3978. }
  3979. #u130284_text {
  3980. border-width:0px;
  3981. word-wrap:break-word;
  3982. text-transform:none;
  3983. visibility:hidden;
  3984. }
  3985. #u130285 {
  3986. border-width:0px;
  3987. position:absolute;
  3988. left:0px;
  3989. top:0px;
  3990. width:0px;
  3991. height:0px;
  3992. }
  3993. #u130286_img {
  3994. border-width:0px;
  3995. position:absolute;
  3996. left:0px;
  3997. top:0px;
  3998. width:5px;
  3999. height:5px;
  4000. }
  4001. #u130286 {
  4002. border-width:0px;
  4003. position:absolute;
  4004. left:786px;
  4005. top:85px;
  4006. width:5px;
  4007. height:5px;
  4008. display:flex;
  4009. }
  4010. #u130286 .text {
  4011. position:absolute;
  4012. align-self:center;
  4013. padding:2px 2px 2px 2px;
  4014. box-sizing:border-box;
  4015. width:100%;
  4016. }
  4017. #u130286_text {
  4018. border-width:0px;
  4019. word-wrap:break-word;
  4020. text-transform:none;
  4021. visibility:hidden;
  4022. }
  4023. #u130287_img {
  4024. border-width:0px;
  4025. position:absolute;
  4026. left:0px;
  4027. top:0px;
  4028. width:5px;
  4029. height:5px;
  4030. }
  4031. #u130287 {
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:802px;
  4035. top:85px;
  4036. width:5px;
  4037. height:5px;
  4038. display:flex;
  4039. }
  4040. #u130287 .text {
  4041. position:absolute;
  4042. align-self:center;
  4043. padding:2px 2px 2px 2px;
  4044. box-sizing:border-box;
  4045. width:100%;
  4046. }
  4047. #u130287_text {
  4048. border-width:0px;
  4049. word-wrap:break-word;
  4050. text-transform:none;
  4051. visibility:hidden;
  4052. }
  4053. #u130288_img {
  4054. border-width:0px;
  4055. position:absolute;
  4056. left:0px;
  4057. top:0px;
  4058. width:7px;
  4059. height:7px;
  4060. }
  4061. #u130288 {
  4062. border-width:0px;
  4063. position:absolute;
  4064. left:793px;
  4065. top:84px;
  4066. width:7px;
  4067. height:7px;
  4068. display:flex;
  4069. }
  4070. #u130288 .text {
  4071. position:absolute;
  4072. align-self:center;
  4073. padding:2px 2px 2px 2px;
  4074. box-sizing:border-box;
  4075. width:100%;
  4076. }
  4077. #u130288_text {
  4078. border-width:0px;
  4079. word-wrap:break-word;
  4080. text-transform:none;
  4081. visibility:hidden;
  4082. }
  4083. #u130289_img {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:0px;
  4087. top:0px;
  4088. width:19px;
  4089. height:2px;
  4090. }
  4091. #u130289 {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:810px;
  4095. top:87px;
  4096. width:18px;
  4097. height:1px;
  4098. display:flex;
  4099. -webkit-transform:rotate(90deg);
  4100. -moz-transform:rotate(90deg);
  4101. -ms-transform:rotate(90deg);
  4102. transform:rotate(90deg);
  4103. }
  4104. #u130289 .text {
  4105. position:absolute;
  4106. align-self:center;
  4107. padding:2px 2px 2px 2px;
  4108. box-sizing:border-box;
  4109. width:100%;
  4110. }
  4111. #u130289_text {
  4112. border-width:0px;
  4113. word-wrap:break-word;
  4114. text-transform:none;
  4115. visibility:hidden;
  4116. }
  4117. #u130290_img {
  4118. border-width:0px;
  4119. position:absolute;
  4120. left:0px;
  4121. top:0px;
  4122. width:375px;
  4123. height:44px;
  4124. }
  4125. #u130290 {
  4126. border-width:0px;
  4127. position:absolute;
  4128. left:492px;
  4129. top:24px;
  4130. width:375px;
  4131. height:44px;
  4132. display:flex;
  4133. }
  4134. #u130290 .text {
  4135. position:absolute;
  4136. align-self:center;
  4137. padding:2px 2px 2px 2px;
  4138. box-sizing:border-box;
  4139. width:100%;
  4140. }
  4141. #u130290_text {
  4142. border-width:0px;
  4143. word-wrap:break-word;
  4144. text-transform:none;
  4145. visibility:hidden;
  4146. }
  4147. #u130291_div {
  4148. border-width:0px;
  4149. position:absolute;
  4150. left:0px;
  4151. top:0px;
  4152. width:375px;
  4153. height:50px;
  4154. background:inherit;
  4155. background-color:rgba(255, 255, 255, 1);
  4156. box-sizing:border-box;
  4157. border-width:1px;
  4158. border-style:solid;
  4159. border-color:rgba(242, 242, 242, 1);
  4160. border-radius:26px;
  4161. border-top-left-radius:0px;
  4162. border-top-right-radius:0px;
  4163. -moz-box-shadow:none;
  4164. -webkit-box-shadow:none;
  4165. box-shadow:none;
  4166. }
  4167. #u130291 {
  4168. border-width:0px;
  4169. position:absolute;
  4170. left:492px;
  4171. top:788px;
  4172. width:375px;
  4173. height:50px;
  4174. display:flex;
  4175. }
  4176. #u130291 .text {
  4177. position:absolute;
  4178. align-self:center;
  4179. padding:2px 2px 2px 2px;
  4180. box-sizing:border-box;
  4181. width:100%;
  4182. }
  4183. #u130291_text {
  4184. border-width:0px;
  4185. word-wrap:break-word;
  4186. text-transform:none;
  4187. visibility:hidden;
  4188. }
  4189. #u130292 {
  4190. border-width:0px;
  4191. position:absolute;
  4192. left:0px;
  4193. top:0px;
  4194. width:0px;
  4195. height:0px;
  4196. }
  4197. #u130293_img {
  4198. border-width:0px;
  4199. position:absolute;
  4200. left:0px;
  4201. top:0px;
  4202. width:24px;
  4203. height:24px;
  4204. }
  4205. #u130293 {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:532px;
  4209. top:792px;
  4210. width:24px;
  4211. height:24px;
  4212. display:flex;
  4213. font-size:8px;
  4214. }
  4215. #u130293 .text {
  4216. position:absolute;
  4217. align-self:center;
  4218. padding:2px 2px 2px 2px;
  4219. box-sizing:border-box;
  4220. width:100%;
  4221. }
  4222. #u130293_text {
  4223. border-width:0px;
  4224. word-wrap:break-word;
  4225. text-transform:none;
  4226. }
  4227. #u130294_div {
  4228. border-width:0px;
  4229. position:absolute;
  4230. left:0px;
  4231. top:0px;
  4232. width:25px;
  4233. height:17px;
  4234. background:inherit;
  4235. background-color:rgba(255, 255, 255, 0);
  4236. border:none;
  4237. border-radius:0px;
  4238. -moz-box-shadow:none;
  4239. -webkit-box-shadow:none;
  4240. box-shadow:none;
  4241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4242. font-weight:400;
  4243. font-style:normal;
  4244. font-size:12px;
  4245. }
  4246. #u130294 {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:532px;
  4250. top:817px;
  4251. width:25px;
  4252. height:17px;
  4253. display:flex;
  4254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4255. font-weight:400;
  4256. font-style:normal;
  4257. font-size:12px;
  4258. }
  4259. #u130294 .text {
  4260. position:absolute;
  4261. align-self:flex-start;
  4262. padding:0px 0px 0px 0px;
  4263. box-sizing:border-box;
  4264. width:100%;
  4265. }
  4266. #u130294_text {
  4267. border-width:0px;
  4268. white-space:nowrap;
  4269. text-transform:none;
  4270. }
  4271. #u130295 {
  4272. border-width:0px;
  4273. position:absolute;
  4274. left:0px;
  4275. top:0px;
  4276. width:0px;
  4277. height:0px;
  4278. }
  4279. #u130296_img {
  4280. border-width:0px;
  4281. position:absolute;
  4282. left:0px;
  4283. top:0px;
  4284. width:24px;
  4285. height:24px;
  4286. }
  4287. #u130296 {
  4288. border-width:0px;
  4289. position:absolute;
  4290. left:802px;
  4291. top:794px;
  4292. width:24px;
  4293. height:24px;
  4294. display:flex;
  4295. font-size:8px;
  4296. }
  4297. #u130296 .text {
  4298. position:absolute;
  4299. align-self:center;
  4300. padding:2px 2px 2px 2px;
  4301. box-sizing:border-box;
  4302. width:100%;
  4303. }
  4304. #u130296_text {
  4305. border-width:0px;
  4306. word-wrap:break-word;
  4307. text-transform:none;
  4308. }
  4309. #u130297_div {
  4310. border-width:0px;
  4311. position:absolute;
  4312. left:0px;
  4313. top:0px;
  4314. width:25px;
  4315. height:17px;
  4316. background:inherit;
  4317. background-color:rgba(255, 255, 255, 0);
  4318. border:none;
  4319. border-radius:0px;
  4320. -moz-box-shadow:none;
  4321. -webkit-box-shadow:none;
  4322. box-shadow:none;
  4323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4324. font-weight:400;
  4325. font-style:normal;
  4326. font-size:12px;
  4327. }
  4328. #u130297 {
  4329. border-width:0px;
  4330. position:absolute;
  4331. left:802px;
  4332. top:819px;
  4333. width:25px;
  4334. height:17px;
  4335. display:flex;
  4336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4337. font-weight:400;
  4338. font-style:normal;
  4339. font-size:12px;
  4340. }
  4341. #u130297 .text {
  4342. position:absolute;
  4343. align-self:flex-start;
  4344. padding:0px 0px 0px 0px;
  4345. box-sizing:border-box;
  4346. width:100%;
  4347. }
  4348. #u130297_text {
  4349. border-width:0px;
  4350. white-space:nowrap;
  4351. text-transform:none;
  4352. }
  4353. #u130298_div {
  4354. border-width:0px;
  4355. position:absolute;
  4356. left:0px;
  4357. top:0px;
  4358. width:375px;
  4359. height:681px;
  4360. background:inherit;
  4361. background-color:rgba(242, 242, 242, 0.462745098039216);
  4362. border:none;
  4363. border-radius:0px;
  4364. -moz-box-shadow:none;
  4365. -webkit-box-shadow:none;
  4366. box-shadow:none;
  4367. }
  4368. #u130298 {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:492px;
  4372. top:107px;
  4373. width:375px;
  4374. height:681px;
  4375. display:flex;
  4376. }
  4377. #u130298 .text {
  4378. position:absolute;
  4379. align-self:center;
  4380. padding:2px 2px 2px 2px;
  4381. box-sizing:border-box;
  4382. width:100%;
  4383. }
  4384. #u130298_text {
  4385. border-width:0px;
  4386. word-wrap:break-word;
  4387. text-transform:none;
  4388. visibility:hidden;
  4389. }
  4390. #u130299 {
  4391. border-width:0px;
  4392. position:absolute;
  4393. left:0px;
  4394. top:0px;
  4395. width:0px;
  4396. height:0px;
  4397. }
  4398. #u130300_img {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:0px;
  4402. top:0px;
  4403. width:24px;
  4404. height:24px;
  4405. }
  4406. #u130300 {
  4407. border-width:0px;
  4408. position:absolute;
  4409. left:714px;
  4410. top:792px;
  4411. width:24px;
  4412. height:24px;
  4413. display:flex;
  4414. font-size:8px;
  4415. }
  4416. #u130300 .text {
  4417. position:absolute;
  4418. align-self:center;
  4419. padding:2px 2px 2px 2px;
  4420. box-sizing:border-box;
  4421. width:100%;
  4422. }
  4423. #u130300_text {
  4424. border-width:0px;
  4425. word-wrap:break-word;
  4426. text-transform:none;
  4427. }
  4428. #u130301_div {
  4429. border-width:0px;
  4430. position:absolute;
  4431. left:0px;
  4432. top:0px;
  4433. width:37px;
  4434. height:17px;
  4435. background:inherit;
  4436. background-color:rgba(255, 255, 255, 0);
  4437. border:none;
  4438. border-radius:0px;
  4439. -moz-box-shadow:none;
  4440. -webkit-box-shadow:none;
  4441. box-shadow:none;
  4442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4443. font-weight:400;
  4444. font-style:normal;
  4445. font-size:12px;
  4446. }
  4447. #u130301 {
  4448. border-width:0px;
  4449. position:absolute;
  4450. left:708px;
  4451. top:817px;
  4452. width:37px;
  4453. height:17px;
  4454. display:flex;
  4455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4456. font-weight:400;
  4457. font-style:normal;
  4458. font-size:12px;
  4459. }
  4460. #u130301 .text {
  4461. position:absolute;
  4462. align-self:flex-start;
  4463. padding:0px 0px 0px 0px;
  4464. box-sizing:border-box;
  4465. width:100%;
  4466. }
  4467. #u130301_text {
  4468. border-width:0px;
  4469. white-space:nowrap;
  4470. text-transform:none;
  4471. }
  4472. #u130302 {
  4473. border-width:0px;
  4474. position:absolute;
  4475. left:0px;
  4476. top:0px;
  4477. width:0px;
  4478. height:0px;
  4479. }
  4480. #u130303_img {
  4481. border-width:0px;
  4482. position:absolute;
  4483. left:0px;
  4484. top:0px;
  4485. width:24px;
  4486. height:24px;
  4487. }
  4488. #u130303 {
  4489. border-width:0px;
  4490. position:absolute;
  4491. left:620px;
  4492. top:792px;
  4493. width:24px;
  4494. height:24px;
  4495. display:flex;
  4496. font-size:8px;
  4497. }
  4498. #u130303 .text {
  4499. position:absolute;
  4500. align-self:center;
  4501. padding:2px 2px 2px 2px;
  4502. box-sizing:border-box;
  4503. width:100%;
  4504. }
  4505. #u130303_text {
  4506. border-width:0px;
  4507. word-wrap:break-word;
  4508. text-transform:none;
  4509. }
  4510. #u130304_div {
  4511. border-width:0px;
  4512. position:absolute;
  4513. left:0px;
  4514. top:0px;
  4515. width:37px;
  4516. height:17px;
  4517. background:inherit;
  4518. background-color:rgba(255, 255, 255, 0);
  4519. border:none;
  4520. border-radius:0px;
  4521. -moz-box-shadow:none;
  4522. -webkit-box-shadow:none;
  4523. box-shadow:none;
  4524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4525. font-weight:400;
  4526. font-style:normal;
  4527. font-size:12px;
  4528. }
  4529. #u130304 {
  4530. border-width:0px;
  4531. position:absolute;
  4532. left:614px;
  4533. top:817px;
  4534. width:37px;
  4535. height:17px;
  4536. display:flex;
  4537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4538. font-weight:400;
  4539. font-style:normal;
  4540. font-size:12px;
  4541. }
  4542. #u130304 .text {
  4543. position:absolute;
  4544. align-self:flex-start;
  4545. padding:0px 0px 0px 0px;
  4546. box-sizing:border-box;
  4547. width:100%;
  4548. }
  4549. #u130304_text {
  4550. border-width:0px;
  4551. white-space:nowrap;
  4552. text-transform:none;
  4553. }
  4554. #u130305_div {
  4555. border-width:0px;
  4556. position:absolute;
  4557. left:0px;
  4558. top:0px;
  4559. width:375px;
  4560. height:732px;
  4561. background:inherit;
  4562. background-color:rgba(242, 242, 242, 0.996078431372549);
  4563. border:none;
  4564. border-top:0px;
  4565. border-radius:28px;
  4566. border-top-left-radius:0px;
  4567. border-top-right-radius:0px;
  4568. -moz-box-shadow:none;
  4569. -webkit-box-shadow:none;
  4570. box-shadow:none;
  4571. }
  4572. #u130305 {
  4573. border-width:0px;
  4574. position:absolute;
  4575. left:492px;
  4576. top:107px;
  4577. width:375px;
  4578. height:732px;
  4579. display:flex;
  4580. }
  4581. #u130305 .text {
  4582. position:absolute;
  4583. align-self:center;
  4584. padding:2px 2px 2px 2px;
  4585. box-sizing:border-box;
  4586. width:100%;
  4587. }
  4588. #u130305_text {
  4589. border-width:0px;
  4590. word-wrap:break-word;
  4591. text-transform:none;
  4592. visibility:hidden;
  4593. }
  4594. #u130306_img {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:0px;
  4598. top:0px;
  4599. width:375px;
  4600. height:44px;
  4601. }
  4602. #u130306 {
  4603. border-width:0px;
  4604. position:absolute;
  4605. left:492px;
  4606. top:24px;
  4607. width:375px;
  4608. height:44px;
  4609. display:flex;
  4610. }
  4611. #u130306 .text {
  4612. position:absolute;
  4613. align-self:center;
  4614. padding:2px 2px 2px 2px;
  4615. box-sizing:border-box;
  4616. width:100%;
  4617. }
  4618. #u130306_text {
  4619. border-width:0px;
  4620. word-wrap:break-word;
  4621. text-transform:none;
  4622. visibility:hidden;
  4623. }
  4624. #u130307 {
  4625. border-width:0px;
  4626. position:absolute;
  4627. left:0px;
  4628. top:0px;
  4629. width:0px;
  4630. height:0px;
  4631. }
  4632. #u130308_img {
  4633. border-width:0px;
  4634. position:absolute;
  4635. left:0px;
  4636. top:0px;
  4637. width:355px;
  4638. height:200px;
  4639. }
  4640. #u130308 {
  4641. border-width:0px;
  4642. position:absolute;
  4643. left:502px;
  4644. top:217px;
  4645. width:355px;
  4646. height:200px;
  4647. display:flex;
  4648. }
  4649. #u130308 .text {
  4650. position:absolute;
  4651. align-self:center;
  4652. padding:2px 2px 2px 2px;
  4653. box-sizing:border-box;
  4654. width:100%;
  4655. }
  4656. #u130308_text {
  4657. border-width:0px;
  4658. word-wrap:break-word;
  4659. text-transform:none;
  4660. visibility:hidden;
  4661. }
  4662. #u130309_div {
  4663. border-width:0px;
  4664. position:absolute;
  4665. left:0px;
  4666. top:0px;
  4667. width:211px;
  4668. height:30px;
  4669. background:inherit;
  4670. background-color:rgba(255, 255, 255, 0);
  4671. border:none;
  4672. border-left:0px;
  4673. border-top:0px;
  4674. border-right:0px;
  4675. border-radius:0px;
  4676. border-bottom-right-radius:0px;
  4677. border-bottom-left-radius:0px;
  4678. -moz-box-shadow:none;
  4679. -webkit-box-shadow:none;
  4680. box-shadow:none;
  4681. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4682. font-weight:500;
  4683. font-style:normal;
  4684. font-size:14px;
  4685. line-height:30px;
  4686. }
  4687. #u130309 {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:519px;
  4691. top:224px;
  4692. width:211px;
  4693. height:30px;
  4694. display:flex;
  4695. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4696. font-weight:500;
  4697. font-style:normal;
  4698. font-size:14px;
  4699. line-height:30px;
  4700. }
  4701. #u130309 .text {
  4702. position:absolute;
  4703. align-self:flex-start;
  4704. padding:0px 0px 0px 0px;
  4705. box-sizing:border-box;
  4706. width:100%;
  4707. }
  4708. #u130309_text {
  4709. border-width:0px;
  4710. white-space:nowrap;
  4711. text-transform:none;
  4712. }
  4713. #u130310_div {
  4714. border-width:0px;
  4715. position:absolute;
  4716. left:0px;
  4717. top:0px;
  4718. width:325px;
  4719. height:150px;
  4720. background:inherit;
  4721. background-color:rgba(255, 255, 255, 0);
  4722. border:none;
  4723. border-left:0px;
  4724. border-top:0px;
  4725. border-right:0px;
  4726. border-radius:0px;
  4727. border-bottom-right-radius:0px;
  4728. border-bottom-left-radius:0px;
  4729. -moz-box-shadow:none;
  4730. -webkit-box-shadow:none;
  4731. box-shadow:none;
  4732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4733. font-weight:400;
  4734. font-style:normal;
  4735. font-size:12px;
  4736. line-height:25px;
  4737. }
  4738. #u130310 {
  4739. border-width:0px;
  4740. position:absolute;
  4741. left:518px;
  4742. top:257px;
  4743. width:325px;
  4744. height:150px;
  4745. display:flex;
  4746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4747. font-weight:400;
  4748. font-style:normal;
  4749. font-size:12px;
  4750. line-height:25px;
  4751. }
  4752. #u130310 .text {
  4753. position:absolute;
  4754. align-self:flex-start;
  4755. padding:0px 0px 0px 0px;
  4756. box-sizing:border-box;
  4757. width:100%;
  4758. }
  4759. #u130310_text {
  4760. border-width:0px;
  4761. word-wrap:break-word;
  4762. text-transform:none;
  4763. }
  4764. #u130311 {
  4765. border-width:0px;
  4766. position:absolute;
  4767. left:0px;
  4768. top:0px;
  4769. width:0px;
  4770. height:0px;
  4771. }
  4772. #u130312_img {
  4773. border-width:0px;
  4774. position:absolute;
  4775. left:0px;
  4776. top:0px;
  4777. width:355px;
  4778. height:200px;
  4779. }
  4780. #u130312 {
  4781. border-width:0px;
  4782. position:absolute;
  4783. left:502px;
  4784. top:427px;
  4785. width:355px;
  4786. height:200px;
  4787. display:flex;
  4788. }
  4789. #u130312 .text {
  4790. position:absolute;
  4791. align-self:center;
  4792. padding:2px 2px 2px 2px;
  4793. box-sizing:border-box;
  4794. width:100%;
  4795. }
  4796. #u130312_text {
  4797. border-width:0px;
  4798. word-wrap:break-word;
  4799. text-transform:none;
  4800. visibility:hidden;
  4801. }
  4802. #u130313_div {
  4803. border-width:0px;
  4804. position:absolute;
  4805. left:0px;
  4806. top:0px;
  4807. width:211px;
  4808. height:30px;
  4809. background:inherit;
  4810. background-color:rgba(255, 255, 255, 0);
  4811. border:none;
  4812. border-left:0px;
  4813. border-top:0px;
  4814. border-right:0px;
  4815. border-radius:0px;
  4816. border-bottom-right-radius:0px;
  4817. border-bottom-left-radius:0px;
  4818. -moz-box-shadow:none;
  4819. -webkit-box-shadow:none;
  4820. box-shadow:none;
  4821. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4822. font-weight:500;
  4823. font-style:normal;
  4824. font-size:14px;
  4825. line-height:30px;
  4826. }
  4827. #u130313 {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:519px;
  4831. top:434px;
  4832. width:211px;
  4833. height:30px;
  4834. display:flex;
  4835. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4836. font-weight:500;
  4837. font-style:normal;
  4838. font-size:14px;
  4839. line-height:30px;
  4840. }
  4841. #u130313 .text {
  4842. position:absolute;
  4843. align-self:flex-start;
  4844. padding:0px 0px 0px 0px;
  4845. box-sizing:border-box;
  4846. width:100%;
  4847. }
  4848. #u130313_text {
  4849. border-width:0px;
  4850. white-space:nowrap;
  4851. text-transform:none;
  4852. }
  4853. #u130314_div {
  4854. border-width:0px;
  4855. position:absolute;
  4856. left:0px;
  4857. top:0px;
  4858. width:325px;
  4859. height:150px;
  4860. background:inherit;
  4861. background-color:rgba(255, 255, 255, 0);
  4862. border:none;
  4863. border-left:0px;
  4864. border-top:0px;
  4865. border-right:0px;
  4866. border-radius:0px;
  4867. border-bottom-right-radius:0px;
  4868. border-bottom-left-radius:0px;
  4869. -moz-box-shadow:none;
  4870. -webkit-box-shadow:none;
  4871. box-shadow:none;
  4872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4873. font-weight:400;
  4874. font-style:normal;
  4875. font-size:12px;
  4876. line-height:25px;
  4877. }
  4878. #u130314 {
  4879. border-width:0px;
  4880. position:absolute;
  4881. left:518px;
  4882. top:467px;
  4883. width:325px;
  4884. height:150px;
  4885. display:flex;
  4886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4887. font-weight:400;
  4888. font-style:normal;
  4889. font-size:12px;
  4890. line-height:25px;
  4891. }
  4892. #u130314 .text {
  4893. position:absolute;
  4894. align-self:flex-start;
  4895. padding:0px 0px 0px 0px;
  4896. box-sizing:border-box;
  4897. width:100%;
  4898. }
  4899. #u130314_text {
  4900. border-width:0px;
  4901. word-wrap:break-word;
  4902. text-transform:none;
  4903. }
  4904. #u130315 {
  4905. border-width:0px;
  4906. position:absolute;
  4907. left:0px;
  4908. top:0px;
  4909. width:0px;
  4910. height:0px;
  4911. }
  4912. #u130316_div {
  4913. border-width:0px;
  4914. position:absolute;
  4915. left:0px;
  4916. top:0px;
  4917. width:375px;
  4918. height:40px;
  4919. background:inherit;
  4920. background-color:rgba(255, 255, 255, 1);
  4921. box-sizing:border-box;
  4922. border-width:1px;
  4923. border-style:solid;
  4924. border-color:rgba(215, 215, 215, 1);
  4925. border-left:0px;
  4926. border-top:0px;
  4927. border-right:0px;
  4928. border-radius:0px;
  4929. border-bottom-right-radius:0px;
  4930. border-bottom-left-radius:0px;
  4931. -moz-box-shadow:none;
  4932. -webkit-box-shadow:none;
  4933. box-shadow:none;
  4934. }
  4935. #u130316 {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:492px;
  4939. top:67px;
  4940. width:375px;
  4941. height:40px;
  4942. display:flex;
  4943. }
  4944. #u130316 .text {
  4945. position:absolute;
  4946. align-self:center;
  4947. padding:2px 2px 2px 2px;
  4948. box-sizing:border-box;
  4949. width:100%;
  4950. }
  4951. #u130316_text {
  4952. border-width:0px;
  4953. word-wrap:break-word;
  4954. text-transform:none;
  4955. visibility:hidden;
  4956. }
  4957. #u130317 {
  4958. border-width:0px;
  4959. position:absolute;
  4960. left:0px;
  4961. top:0px;
  4962. width:0px;
  4963. height:0px;
  4964. }
  4965. #u130318_div {
  4966. border-width:0px;
  4967. position:absolute;
  4968. left:0px;
  4969. top:0px;
  4970. width:88px;
  4971. height:32px;
  4972. background:inherit;
  4973. background-color:rgba(255, 255, 255, 1);
  4974. box-sizing:border-box;
  4975. border-width:1px;
  4976. border-style:solid;
  4977. border-color:rgba(242, 242, 242, 1);
  4978. border-radius:33px;
  4979. -moz-box-shadow:none;
  4980. -webkit-box-shadow:none;
  4981. box-shadow:none;
  4982. }
  4983. #u130318 {
  4984. border-width:0px;
  4985. position:absolute;
  4986. left:772px;
  4987. top:71px;
  4988. width:88px;
  4989. height:32px;
  4990. display:flex;
  4991. }
  4992. #u130318 .text {
  4993. position:absolute;
  4994. align-self:center;
  4995. padding:2px 2px 2px 2px;
  4996. box-sizing:border-box;
  4997. width:100%;
  4998. }
  4999. #u130318_text {
  5000. border-width:0px;
  5001. word-wrap:break-word;
  5002. text-transform:none;
  5003. visibility:hidden;
  5004. }
  5005. #u130319 {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:0px;
  5009. top:0px;
  5010. width:0px;
  5011. height:0px;
  5012. }
  5013. #u130320_img {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:0px;
  5017. top:0px;
  5018. width:18px;
  5019. height:18px;
  5020. }
  5021. #u130320 {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:835px;
  5025. top:78px;
  5026. width:18px;
  5027. height:18px;
  5028. display:flex;
  5029. }
  5030. #u130320 .text {
  5031. position:absolute;
  5032. align-self:center;
  5033. padding:2px 2px 2px 2px;
  5034. box-sizing:border-box;
  5035. width:100%;
  5036. }
  5037. #u130320_text {
  5038. border-width:0px;
  5039. word-wrap:break-word;
  5040. text-transform:none;
  5041. visibility:hidden;
  5042. }
  5043. #u130321_img {
  5044. border-width:0px;
  5045. position:absolute;
  5046. left:0px;
  5047. top:0px;
  5048. width:6px;
  5049. height:6px;
  5050. }
  5051. #u130321 {
  5052. border-width:0px;
  5053. position:absolute;
  5054. left:841px;
  5055. top:84px;
  5056. width:6px;
  5057. height:6px;
  5058. display:flex;
  5059. }
  5060. #u130321 .text {
  5061. position:absolute;
  5062. align-self:center;
  5063. padding:2px 2px 2px 2px;
  5064. box-sizing:border-box;
  5065. width:100%;
  5066. }
  5067. #u130321_text {
  5068. border-width:0px;
  5069. word-wrap:break-word;
  5070. text-transform:none;
  5071. visibility:hidden;
  5072. }
  5073. #u130322 {
  5074. border-width:0px;
  5075. position:absolute;
  5076. left:0px;
  5077. top:0px;
  5078. width:0px;
  5079. height:0px;
  5080. }
  5081. #u130323_img {
  5082. border-width:0px;
  5083. position:absolute;
  5084. left:0px;
  5085. top:0px;
  5086. width:5px;
  5087. height:5px;
  5088. }
  5089. #u130323 {
  5090. border-width:0px;
  5091. position:absolute;
  5092. left:786px;
  5093. top:85px;
  5094. width:5px;
  5095. height:5px;
  5096. display:flex;
  5097. }
  5098. #u130323 .text {
  5099. position:absolute;
  5100. align-self:center;
  5101. padding:2px 2px 2px 2px;
  5102. box-sizing:border-box;
  5103. width:100%;
  5104. }
  5105. #u130323_text {
  5106. border-width:0px;
  5107. word-wrap:break-word;
  5108. text-transform:none;
  5109. visibility:hidden;
  5110. }
  5111. #u130324_img {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:0px;
  5115. top:0px;
  5116. width:5px;
  5117. height:5px;
  5118. }
  5119. #u130324 {
  5120. border-width:0px;
  5121. position:absolute;
  5122. left:802px;
  5123. top:85px;
  5124. width:5px;
  5125. height:5px;
  5126. display:flex;
  5127. }
  5128. #u130324 .text {
  5129. position:absolute;
  5130. align-self:center;
  5131. padding:2px 2px 2px 2px;
  5132. box-sizing:border-box;
  5133. width:100%;
  5134. }
  5135. #u130324_text {
  5136. border-width:0px;
  5137. word-wrap:break-word;
  5138. text-transform:none;
  5139. visibility:hidden;
  5140. }
  5141. #u130325_img {
  5142. border-width:0px;
  5143. position:absolute;
  5144. left:0px;
  5145. top:0px;
  5146. width:7px;
  5147. height:7px;
  5148. }
  5149. #u130325 {
  5150. border-width:0px;
  5151. position:absolute;
  5152. left:793px;
  5153. top:84px;
  5154. width:7px;
  5155. height:7px;
  5156. display:flex;
  5157. }
  5158. #u130325 .text {
  5159. position:absolute;
  5160. align-self:center;
  5161. padding:2px 2px 2px 2px;
  5162. box-sizing:border-box;
  5163. width:100%;
  5164. }
  5165. #u130325_text {
  5166. border-width:0px;
  5167. word-wrap:break-word;
  5168. text-transform:none;
  5169. visibility:hidden;
  5170. }
  5171. #u130326_img {
  5172. border-width:0px;
  5173. position:absolute;
  5174. left:0px;
  5175. top:0px;
  5176. width:19px;
  5177. height:2px;
  5178. }
  5179. #u130326 {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:810px;
  5183. top:87px;
  5184. width:18px;
  5185. height:1px;
  5186. display:flex;
  5187. -webkit-transform:rotate(90deg);
  5188. -moz-transform:rotate(90deg);
  5189. -ms-transform:rotate(90deg);
  5190. transform:rotate(90deg);
  5191. }
  5192. #u130326 .text {
  5193. position:absolute;
  5194. align-self:center;
  5195. padding:2px 2px 2px 2px;
  5196. box-sizing:border-box;
  5197. width:100%;
  5198. }
  5199. #u130326_text {
  5200. border-width:0px;
  5201. word-wrap:break-word;
  5202. text-transform:none;
  5203. visibility:hidden;
  5204. }
  5205. #u130327_div {
  5206. border-width:0px;
  5207. position:absolute;
  5208. left:0px;
  5209. top:0px;
  5210. width:65px;
  5211. height:22px;
  5212. background:inherit;
  5213. background-color:rgba(255, 255, 255, 0);
  5214. border:none;
  5215. border-radius:0px;
  5216. -moz-box-shadow:none;
  5217. -webkit-box-shadow:none;
  5218. box-shadow:none;
  5219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5220. font-weight:400;
  5221. font-style:normal;
  5222. font-size:16px;
  5223. color:#000000;
  5224. }
  5225. #u130327 {
  5226. border-width:0px;
  5227. position:absolute;
  5228. left:645px;
  5229. top:76px;
  5230. width:65px;
  5231. height:22px;
  5232. display:flex;
  5233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5234. font-weight:400;
  5235. font-style:normal;
  5236. font-size:16px;
  5237. color:#000000;
  5238. }
  5239. #u130327 .text {
  5240. position:absolute;
  5241. align-self:flex-start;
  5242. padding:0px 0px 0px 0px;
  5243. box-sizing:border-box;
  5244. width:100%;
  5245. }
  5246. #u130327_text {
  5247. border-width:0px;
  5248. white-space:nowrap;
  5249. text-transform:none;
  5250. }
  5251. #u130328_div {
  5252. border-width:0px;
  5253. position:absolute;
  5254. left:0px;
  5255. top:0px;
  5256. width:12px;
  5257. height:12px;
  5258. background:inherit;
  5259. background-color:rgba(255, 255, 255, 0);
  5260. box-sizing:border-box;
  5261. border-width:2px;
  5262. border-style:solid;
  5263. border-color:rgba(51, 51, 51, 1);
  5264. border-right:0px;
  5265. border-bottom:0px;
  5266. border-radius:0px;
  5267. border-top-right-radius:0px;
  5268. border-bottom-left-radius:0px;
  5269. -moz-box-shadow:none;
  5270. -webkit-box-shadow:none;
  5271. box-shadow:none;
  5272. }
  5273. #u130328 {
  5274. border-width:0px;
  5275. position:absolute;
  5276. left:507px;
  5277. top:81px;
  5278. width:12px;
  5279. height:12px;
  5280. display:flex;
  5281. -webkit-transform:rotate(315deg);
  5282. -moz-transform:rotate(315deg);
  5283. -ms-transform:rotate(315deg);
  5284. transform:rotate(315deg);
  5285. }
  5286. #u130328 .text {
  5287. position:absolute;
  5288. align-self:center;
  5289. padding:2px 2px 2px 2px;
  5290. box-sizing:border-box;
  5291. width:100%;
  5292. }
  5293. #u130328_text {
  5294. border-width:0px;
  5295. word-wrap:break-word;
  5296. text-transform:none;
  5297. visibility:hidden;
  5298. }
  5299. #u130329_img {
  5300. border-width:0px;
  5301. position:absolute;
  5302. left:0px;
  5303. top:0px;
  5304. width:23px;
  5305. height:23px;
  5306. }
  5307. #u130329 {
  5308. border-width:0px;
  5309. position:absolute;
  5310. left:534px;
  5311. top:76px;
  5312. width:23px;
  5313. height:23px;
  5314. display:flex;
  5315. }
  5316. #u130329 .text {
  5317. position:absolute;
  5318. align-self:center;
  5319. padding:2px 2px 2px 2px;
  5320. box-sizing:border-box;
  5321. width:100%;
  5322. }
  5323. #u130329_text {
  5324. border-width:0px;
  5325. word-wrap:break-word;
  5326. text-transform:none;
  5327. visibility:hidden;
  5328. }
  5329. #u130330 {
  5330. border-width:0px;
  5331. position:absolute;
  5332. left:0px;
  5333. top:0px;
  5334. width:0px;
  5335. height:0px;
  5336. }
  5337. #u130331_div {
  5338. border-width:0px;
  5339. position:absolute;
  5340. left:0px;
  5341. top:0px;
  5342. width:375px;
  5343. height:41px;
  5344. background:inherit;
  5345. background-color:rgba(255, 255, 255, 1);
  5346. border:none;
  5347. border-radius:0px;
  5348. -moz-box-shadow:none;
  5349. -webkit-box-shadow:none;
  5350. box-shadow:none;
  5351. }
  5352. #u130331 {
  5353. border-width:0px;
  5354. position:absolute;
  5355. left:492px;
  5356. top:157px;
  5357. width:375px;
  5358. height:41px;
  5359. display:flex;
  5360. }
  5361. #u130331 .text {
  5362. position:absolute;
  5363. align-self:center;
  5364. padding:2px 2px 2px 2px;
  5365. box-sizing:border-box;
  5366. width:100%;
  5367. }
  5368. #u130331_text {
  5369. border-width:0px;
  5370. word-wrap:break-word;
  5371. text-transform:none;
  5372. visibility:hidden;
  5373. }
  5374. #u130332_div {
  5375. border-width:0px;
  5376. position:absolute;
  5377. left:0px;
  5378. top:0px;
  5379. width:37px;
  5380. height:40px;
  5381. background:inherit;
  5382. background-color:rgba(255, 255, 255, 0);
  5383. box-sizing:border-box;
  5384. border-width:2px;
  5385. border-style:solid;
  5386. border-color:rgba(77, 140, 252, 1);
  5387. border-left:0px;
  5388. border-top:0px;
  5389. border-right:0px;
  5390. border-radius:0px;
  5391. border-bottom-right-radius:0px;
  5392. border-bottom-left-radius:0px;
  5393. -moz-box-shadow:none;
  5394. -webkit-box-shadow:none;
  5395. box-shadow:none;
  5396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5397. font-weight:400;
  5398. font-style:normal;
  5399. font-size:12px;
  5400. color:#1890FF;
  5401. text-align:center;
  5402. }
  5403. #u130332 {
  5404. border-width:0px;
  5405. position:absolute;
  5406. left:574px;
  5407. top:157px;
  5408. width:37px;
  5409. height:40px;
  5410. display:flex;
  5411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5412. font-weight:400;
  5413. font-style:normal;
  5414. font-size:12px;
  5415. color:#1890FF;
  5416. text-align:center;
  5417. }
  5418. #u130332 .text {
  5419. position:absolute;
  5420. align-self:center;
  5421. padding:0px 0px 0px 0px;
  5422. box-sizing:border-box;
  5423. width:100%;
  5424. }
  5425. #u130332_text {
  5426. border-width:0px;
  5427. white-space:nowrap;
  5428. text-transform:none;
  5429. }
  5430. #u130333_div {
  5431. border-width:0px;
  5432. position:absolute;
  5433. left:0px;
  5434. top:0px;
  5435. width:37px;
  5436. height:40px;
  5437. background:inherit;
  5438. background-color:rgba(255, 255, 255, 0);
  5439. border:none;
  5440. border-left:0px;
  5441. border-top:0px;
  5442. border-right:0px;
  5443. border-radius:0px;
  5444. border-bottom-right-radius:0px;
  5445. border-bottom-left-radius:0px;
  5446. -moz-box-shadow:none;
  5447. -webkit-box-shadow:none;
  5448. box-shadow:none;
  5449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5450. font-weight:400;
  5451. font-style:normal;
  5452. font-size:12px;
  5453. text-align:center;
  5454. }
  5455. #u130333 {
  5456. border-width:0px;
  5457. position:absolute;
  5458. left:508px;
  5459. top:157px;
  5460. width:37px;
  5461. height:40px;
  5462. display:flex;
  5463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5464. font-weight:400;
  5465. font-style:normal;
  5466. font-size:12px;
  5467. text-align:center;
  5468. }
  5469. #u130333 .text {
  5470. position:absolute;
  5471. align-self:center;
  5472. padding:0px 0px 0px 0px;
  5473. box-sizing:border-box;
  5474. width:100%;
  5475. }
  5476. #u130333_text {
  5477. border-width:0px;
  5478. white-space:nowrap;
  5479. text-transform:none;
  5480. }
  5481. #u130334_div {
  5482. border-width:0px;
  5483. position:absolute;
  5484. left:0px;
  5485. top:0px;
  5486. width:11px;
  5487. height:11px;
  5488. background:inherit;
  5489. background-color:rgba(217, 0, 27, 1);
  5490. border:none;
  5491. border-radius:7px;
  5492. -moz-box-shadow:none;
  5493. -webkit-box-shadow:none;
  5494. box-shadow:none;
  5495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5496. font-weight:400;
  5497. font-style:normal;
  5498. font-size:8px;
  5499. color:#FFFFFF;
  5500. text-align:center;
  5501. }
  5502. #u130334 {
  5503. border-width:0px;
  5504. position:absolute;
  5505. left:542px;
  5506. top:161px;
  5507. width:11px;
  5508. height:11px;
  5509. display:flex;
  5510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5511. font-weight:400;
  5512. font-style:normal;
  5513. font-size:8px;
  5514. color:#FFFFFF;
  5515. text-align:center;
  5516. }
  5517. #u130334 .text {
  5518. position:absolute;
  5519. align-self:flex-start;
  5520. padding:0px 0px 0px 0px;
  5521. box-sizing:border-box;
  5522. width:100%;
  5523. }
  5524. #u130334_text {
  5525. border-width:0px;
  5526. word-wrap:break-word;
  5527. text-transform:none;
  5528. }
  5529. #u130335_div {
  5530. border-width:0px;
  5531. position:absolute;
  5532. left:0px;
  5533. top:0px;
  5534. width:49px;
  5535. height:40px;
  5536. background:inherit;
  5537. background-color:rgba(255, 255, 255, 0);
  5538. border:none;
  5539. border-left:0px;
  5540. border-top:0px;
  5541. border-right:0px;
  5542. border-radius:0px;
  5543. border-bottom-right-radius:0px;
  5544. border-bottom-left-radius:0px;
  5545. -moz-box-shadow:none;
  5546. -webkit-box-shadow:none;
  5547. box-shadow:none;
  5548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5549. font-weight:400;
  5550. font-style:normal;
  5551. font-size:12px;
  5552. text-align:center;
  5553. }
  5554. #u130335 {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:635px;
  5558. top:157px;
  5559. width:49px;
  5560. height:40px;
  5561. display:flex;
  5562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5563. font-weight:400;
  5564. font-style:normal;
  5565. font-size:12px;
  5566. text-align:center;
  5567. }
  5568. #u130335 .text {
  5569. position:absolute;
  5570. align-self:center;
  5571. padding:0px 0px 0px 0px;
  5572. box-sizing:border-box;
  5573. width:100%;
  5574. }
  5575. #u130335_text {
  5576. border-width:0px;
  5577. white-space:nowrap;
  5578. text-transform:none;
  5579. }
  5580. #u130336 {
  5581. border-width:0px;
  5582. position:absolute;
  5583. left:0px;
  5584. top:0px;
  5585. width:0px;
  5586. height:0px;
  5587. }
  5588. #u130337_div {
  5589. border-width:0px;
  5590. position:absolute;
  5591. left:0px;
  5592. top:0px;
  5593. width:375px;
  5594. height:50px;
  5595. background:inherit;
  5596. background-color:rgba(255, 255, 255, 1);
  5597. border:none;
  5598. border-radius:0px;
  5599. -moz-box-shadow:none;
  5600. -webkit-box-shadow:none;
  5601. box-shadow:none;
  5602. }
  5603. #u130337 {
  5604. border-width:0px;
  5605. position:absolute;
  5606. left:493px;
  5607. top:107px;
  5608. width:375px;
  5609. height:50px;
  5610. display:flex;
  5611. }
  5612. #u130337 .text {
  5613. position:absolute;
  5614. align-self:center;
  5615. padding:2px 2px 2px 2px;
  5616. box-sizing:border-box;
  5617. width:100%;
  5618. }
  5619. #u130337_text {
  5620. border-width:0px;
  5621. word-wrap:break-word;
  5622. text-transform:none;
  5623. visibility:hidden;
  5624. }
  5625. #u130338 {
  5626. border-width:0px;
  5627. position:absolute;
  5628. left:0px;
  5629. top:0px;
  5630. width:0px;
  5631. height:0px;
  5632. }
  5633. #u130339 {
  5634. border-width:0px;
  5635. position:absolute;
  5636. left:0px;
  5637. top:0px;
  5638. width:0px;
  5639. height:0px;
  5640. }
  5641. #u130340_div {
  5642. border-width:0px;
  5643. position:absolute;
  5644. left:0px;
  5645. top:0px;
  5646. width:135px;
  5647. height:30px;
  5648. background:inherit;
  5649. background-color:rgba(242, 242, 242, 1);
  5650. border:none;
  5651. border-radius:20px;
  5652. -moz-box-shadow:none;
  5653. -webkit-box-shadow:none;
  5654. box-shadow:none;
  5655. }
  5656. #u130340 {
  5657. border-width:0px;
  5658. position:absolute;
  5659. left:506px;
  5660. top:117px;
  5661. width:135px;
  5662. height:30px;
  5663. display:flex;
  5664. }
  5665. #u130340 .text {
  5666. position:absolute;
  5667. align-self:center;
  5668. padding:2px 2px 2px 2px;
  5669. box-sizing:border-box;
  5670. width:100%;
  5671. }
  5672. #u130340_text {
  5673. border-width:0px;
  5674. word-wrap:break-word;
  5675. text-transform:none;
  5676. visibility:hidden;
  5677. }
  5678. #u130341_input {
  5679. position:absolute;
  5680. left:0px;
  5681. top:0px;
  5682. width:121px;
  5683. height:22px;
  5684. padding:2px 2px 2px 2px;
  5685. font-family:'ArialMT', 'Arial', sans-serif;
  5686. font-weight:400;
  5687. font-style:normal;
  5688. font-size:12px;
  5689. letter-spacing:normal;
  5690. color:#7F7F7F;
  5691. vertical-align:none;
  5692. text-align:left;
  5693. text-transform:none;
  5694. background-color:transparent;
  5695. border-color:transparent;
  5696. }
  5697. #u130341_input.disabled {
  5698. position:absolute;
  5699. left:0px;
  5700. top:0px;
  5701. width:121px;
  5702. height:22px;
  5703. padding:2px 2px 2px 2px;
  5704. font-family:'ArialMT', 'Arial', sans-serif;
  5705. font-weight:400;
  5706. font-style:normal;
  5707. font-size:12px;
  5708. letter-spacing:normal;
  5709. color:#7F7F7F;
  5710. vertical-align:none;
  5711. text-align:left;
  5712. text-transform:none;
  5713. background-color:transparent;
  5714. border-color:transparent;
  5715. }
  5716. #u130341_div {
  5717. border-width:0px;
  5718. position:absolute;
  5719. left:0px;
  5720. top:0px;
  5721. width:121px;
  5722. height:22px;
  5723. background:inherit;
  5724. background-color:rgba(255, 255, 255, 0);
  5725. border:none;
  5726. border-radius:0px;
  5727. -moz-box-shadow:none;
  5728. -webkit-box-shadow:none;
  5729. box-shadow:none;
  5730. font-size:12px;
  5731. color:#7F7F7F;
  5732. }
  5733. #u130341 {
  5734. border-width:0px;
  5735. position:absolute;
  5736. left:513px;
  5737. top:121px;
  5738. width:121px;
  5739. height:22px;
  5740. display:flex;
  5741. font-size:12px;
  5742. color:#7F7F7F;
  5743. }
  5744. #u130341 .text {
  5745. position:absolute;
  5746. align-self:flex-start;
  5747. padding:2px 2px 2px 2px;
  5748. box-sizing:border-box;
  5749. width:100%;
  5750. }
  5751. #u130341_div.disabled {
  5752. border-width:0px;
  5753. position:absolute;
  5754. left:0px;
  5755. top:0px;
  5756. width:121px;
  5757. height:22px;
  5758. background:inherit;
  5759. background-color:rgba(240, 240, 240, 1);
  5760. border:none;
  5761. border-radius:0px;
  5762. -moz-box-shadow:none;
  5763. -webkit-box-shadow:none;
  5764. box-shadow:none;
  5765. font-size:12px;
  5766. color:#7F7F7F;
  5767. }
  5768. #u130341.disabled {
  5769. }
  5770. .u130341_input_option {
  5771. font-size:12px;
  5772. }
  5773. #u130342_div {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:0px;
  5777. top:0px;
  5778. width:64px;
  5779. height:30px;
  5780. background:inherit;
  5781. background-color:rgba(255, 255, 255, 0);
  5782. border:none;
  5783. border-left:0px;
  5784. border-top:0px;
  5785. border-right:0px;
  5786. border-radius:0px;
  5787. border-bottom-right-radius:0px;
  5788. border-bottom-left-radius:0px;
  5789. -moz-box-shadow:none;
  5790. -webkit-box-shadow:none;
  5791. box-shadow:none;
  5792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5793. font-weight:400;
  5794. font-style:normal;
  5795. font-size:12px;
  5796. color:#1890FF;
  5797. line-height:30px;
  5798. }
  5799. #u130342 {
  5800. border-width:0px;
  5801. position:absolute;
  5802. left:796px;
  5803. top:117px;
  5804. width:64px;
  5805. height:30px;
  5806. display:flex;
  5807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5808. font-weight:400;
  5809. font-style:normal;
  5810. font-size:12px;
  5811. color:#1890FF;
  5812. line-height:30px;
  5813. }
  5814. #u130342 .text {
  5815. position:absolute;
  5816. align-self:flex-start;
  5817. padding:0px 0px 0px 0px;
  5818. box-sizing:border-box;
  5819. width:100%;
  5820. }
  5821. #u130342_text {
  5822. border-width:0px;
  5823. white-space:nowrap;
  5824. text-transform:none;
  5825. }
  5826. #u130343 {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:0px;
  5830. top:0px;
  5831. width:0px;
  5832. height:0px;
  5833. }
  5834. #u130344_div {
  5835. border-width:0px;
  5836. position:absolute;
  5837. left:0px;
  5838. top:0px;
  5839. width:135px;
  5840. height:30px;
  5841. background:inherit;
  5842. background-color:rgba(242, 242, 242, 1);
  5843. border:none;
  5844. border-radius:20px;
  5845. -moz-box-shadow:none;
  5846. -webkit-box-shadow:none;
  5847. box-shadow:none;
  5848. }
  5849. #u130344 {
  5850. border-width:0px;
  5851. position:absolute;
  5852. left:651px;
  5853. top:117px;
  5854. width:135px;
  5855. height:30px;
  5856. display:flex;
  5857. }
  5858. #u130344 .text {
  5859. position:absolute;
  5860. align-self:center;
  5861. padding:2px 2px 2px 2px;
  5862. box-sizing:border-box;
  5863. width:100%;
  5864. }
  5865. #u130344_text {
  5866. border-width:0px;
  5867. word-wrap:break-word;
  5868. text-transform:none;
  5869. visibility:hidden;
  5870. }
  5871. #u130345_input {
  5872. position:absolute;
  5873. left:0px;
  5874. top:0px;
  5875. width:121px;
  5876. height:22px;
  5877. padding:2px 2px 2px 2px;
  5878. font-family:'ArialMT', 'Arial', sans-serif;
  5879. font-weight:400;
  5880. font-style:normal;
  5881. font-size:12px;
  5882. letter-spacing:normal;
  5883. color:#7F7F7F;
  5884. vertical-align:none;
  5885. text-align:left;
  5886. text-transform:none;
  5887. background-color:transparent;
  5888. border-color:transparent;
  5889. }
  5890. #u130345_input.disabled {
  5891. position:absolute;
  5892. left:0px;
  5893. top:0px;
  5894. width:121px;
  5895. height:22px;
  5896. padding:2px 2px 2px 2px;
  5897. font-family:'ArialMT', 'Arial', sans-serif;
  5898. font-weight:400;
  5899. font-style:normal;
  5900. font-size:12px;
  5901. letter-spacing:normal;
  5902. color:#7F7F7F;
  5903. vertical-align:none;
  5904. text-align:left;
  5905. text-transform:none;
  5906. background-color:transparent;
  5907. border-color:transparent;
  5908. }
  5909. #u130345_div {
  5910. border-width:0px;
  5911. position:absolute;
  5912. left:0px;
  5913. top:0px;
  5914. width:121px;
  5915. height:22px;
  5916. background:inherit;
  5917. background-color:rgba(255, 255, 255, 0);
  5918. border:none;
  5919. border-radius:0px;
  5920. -moz-box-shadow:none;
  5921. -webkit-box-shadow:none;
  5922. box-shadow:none;
  5923. font-size:12px;
  5924. color:#7F7F7F;
  5925. }
  5926. #u130345 {
  5927. border-width:0px;
  5928. position:absolute;
  5929. left:658px;
  5930. top:121px;
  5931. width:121px;
  5932. height:22px;
  5933. display:flex;
  5934. font-size:12px;
  5935. color:#7F7F7F;
  5936. }
  5937. #u130345 .text {
  5938. position:absolute;
  5939. align-self:flex-start;
  5940. padding:2px 2px 2px 2px;
  5941. box-sizing:border-box;
  5942. width:100%;
  5943. }
  5944. #u130345_div.disabled {
  5945. border-width:0px;
  5946. position:absolute;
  5947. left:0px;
  5948. top:0px;
  5949. width:121px;
  5950. height:22px;
  5951. background:inherit;
  5952. background-color:rgba(240, 240, 240, 1);
  5953. border:none;
  5954. border-radius:0px;
  5955. -moz-box-shadow:none;
  5956. -webkit-box-shadow:none;
  5957. box-shadow:none;
  5958. font-size:12px;
  5959. color:#7F7F7F;
  5960. }
  5961. #u130345.disabled {
  5962. }
  5963. .u130345_input_option {
  5964. font-size:12px;
  5965. }
  5966. #u130347_img {
  5967. border-width:0px;
  5968. position:absolute;
  5969. left:0px;
  5970. top:0px;
  5971. width:433px;
  5972. height:865px;
  5973. }
  5974. #u130347 {
  5975. border-width:0px;
  5976. position:absolute;
  5977. left:926px;
  5978. top:0px;
  5979. width:433px;
  5980. height:865px;
  5981. display:flex;
  5982. }
  5983. #u130347 .text {
  5984. position:absolute;
  5985. align-self:center;
  5986. padding:2px 2px 2px 2px;
  5987. box-sizing:border-box;
  5988. width:100%;
  5989. }
  5990. #u130347_text {
  5991. border-width:0px;
  5992. word-wrap:break-word;
  5993. text-transform:none;
  5994. visibility:hidden;
  5995. }
  5996. #u130348_div {
  5997. border-width:0px;
  5998. position:absolute;
  5999. left:0px;
  6000. top:0px;
  6001. width:375px;
  6002. height:40px;
  6003. background:inherit;
  6004. background-color:rgba(255, 255, 255, 1);
  6005. box-sizing:border-box;
  6006. border-width:1px;
  6007. border-style:solid;
  6008. border-color:rgba(215, 215, 215, 1);
  6009. border-left:0px;
  6010. border-top:0px;
  6011. border-right:0px;
  6012. border-radius:0px;
  6013. border-bottom-right-radius:0px;
  6014. border-bottom-left-radius:0px;
  6015. -moz-box-shadow:none;
  6016. -webkit-box-shadow:none;
  6017. box-shadow:none;
  6018. }
  6019. #u130348 {
  6020. border-width:0px;
  6021. position:absolute;
  6022. left:955px;
  6023. top:67px;
  6024. width:375px;
  6025. height:40px;
  6026. display:flex;
  6027. }
  6028. #u130348 .text {
  6029. position:absolute;
  6030. align-self:center;
  6031. padding:2px 2px 2px 2px;
  6032. box-sizing:border-box;
  6033. width:100%;
  6034. }
  6035. #u130348_text {
  6036. border-width:0px;
  6037. word-wrap:break-word;
  6038. text-transform:none;
  6039. visibility:hidden;
  6040. }
  6041. #u130349 {
  6042. border-width:0px;
  6043. position:absolute;
  6044. left:0px;
  6045. top:0px;
  6046. width:0px;
  6047. height:0px;
  6048. }
  6049. #u130350_div {
  6050. border-width:0px;
  6051. position:absolute;
  6052. left:0px;
  6053. top:0px;
  6054. width:88px;
  6055. height:32px;
  6056. background:inherit;
  6057. background-color:rgba(255, 255, 255, 1);
  6058. box-sizing:border-box;
  6059. border-width:1px;
  6060. border-style:solid;
  6061. border-color:rgba(242, 242, 242, 1);
  6062. border-radius:33px;
  6063. -moz-box-shadow:none;
  6064. -webkit-box-shadow:none;
  6065. box-shadow:none;
  6066. }
  6067. #u130350 {
  6068. border-width:0px;
  6069. position:absolute;
  6070. left:1235px;
  6071. top:71px;
  6072. width:88px;
  6073. height:32px;
  6074. display:flex;
  6075. }
  6076. #u130350 .text {
  6077. position:absolute;
  6078. align-self:center;
  6079. padding:2px 2px 2px 2px;
  6080. box-sizing:border-box;
  6081. width:100%;
  6082. }
  6083. #u130350_text {
  6084. border-width:0px;
  6085. word-wrap:break-word;
  6086. text-transform:none;
  6087. visibility:hidden;
  6088. }
  6089. #u130351 {
  6090. border-width:0px;
  6091. position:absolute;
  6092. left:0px;
  6093. top:0px;
  6094. width:0px;
  6095. height:0px;
  6096. }
  6097. #u130352_img {
  6098. border-width:0px;
  6099. position:absolute;
  6100. left:0px;
  6101. top:0px;
  6102. width:18px;
  6103. height:18px;
  6104. }
  6105. #u130352 {
  6106. border-width:0px;
  6107. position:absolute;
  6108. left:1298px;
  6109. top:78px;
  6110. width:18px;
  6111. height:18px;
  6112. display:flex;
  6113. }
  6114. #u130352 .text {
  6115. position:absolute;
  6116. align-self:center;
  6117. padding:2px 2px 2px 2px;
  6118. box-sizing:border-box;
  6119. width:100%;
  6120. }
  6121. #u130352_text {
  6122. border-width:0px;
  6123. word-wrap:break-word;
  6124. text-transform:none;
  6125. visibility:hidden;
  6126. }
  6127. #u130353_img {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:0px;
  6131. top:0px;
  6132. width:6px;
  6133. height:6px;
  6134. }
  6135. #u130353 {
  6136. border-width:0px;
  6137. position:absolute;
  6138. left:1304px;
  6139. top:84px;
  6140. width:6px;
  6141. height:6px;
  6142. display:flex;
  6143. }
  6144. #u130353 .text {
  6145. position:absolute;
  6146. align-self:center;
  6147. padding:2px 2px 2px 2px;
  6148. box-sizing:border-box;
  6149. width:100%;
  6150. }
  6151. #u130353_text {
  6152. border-width:0px;
  6153. word-wrap:break-word;
  6154. text-transform:none;
  6155. visibility:hidden;
  6156. }
  6157. #u130354 {
  6158. border-width:0px;
  6159. position:absolute;
  6160. left:0px;
  6161. top:0px;
  6162. width:0px;
  6163. height:0px;
  6164. }
  6165. #u130355_img {
  6166. border-width:0px;
  6167. position:absolute;
  6168. left:0px;
  6169. top:0px;
  6170. width:5px;
  6171. height:5px;
  6172. }
  6173. #u130355 {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:1249px;
  6177. top:85px;
  6178. width:5px;
  6179. height:5px;
  6180. display:flex;
  6181. }
  6182. #u130355 .text {
  6183. position:absolute;
  6184. align-self:center;
  6185. padding:2px 2px 2px 2px;
  6186. box-sizing:border-box;
  6187. width:100%;
  6188. }
  6189. #u130355_text {
  6190. border-width:0px;
  6191. word-wrap:break-word;
  6192. text-transform:none;
  6193. visibility:hidden;
  6194. }
  6195. #u130356_img {
  6196. border-width:0px;
  6197. position:absolute;
  6198. left:0px;
  6199. top:0px;
  6200. width:5px;
  6201. height:5px;
  6202. }
  6203. #u130356 {
  6204. border-width:0px;
  6205. position:absolute;
  6206. left:1265px;
  6207. top:85px;
  6208. width:5px;
  6209. height:5px;
  6210. display:flex;
  6211. }
  6212. #u130356 .text {
  6213. position:absolute;
  6214. align-self:center;
  6215. padding:2px 2px 2px 2px;
  6216. box-sizing:border-box;
  6217. width:100%;
  6218. }
  6219. #u130356_text {
  6220. border-width:0px;
  6221. word-wrap:break-word;
  6222. text-transform:none;
  6223. visibility:hidden;
  6224. }
  6225. #u130357_img {
  6226. border-width:0px;
  6227. position:absolute;
  6228. left:0px;
  6229. top:0px;
  6230. width:7px;
  6231. height:7px;
  6232. }
  6233. #u130357 {
  6234. border-width:0px;
  6235. position:absolute;
  6236. left:1256px;
  6237. top:84px;
  6238. width:7px;
  6239. height:7px;
  6240. display:flex;
  6241. }
  6242. #u130357 .text {
  6243. position:absolute;
  6244. align-self:center;
  6245. padding:2px 2px 2px 2px;
  6246. box-sizing:border-box;
  6247. width:100%;
  6248. }
  6249. #u130357_text {
  6250. border-width:0px;
  6251. word-wrap:break-word;
  6252. text-transform:none;
  6253. visibility:hidden;
  6254. }
  6255. #u130358_img {
  6256. border-width:0px;
  6257. position:absolute;
  6258. left:0px;
  6259. top:0px;
  6260. width:19px;
  6261. height:2px;
  6262. }
  6263. #u130358 {
  6264. border-width:0px;
  6265. position:absolute;
  6266. left:1273px;
  6267. top:87px;
  6268. width:18px;
  6269. height:1px;
  6270. display:flex;
  6271. -webkit-transform:rotate(90deg);
  6272. -moz-transform:rotate(90deg);
  6273. -ms-transform:rotate(90deg);
  6274. transform:rotate(90deg);
  6275. }
  6276. #u130358 .text {
  6277. position:absolute;
  6278. align-self:center;
  6279. padding:2px 2px 2px 2px;
  6280. box-sizing:border-box;
  6281. width:100%;
  6282. }
  6283. #u130358_text {
  6284. border-width:0px;
  6285. word-wrap:break-word;
  6286. text-transform:none;
  6287. visibility:hidden;
  6288. }
  6289. #u130359_img {
  6290. border-width:0px;
  6291. position:absolute;
  6292. left:0px;
  6293. top:0px;
  6294. width:375px;
  6295. height:44px;
  6296. }
  6297. #u130359 {
  6298. border-width:0px;
  6299. position:absolute;
  6300. left:955px;
  6301. top:24px;
  6302. width:375px;
  6303. height:44px;
  6304. display:flex;
  6305. }
  6306. #u130359 .text {
  6307. position:absolute;
  6308. align-self:center;
  6309. padding:2px 2px 2px 2px;
  6310. box-sizing:border-box;
  6311. width:100%;
  6312. }
  6313. #u130359_text {
  6314. border-width:0px;
  6315. word-wrap:break-word;
  6316. text-transform:none;
  6317. visibility:hidden;
  6318. }
  6319. #u130360_div {
  6320. border-width:0px;
  6321. position:absolute;
  6322. left:0px;
  6323. top:0px;
  6324. width:375px;
  6325. height:50px;
  6326. background:inherit;
  6327. background-color:rgba(255, 255, 255, 1);
  6328. box-sizing:border-box;
  6329. border-width:1px;
  6330. border-style:solid;
  6331. border-color:rgba(242, 242, 242, 1);
  6332. border-radius:26px;
  6333. border-top-left-radius:0px;
  6334. border-top-right-radius:0px;
  6335. -moz-box-shadow:none;
  6336. -webkit-box-shadow:none;
  6337. box-shadow:none;
  6338. }
  6339. #u130360 {
  6340. border-width:0px;
  6341. position:absolute;
  6342. left:955px;
  6343. top:788px;
  6344. width:375px;
  6345. height:50px;
  6346. display:flex;
  6347. }
  6348. #u130360 .text {
  6349. position:absolute;
  6350. align-self:center;
  6351. padding:2px 2px 2px 2px;
  6352. box-sizing:border-box;
  6353. width:100%;
  6354. }
  6355. #u130360_text {
  6356. border-width:0px;
  6357. word-wrap:break-word;
  6358. text-transform:none;
  6359. visibility:hidden;
  6360. }
  6361. #u130361 {
  6362. border-width:0px;
  6363. position:absolute;
  6364. left:0px;
  6365. top:0px;
  6366. width:0px;
  6367. height:0px;
  6368. }
  6369. #u130362_img {
  6370. border-width:0px;
  6371. position:absolute;
  6372. left:0px;
  6373. top:0px;
  6374. width:24px;
  6375. height:24px;
  6376. }
  6377. #u130362 {
  6378. border-width:0px;
  6379. position:absolute;
  6380. left:995px;
  6381. top:792px;
  6382. width:24px;
  6383. height:24px;
  6384. display:flex;
  6385. font-size:8px;
  6386. }
  6387. #u130362 .text {
  6388. position:absolute;
  6389. align-self:center;
  6390. padding:2px 2px 2px 2px;
  6391. box-sizing:border-box;
  6392. width:100%;
  6393. }
  6394. #u130362_text {
  6395. border-width:0px;
  6396. word-wrap:break-word;
  6397. text-transform:none;
  6398. }
  6399. #u130363_div {
  6400. border-width:0px;
  6401. position:absolute;
  6402. left:0px;
  6403. top:0px;
  6404. width:25px;
  6405. height:17px;
  6406. background:inherit;
  6407. background-color:rgba(255, 255, 255, 0);
  6408. border:none;
  6409. border-radius:0px;
  6410. -moz-box-shadow:none;
  6411. -webkit-box-shadow:none;
  6412. box-shadow:none;
  6413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6414. font-weight:400;
  6415. font-style:normal;
  6416. font-size:12px;
  6417. }
  6418. #u130363 {
  6419. border-width:0px;
  6420. position:absolute;
  6421. left:995px;
  6422. top:817px;
  6423. width:25px;
  6424. height:17px;
  6425. display:flex;
  6426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6427. font-weight:400;
  6428. font-style:normal;
  6429. font-size:12px;
  6430. }
  6431. #u130363 .text {
  6432. position:absolute;
  6433. align-self:flex-start;
  6434. padding:0px 0px 0px 0px;
  6435. box-sizing:border-box;
  6436. width:100%;
  6437. }
  6438. #u130363_text {
  6439. border-width:0px;
  6440. white-space:nowrap;
  6441. text-transform:none;
  6442. }
  6443. #u130364 {
  6444. border-width:0px;
  6445. position:absolute;
  6446. left:0px;
  6447. top:0px;
  6448. width:0px;
  6449. height:0px;
  6450. }
  6451. #u130365_img {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:0px;
  6455. top:0px;
  6456. width:24px;
  6457. height:24px;
  6458. }
  6459. #u130365 {
  6460. border-width:0px;
  6461. position:absolute;
  6462. left:1265px;
  6463. top:794px;
  6464. width:24px;
  6465. height:24px;
  6466. display:flex;
  6467. font-size:8px;
  6468. }
  6469. #u130365 .text {
  6470. position:absolute;
  6471. align-self:center;
  6472. padding:2px 2px 2px 2px;
  6473. box-sizing:border-box;
  6474. width:100%;
  6475. }
  6476. #u130365_text {
  6477. border-width:0px;
  6478. word-wrap:break-word;
  6479. text-transform:none;
  6480. }
  6481. #u130366_div {
  6482. border-width:0px;
  6483. position:absolute;
  6484. left:0px;
  6485. top:0px;
  6486. width:25px;
  6487. height:17px;
  6488. background:inherit;
  6489. background-color:rgba(255, 255, 255, 0);
  6490. border:none;
  6491. border-radius:0px;
  6492. -moz-box-shadow:none;
  6493. -webkit-box-shadow:none;
  6494. box-shadow:none;
  6495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6496. font-weight:400;
  6497. font-style:normal;
  6498. font-size:12px;
  6499. }
  6500. #u130366 {
  6501. border-width:0px;
  6502. position:absolute;
  6503. left:1265px;
  6504. top:819px;
  6505. width:25px;
  6506. height:17px;
  6507. display:flex;
  6508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6509. font-weight:400;
  6510. font-style:normal;
  6511. font-size:12px;
  6512. }
  6513. #u130366 .text {
  6514. position:absolute;
  6515. align-self:flex-start;
  6516. padding:0px 0px 0px 0px;
  6517. box-sizing:border-box;
  6518. width:100%;
  6519. }
  6520. #u130366_text {
  6521. border-width:0px;
  6522. white-space:nowrap;
  6523. text-transform:none;
  6524. }
  6525. #u130367_div {
  6526. border-width:0px;
  6527. position:absolute;
  6528. left:0px;
  6529. top:0px;
  6530. width:375px;
  6531. height:681px;
  6532. background:inherit;
  6533. background-color:rgba(242, 242, 242, 0.462745098039216);
  6534. border:none;
  6535. border-radius:0px;
  6536. -moz-box-shadow:none;
  6537. -webkit-box-shadow:none;
  6538. box-shadow:none;
  6539. }
  6540. #u130367 {
  6541. border-width:0px;
  6542. position:absolute;
  6543. left:955px;
  6544. top:107px;
  6545. width:375px;
  6546. height:681px;
  6547. display:flex;
  6548. }
  6549. #u130367 .text {
  6550. position:absolute;
  6551. align-self:center;
  6552. padding:2px 2px 2px 2px;
  6553. box-sizing:border-box;
  6554. width:100%;
  6555. }
  6556. #u130367_text {
  6557. border-width:0px;
  6558. word-wrap:break-word;
  6559. text-transform:none;
  6560. visibility:hidden;
  6561. }
  6562. #u130368 {
  6563. border-width:0px;
  6564. position:absolute;
  6565. left:0px;
  6566. top:0px;
  6567. width:0px;
  6568. height:0px;
  6569. }
  6570. #u130369_img {
  6571. border-width:0px;
  6572. position:absolute;
  6573. left:0px;
  6574. top:0px;
  6575. width:24px;
  6576. height:24px;
  6577. }
  6578. #u130369 {
  6579. border-width:0px;
  6580. position:absolute;
  6581. left:1177px;
  6582. top:792px;
  6583. width:24px;
  6584. height:24px;
  6585. display:flex;
  6586. font-size:8px;
  6587. }
  6588. #u130369 .text {
  6589. position:absolute;
  6590. align-self:center;
  6591. padding:2px 2px 2px 2px;
  6592. box-sizing:border-box;
  6593. width:100%;
  6594. }
  6595. #u130369_text {
  6596. border-width:0px;
  6597. word-wrap:break-word;
  6598. text-transform:none;
  6599. }
  6600. #u130370_div {
  6601. border-width:0px;
  6602. position:absolute;
  6603. left:0px;
  6604. top:0px;
  6605. width:37px;
  6606. height:17px;
  6607. background:inherit;
  6608. background-color:rgba(255, 255, 255, 0);
  6609. border:none;
  6610. border-radius:0px;
  6611. -moz-box-shadow:none;
  6612. -webkit-box-shadow:none;
  6613. box-shadow:none;
  6614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6615. font-weight:400;
  6616. font-style:normal;
  6617. font-size:12px;
  6618. }
  6619. #u130370 {
  6620. border-width:0px;
  6621. position:absolute;
  6622. left:1171px;
  6623. top:817px;
  6624. width:37px;
  6625. height:17px;
  6626. display:flex;
  6627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6628. font-weight:400;
  6629. font-style:normal;
  6630. font-size:12px;
  6631. }
  6632. #u130370 .text {
  6633. position:absolute;
  6634. align-self:flex-start;
  6635. padding:0px 0px 0px 0px;
  6636. box-sizing:border-box;
  6637. width:100%;
  6638. }
  6639. #u130370_text {
  6640. border-width:0px;
  6641. white-space:nowrap;
  6642. text-transform:none;
  6643. }
  6644. #u130371 {
  6645. border-width:0px;
  6646. position:absolute;
  6647. left:0px;
  6648. top:0px;
  6649. width:0px;
  6650. height:0px;
  6651. }
  6652. #u130372_img {
  6653. border-width:0px;
  6654. position:absolute;
  6655. left:0px;
  6656. top:0px;
  6657. width:24px;
  6658. height:24px;
  6659. }
  6660. #u130372 {
  6661. border-width:0px;
  6662. position:absolute;
  6663. left:1083px;
  6664. top:792px;
  6665. width:24px;
  6666. height:24px;
  6667. display:flex;
  6668. font-size:8px;
  6669. }
  6670. #u130372 .text {
  6671. position:absolute;
  6672. align-self:center;
  6673. padding:2px 2px 2px 2px;
  6674. box-sizing:border-box;
  6675. width:100%;
  6676. }
  6677. #u130372_text {
  6678. border-width:0px;
  6679. word-wrap:break-word;
  6680. text-transform:none;
  6681. }
  6682. #u130373_div {
  6683. border-width:0px;
  6684. position:absolute;
  6685. left:0px;
  6686. top:0px;
  6687. width:37px;
  6688. height:17px;
  6689. background:inherit;
  6690. background-color:rgba(255, 255, 255, 0);
  6691. border:none;
  6692. border-radius:0px;
  6693. -moz-box-shadow:none;
  6694. -webkit-box-shadow:none;
  6695. box-shadow:none;
  6696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6697. font-weight:400;
  6698. font-style:normal;
  6699. font-size:12px;
  6700. }
  6701. #u130373 {
  6702. border-width:0px;
  6703. position:absolute;
  6704. left:1077px;
  6705. top:817px;
  6706. width:37px;
  6707. height:17px;
  6708. display:flex;
  6709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6710. font-weight:400;
  6711. font-style:normal;
  6712. font-size:12px;
  6713. }
  6714. #u130373 .text {
  6715. position:absolute;
  6716. align-self:flex-start;
  6717. padding:0px 0px 0px 0px;
  6718. box-sizing:border-box;
  6719. width:100%;
  6720. }
  6721. #u130373_text {
  6722. border-width:0px;
  6723. white-space:nowrap;
  6724. text-transform:none;
  6725. }
  6726. #u130374_div {
  6727. border-width:0px;
  6728. position:absolute;
  6729. left:0px;
  6730. top:0px;
  6731. width:375px;
  6732. height:732px;
  6733. background:inherit;
  6734. background-color:rgba(242, 242, 242, 0.996078431372549);
  6735. border:none;
  6736. border-top:0px;
  6737. border-radius:28px;
  6738. border-top-left-radius:0px;
  6739. border-top-right-radius:0px;
  6740. -moz-box-shadow:none;
  6741. -webkit-box-shadow:none;
  6742. box-shadow:none;
  6743. }
  6744. #u130374 {
  6745. border-width:0px;
  6746. position:absolute;
  6747. left:955px;
  6748. top:107px;
  6749. width:375px;
  6750. height:732px;
  6751. display:flex;
  6752. }
  6753. #u130374 .text {
  6754. position:absolute;
  6755. align-self:center;
  6756. padding:2px 2px 2px 2px;
  6757. box-sizing:border-box;
  6758. width:100%;
  6759. }
  6760. #u130374_text {
  6761. border-width:0px;
  6762. word-wrap:break-word;
  6763. text-transform:none;
  6764. visibility:hidden;
  6765. }
  6766. #u130375_img {
  6767. border-width:0px;
  6768. position:absolute;
  6769. left:0px;
  6770. top:0px;
  6771. width:375px;
  6772. height:44px;
  6773. }
  6774. #u130375 {
  6775. border-width:0px;
  6776. position:absolute;
  6777. left:955px;
  6778. top:24px;
  6779. width:375px;
  6780. height:44px;
  6781. display:flex;
  6782. }
  6783. #u130375 .text {
  6784. position:absolute;
  6785. align-self:center;
  6786. padding:2px 2px 2px 2px;
  6787. box-sizing:border-box;
  6788. width:100%;
  6789. }
  6790. #u130375_text {
  6791. border-width:0px;
  6792. word-wrap:break-word;
  6793. text-transform:none;
  6794. visibility:hidden;
  6795. }
  6796. #u130376 {
  6797. border-width:0px;
  6798. position:absolute;
  6799. left:0px;
  6800. top:0px;
  6801. width:0px;
  6802. height:0px;
  6803. }
  6804. #u130377_div {
  6805. border-width:0px;
  6806. position:absolute;
  6807. left:0px;
  6808. top:0px;
  6809. width:375px;
  6810. height:40px;
  6811. background:inherit;
  6812. background-color:rgba(255, 255, 255, 1);
  6813. box-sizing:border-box;
  6814. border-width:1px;
  6815. border-style:solid;
  6816. border-color:rgba(215, 215, 215, 1);
  6817. border-left:0px;
  6818. border-top:0px;
  6819. border-right:0px;
  6820. border-radius:0px;
  6821. border-bottom-right-radius:0px;
  6822. border-bottom-left-radius:0px;
  6823. -moz-box-shadow:none;
  6824. -webkit-box-shadow:none;
  6825. box-shadow:none;
  6826. }
  6827. #u130377 {
  6828. border-width:0px;
  6829. position:absolute;
  6830. left:955px;
  6831. top:67px;
  6832. width:375px;
  6833. height:40px;
  6834. display:flex;
  6835. }
  6836. #u130377 .text {
  6837. position:absolute;
  6838. align-self:center;
  6839. padding:2px 2px 2px 2px;
  6840. box-sizing:border-box;
  6841. width:100%;
  6842. }
  6843. #u130377_text {
  6844. border-width:0px;
  6845. word-wrap:break-word;
  6846. text-transform:none;
  6847. visibility:hidden;
  6848. }
  6849. #u130378 {
  6850. border-width:0px;
  6851. position:absolute;
  6852. left:0px;
  6853. top:0px;
  6854. width:0px;
  6855. height:0px;
  6856. }
  6857. #u130379_div {
  6858. border-width:0px;
  6859. position:absolute;
  6860. left:0px;
  6861. top:0px;
  6862. width:88px;
  6863. height:32px;
  6864. background:inherit;
  6865. background-color:rgba(255, 255, 255, 1);
  6866. box-sizing:border-box;
  6867. border-width:1px;
  6868. border-style:solid;
  6869. border-color:rgba(242, 242, 242, 1);
  6870. border-radius:33px;
  6871. -moz-box-shadow:none;
  6872. -webkit-box-shadow:none;
  6873. box-shadow:none;
  6874. }
  6875. #u130379 {
  6876. border-width:0px;
  6877. position:absolute;
  6878. left:1235px;
  6879. top:71px;
  6880. width:88px;
  6881. height:32px;
  6882. display:flex;
  6883. }
  6884. #u130379 .text {
  6885. position:absolute;
  6886. align-self:center;
  6887. padding:2px 2px 2px 2px;
  6888. box-sizing:border-box;
  6889. width:100%;
  6890. }
  6891. #u130379_text {
  6892. border-width:0px;
  6893. word-wrap:break-word;
  6894. text-transform:none;
  6895. visibility:hidden;
  6896. }
  6897. #u130380 {
  6898. border-width:0px;
  6899. position:absolute;
  6900. left:0px;
  6901. top:0px;
  6902. width:0px;
  6903. height:0px;
  6904. }
  6905. #u130381_img {
  6906. border-width:0px;
  6907. position:absolute;
  6908. left:0px;
  6909. top:0px;
  6910. width:18px;
  6911. height:18px;
  6912. }
  6913. #u130381 {
  6914. border-width:0px;
  6915. position:absolute;
  6916. left:1298px;
  6917. top:78px;
  6918. width:18px;
  6919. height:18px;
  6920. display:flex;
  6921. }
  6922. #u130381 .text {
  6923. position:absolute;
  6924. align-self:center;
  6925. padding:2px 2px 2px 2px;
  6926. box-sizing:border-box;
  6927. width:100%;
  6928. }
  6929. #u130381_text {
  6930. border-width:0px;
  6931. word-wrap:break-word;
  6932. text-transform:none;
  6933. visibility:hidden;
  6934. }
  6935. #u130382_img {
  6936. border-width:0px;
  6937. position:absolute;
  6938. left:0px;
  6939. top:0px;
  6940. width:6px;
  6941. height:6px;
  6942. }
  6943. #u130382 {
  6944. border-width:0px;
  6945. position:absolute;
  6946. left:1304px;
  6947. top:84px;
  6948. width:6px;
  6949. height:6px;
  6950. display:flex;
  6951. }
  6952. #u130382 .text {
  6953. position:absolute;
  6954. align-self:center;
  6955. padding:2px 2px 2px 2px;
  6956. box-sizing:border-box;
  6957. width:100%;
  6958. }
  6959. #u130382_text {
  6960. border-width:0px;
  6961. word-wrap:break-word;
  6962. text-transform:none;
  6963. visibility:hidden;
  6964. }
  6965. #u130383 {
  6966. border-width:0px;
  6967. position:absolute;
  6968. left:0px;
  6969. top:0px;
  6970. width:0px;
  6971. height:0px;
  6972. }
  6973. #u130384_img {
  6974. border-width:0px;
  6975. position:absolute;
  6976. left:0px;
  6977. top:0px;
  6978. width:5px;
  6979. height:5px;
  6980. }
  6981. #u130384 {
  6982. border-width:0px;
  6983. position:absolute;
  6984. left:1249px;
  6985. top:85px;
  6986. width:5px;
  6987. height:5px;
  6988. display:flex;
  6989. }
  6990. #u130384 .text {
  6991. position:absolute;
  6992. align-self:center;
  6993. padding:2px 2px 2px 2px;
  6994. box-sizing:border-box;
  6995. width:100%;
  6996. }
  6997. #u130384_text {
  6998. border-width:0px;
  6999. word-wrap:break-word;
  7000. text-transform:none;
  7001. visibility:hidden;
  7002. }
  7003. #u130385_img {
  7004. border-width:0px;
  7005. position:absolute;
  7006. left:0px;
  7007. top:0px;
  7008. width:5px;
  7009. height:5px;
  7010. }
  7011. #u130385 {
  7012. border-width:0px;
  7013. position:absolute;
  7014. left:1265px;
  7015. top:85px;
  7016. width:5px;
  7017. height:5px;
  7018. display:flex;
  7019. }
  7020. #u130385 .text {
  7021. position:absolute;
  7022. align-self:center;
  7023. padding:2px 2px 2px 2px;
  7024. box-sizing:border-box;
  7025. width:100%;
  7026. }
  7027. #u130385_text {
  7028. border-width:0px;
  7029. word-wrap:break-word;
  7030. text-transform:none;
  7031. visibility:hidden;
  7032. }
  7033. #u130386_img {
  7034. border-width:0px;
  7035. position:absolute;
  7036. left:0px;
  7037. top:0px;
  7038. width:7px;
  7039. height:7px;
  7040. }
  7041. #u130386 {
  7042. border-width:0px;
  7043. position:absolute;
  7044. left:1256px;
  7045. top:84px;
  7046. width:7px;
  7047. height:7px;
  7048. display:flex;
  7049. }
  7050. #u130386 .text {
  7051. position:absolute;
  7052. align-self:center;
  7053. padding:2px 2px 2px 2px;
  7054. box-sizing:border-box;
  7055. width:100%;
  7056. }
  7057. #u130386_text {
  7058. border-width:0px;
  7059. word-wrap:break-word;
  7060. text-transform:none;
  7061. visibility:hidden;
  7062. }
  7063. #u130387_img {
  7064. border-width:0px;
  7065. position:absolute;
  7066. left:0px;
  7067. top:0px;
  7068. width:19px;
  7069. height:2px;
  7070. }
  7071. #u130387 {
  7072. border-width:0px;
  7073. position:absolute;
  7074. left:1273px;
  7075. top:87px;
  7076. width:18px;
  7077. height:1px;
  7078. display:flex;
  7079. -webkit-transform:rotate(90deg);
  7080. -moz-transform:rotate(90deg);
  7081. -ms-transform:rotate(90deg);
  7082. transform:rotate(90deg);
  7083. }
  7084. #u130387 .text {
  7085. position:absolute;
  7086. align-self:center;
  7087. padding:2px 2px 2px 2px;
  7088. box-sizing:border-box;
  7089. width:100%;
  7090. }
  7091. #u130387_text {
  7092. border-width:0px;
  7093. word-wrap:break-word;
  7094. text-transform:none;
  7095. visibility:hidden;
  7096. }
  7097. #u130388_div {
  7098. border-width:0px;
  7099. position:absolute;
  7100. left:0px;
  7101. top:0px;
  7102. width:65px;
  7103. height:22px;
  7104. background:inherit;
  7105. background-color:rgba(255, 255, 255, 0);
  7106. border:none;
  7107. border-radius:0px;
  7108. -moz-box-shadow:none;
  7109. -webkit-box-shadow:none;
  7110. box-shadow:none;
  7111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7112. font-weight:400;
  7113. font-style:normal;
  7114. font-size:16px;
  7115. color:#000000;
  7116. }
  7117. #u130388 {
  7118. border-width:0px;
  7119. position:absolute;
  7120. left:1108px;
  7121. top:76px;
  7122. width:65px;
  7123. height:22px;
  7124. display:flex;
  7125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7126. font-weight:400;
  7127. font-style:normal;
  7128. font-size:16px;
  7129. color:#000000;
  7130. }
  7131. #u130388 .text {
  7132. position:absolute;
  7133. align-self:flex-start;
  7134. padding:0px 0px 0px 0px;
  7135. box-sizing:border-box;
  7136. width:100%;
  7137. }
  7138. #u130388_text {
  7139. border-width:0px;
  7140. white-space:nowrap;
  7141. text-transform:none;
  7142. }
  7143. #u130389_div {
  7144. border-width:0px;
  7145. position:absolute;
  7146. left:0px;
  7147. top:0px;
  7148. width:12px;
  7149. height:12px;
  7150. background:inherit;
  7151. background-color:rgba(255, 255, 255, 0);
  7152. box-sizing:border-box;
  7153. border-width:2px;
  7154. border-style:solid;
  7155. border-color:rgba(51, 51, 51, 1);
  7156. border-right:0px;
  7157. border-bottom:0px;
  7158. border-radius:0px;
  7159. border-top-right-radius:0px;
  7160. border-bottom-left-radius:0px;
  7161. -moz-box-shadow:none;
  7162. -webkit-box-shadow:none;
  7163. box-shadow:none;
  7164. }
  7165. #u130389 {
  7166. border-width:0px;
  7167. position:absolute;
  7168. left:970px;
  7169. top:81px;
  7170. width:12px;
  7171. height:12px;
  7172. display:flex;
  7173. -webkit-transform:rotate(315deg);
  7174. -moz-transform:rotate(315deg);
  7175. -ms-transform:rotate(315deg);
  7176. transform:rotate(315deg);
  7177. }
  7178. #u130389 .text {
  7179. position:absolute;
  7180. align-self:center;
  7181. padding:2px 2px 2px 2px;
  7182. box-sizing:border-box;
  7183. width:100%;
  7184. }
  7185. #u130389_text {
  7186. border-width:0px;
  7187. word-wrap:break-word;
  7188. text-transform:none;
  7189. visibility:hidden;
  7190. }
  7191. #u130390_img {
  7192. border-width:0px;
  7193. position:absolute;
  7194. left:0px;
  7195. top:0px;
  7196. width:23px;
  7197. height:23px;
  7198. }
  7199. #u130390 {
  7200. border-width:0px;
  7201. position:absolute;
  7202. left:997px;
  7203. top:76px;
  7204. width:23px;
  7205. height:23px;
  7206. display:flex;
  7207. }
  7208. #u130390 .text {
  7209. position:absolute;
  7210. align-self:center;
  7211. padding:2px 2px 2px 2px;
  7212. box-sizing:border-box;
  7213. width:100%;
  7214. }
  7215. #u130390_text {
  7216. border-width:0px;
  7217. word-wrap:break-word;
  7218. text-transform:none;
  7219. visibility:hidden;
  7220. }
  7221. #u130391 {
  7222. border-width:0px;
  7223. position:absolute;
  7224. left:0px;
  7225. top:0px;
  7226. width:0px;
  7227. height:0px;
  7228. }
  7229. #u130392_div {
  7230. border-width:0px;
  7231. position:absolute;
  7232. left:0px;
  7233. top:0px;
  7234. width:375px;
  7235. height:41px;
  7236. background:inherit;
  7237. background-color:rgba(255, 255, 255, 1);
  7238. border:none;
  7239. border-radius:0px;
  7240. -moz-box-shadow:none;
  7241. -webkit-box-shadow:none;
  7242. box-shadow:none;
  7243. }
  7244. #u130392 {
  7245. border-width:0px;
  7246. position:absolute;
  7247. left:955px;
  7248. top:157px;
  7249. width:375px;
  7250. height:41px;
  7251. display:flex;
  7252. }
  7253. #u130392 .text {
  7254. position:absolute;
  7255. align-self:center;
  7256. padding:2px 2px 2px 2px;
  7257. box-sizing:border-box;
  7258. width:100%;
  7259. }
  7260. #u130392_text {
  7261. border-width:0px;
  7262. word-wrap:break-word;
  7263. text-transform:none;
  7264. visibility:hidden;
  7265. }
  7266. #u130393_div {
  7267. border-width:0px;
  7268. position:absolute;
  7269. left:0px;
  7270. top:0px;
  7271. width:37px;
  7272. height:40px;
  7273. background:inherit;
  7274. background-color:rgba(255, 255, 255, 0);
  7275. border:none;
  7276. border-left:0px;
  7277. border-top:0px;
  7278. border-right:0px;
  7279. border-radius:0px;
  7280. border-bottom-right-radius:0px;
  7281. border-bottom-left-radius:0px;
  7282. -moz-box-shadow:none;
  7283. -webkit-box-shadow:none;
  7284. box-shadow:none;
  7285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7286. font-weight:400;
  7287. font-style:normal;
  7288. font-size:12px;
  7289. text-align:center;
  7290. }
  7291. #u130393 {
  7292. border-width:0px;
  7293. position:absolute;
  7294. left:1037px;
  7295. top:157px;
  7296. width:37px;
  7297. height:40px;
  7298. display:flex;
  7299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7300. font-weight:400;
  7301. font-style:normal;
  7302. font-size:12px;
  7303. text-align:center;
  7304. }
  7305. #u130393 .text {
  7306. position:absolute;
  7307. align-self:center;
  7308. padding:0px 0px 0px 0px;
  7309. box-sizing:border-box;
  7310. width:100%;
  7311. }
  7312. #u130393_text {
  7313. border-width:0px;
  7314. white-space:nowrap;
  7315. text-transform:none;
  7316. }
  7317. #u130394_div {
  7318. border-width:0px;
  7319. position:absolute;
  7320. left:0px;
  7321. top:0px;
  7322. width:37px;
  7323. height:40px;
  7324. background:inherit;
  7325. background-color:rgba(255, 255, 255, 0);
  7326. border:none;
  7327. border-left:0px;
  7328. border-top:0px;
  7329. border-right:0px;
  7330. border-radius:0px;
  7331. border-bottom-right-radius:0px;
  7332. border-bottom-left-radius:0px;
  7333. -moz-box-shadow:none;
  7334. -webkit-box-shadow:none;
  7335. box-shadow:none;
  7336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7337. font-weight:400;
  7338. font-style:normal;
  7339. font-size:12px;
  7340. text-align:center;
  7341. }
  7342. #u130394 {
  7343. border-width:0px;
  7344. position:absolute;
  7345. left:971px;
  7346. top:157px;
  7347. width:37px;
  7348. height:40px;
  7349. display:flex;
  7350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7351. font-weight:400;
  7352. font-style:normal;
  7353. font-size:12px;
  7354. text-align:center;
  7355. }
  7356. #u130394 .text {
  7357. position:absolute;
  7358. align-self:center;
  7359. padding:0px 0px 0px 0px;
  7360. box-sizing:border-box;
  7361. width:100%;
  7362. }
  7363. #u130394_text {
  7364. border-width:0px;
  7365. white-space:nowrap;
  7366. text-transform:none;
  7367. }
  7368. #u130395_div {
  7369. border-width:0px;
  7370. position:absolute;
  7371. left:0px;
  7372. top:0px;
  7373. width:11px;
  7374. height:11px;
  7375. background:inherit;
  7376. background-color:rgba(217, 0, 27, 1);
  7377. border:none;
  7378. border-radius:7px;
  7379. -moz-box-shadow:none;
  7380. -webkit-box-shadow:none;
  7381. box-shadow:none;
  7382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7383. font-weight:400;
  7384. font-style:normal;
  7385. font-size:8px;
  7386. color:#FFFFFF;
  7387. text-align:center;
  7388. }
  7389. #u130395 {
  7390. border-width:0px;
  7391. position:absolute;
  7392. left:1005px;
  7393. top:161px;
  7394. width:11px;
  7395. height:11px;
  7396. display:flex;
  7397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7398. font-weight:400;
  7399. font-style:normal;
  7400. font-size:8px;
  7401. color:#FFFFFF;
  7402. text-align:center;
  7403. }
  7404. #u130395 .text {
  7405. position:absolute;
  7406. align-self:flex-start;
  7407. padding:0px 0px 0px 0px;
  7408. box-sizing:border-box;
  7409. width:100%;
  7410. }
  7411. #u130395_text {
  7412. border-width:0px;
  7413. word-wrap:break-word;
  7414. text-transform:none;
  7415. }
  7416. #u130396_div {
  7417. border-width:0px;
  7418. position:absolute;
  7419. left:0px;
  7420. top:0px;
  7421. width:49px;
  7422. height:40px;
  7423. background:inherit;
  7424. background-color:rgba(255, 255, 255, 0);
  7425. box-sizing:border-box;
  7426. border-width:2px;
  7427. border-style:solid;
  7428. border-color:rgba(77, 140, 252, 1);
  7429. border-left:0px;
  7430. border-top:0px;
  7431. border-right:0px;
  7432. border-radius:0px;
  7433. border-bottom-right-radius:0px;
  7434. border-bottom-left-radius:0px;
  7435. -moz-box-shadow:none;
  7436. -webkit-box-shadow:none;
  7437. box-shadow:none;
  7438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7439. font-weight:400;
  7440. font-style:normal;
  7441. font-size:12px;
  7442. color:#1890FF;
  7443. text-align:center;
  7444. }
  7445. #u130396 {
  7446. border-width:0px;
  7447. position:absolute;
  7448. left:1098px;
  7449. top:157px;
  7450. width:49px;
  7451. height:40px;
  7452. display:flex;
  7453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7454. font-weight:400;
  7455. font-style:normal;
  7456. font-size:12px;
  7457. color:#1890FF;
  7458. text-align:center;
  7459. }
  7460. #u130396 .text {
  7461. position:absolute;
  7462. align-self:center;
  7463. padding:0px 0px 0px 0px;
  7464. box-sizing:border-box;
  7465. width:100%;
  7466. }
  7467. #u130396_text {
  7468. border-width:0px;
  7469. white-space:nowrap;
  7470. text-transform:none;
  7471. }
  7472. #u130397 {
  7473. border-width:0px;
  7474. position:absolute;
  7475. left:0px;
  7476. top:0px;
  7477. width:0px;
  7478. height:0px;
  7479. }
  7480. #u130398_div {
  7481. border-width:0px;
  7482. position:absolute;
  7483. left:0px;
  7484. top:0px;
  7485. width:375px;
  7486. height:50px;
  7487. background:inherit;
  7488. background-color:rgba(255, 255, 255, 1);
  7489. border:none;
  7490. border-radius:0px;
  7491. -moz-box-shadow:none;
  7492. -webkit-box-shadow:none;
  7493. box-shadow:none;
  7494. }
  7495. #u130398 {
  7496. border-width:0px;
  7497. position:absolute;
  7498. left:956px;
  7499. top:107px;
  7500. width:375px;
  7501. height:50px;
  7502. display:flex;
  7503. }
  7504. #u130398 .text {
  7505. position:absolute;
  7506. align-self:center;
  7507. padding:2px 2px 2px 2px;
  7508. box-sizing:border-box;
  7509. width:100%;
  7510. }
  7511. #u130398_text {
  7512. border-width:0px;
  7513. word-wrap:break-word;
  7514. text-transform:none;
  7515. visibility:hidden;
  7516. }
  7517. #u130399 {
  7518. border-width:0px;
  7519. position:absolute;
  7520. left:0px;
  7521. top:0px;
  7522. width:0px;
  7523. height:0px;
  7524. }
  7525. #u130400 {
  7526. border-width:0px;
  7527. position:absolute;
  7528. left:0px;
  7529. top:0px;
  7530. width:0px;
  7531. height:0px;
  7532. }
  7533. #u130401_div {
  7534. border-width:0px;
  7535. position:absolute;
  7536. left:0px;
  7537. top:0px;
  7538. width:135px;
  7539. height:30px;
  7540. background:inherit;
  7541. background-color:rgba(242, 242, 242, 1);
  7542. border:none;
  7543. border-radius:20px;
  7544. -moz-box-shadow:none;
  7545. -webkit-box-shadow:none;
  7546. box-shadow:none;
  7547. }
  7548. #u130401 {
  7549. border-width:0px;
  7550. position:absolute;
  7551. left:969px;
  7552. top:117px;
  7553. width:135px;
  7554. height:30px;
  7555. display:flex;
  7556. }
  7557. #u130401 .text {
  7558. position:absolute;
  7559. align-self:center;
  7560. padding:2px 2px 2px 2px;
  7561. box-sizing:border-box;
  7562. width:100%;
  7563. }
  7564. #u130401_text {
  7565. border-width:0px;
  7566. word-wrap:break-word;
  7567. text-transform:none;
  7568. visibility:hidden;
  7569. }
  7570. #u130402_input {
  7571. position:absolute;
  7572. left:0px;
  7573. top:0px;
  7574. width:121px;
  7575. height:22px;
  7576. padding:2px 2px 2px 2px;
  7577. font-family:'ArialMT', 'Arial', sans-serif;
  7578. font-weight:400;
  7579. font-style:normal;
  7580. font-size:12px;
  7581. letter-spacing:normal;
  7582. color:#7F7F7F;
  7583. vertical-align:none;
  7584. text-align:left;
  7585. text-transform:none;
  7586. background-color:transparent;
  7587. border-color:transparent;
  7588. }
  7589. #u130402_input.disabled {
  7590. position:absolute;
  7591. left:0px;
  7592. top:0px;
  7593. width:121px;
  7594. height:22px;
  7595. padding:2px 2px 2px 2px;
  7596. font-family:'ArialMT', 'Arial', sans-serif;
  7597. font-weight:400;
  7598. font-style:normal;
  7599. font-size:12px;
  7600. letter-spacing:normal;
  7601. color:#7F7F7F;
  7602. vertical-align:none;
  7603. text-align:left;
  7604. text-transform:none;
  7605. background-color:transparent;
  7606. border-color:transparent;
  7607. }
  7608. #u130402_div {
  7609. border-width:0px;
  7610. position:absolute;
  7611. left:0px;
  7612. top:0px;
  7613. width:121px;
  7614. height:22px;
  7615. background:inherit;
  7616. background-color:rgba(255, 255, 255, 0);
  7617. border:none;
  7618. border-radius:0px;
  7619. -moz-box-shadow:none;
  7620. -webkit-box-shadow:none;
  7621. box-shadow:none;
  7622. font-size:12px;
  7623. color:#7F7F7F;
  7624. }
  7625. #u130402 {
  7626. border-width:0px;
  7627. position:absolute;
  7628. left:976px;
  7629. top:121px;
  7630. width:121px;
  7631. height:22px;
  7632. display:flex;
  7633. font-size:12px;
  7634. color:#7F7F7F;
  7635. }
  7636. #u130402 .text {
  7637. position:absolute;
  7638. align-self:flex-start;
  7639. padding:2px 2px 2px 2px;
  7640. box-sizing:border-box;
  7641. width:100%;
  7642. }
  7643. #u130402_div.disabled {
  7644. border-width:0px;
  7645. position:absolute;
  7646. left:0px;
  7647. top:0px;
  7648. width:121px;
  7649. height:22px;
  7650. background:inherit;
  7651. background-color:rgba(240, 240, 240, 1);
  7652. border:none;
  7653. border-radius:0px;
  7654. -moz-box-shadow:none;
  7655. -webkit-box-shadow:none;
  7656. box-shadow:none;
  7657. font-size:12px;
  7658. color:#7F7F7F;
  7659. }
  7660. #u130402.disabled {
  7661. }
  7662. .u130402_input_option {
  7663. font-size:12px;
  7664. }
  7665. #u130403_div {
  7666. border-width:0px;
  7667. position:absolute;
  7668. left:0px;
  7669. top:0px;
  7670. width:64px;
  7671. height:30px;
  7672. background:inherit;
  7673. background-color:rgba(255, 255, 255, 0);
  7674. border:none;
  7675. border-left:0px;
  7676. border-top:0px;
  7677. border-right:0px;
  7678. border-radius:0px;
  7679. border-bottom-right-radius:0px;
  7680. border-bottom-left-radius:0px;
  7681. -moz-box-shadow:none;
  7682. -webkit-box-shadow:none;
  7683. box-shadow:none;
  7684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7685. font-weight:400;
  7686. font-style:normal;
  7687. font-size:12px;
  7688. color:#1890FF;
  7689. line-height:30px;
  7690. }
  7691. #u130403 {
  7692. border-width:0px;
  7693. position:absolute;
  7694. left:1259px;
  7695. top:117px;
  7696. width:64px;
  7697. height:30px;
  7698. display:flex;
  7699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7700. font-weight:400;
  7701. font-style:normal;
  7702. font-size:12px;
  7703. color:#1890FF;
  7704. line-height:30px;
  7705. }
  7706. #u130403 .text {
  7707. position:absolute;
  7708. align-self:flex-start;
  7709. padding:0px 0px 0px 0px;
  7710. box-sizing:border-box;
  7711. width:100%;
  7712. }
  7713. #u130403_text {
  7714. border-width:0px;
  7715. white-space:nowrap;
  7716. text-transform:none;
  7717. }
  7718. #u130404 {
  7719. border-width:0px;
  7720. position:absolute;
  7721. left:0px;
  7722. top:0px;
  7723. width:0px;
  7724. height:0px;
  7725. }
  7726. #u130405_div {
  7727. border-width:0px;
  7728. position:absolute;
  7729. left:0px;
  7730. top:0px;
  7731. width:135px;
  7732. height:30px;
  7733. background:inherit;
  7734. background-color:rgba(242, 242, 242, 1);
  7735. border:none;
  7736. border-radius:20px;
  7737. -moz-box-shadow:none;
  7738. -webkit-box-shadow:none;
  7739. box-shadow:none;
  7740. }
  7741. #u130405 {
  7742. border-width:0px;
  7743. position:absolute;
  7744. left:1114px;
  7745. top:117px;
  7746. width:135px;
  7747. height:30px;
  7748. display:flex;
  7749. }
  7750. #u130405 .text {
  7751. position:absolute;
  7752. align-self:center;
  7753. padding:2px 2px 2px 2px;
  7754. box-sizing:border-box;
  7755. width:100%;
  7756. }
  7757. #u130405_text {
  7758. border-width:0px;
  7759. word-wrap:break-word;
  7760. text-transform:none;
  7761. visibility:hidden;
  7762. }
  7763. #u130406_input {
  7764. position:absolute;
  7765. left:0px;
  7766. top:0px;
  7767. width:121px;
  7768. height:22px;
  7769. padding:2px 2px 2px 2px;
  7770. font-family:'ArialMT', 'Arial', sans-serif;
  7771. font-weight:400;
  7772. font-style:normal;
  7773. font-size:12px;
  7774. letter-spacing:normal;
  7775. color:#7F7F7F;
  7776. vertical-align:none;
  7777. text-align:left;
  7778. text-transform:none;
  7779. background-color:transparent;
  7780. border-color:transparent;
  7781. }
  7782. #u130406_input.disabled {
  7783. position:absolute;
  7784. left:0px;
  7785. top:0px;
  7786. width:121px;
  7787. height:22px;
  7788. padding:2px 2px 2px 2px;
  7789. font-family:'ArialMT', 'Arial', sans-serif;
  7790. font-weight:400;
  7791. font-style:normal;
  7792. font-size:12px;
  7793. letter-spacing:normal;
  7794. color:#7F7F7F;
  7795. vertical-align:none;
  7796. text-align:left;
  7797. text-transform:none;
  7798. background-color:transparent;
  7799. border-color:transparent;
  7800. }
  7801. #u130406_div {
  7802. border-width:0px;
  7803. position:absolute;
  7804. left:0px;
  7805. top:0px;
  7806. width:121px;
  7807. height:22px;
  7808. background:inherit;
  7809. background-color:rgba(255, 255, 255, 0);
  7810. border:none;
  7811. border-radius:0px;
  7812. -moz-box-shadow:none;
  7813. -webkit-box-shadow:none;
  7814. box-shadow:none;
  7815. font-size:12px;
  7816. color:#7F7F7F;
  7817. }
  7818. #u130406 {
  7819. border-width:0px;
  7820. position:absolute;
  7821. left:1121px;
  7822. top:121px;
  7823. width:121px;
  7824. height:22px;
  7825. display:flex;
  7826. font-size:12px;
  7827. color:#7F7F7F;
  7828. }
  7829. #u130406 .text {
  7830. position:absolute;
  7831. align-self:flex-start;
  7832. padding:2px 2px 2px 2px;
  7833. box-sizing:border-box;
  7834. width:100%;
  7835. }
  7836. #u130406_div.disabled {
  7837. border-width:0px;
  7838. position:absolute;
  7839. left:0px;
  7840. top:0px;
  7841. width:121px;
  7842. height:22px;
  7843. background:inherit;
  7844. background-color:rgba(240, 240, 240, 1);
  7845. border:none;
  7846. border-radius:0px;
  7847. -moz-box-shadow:none;
  7848. -webkit-box-shadow:none;
  7849. box-shadow:none;
  7850. font-size:12px;
  7851. color:#7F7F7F;
  7852. }
  7853. #u130406.disabled {
  7854. }
  7855. .u130406_input_option {
  7856. font-size:12px;
  7857. }
  7858. #u130407 {
  7859. border-width:0px;
  7860. position:absolute;
  7861. left:0px;
  7862. top:0px;
  7863. width:0px;
  7864. height:0px;
  7865. }
  7866. #u130408_img {
  7867. border-width:0px;
  7868. position:absolute;
  7869. left:0px;
  7870. top:0px;
  7871. width:355px;
  7872. height:180px;
  7873. }
  7874. #u130408 {
  7875. border-width:0px;
  7876. position:absolute;
  7877. left:965px;
  7878. top:212px;
  7879. width:355px;
  7880. height:180px;
  7881. display:flex;
  7882. }
  7883. #u130408 .text {
  7884. position:absolute;
  7885. align-self:center;
  7886. padding:2px 2px 2px 2px;
  7887. box-sizing:border-box;
  7888. width:100%;
  7889. }
  7890. #u130408_text {
  7891. border-width:0px;
  7892. word-wrap:break-word;
  7893. text-transform:none;
  7894. visibility:hidden;
  7895. }
  7896. #u130409_div {
  7897. border-width:0px;
  7898. position:absolute;
  7899. left:0px;
  7900. top:0px;
  7901. width:141px;
  7902. height:30px;
  7903. background:inherit;
  7904. background-color:rgba(255, 255, 255, 0);
  7905. border:none;
  7906. border-left:0px;
  7907. border-top:0px;
  7908. border-right:0px;
  7909. border-radius:0px;
  7910. border-bottom-right-radius:0px;
  7911. border-bottom-left-radius:0px;
  7912. -moz-box-shadow:none;
  7913. -webkit-box-shadow:none;
  7914. box-shadow:none;
  7915. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7916. font-weight:500;
  7917. font-style:normal;
  7918. font-size:14px;
  7919. line-height:30px;
  7920. }
  7921. #u130409 {
  7922. border-width:0px;
  7923. position:absolute;
  7924. left:982px;
  7925. top:219px;
  7926. width:141px;
  7927. height:30px;
  7928. display:flex;
  7929. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7930. font-weight:500;
  7931. font-style:normal;
  7932. font-size:14px;
  7933. line-height:30px;
  7934. }
  7935. #u130409 .text {
  7936. position:absolute;
  7937. align-self:flex-start;
  7938. padding:0px 0px 0px 0px;
  7939. box-sizing:border-box;
  7940. width:100%;
  7941. }
  7942. #u130409_text {
  7943. border-width:0px;
  7944. white-space:nowrap;
  7945. text-transform:none;
  7946. }
  7947. #u130410_div {
  7948. border-width:0px;
  7949. position:absolute;
  7950. left:0px;
  7951. top:0px;
  7952. width:325px;
  7953. height:125px;
  7954. background:inherit;
  7955. background-color:rgba(255, 255, 255, 0);
  7956. border:none;
  7957. border-left:0px;
  7958. border-top:0px;
  7959. border-right:0px;
  7960. border-radius:0px;
  7961. border-bottom-right-radius:0px;
  7962. border-bottom-left-radius:0px;
  7963. -moz-box-shadow:none;
  7964. -webkit-box-shadow:none;
  7965. box-shadow:none;
  7966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7967. font-weight:400;
  7968. font-style:normal;
  7969. font-size:12px;
  7970. line-height:25px;
  7971. }
  7972. #u130410 {
  7973. border-width:0px;
  7974. position:absolute;
  7975. left:981px;
  7976. top:252px;
  7977. width:325px;
  7978. height:125px;
  7979. display:flex;
  7980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7981. font-weight:400;
  7982. font-style:normal;
  7983. font-size:12px;
  7984. line-height:25px;
  7985. }
  7986. #u130410 .text {
  7987. position:absolute;
  7988. align-self:flex-start;
  7989. padding:0px 0px 0px 0px;
  7990. box-sizing:border-box;
  7991. width:100%;
  7992. }
  7993. #u130410_text {
  7994. border-width:0px;
  7995. word-wrap:break-word;
  7996. text-transform:none;
  7997. }