styles.css 158 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1823px;
  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. #u194350 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u194352_img {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. }
  35. #u194352 {
  36. border-width:0px;
  37. position:absolute;
  38. left:-553px;
  39. top:-9px;
  40. width:433px;
  41. height:865px;
  42. display:flex;
  43. }
  44. #u194352 .text {
  45. position:absolute;
  46. align-self:center;
  47. padding:2px 2px 2px 2px;
  48. box-sizing:border-box;
  49. width:100%;
  50. }
  51. #u194352_text {
  52. border-width:0px;
  53. word-wrap:break-word;
  54. text-transform:none;
  55. visibility:hidden;
  56. }
  57. #u194353_div {
  58. border-width:0px;
  59. position:absolute;
  60. left:0px;
  61. top:0px;
  62. width:375px;
  63. height:40px;
  64. background:inherit;
  65. background-color:rgba(255, 255, 255, 1);
  66. box-sizing:border-box;
  67. border-width:1px;
  68. border-style:solid;
  69. border-color:rgba(215, 215, 215, 1);
  70. border-left:0px;
  71. border-top:0px;
  72. border-right:0px;
  73. border-radius:0px;
  74. border-bottom-right-radius:0px;
  75. border-bottom-left-radius:0px;
  76. -moz-box-shadow:none;
  77. -webkit-box-shadow:none;
  78. box-shadow:none;
  79. }
  80. #u194353 {
  81. border-width:0px;
  82. position:absolute;
  83. left:-524px;
  84. top:58px;
  85. width:375px;
  86. height:40px;
  87. display:flex;
  88. }
  89. #u194353 .text {
  90. position:absolute;
  91. align-self:center;
  92. padding:2px 2px 2px 2px;
  93. box-sizing:border-box;
  94. width:100%;
  95. }
  96. #u194353_text {
  97. border-width:0px;
  98. word-wrap:break-word;
  99. text-transform:none;
  100. visibility:hidden;
  101. }
  102. #u194354 {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:0px;
  108. height:0px;
  109. }
  110. #u194355_div {
  111. border-width:0px;
  112. position:absolute;
  113. left:0px;
  114. top:0px;
  115. width:88px;
  116. height:32px;
  117. background:inherit;
  118. background-color:rgba(255, 255, 255, 1);
  119. box-sizing:border-box;
  120. border-width:1px;
  121. border-style:solid;
  122. border-color:rgba(242, 242, 242, 1);
  123. border-radius:33px;
  124. -moz-box-shadow:none;
  125. -webkit-box-shadow:none;
  126. box-shadow:none;
  127. }
  128. #u194355 {
  129. border-width:0px;
  130. position:absolute;
  131. left:-244px;
  132. top:62px;
  133. width:88px;
  134. height:32px;
  135. display:flex;
  136. }
  137. #u194355 .text {
  138. position:absolute;
  139. align-self:center;
  140. padding:2px 2px 2px 2px;
  141. box-sizing:border-box;
  142. width:100%;
  143. }
  144. #u194355_text {
  145. border-width:0px;
  146. word-wrap:break-word;
  147. text-transform:none;
  148. visibility:hidden;
  149. }
  150. #u194356 {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:0px;
  156. height:0px;
  157. }
  158. #u194357_img {
  159. border-width:0px;
  160. position:absolute;
  161. left:0px;
  162. top:0px;
  163. width:18px;
  164. height:18px;
  165. }
  166. #u194357 {
  167. border-width:0px;
  168. position:absolute;
  169. left:-181px;
  170. top:69px;
  171. width:18px;
  172. height:18px;
  173. display:flex;
  174. }
  175. #u194357 .text {
  176. position:absolute;
  177. align-self:center;
  178. padding:2px 2px 2px 2px;
  179. box-sizing:border-box;
  180. width:100%;
  181. }
  182. #u194357_text {
  183. border-width:0px;
  184. word-wrap:break-word;
  185. text-transform:none;
  186. visibility:hidden;
  187. }
  188. #u194358_img {
  189. border-width:0px;
  190. position:absolute;
  191. left:0px;
  192. top:0px;
  193. width:6px;
  194. height:6px;
  195. }
  196. #u194358 {
  197. border-width:0px;
  198. position:absolute;
  199. left:-175px;
  200. top:75px;
  201. width:6px;
  202. height:6px;
  203. display:flex;
  204. }
  205. #u194358 .text {
  206. position:absolute;
  207. align-self:center;
  208. padding:2px 2px 2px 2px;
  209. box-sizing:border-box;
  210. width:100%;
  211. }
  212. #u194358_text {
  213. border-width:0px;
  214. word-wrap:break-word;
  215. text-transform:none;
  216. visibility:hidden;
  217. }
  218. #u194359 {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:0px;
  224. height:0px;
  225. }
  226. #u194360_img {
  227. border-width:0px;
  228. position:absolute;
  229. left:0px;
  230. top:0px;
  231. width:5px;
  232. height:5px;
  233. }
  234. #u194360 {
  235. border-width:0px;
  236. position:absolute;
  237. left:-230px;
  238. top:76px;
  239. width:5px;
  240. height:5px;
  241. display:flex;
  242. }
  243. #u194360 .text {
  244. position:absolute;
  245. align-self:center;
  246. padding:2px 2px 2px 2px;
  247. box-sizing:border-box;
  248. width:100%;
  249. }
  250. #u194360_text {
  251. border-width:0px;
  252. word-wrap:break-word;
  253. text-transform:none;
  254. visibility:hidden;
  255. }
  256. #u194361_img {
  257. border-width:0px;
  258. position:absolute;
  259. left:0px;
  260. top:0px;
  261. width:5px;
  262. height:5px;
  263. }
  264. #u194361 {
  265. border-width:0px;
  266. position:absolute;
  267. left:-214px;
  268. top:76px;
  269. width:5px;
  270. height:5px;
  271. display:flex;
  272. }
  273. #u194361 .text {
  274. position:absolute;
  275. align-self:center;
  276. padding:2px 2px 2px 2px;
  277. box-sizing:border-box;
  278. width:100%;
  279. }
  280. #u194361_text {
  281. border-width:0px;
  282. word-wrap:break-word;
  283. text-transform:none;
  284. visibility:hidden;
  285. }
  286. #u194362_img {
  287. border-width:0px;
  288. position:absolute;
  289. left:0px;
  290. top:0px;
  291. width:7px;
  292. height:7px;
  293. }
  294. #u194362 {
  295. border-width:0px;
  296. position:absolute;
  297. left:-223px;
  298. top:75px;
  299. width:7px;
  300. height:7px;
  301. display:flex;
  302. }
  303. #u194362 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u194362_text {
  311. border-width:0px;
  312. word-wrap:break-word;
  313. text-transform:none;
  314. visibility:hidden;
  315. }
  316. #u194363_img {
  317. border-width:0px;
  318. position:absolute;
  319. left:0px;
  320. top:0px;
  321. width:19px;
  322. height:2px;
  323. }
  324. #u194363 {
  325. border-width:0px;
  326. position:absolute;
  327. left:-206px;
  328. top:78px;
  329. width:18px;
  330. height:1px;
  331. display:flex;
  332. -webkit-transform:rotate(90deg);
  333. -moz-transform:rotate(90deg);
  334. -ms-transform:rotate(90deg);
  335. transform:rotate(90deg);
  336. }
  337. #u194363 .text {
  338. position:absolute;
  339. align-self:center;
  340. padding:2px 2px 2px 2px;
  341. box-sizing:border-box;
  342. width:100%;
  343. }
  344. #u194363_text {
  345. border-width:0px;
  346. word-wrap:break-word;
  347. text-transform:none;
  348. visibility:hidden;
  349. }
  350. #u194364_img {
  351. border-width:0px;
  352. position:absolute;
  353. left:0px;
  354. top:0px;
  355. width:375px;
  356. height:44px;
  357. }
  358. #u194364 {
  359. border-width:0px;
  360. position:absolute;
  361. left:-524px;
  362. top:15px;
  363. width:375px;
  364. height:44px;
  365. display:flex;
  366. }
  367. #u194364 .text {
  368. position:absolute;
  369. align-self:center;
  370. padding:2px 2px 2px 2px;
  371. box-sizing:border-box;
  372. width:100%;
  373. }
  374. #u194364_text {
  375. border-width:0px;
  376. word-wrap:break-word;
  377. text-transform:none;
  378. visibility:hidden;
  379. }
  380. #u194365_div {
  381. border-width:0px;
  382. position:absolute;
  383. left:0px;
  384. top:0px;
  385. width:375px;
  386. height:50px;
  387. background:inherit;
  388. background-color:rgba(255, 255, 255, 1);
  389. box-sizing:border-box;
  390. border-width:1px;
  391. border-style:solid;
  392. border-color:rgba(242, 242, 242, 1);
  393. border-radius:26px;
  394. border-top-left-radius:0px;
  395. border-top-right-radius:0px;
  396. -moz-box-shadow:none;
  397. -webkit-box-shadow:none;
  398. box-shadow:none;
  399. }
  400. #u194365 {
  401. border-width:0px;
  402. position:absolute;
  403. left:-524px;
  404. top:779px;
  405. width:375px;
  406. height:50px;
  407. display:flex;
  408. }
  409. #u194365 .text {
  410. position:absolute;
  411. align-self:center;
  412. padding:2px 2px 2px 2px;
  413. box-sizing:border-box;
  414. width:100%;
  415. }
  416. #u194365_text {
  417. border-width:0px;
  418. word-wrap:break-word;
  419. text-transform:none;
  420. visibility:hidden;
  421. }
  422. #u194366 {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:0px;
  428. height:0px;
  429. }
  430. #u194367_img {
  431. border-width:0px;
  432. position:absolute;
  433. left:0px;
  434. top:0px;
  435. width:24px;
  436. height:24px;
  437. }
  438. #u194367 {
  439. border-width:0px;
  440. position:absolute;
  441. left:-484px;
  442. top:783px;
  443. width:24px;
  444. height:24px;
  445. display:flex;
  446. font-size:8px;
  447. }
  448. #u194367 .text {
  449. position:absolute;
  450. align-self:center;
  451. padding:2px 2px 2px 2px;
  452. box-sizing:border-box;
  453. width:100%;
  454. }
  455. #u194367_text {
  456. border-width:0px;
  457. word-wrap:break-word;
  458. text-transform:none;
  459. }
  460. #u194368_div {
  461. border-width:0px;
  462. position:absolute;
  463. left:0px;
  464. top:0px;
  465. width:25px;
  466. height:17px;
  467. background:inherit;
  468. background-color:rgba(255, 255, 255, 0);
  469. border:none;
  470. border-radius:0px;
  471. -moz-box-shadow:none;
  472. -webkit-box-shadow:none;
  473. box-shadow:none;
  474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  475. font-weight:400;
  476. font-style:normal;
  477. font-size:12px;
  478. }
  479. #u194368 {
  480. border-width:0px;
  481. position:absolute;
  482. left:-484px;
  483. top:808px;
  484. width:25px;
  485. height:17px;
  486. display:flex;
  487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  488. font-weight:400;
  489. font-style:normal;
  490. font-size:12px;
  491. }
  492. #u194368 .text {
  493. position:absolute;
  494. align-self:flex-start;
  495. padding:0px 0px 0px 0px;
  496. box-sizing:border-box;
  497. width:100%;
  498. }
  499. #u194368_text {
  500. border-width:0px;
  501. white-space:nowrap;
  502. text-transform:none;
  503. }
  504. #u194369 {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:0px;
  510. height:0px;
  511. }
  512. #u194370_img {
  513. border-width:0px;
  514. position:absolute;
  515. left:0px;
  516. top:0px;
  517. width:24px;
  518. height:24px;
  519. }
  520. #u194370 {
  521. border-width:0px;
  522. position:absolute;
  523. left:-214px;
  524. top:785px;
  525. width:24px;
  526. height:24px;
  527. display:flex;
  528. font-size:8px;
  529. }
  530. #u194370 .text {
  531. position:absolute;
  532. align-self:center;
  533. padding:2px 2px 2px 2px;
  534. box-sizing:border-box;
  535. width:100%;
  536. }
  537. #u194370_text {
  538. border-width:0px;
  539. word-wrap:break-word;
  540. text-transform:none;
  541. }
  542. #u194371_div {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:25px;
  548. height:17px;
  549. background:inherit;
  550. background-color:rgba(255, 255, 255, 0);
  551. border:none;
  552. border-radius:0px;
  553. -moz-box-shadow:none;
  554. -webkit-box-shadow:none;
  555. box-shadow:none;
  556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  557. font-weight:400;
  558. font-style:normal;
  559. font-size:12px;
  560. }
  561. #u194371 {
  562. border-width:0px;
  563. position:absolute;
  564. left:-214px;
  565. top:810px;
  566. width:25px;
  567. height:17px;
  568. display:flex;
  569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  570. font-weight:400;
  571. font-style:normal;
  572. font-size:12px;
  573. }
  574. #u194371 .text {
  575. position:absolute;
  576. align-self:flex-start;
  577. padding:0px 0px 0px 0px;
  578. box-sizing:border-box;
  579. width:100%;
  580. }
  581. #u194371_text {
  582. border-width:0px;
  583. white-space:nowrap;
  584. text-transform:none;
  585. }
  586. #u194372_div {
  587. border-width:0px;
  588. position:absolute;
  589. left:0px;
  590. top:0px;
  591. width:375px;
  592. height:681px;
  593. background:inherit;
  594. background-color:rgba(242, 242, 242, 0.462745098039216);
  595. border:none;
  596. border-radius:0px;
  597. -moz-box-shadow:none;
  598. -webkit-box-shadow:none;
  599. box-shadow:none;
  600. }
  601. #u194372 {
  602. border-width:0px;
  603. position:absolute;
  604. left:-524px;
  605. top:98px;
  606. width:375px;
  607. height:681px;
  608. display:flex;
  609. }
  610. #u194372 .text {
  611. position:absolute;
  612. align-self:center;
  613. padding:2px 2px 2px 2px;
  614. box-sizing:border-box;
  615. width:100%;
  616. }
  617. #u194372_text {
  618. border-width:0px;
  619. word-wrap:break-word;
  620. text-transform:none;
  621. visibility:hidden;
  622. }
  623. #u194373 {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:0px;
  629. height:0px;
  630. }
  631. #u194374_img {
  632. border-width:0px;
  633. position:absolute;
  634. left:0px;
  635. top:0px;
  636. width:24px;
  637. height:24px;
  638. }
  639. #u194374 {
  640. border-width:0px;
  641. position:absolute;
  642. left:-302px;
  643. top:783px;
  644. width:24px;
  645. height:24px;
  646. display:flex;
  647. font-size:8px;
  648. }
  649. #u194374 .text {
  650. position:absolute;
  651. align-self:center;
  652. padding:2px 2px 2px 2px;
  653. box-sizing:border-box;
  654. width:100%;
  655. }
  656. #u194374_text {
  657. border-width:0px;
  658. word-wrap:break-word;
  659. text-transform:none;
  660. }
  661. #u194375_div {
  662. border-width:0px;
  663. position:absolute;
  664. left:0px;
  665. top:0px;
  666. width:37px;
  667. height:17px;
  668. background:inherit;
  669. background-color:rgba(255, 255, 255, 0);
  670. border:none;
  671. border-radius:0px;
  672. -moz-box-shadow:none;
  673. -webkit-box-shadow:none;
  674. box-shadow:none;
  675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  676. font-weight:400;
  677. font-style:normal;
  678. font-size:12px;
  679. }
  680. #u194375 {
  681. border-width:0px;
  682. position:absolute;
  683. left:-308px;
  684. top:808px;
  685. width:37px;
  686. height:17px;
  687. display:flex;
  688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  689. font-weight:400;
  690. font-style:normal;
  691. font-size:12px;
  692. }
  693. #u194375 .text {
  694. position:absolute;
  695. align-self:flex-start;
  696. padding:0px 0px 0px 0px;
  697. box-sizing:border-box;
  698. width:100%;
  699. }
  700. #u194375_text {
  701. border-width:0px;
  702. white-space:nowrap;
  703. text-transform:none;
  704. }
  705. #u194376 {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:0px;
  711. height:0px;
  712. }
  713. #u194377_img {
  714. border-width:0px;
  715. position:absolute;
  716. left:0px;
  717. top:0px;
  718. width:24px;
  719. height:24px;
  720. }
  721. #u194377 {
  722. border-width:0px;
  723. position:absolute;
  724. left:-396px;
  725. top:783px;
  726. width:24px;
  727. height:24px;
  728. display:flex;
  729. font-size:8px;
  730. }
  731. #u194377 .text {
  732. position:absolute;
  733. align-self:center;
  734. padding:2px 2px 2px 2px;
  735. box-sizing:border-box;
  736. width:100%;
  737. }
  738. #u194377_text {
  739. border-width:0px;
  740. word-wrap:break-word;
  741. text-transform:none;
  742. }
  743. #u194378_div {
  744. border-width:0px;
  745. position:absolute;
  746. left:0px;
  747. top:0px;
  748. width:37px;
  749. height:17px;
  750. background:inherit;
  751. background-color:rgba(255, 255, 255, 0);
  752. border:none;
  753. border-radius:0px;
  754. -moz-box-shadow:none;
  755. -webkit-box-shadow:none;
  756. box-shadow:none;
  757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  758. font-weight:400;
  759. font-style:normal;
  760. font-size:12px;
  761. }
  762. #u194378 {
  763. border-width:0px;
  764. position:absolute;
  765. left:-402px;
  766. top:808px;
  767. width:37px;
  768. height:17px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:12px;
  774. }
  775. #u194378 .text {
  776. position:absolute;
  777. align-self:flex-start;
  778. padding:0px 0px 0px 0px;
  779. box-sizing:border-box;
  780. width:100%;
  781. }
  782. #u194378_text {
  783. border-width:0px;
  784. white-space:nowrap;
  785. text-transform:none;
  786. }
  787. #u194379_div {
  788. border-width:0px;
  789. position:absolute;
  790. left:0px;
  791. top:0px;
  792. width:375px;
  793. height:40px;
  794. background:inherit;
  795. background-color:rgba(255, 255, 255, 1);
  796. box-sizing:border-box;
  797. border-width:1px;
  798. border-style:solid;
  799. border-color:rgba(215, 215, 215, 1);
  800. border-left:0px;
  801. border-top:0px;
  802. border-right:0px;
  803. border-radius:0px;
  804. border-bottom-right-radius:0px;
  805. border-bottom-left-radius:0px;
  806. -moz-box-shadow:none;
  807. -webkit-box-shadow:none;
  808. box-shadow:none;
  809. }
  810. #u194379 {
  811. border-width:0px;
  812. position:absolute;
  813. left:-524px;
  814. top:58px;
  815. width:375px;
  816. height:40px;
  817. display:flex;
  818. }
  819. #u194379 .text {
  820. position:absolute;
  821. align-self:center;
  822. padding:2px 2px 2px 2px;
  823. box-sizing:border-box;
  824. width:100%;
  825. }
  826. #u194379_text {
  827. border-width:0px;
  828. word-wrap:break-word;
  829. text-transform:none;
  830. visibility:hidden;
  831. }
  832. #u194380 {
  833. border-width:0px;
  834. position:absolute;
  835. left:0px;
  836. top:0px;
  837. width:0px;
  838. height:0px;
  839. }
  840. #u194381_div {
  841. border-width:0px;
  842. position:absolute;
  843. left:0px;
  844. top:0px;
  845. width:88px;
  846. height:32px;
  847. background:inherit;
  848. background-color:rgba(255, 255, 255, 1);
  849. box-sizing:border-box;
  850. border-width:1px;
  851. border-style:solid;
  852. border-color:rgba(242, 242, 242, 1);
  853. border-radius:33px;
  854. -moz-box-shadow:none;
  855. -webkit-box-shadow:none;
  856. box-shadow:none;
  857. }
  858. #u194381 {
  859. border-width:0px;
  860. position:absolute;
  861. left:-244px;
  862. top:62px;
  863. width:88px;
  864. height:32px;
  865. display:flex;
  866. }
  867. #u194381 .text {
  868. position:absolute;
  869. align-self:center;
  870. padding:2px 2px 2px 2px;
  871. box-sizing:border-box;
  872. width:100%;
  873. }
  874. #u194381_text {
  875. border-width:0px;
  876. word-wrap:break-word;
  877. text-transform:none;
  878. visibility:hidden;
  879. }
  880. #u194382 {
  881. border-width:0px;
  882. position:absolute;
  883. left:0px;
  884. top:0px;
  885. width:0px;
  886. height:0px;
  887. }
  888. #u194383_img {
  889. border-width:0px;
  890. position:absolute;
  891. left:0px;
  892. top:0px;
  893. width:18px;
  894. height:18px;
  895. }
  896. #u194383 {
  897. border-width:0px;
  898. position:absolute;
  899. left:-181px;
  900. top:69px;
  901. width:18px;
  902. height:18px;
  903. display:flex;
  904. }
  905. #u194383 .text {
  906. position:absolute;
  907. align-self:center;
  908. padding:2px 2px 2px 2px;
  909. box-sizing:border-box;
  910. width:100%;
  911. }
  912. #u194383_text {
  913. border-width:0px;
  914. word-wrap:break-word;
  915. text-transform:none;
  916. visibility:hidden;
  917. }
  918. #u194384_img {
  919. border-width:0px;
  920. position:absolute;
  921. left:0px;
  922. top:0px;
  923. width:6px;
  924. height:6px;
  925. }
  926. #u194384 {
  927. border-width:0px;
  928. position:absolute;
  929. left:-175px;
  930. top:75px;
  931. width:6px;
  932. height:6px;
  933. display:flex;
  934. }
  935. #u194384 .text {
  936. position:absolute;
  937. align-self:center;
  938. padding:2px 2px 2px 2px;
  939. box-sizing:border-box;
  940. width:100%;
  941. }
  942. #u194384_text {
  943. border-width:0px;
  944. word-wrap:break-word;
  945. text-transform:none;
  946. visibility:hidden;
  947. }
  948. #u194385 {
  949. border-width:0px;
  950. position:absolute;
  951. left:0px;
  952. top:0px;
  953. width:0px;
  954. height:0px;
  955. }
  956. #u194386_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:5px;
  962. height:5px;
  963. }
  964. #u194386 {
  965. border-width:0px;
  966. position:absolute;
  967. left:-230px;
  968. top:76px;
  969. width:5px;
  970. height:5px;
  971. display:flex;
  972. }
  973. #u194386 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u194386_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u194387_img {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:5px;
  992. height:5px;
  993. }
  994. #u194387 {
  995. border-width:0px;
  996. position:absolute;
  997. left:-214px;
  998. top:76px;
  999. width:5px;
  1000. height:5px;
  1001. display:flex;
  1002. }
  1003. #u194387 .text {
  1004. position:absolute;
  1005. align-self:center;
  1006. padding:2px 2px 2px 2px;
  1007. box-sizing:border-box;
  1008. width:100%;
  1009. }
  1010. #u194387_text {
  1011. border-width:0px;
  1012. word-wrap:break-word;
  1013. text-transform:none;
  1014. visibility:hidden;
  1015. }
  1016. #u194388_img {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:0px;
  1020. top:0px;
  1021. width:7px;
  1022. height:7px;
  1023. }
  1024. #u194388 {
  1025. border-width:0px;
  1026. position:absolute;
  1027. left:-223px;
  1028. top:75px;
  1029. width:7px;
  1030. height:7px;
  1031. display:flex;
  1032. }
  1033. #u194388 .text {
  1034. position:absolute;
  1035. align-self:center;
  1036. padding:2px 2px 2px 2px;
  1037. box-sizing:border-box;
  1038. width:100%;
  1039. }
  1040. #u194388_text {
  1041. border-width:0px;
  1042. word-wrap:break-word;
  1043. text-transform:none;
  1044. visibility:hidden;
  1045. }
  1046. #u194389_img {
  1047. border-width:0px;
  1048. position:absolute;
  1049. left:0px;
  1050. top:0px;
  1051. width:19px;
  1052. height:2px;
  1053. }
  1054. #u194389 {
  1055. border-width:0px;
  1056. position:absolute;
  1057. left:-206px;
  1058. top:78px;
  1059. width:18px;
  1060. height:1px;
  1061. display:flex;
  1062. -webkit-transform:rotate(90deg);
  1063. -moz-transform:rotate(90deg);
  1064. -ms-transform:rotate(90deg);
  1065. transform:rotate(90deg);
  1066. }
  1067. #u194389 .text {
  1068. position:absolute;
  1069. align-self:center;
  1070. padding:2px 2px 2px 2px;
  1071. box-sizing:border-box;
  1072. width:100%;
  1073. }
  1074. #u194389_text {
  1075. border-width:0px;
  1076. word-wrap:break-word;
  1077. text-transform:none;
  1078. visibility:hidden;
  1079. }
  1080. #u194390_div {
  1081. border-width:0px;
  1082. position:absolute;
  1083. left:0px;
  1084. top:0px;
  1085. width:65px;
  1086. height:22px;
  1087. background:inherit;
  1088. background-color:rgba(255, 255, 255, 0);
  1089. border:none;
  1090. border-radius:0px;
  1091. -moz-box-shadow:none;
  1092. -webkit-box-shadow:none;
  1093. box-shadow:none;
  1094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1095. font-weight:400;
  1096. font-style:normal;
  1097. font-size:16px;
  1098. color:#000000;
  1099. }
  1100. #u194390 {
  1101. border-width:0px;
  1102. position:absolute;
  1103. left:-366px;
  1104. top:69px;
  1105. width:65px;
  1106. height:22px;
  1107. display:flex;
  1108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1109. font-weight:400;
  1110. font-style:normal;
  1111. font-size:16px;
  1112. color:#000000;
  1113. }
  1114. #u194390 .text {
  1115. position:absolute;
  1116. align-self:flex-start;
  1117. padding:0px 0px 0px 0px;
  1118. box-sizing:border-box;
  1119. width:100%;
  1120. }
  1121. #u194390_text {
  1122. border-width:0px;
  1123. white-space:nowrap;
  1124. text-transform:none;
  1125. }
  1126. #u194391_div {
  1127. border-width:0px;
  1128. position:absolute;
  1129. left:0px;
  1130. top:0px;
  1131. width:12px;
  1132. height:12px;
  1133. background:inherit;
  1134. background-color:rgba(255, 255, 255, 0);
  1135. box-sizing:border-box;
  1136. border-width:2px;
  1137. border-style:solid;
  1138. border-color:rgba(51, 51, 51, 1);
  1139. border-right:0px;
  1140. border-bottom:0px;
  1141. border-radius:0px;
  1142. border-top-right-radius:0px;
  1143. border-bottom-left-radius:0px;
  1144. -moz-box-shadow:none;
  1145. -webkit-box-shadow:none;
  1146. box-shadow:none;
  1147. }
  1148. #u194391 {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:-507px;
  1152. top:72px;
  1153. width:12px;
  1154. height:12px;
  1155. display:flex;
  1156. -webkit-transform:rotate(315deg);
  1157. -moz-transform:rotate(315deg);
  1158. -ms-transform:rotate(315deg);
  1159. transform:rotate(315deg);
  1160. }
  1161. #u194391 .text {
  1162. position:absolute;
  1163. align-self:center;
  1164. padding:2px 2px 2px 2px;
  1165. box-sizing:border-box;
  1166. width:100%;
  1167. }
  1168. #u194391_text {
  1169. border-width:0px;
  1170. word-wrap:break-word;
  1171. text-transform:none;
  1172. visibility:hidden;
  1173. }
  1174. #u194392_img {
  1175. border-width:0px;
  1176. position:absolute;
  1177. left:0px;
  1178. top:0px;
  1179. width:23px;
  1180. height:23px;
  1181. }
  1182. #u194392 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:-480px;
  1186. top:67px;
  1187. width:23px;
  1188. height:23px;
  1189. display:flex;
  1190. }
  1191. #u194392 .text {
  1192. position:absolute;
  1193. align-self:center;
  1194. padding:2px 2px 2px 2px;
  1195. box-sizing:border-box;
  1196. width:100%;
  1197. }
  1198. #u194392_text {
  1199. border-width:0px;
  1200. word-wrap:break-word;
  1201. text-transform:none;
  1202. visibility:hidden;
  1203. }
  1204. #u194393_div {
  1205. border-width:0px;
  1206. position:absolute;
  1207. left:0px;
  1208. top:0px;
  1209. width:375px;
  1210. height:733px;
  1211. background:inherit;
  1212. background-color:rgba(242, 242, 242, 0.996078431372549);
  1213. border:none;
  1214. border-top:0px;
  1215. border-radius:23px;
  1216. border-top-left-radius:0px;
  1217. border-top-right-radius:0px;
  1218. -moz-box-shadow:none;
  1219. -webkit-box-shadow:none;
  1220. box-shadow:none;
  1221. }
  1222. #u194393 {
  1223. border-width:0px;
  1224. position:absolute;
  1225. left:-524px;
  1226. top:97px;
  1227. width:375px;
  1228. height:733px;
  1229. display:flex;
  1230. }
  1231. #u194393 .text {
  1232. position:absolute;
  1233. align-self:center;
  1234. padding:2px 2px 2px 2px;
  1235. box-sizing:border-box;
  1236. width:100%;
  1237. }
  1238. #u194393_text {
  1239. border-width:0px;
  1240. word-wrap:break-word;
  1241. text-transform:none;
  1242. visibility:hidden;
  1243. }
  1244. #u194394 {
  1245. border-width:0px;
  1246. position:absolute;
  1247. left:0px;
  1248. top:0px;
  1249. width:0px;
  1250. height:0px;
  1251. }
  1252. #u194395_div {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:0px;
  1256. top:0px;
  1257. width:355px;
  1258. height:100px;
  1259. background:inherit;
  1260. background-color:rgba(255, 255, 255, 1);
  1261. border:none;
  1262. border-radius:4px;
  1263. -moz-box-shadow:none;
  1264. -webkit-box-shadow:none;
  1265. box-shadow:none;
  1266. }
  1267. #u194395 {
  1268. border-width:0px;
  1269. position:absolute;
  1270. left:-514px;
  1271. top:111px;
  1272. width:355px;
  1273. height:100px;
  1274. display:flex;
  1275. }
  1276. #u194395 .text {
  1277. position:absolute;
  1278. align-self:center;
  1279. padding:2px 2px 2px 2px;
  1280. box-sizing:border-box;
  1281. width:100%;
  1282. }
  1283. #u194395_text {
  1284. border-width:0px;
  1285. word-wrap:break-word;
  1286. text-transform:none;
  1287. visibility:hidden;
  1288. }
  1289. #u194396_div {
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:0px;
  1293. top:0px;
  1294. width:57px;
  1295. height:20px;
  1296. background:inherit;
  1297. background-color:rgba(255, 255, 255, 0);
  1298. border:none;
  1299. border-left:0px;
  1300. border-top:0px;
  1301. border-right:0px;
  1302. border-radius:0px;
  1303. border-bottom-right-radius:0px;
  1304. border-bottom-left-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:14px;
  1312. }
  1313. #u194396 {
  1314. border-width:0px;
  1315. position:absolute;
  1316. left:-498px;
  1317. top:129px;
  1318. width:57px;
  1319. height:20px;
  1320. display:flex;
  1321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1322. font-weight:400;
  1323. font-style:normal;
  1324. font-size:14px;
  1325. }
  1326. #u194396 .text {
  1327. position:absolute;
  1328. align-self:flex-start;
  1329. padding:0px 0px 0px 0px;
  1330. box-sizing:border-box;
  1331. width:100%;
  1332. }
  1333. #u194396_text {
  1334. border-width:0px;
  1335. white-space:nowrap;
  1336. text-transform:none;
  1337. }
  1338. #u194397_div {
  1339. border-width:0px;
  1340. position:absolute;
  1341. left:0px;
  1342. top:0px;
  1343. width:67px;
  1344. height:25px;
  1345. background:inherit;
  1346. background-color:rgba(255, 255, 255, 0);
  1347. border:none;
  1348. border-left:0px;
  1349. border-top:0px;
  1350. border-right:0px;
  1351. border-radius:0px;
  1352. border-bottom-right-radius:0px;
  1353. border-bottom-left-radius:0px;
  1354. -moz-box-shadow:none;
  1355. -webkit-box-shadow:none;
  1356. box-shadow:none;
  1357. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1358. font-style:normal;
  1359. }
  1360. #u194397 {
  1361. border-width:0px;
  1362. position:absolute;
  1363. left:-488px;
  1364. top:161px;
  1365. width:67px;
  1366. height:25px;
  1367. display:flex;
  1368. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1369. font-style:normal;
  1370. }
  1371. #u194397 .text {
  1372. position:absolute;
  1373. align-self:flex-start;
  1374. padding:0px 0px 0px 0px;
  1375. box-sizing:border-box;
  1376. width:100%;
  1377. }
  1378. #u194397_text {
  1379. border-width:0px;
  1380. white-space:nowrap;
  1381. text-transform:none;
  1382. }
  1383. #u194398 {
  1384. border-width:0px;
  1385. position:absolute;
  1386. left:0px;
  1387. top:0px;
  1388. width:0px;
  1389. height:0px;
  1390. }
  1391. #u194399_div {
  1392. border-width:0px;
  1393. position:absolute;
  1394. left:0px;
  1395. top:0px;
  1396. width:355px;
  1397. height:50px;
  1398. background:inherit;
  1399. background-color:rgba(255, 255, 255, 1);
  1400. border:none;
  1401. border-radius:4px;
  1402. -moz-box-shadow:none;
  1403. -webkit-box-shadow:none;
  1404. box-shadow:none;
  1405. font-size:14px;
  1406. }
  1407. #u194399 {
  1408. border-width:0px;
  1409. position:absolute;
  1410. left:-514px;
  1411. top:221px;
  1412. width:355px;
  1413. height:50px;
  1414. display:flex;
  1415. font-size:14px;
  1416. }
  1417. #u194399 .text {
  1418. position:absolute;
  1419. align-self:center;
  1420. padding:2px 2px 2px 2px;
  1421. box-sizing:border-box;
  1422. width:100%;
  1423. }
  1424. #u194399_text {
  1425. border-width:0px;
  1426. word-wrap:break-word;
  1427. text-transform:none;
  1428. visibility:hidden;
  1429. }
  1430. #u194400_div {
  1431. border-width:0px;
  1432. position:absolute;
  1433. left:0px;
  1434. top:0px;
  1435. width:131px;
  1436. height:20px;
  1437. background:inherit;
  1438. background-color:rgba(255, 255, 255, 0);
  1439. border:none;
  1440. border-left:0px;
  1441. border-top:0px;
  1442. border-right:0px;
  1443. border-radius:0px;
  1444. border-bottom-right-radius:0px;
  1445. border-bottom-left-radius:0px;
  1446. -moz-box-shadow:none;
  1447. -webkit-box-shadow:none;
  1448. box-shadow:none;
  1449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1450. font-weight:400;
  1451. font-style:normal;
  1452. font-size:14px;
  1453. }
  1454. #u194400 {
  1455. border-width:0px;
  1456. position:absolute;
  1457. left:-498px;
  1458. top:236px;
  1459. width:131px;
  1460. height:20px;
  1461. display:flex;
  1462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1463. font-weight:400;
  1464. font-style:normal;
  1465. font-size:14px;
  1466. }
  1467. #u194400 .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. #u194400_text {
  1475. border-width:0px;
  1476. white-space:nowrap;
  1477. text-transform:none;
  1478. }
  1479. #u194401_div {
  1480. border-width:0px;
  1481. position:absolute;
  1482. left:0px;
  1483. top:0px;
  1484. width:10px;
  1485. height:10px;
  1486. background:inherit;
  1487. background-color:rgba(255, 255, 255, 0);
  1488. box-sizing:border-box;
  1489. border-width:1px;
  1490. border-style:solid;
  1491. border-color:rgba(51, 51, 51, 1);
  1492. border-right:0px;
  1493. border-bottom:0px;
  1494. border-radius:0px;
  1495. border-top-right-radius:0px;
  1496. border-bottom-left-radius:0px;
  1497. -moz-box-shadow:none;
  1498. -webkit-box-shadow:none;
  1499. box-shadow:none;
  1500. font-size:14px;
  1501. }
  1502. #u194401 {
  1503. border-width:0px;
  1504. position:absolute;
  1505. left:-181px;
  1506. top:241px;
  1507. width:10px;
  1508. height:10px;
  1509. display:flex;
  1510. -webkit-transform:rotate(135deg);
  1511. -moz-transform:rotate(135deg);
  1512. -ms-transform:rotate(135deg);
  1513. transform:rotate(135deg);
  1514. font-size:14px;
  1515. }
  1516. #u194401 .text {
  1517. position:absolute;
  1518. align-self:center;
  1519. padding:2px 2px 2px 2px;
  1520. box-sizing:border-box;
  1521. width:100%;
  1522. }
  1523. #u194401_text {
  1524. border-width:0px;
  1525. word-wrap:break-word;
  1526. text-transform:none;
  1527. visibility:hidden;
  1528. }
  1529. #u194402 {
  1530. border-width:0px;
  1531. position:absolute;
  1532. left:0px;
  1533. top:0px;
  1534. width:0px;
  1535. height:0px;
  1536. }
  1537. #u194403_div {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:355px;
  1543. height:50px;
  1544. background:inherit;
  1545. background-color:rgba(255, 255, 255, 1);
  1546. border:none;
  1547. border-radius:4px;
  1548. -moz-box-shadow:none;
  1549. -webkit-box-shadow:none;
  1550. box-shadow:none;
  1551. font-size:14px;
  1552. }
  1553. #u194403 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:-514px;
  1557. top:272px;
  1558. width:355px;
  1559. height:50px;
  1560. display:flex;
  1561. font-size:14px;
  1562. }
  1563. #u194403 .text {
  1564. position:absolute;
  1565. align-self:center;
  1566. padding:2px 2px 2px 2px;
  1567. box-sizing:border-box;
  1568. width:100%;
  1569. }
  1570. #u194403_text {
  1571. border-width:0px;
  1572. word-wrap:break-word;
  1573. text-transform:none;
  1574. visibility:hidden;
  1575. }
  1576. #u194404_div {
  1577. border-width:0px;
  1578. position:absolute;
  1579. left:0px;
  1580. top:0px;
  1581. width:131px;
  1582. height:20px;
  1583. background:inherit;
  1584. background-color:rgba(255, 255, 255, 0);
  1585. border:none;
  1586. border-left:0px;
  1587. border-top:0px;
  1588. border-right:0px;
  1589. border-radius:0px;
  1590. border-bottom-right-radius:0px;
  1591. border-bottom-left-radius:0px;
  1592. -moz-box-shadow:none;
  1593. -webkit-box-shadow:none;
  1594. box-shadow:none;
  1595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1596. font-weight:400;
  1597. font-style:normal;
  1598. font-size:14px;
  1599. }
  1600. #u194404 {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:-498px;
  1604. top:287px;
  1605. width:131px;
  1606. height:20px;
  1607. display:flex;
  1608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1609. font-weight:400;
  1610. font-style:normal;
  1611. font-size:14px;
  1612. }
  1613. #u194404 .text {
  1614. position:absolute;
  1615. align-self:flex-start;
  1616. padding:0px 0px 0px 0px;
  1617. box-sizing:border-box;
  1618. width:100%;
  1619. }
  1620. #u194404_text {
  1621. border-width:0px;
  1622. white-space:nowrap;
  1623. text-transform:none;
  1624. }
  1625. #u194405_div {
  1626. border-width:0px;
  1627. position:absolute;
  1628. left:0px;
  1629. top:0px;
  1630. width:10px;
  1631. height:10px;
  1632. background:inherit;
  1633. background-color:rgba(255, 255, 255, 0);
  1634. box-sizing:border-box;
  1635. border-width:1px;
  1636. border-style:solid;
  1637. border-color:rgba(51, 51, 51, 1);
  1638. border-right:0px;
  1639. border-bottom:0px;
  1640. border-radius:0px;
  1641. border-top-right-radius:0px;
  1642. border-bottom-left-radius:0px;
  1643. -moz-box-shadow:none;
  1644. -webkit-box-shadow:none;
  1645. box-shadow:none;
  1646. font-size:14px;
  1647. }
  1648. #u194405 {
  1649. border-width:0px;
  1650. position:absolute;
  1651. left:-181px;
  1652. top:292px;
  1653. width:10px;
  1654. height:10px;
  1655. display:flex;
  1656. -webkit-transform:rotate(135deg);
  1657. -moz-transform:rotate(135deg);
  1658. -ms-transform:rotate(135deg);
  1659. transform:rotate(135deg);
  1660. font-size:14px;
  1661. }
  1662. #u194405 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u194405_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u194406_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:60px;
  1681. height:30px;
  1682. background:inherit;
  1683. background-color:rgba(255, 255, 255, 1);
  1684. box-sizing:border-box;
  1685. border-width:1px;
  1686. border-style:solid;
  1687. border-color:rgba(77, 140, 252, 1);
  1688. border-radius:4px;
  1689. -moz-box-shadow:none;
  1690. -webkit-box-shadow:none;
  1691. box-shadow:none;
  1692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1693. font-weight:400;
  1694. font-style:normal;
  1695. font-size:12px;
  1696. color:#4D8CFC;
  1697. text-align:center;
  1698. line-height:20px;
  1699. }
  1700. #u194406 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:-227px;
  1704. top:161px;
  1705. width:60px;
  1706. height:30px;
  1707. display:flex;
  1708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1709. font-weight:400;
  1710. font-style:normal;
  1711. font-size:12px;
  1712. color:#4D8CFC;
  1713. text-align:center;
  1714. line-height:20px;
  1715. }
  1716. #u194406 .text {
  1717. position:absolute;
  1718. align-self:center;
  1719. padding:0px 0px 0px 0px;
  1720. box-sizing:border-box;
  1721. width:100%;
  1722. }
  1723. #u194406_text {
  1724. border-width:0px;
  1725. word-wrap:break-word;
  1726. text-transform:none;
  1727. }
  1728. #u194407_div {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:0px;
  1732. top:0px;
  1733. width:339px;
  1734. height:290px;
  1735. background:inherit;
  1736. background-color:rgba(255, 255, 255, 0);
  1737. box-sizing:border-box;
  1738. border-width:1px;
  1739. border-style:solid;
  1740. border-color:rgba(192, 0, 23, 1);
  1741. border-radius:0px;
  1742. -moz-box-shadow:none;
  1743. -webkit-box-shadow:none;
  1744. box-shadow:none;
  1745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1746. font-weight:400;
  1747. font-style:normal;
  1748. font-size:12px;
  1749. color:#D9001B;
  1750. text-align:left;
  1751. line-height:20px;
  1752. }
  1753. #u194407 {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:-509px;
  1757. top:343px;
  1758. width:339px;
  1759. height:290px;
  1760. display:flex;
  1761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1762. font-weight:400;
  1763. font-style:normal;
  1764. font-size:12px;
  1765. color:#D9001B;
  1766. text-align:left;
  1767. line-height:20px;
  1768. }
  1769. #u194407 .text {
  1770. position:absolute;
  1771. align-self:flex-start;
  1772. padding:5px 5px 5px 5px;
  1773. box-sizing:border-box;
  1774. width:100%;
  1775. }
  1776. #u194407_text {
  1777. border-width:0px;
  1778. word-wrap:break-word;
  1779. text-transform:none;
  1780. }
  1781. #u194409_img {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:0px;
  1785. top:0px;
  1786. width:433px;
  1787. height:865px;
  1788. }
  1789. #u194409 {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:0px;
  1793. top:0px;
  1794. width:433px;
  1795. height:865px;
  1796. display:flex;
  1797. }
  1798. #u194409 .text {
  1799. position:absolute;
  1800. align-self:center;
  1801. padding:2px 2px 2px 2px;
  1802. box-sizing:border-box;
  1803. width:100%;
  1804. }
  1805. #u194409_text {
  1806. border-width:0px;
  1807. word-wrap:break-word;
  1808. text-transform:none;
  1809. visibility:hidden;
  1810. }
  1811. #u194410_div {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:0px;
  1815. top:0px;
  1816. width:375px;
  1817. height:40px;
  1818. background:inherit;
  1819. background-color:rgba(255, 255, 255, 1);
  1820. box-sizing:border-box;
  1821. border-width:1px;
  1822. border-style:solid;
  1823. border-color:rgba(215, 215, 215, 1);
  1824. border-left:0px;
  1825. border-top:0px;
  1826. border-right:0px;
  1827. border-radius:0px;
  1828. border-bottom-right-radius:0px;
  1829. border-bottom-left-radius:0px;
  1830. -moz-box-shadow:none;
  1831. -webkit-box-shadow:none;
  1832. box-shadow:none;
  1833. }
  1834. #u194410 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:29px;
  1838. top:67px;
  1839. width:375px;
  1840. height:40px;
  1841. display:flex;
  1842. }
  1843. #u194410 .text {
  1844. position:absolute;
  1845. align-self:center;
  1846. padding:2px 2px 2px 2px;
  1847. box-sizing:border-box;
  1848. width:100%;
  1849. }
  1850. #u194410_text {
  1851. border-width:0px;
  1852. word-wrap:break-word;
  1853. text-transform:none;
  1854. visibility:hidden;
  1855. }
  1856. #u194411 {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:0px;
  1860. top:0px;
  1861. width:0px;
  1862. height:0px;
  1863. }
  1864. #u194412_div {
  1865. border-width:0px;
  1866. position:absolute;
  1867. left:0px;
  1868. top:0px;
  1869. width:88px;
  1870. height:32px;
  1871. background:inherit;
  1872. background-color:rgba(255, 255, 255, 1);
  1873. box-sizing:border-box;
  1874. border-width:1px;
  1875. border-style:solid;
  1876. border-color:rgba(242, 242, 242, 1);
  1877. border-radius:33px;
  1878. -moz-box-shadow:none;
  1879. -webkit-box-shadow:none;
  1880. box-shadow:none;
  1881. }
  1882. #u194412 {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:309px;
  1886. top:71px;
  1887. width:88px;
  1888. height:32px;
  1889. display:flex;
  1890. }
  1891. #u194412 .text {
  1892. position:absolute;
  1893. align-self:center;
  1894. padding:2px 2px 2px 2px;
  1895. box-sizing:border-box;
  1896. width:100%;
  1897. }
  1898. #u194412_text {
  1899. border-width:0px;
  1900. word-wrap:break-word;
  1901. text-transform:none;
  1902. visibility:hidden;
  1903. }
  1904. #u194413 {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:0px;
  1908. top:0px;
  1909. width:0px;
  1910. height:0px;
  1911. }
  1912. #u194414_img {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:0px;
  1916. top:0px;
  1917. width:18px;
  1918. height:18px;
  1919. }
  1920. #u194414 {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:372px;
  1924. top:78px;
  1925. width:18px;
  1926. height:18px;
  1927. display:flex;
  1928. }
  1929. #u194414 .text {
  1930. position:absolute;
  1931. align-self:center;
  1932. padding:2px 2px 2px 2px;
  1933. box-sizing:border-box;
  1934. width:100%;
  1935. }
  1936. #u194414_text {
  1937. border-width:0px;
  1938. word-wrap:break-word;
  1939. text-transform:none;
  1940. visibility:hidden;
  1941. }
  1942. #u194415_img {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:0px;
  1946. top:0px;
  1947. width:6px;
  1948. height:6px;
  1949. }
  1950. #u194415 {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:378px;
  1954. top:84px;
  1955. width:6px;
  1956. height:6px;
  1957. display:flex;
  1958. }
  1959. #u194415 .text {
  1960. position:absolute;
  1961. align-self:center;
  1962. padding:2px 2px 2px 2px;
  1963. box-sizing:border-box;
  1964. width:100%;
  1965. }
  1966. #u194415_text {
  1967. border-width:0px;
  1968. word-wrap:break-word;
  1969. text-transform:none;
  1970. visibility:hidden;
  1971. }
  1972. #u194416 {
  1973. border-width:0px;
  1974. position:absolute;
  1975. left:0px;
  1976. top:0px;
  1977. width:0px;
  1978. height:0px;
  1979. }
  1980. #u194417_img {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:0px;
  1984. top:0px;
  1985. width:5px;
  1986. height:5px;
  1987. }
  1988. #u194417 {
  1989. border-width:0px;
  1990. position:absolute;
  1991. left:323px;
  1992. top:85px;
  1993. width:5px;
  1994. height:5px;
  1995. display:flex;
  1996. }
  1997. #u194417 .text {
  1998. position:absolute;
  1999. align-self:center;
  2000. padding:2px 2px 2px 2px;
  2001. box-sizing:border-box;
  2002. width:100%;
  2003. }
  2004. #u194417_text {
  2005. border-width:0px;
  2006. word-wrap:break-word;
  2007. text-transform:none;
  2008. visibility:hidden;
  2009. }
  2010. #u194418_img {
  2011. border-width:0px;
  2012. position:absolute;
  2013. left:0px;
  2014. top:0px;
  2015. width:5px;
  2016. height:5px;
  2017. }
  2018. #u194418 {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:339px;
  2022. top:85px;
  2023. width:5px;
  2024. height:5px;
  2025. display:flex;
  2026. }
  2027. #u194418 .text {
  2028. position:absolute;
  2029. align-self:center;
  2030. padding:2px 2px 2px 2px;
  2031. box-sizing:border-box;
  2032. width:100%;
  2033. }
  2034. #u194418_text {
  2035. border-width:0px;
  2036. word-wrap:break-word;
  2037. text-transform:none;
  2038. visibility:hidden;
  2039. }
  2040. #u194419_img {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:0px;
  2044. top:0px;
  2045. width:7px;
  2046. height:7px;
  2047. }
  2048. #u194419 {
  2049. border-width:0px;
  2050. position:absolute;
  2051. left:330px;
  2052. top:84px;
  2053. width:7px;
  2054. height:7px;
  2055. display:flex;
  2056. }
  2057. #u194419 .text {
  2058. position:absolute;
  2059. align-self:center;
  2060. padding:2px 2px 2px 2px;
  2061. box-sizing:border-box;
  2062. width:100%;
  2063. }
  2064. #u194419_text {
  2065. border-width:0px;
  2066. word-wrap:break-word;
  2067. text-transform:none;
  2068. visibility:hidden;
  2069. }
  2070. #u194420_img {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:0px;
  2074. top:0px;
  2075. width:19px;
  2076. height:2px;
  2077. }
  2078. #u194420 {
  2079. border-width:0px;
  2080. position:absolute;
  2081. left:347px;
  2082. top:87px;
  2083. width:18px;
  2084. height:1px;
  2085. display:flex;
  2086. -webkit-transform:rotate(90deg);
  2087. -moz-transform:rotate(90deg);
  2088. -ms-transform:rotate(90deg);
  2089. transform:rotate(90deg);
  2090. }
  2091. #u194420 .text {
  2092. position:absolute;
  2093. align-self:center;
  2094. padding:2px 2px 2px 2px;
  2095. box-sizing:border-box;
  2096. width:100%;
  2097. }
  2098. #u194420_text {
  2099. border-width:0px;
  2100. word-wrap:break-word;
  2101. text-transform:none;
  2102. visibility:hidden;
  2103. }
  2104. #u194421_img {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:0px;
  2108. top:0px;
  2109. width:375px;
  2110. height:44px;
  2111. }
  2112. #u194421 {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:29px;
  2116. top:24px;
  2117. width:375px;
  2118. height:44px;
  2119. display:flex;
  2120. }
  2121. #u194421 .text {
  2122. position:absolute;
  2123. align-self:center;
  2124. padding:2px 2px 2px 2px;
  2125. box-sizing:border-box;
  2126. width:100%;
  2127. }
  2128. #u194421_text {
  2129. border-width:0px;
  2130. word-wrap:break-word;
  2131. text-transform:none;
  2132. visibility:hidden;
  2133. }
  2134. #u194422_div {
  2135. border-width:0px;
  2136. position:absolute;
  2137. left:0px;
  2138. top:0px;
  2139. width:375px;
  2140. height:50px;
  2141. background:inherit;
  2142. background-color:rgba(255, 255, 255, 1);
  2143. box-sizing:border-box;
  2144. border-width:1px;
  2145. border-style:solid;
  2146. border-color:rgba(242, 242, 242, 1);
  2147. border-radius:26px;
  2148. border-top-left-radius:0px;
  2149. border-top-right-radius:0px;
  2150. -moz-box-shadow:none;
  2151. -webkit-box-shadow:none;
  2152. box-shadow:none;
  2153. }
  2154. #u194422 {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:29px;
  2158. top:788px;
  2159. width:375px;
  2160. height:50px;
  2161. display:flex;
  2162. }
  2163. #u194422 .text {
  2164. position:absolute;
  2165. align-self:center;
  2166. padding:2px 2px 2px 2px;
  2167. box-sizing:border-box;
  2168. width:100%;
  2169. }
  2170. #u194422_text {
  2171. border-width:0px;
  2172. word-wrap:break-word;
  2173. text-transform:none;
  2174. visibility:hidden;
  2175. }
  2176. #u194423 {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:0px;
  2180. top:0px;
  2181. width:0px;
  2182. height:0px;
  2183. }
  2184. #u194424_img {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:0px;
  2188. top:0px;
  2189. width:24px;
  2190. height:24px;
  2191. }
  2192. #u194424 {
  2193. border-width:0px;
  2194. position:absolute;
  2195. left:69px;
  2196. top:792px;
  2197. width:24px;
  2198. height:24px;
  2199. display:flex;
  2200. font-size:8px;
  2201. }
  2202. #u194424 .text {
  2203. position:absolute;
  2204. align-self:center;
  2205. padding:2px 2px 2px 2px;
  2206. box-sizing:border-box;
  2207. width:100%;
  2208. }
  2209. #u194424_text {
  2210. border-width:0px;
  2211. word-wrap:break-word;
  2212. text-transform:none;
  2213. }
  2214. #u194425_div {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:0px;
  2218. top:0px;
  2219. width:25px;
  2220. height:17px;
  2221. background:inherit;
  2222. background-color:rgba(255, 255, 255, 0);
  2223. border:none;
  2224. border-radius:0px;
  2225. -moz-box-shadow:none;
  2226. -webkit-box-shadow:none;
  2227. box-shadow:none;
  2228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2229. font-weight:400;
  2230. font-style:normal;
  2231. font-size:12px;
  2232. }
  2233. #u194425 {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:69px;
  2237. top:817px;
  2238. width:25px;
  2239. height:17px;
  2240. display:flex;
  2241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2242. font-weight:400;
  2243. font-style:normal;
  2244. font-size:12px;
  2245. }
  2246. #u194425 .text {
  2247. position:absolute;
  2248. align-self:flex-start;
  2249. padding:0px 0px 0px 0px;
  2250. box-sizing:border-box;
  2251. width:100%;
  2252. }
  2253. #u194425_text {
  2254. border-width:0px;
  2255. white-space:nowrap;
  2256. text-transform:none;
  2257. }
  2258. #u194426 {
  2259. border-width:0px;
  2260. position:absolute;
  2261. left:0px;
  2262. top:0px;
  2263. width:0px;
  2264. height:0px;
  2265. }
  2266. #u194427_img {
  2267. border-width:0px;
  2268. position:absolute;
  2269. left:0px;
  2270. top:0px;
  2271. width:24px;
  2272. height:24px;
  2273. }
  2274. #u194427 {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:339px;
  2278. top:794px;
  2279. width:24px;
  2280. height:24px;
  2281. display:flex;
  2282. font-size:8px;
  2283. }
  2284. #u194427 .text {
  2285. position:absolute;
  2286. align-self:center;
  2287. padding:2px 2px 2px 2px;
  2288. box-sizing:border-box;
  2289. width:100%;
  2290. }
  2291. #u194427_text {
  2292. border-width:0px;
  2293. word-wrap:break-word;
  2294. text-transform:none;
  2295. }
  2296. #u194428_div {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:0px;
  2300. top:0px;
  2301. width:25px;
  2302. height:17px;
  2303. background:inherit;
  2304. background-color:rgba(255, 255, 255, 0);
  2305. border:none;
  2306. border-radius:0px;
  2307. -moz-box-shadow:none;
  2308. -webkit-box-shadow:none;
  2309. box-shadow:none;
  2310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2311. font-weight:400;
  2312. font-style:normal;
  2313. font-size:12px;
  2314. }
  2315. #u194428 {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:339px;
  2319. top:819px;
  2320. width:25px;
  2321. height:17px;
  2322. display:flex;
  2323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2324. font-weight:400;
  2325. font-style:normal;
  2326. font-size:12px;
  2327. }
  2328. #u194428 .text {
  2329. position:absolute;
  2330. align-self:flex-start;
  2331. padding:0px 0px 0px 0px;
  2332. box-sizing:border-box;
  2333. width:100%;
  2334. }
  2335. #u194428_text {
  2336. border-width:0px;
  2337. white-space:nowrap;
  2338. text-transform:none;
  2339. }
  2340. #u194429_div {
  2341. border-width:0px;
  2342. position:absolute;
  2343. left:0px;
  2344. top:0px;
  2345. width:375px;
  2346. height:681px;
  2347. background:inherit;
  2348. background-color:rgba(242, 242, 242, 0.462745098039216);
  2349. border:none;
  2350. border-radius:0px;
  2351. -moz-box-shadow:none;
  2352. -webkit-box-shadow:none;
  2353. box-shadow:none;
  2354. }
  2355. #u194429 {
  2356. border-width:0px;
  2357. position:absolute;
  2358. left:29px;
  2359. top:107px;
  2360. width:375px;
  2361. height:681px;
  2362. display:flex;
  2363. }
  2364. #u194429 .text {
  2365. position:absolute;
  2366. align-self:center;
  2367. padding:2px 2px 2px 2px;
  2368. box-sizing:border-box;
  2369. width:100%;
  2370. }
  2371. #u194429_text {
  2372. border-width:0px;
  2373. word-wrap:break-word;
  2374. text-transform:none;
  2375. visibility:hidden;
  2376. }
  2377. #u194430 {
  2378. border-width:0px;
  2379. position:absolute;
  2380. left:0px;
  2381. top:0px;
  2382. width:0px;
  2383. height:0px;
  2384. }
  2385. #u194431_img {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:0px;
  2389. top:0px;
  2390. width:24px;
  2391. height:24px;
  2392. }
  2393. #u194431 {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:251px;
  2397. top:792px;
  2398. width:24px;
  2399. height:24px;
  2400. display:flex;
  2401. font-size:8px;
  2402. }
  2403. #u194431 .text {
  2404. position:absolute;
  2405. align-self:center;
  2406. padding:2px 2px 2px 2px;
  2407. box-sizing:border-box;
  2408. width:100%;
  2409. }
  2410. #u194431_text {
  2411. border-width:0px;
  2412. word-wrap:break-word;
  2413. text-transform:none;
  2414. }
  2415. #u194432_div {
  2416. border-width:0px;
  2417. position:absolute;
  2418. left:0px;
  2419. top:0px;
  2420. width:37px;
  2421. height:17px;
  2422. background:inherit;
  2423. background-color:rgba(255, 255, 255, 0);
  2424. border:none;
  2425. border-radius:0px;
  2426. -moz-box-shadow:none;
  2427. -webkit-box-shadow:none;
  2428. box-shadow:none;
  2429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2430. font-weight:400;
  2431. font-style:normal;
  2432. font-size:12px;
  2433. }
  2434. #u194432 {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:245px;
  2438. top:817px;
  2439. width:37px;
  2440. height:17px;
  2441. display:flex;
  2442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2443. font-weight:400;
  2444. font-style:normal;
  2445. font-size:12px;
  2446. }
  2447. #u194432 .text {
  2448. position:absolute;
  2449. align-self:flex-start;
  2450. padding:0px 0px 0px 0px;
  2451. box-sizing:border-box;
  2452. width:100%;
  2453. }
  2454. #u194432_text {
  2455. border-width:0px;
  2456. white-space:nowrap;
  2457. text-transform:none;
  2458. }
  2459. #u194433 {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:0px;
  2463. top:0px;
  2464. width:0px;
  2465. height:0px;
  2466. }
  2467. #u194434_img {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:0px;
  2471. top:0px;
  2472. width:24px;
  2473. height:24px;
  2474. }
  2475. #u194434 {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:157px;
  2479. top:792px;
  2480. width:24px;
  2481. height:24px;
  2482. display:flex;
  2483. font-size:8px;
  2484. }
  2485. #u194434 .text {
  2486. position:absolute;
  2487. align-self:center;
  2488. padding:2px 2px 2px 2px;
  2489. box-sizing:border-box;
  2490. width:100%;
  2491. }
  2492. #u194434_text {
  2493. border-width:0px;
  2494. word-wrap:break-word;
  2495. text-transform:none;
  2496. }
  2497. #u194435_div {
  2498. border-width:0px;
  2499. position:absolute;
  2500. left:0px;
  2501. top:0px;
  2502. width:37px;
  2503. height:17px;
  2504. background:inherit;
  2505. background-color:rgba(255, 255, 255, 0);
  2506. border:none;
  2507. border-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. }
  2516. #u194435 {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:151px;
  2520. top:817px;
  2521. width:37px;
  2522. height:17px;
  2523. display:flex;
  2524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2525. font-weight:400;
  2526. font-style:normal;
  2527. font-size:12px;
  2528. }
  2529. #u194435 .text {
  2530. position:absolute;
  2531. align-self:flex-start;
  2532. padding:0px 0px 0px 0px;
  2533. box-sizing:border-box;
  2534. width:100%;
  2535. }
  2536. #u194435_text {
  2537. border-width:0px;
  2538. white-space:nowrap;
  2539. text-transform:none;
  2540. }
  2541. #u194436_div {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:0px;
  2545. top:0px;
  2546. width:375px;
  2547. height:732px;
  2548. background:inherit;
  2549. background-color:rgba(242, 242, 242, 0.996078431372549);
  2550. border:none;
  2551. border-top:0px;
  2552. border-radius:28px;
  2553. border-top-left-radius:0px;
  2554. border-top-right-radius:0px;
  2555. -moz-box-shadow:none;
  2556. -webkit-box-shadow:none;
  2557. box-shadow:none;
  2558. }
  2559. #u194436 {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:29px;
  2563. top:107px;
  2564. width:375px;
  2565. height:732px;
  2566. display:flex;
  2567. }
  2568. #u194436 .text {
  2569. position:absolute;
  2570. align-self:center;
  2571. padding:2px 2px 2px 2px;
  2572. box-sizing:border-box;
  2573. width:100%;
  2574. }
  2575. #u194436_text {
  2576. border-width:0px;
  2577. word-wrap:break-word;
  2578. text-transform:none;
  2579. visibility:hidden;
  2580. }
  2581. #u194437_div {
  2582. border-width:0px;
  2583. position:absolute;
  2584. left:0px;
  2585. top:0px;
  2586. width:375px;
  2587. height:140px;
  2588. background:inherit;
  2589. background-color:rgba(255, 255, 255, 1);
  2590. box-sizing:border-box;
  2591. border-width:1px;
  2592. border-style:solid;
  2593. border-color:rgba(215, 215, 215, 1);
  2594. border-left:0px;
  2595. border-top:0px;
  2596. border-right:0px;
  2597. border-radius:0px;
  2598. border-bottom-right-radius:0px;
  2599. border-bottom-left-radius:0px;
  2600. -moz-box-shadow:none;
  2601. -webkit-box-shadow:none;
  2602. box-shadow:none;
  2603. }
  2604. #u194437 {
  2605. border-width:0px;
  2606. position:absolute;
  2607. left:29px;
  2608. top:67px;
  2609. width:375px;
  2610. height:140px;
  2611. display:flex;
  2612. }
  2613. #u194437 .text {
  2614. position:absolute;
  2615. align-self:center;
  2616. padding:2px 2px 2px 2px;
  2617. box-sizing:border-box;
  2618. width:100%;
  2619. }
  2620. #u194437_text {
  2621. border-width:0px;
  2622. word-wrap:break-word;
  2623. text-transform:none;
  2624. visibility:hidden;
  2625. }
  2626. #u194438 {
  2627. border-width:0px;
  2628. position:absolute;
  2629. left:0px;
  2630. top:0px;
  2631. width:0px;
  2632. height:0px;
  2633. }
  2634. #u194439_div {
  2635. border-width:0px;
  2636. position:absolute;
  2637. left:0px;
  2638. top:0px;
  2639. width:88px;
  2640. height:32px;
  2641. background:inherit;
  2642. background-color:rgba(255, 255, 255, 1);
  2643. box-sizing:border-box;
  2644. border-width:1px;
  2645. border-style:solid;
  2646. border-color:rgba(242, 242, 242, 1);
  2647. border-radius:33px;
  2648. -moz-box-shadow:none;
  2649. -webkit-box-shadow:none;
  2650. box-shadow:none;
  2651. }
  2652. #u194439 {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:309px;
  2656. top:71px;
  2657. width:88px;
  2658. height:32px;
  2659. display:flex;
  2660. }
  2661. #u194439 .text {
  2662. position:absolute;
  2663. align-self:center;
  2664. padding:2px 2px 2px 2px;
  2665. box-sizing:border-box;
  2666. width:100%;
  2667. }
  2668. #u194439_text {
  2669. border-width:0px;
  2670. word-wrap:break-word;
  2671. text-transform:none;
  2672. visibility:hidden;
  2673. }
  2674. #u194440 {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:0px;
  2678. top:0px;
  2679. width:0px;
  2680. height:0px;
  2681. }
  2682. #u194441_img {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:0px;
  2686. top:0px;
  2687. width:18px;
  2688. height:18px;
  2689. }
  2690. #u194441 {
  2691. border-width:0px;
  2692. position:absolute;
  2693. left:372px;
  2694. top:78px;
  2695. width:18px;
  2696. height:18px;
  2697. display:flex;
  2698. }
  2699. #u194441 .text {
  2700. position:absolute;
  2701. align-self:center;
  2702. padding:2px 2px 2px 2px;
  2703. box-sizing:border-box;
  2704. width:100%;
  2705. }
  2706. #u194441_text {
  2707. border-width:0px;
  2708. word-wrap:break-word;
  2709. text-transform:none;
  2710. visibility:hidden;
  2711. }
  2712. #u194442_img {
  2713. border-width:0px;
  2714. position:absolute;
  2715. left:0px;
  2716. top:0px;
  2717. width:6px;
  2718. height:6px;
  2719. }
  2720. #u194442 {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:378px;
  2724. top:84px;
  2725. width:6px;
  2726. height:6px;
  2727. display:flex;
  2728. }
  2729. #u194442 .text {
  2730. position:absolute;
  2731. align-self:center;
  2732. padding:2px 2px 2px 2px;
  2733. box-sizing:border-box;
  2734. width:100%;
  2735. }
  2736. #u194442_text {
  2737. border-width:0px;
  2738. word-wrap:break-word;
  2739. text-transform:none;
  2740. visibility:hidden;
  2741. }
  2742. #u194443 {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:0px;
  2746. top:0px;
  2747. width:0px;
  2748. height:0px;
  2749. }
  2750. #u194444_img {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:0px;
  2754. top:0px;
  2755. width:5px;
  2756. height:5px;
  2757. }
  2758. #u194444 {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:323px;
  2762. top:85px;
  2763. width:5px;
  2764. height:5px;
  2765. display:flex;
  2766. }
  2767. #u194444 .text {
  2768. position:absolute;
  2769. align-self:center;
  2770. padding:2px 2px 2px 2px;
  2771. box-sizing:border-box;
  2772. width:100%;
  2773. }
  2774. #u194444_text {
  2775. border-width:0px;
  2776. word-wrap:break-word;
  2777. text-transform:none;
  2778. visibility:hidden;
  2779. }
  2780. #u194445_img {
  2781. border-width:0px;
  2782. position:absolute;
  2783. left:0px;
  2784. top:0px;
  2785. width:5px;
  2786. height:5px;
  2787. }
  2788. #u194445 {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:339px;
  2792. top:85px;
  2793. width:5px;
  2794. height:5px;
  2795. display:flex;
  2796. }
  2797. #u194445 .text {
  2798. position:absolute;
  2799. align-self:center;
  2800. padding:2px 2px 2px 2px;
  2801. box-sizing:border-box;
  2802. width:100%;
  2803. }
  2804. #u194445_text {
  2805. border-width:0px;
  2806. word-wrap:break-word;
  2807. text-transform:none;
  2808. visibility:hidden;
  2809. }
  2810. #u194446_img {
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:0px;
  2814. top:0px;
  2815. width:7px;
  2816. height:7px;
  2817. }
  2818. #u194446 {
  2819. border-width:0px;
  2820. position:absolute;
  2821. left:330px;
  2822. top:84px;
  2823. width:7px;
  2824. height:7px;
  2825. display:flex;
  2826. }
  2827. #u194446 .text {
  2828. position:absolute;
  2829. align-self:center;
  2830. padding:2px 2px 2px 2px;
  2831. box-sizing:border-box;
  2832. width:100%;
  2833. }
  2834. #u194446_text {
  2835. border-width:0px;
  2836. word-wrap:break-word;
  2837. text-transform:none;
  2838. visibility:hidden;
  2839. }
  2840. #u194447_img {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:0px;
  2844. top:0px;
  2845. width:19px;
  2846. height:2px;
  2847. }
  2848. #u194447 {
  2849. border-width:0px;
  2850. position:absolute;
  2851. left:347px;
  2852. top:87px;
  2853. width:18px;
  2854. height:1px;
  2855. display:flex;
  2856. -webkit-transform:rotate(90deg);
  2857. -moz-transform:rotate(90deg);
  2858. -ms-transform:rotate(90deg);
  2859. transform:rotate(90deg);
  2860. }
  2861. #u194447 .text {
  2862. position:absolute;
  2863. align-self:center;
  2864. padding:2px 2px 2px 2px;
  2865. box-sizing:border-box;
  2866. width:100%;
  2867. }
  2868. #u194447_text {
  2869. border-width:0px;
  2870. word-wrap:break-word;
  2871. text-transform:none;
  2872. visibility:hidden;
  2873. }
  2874. #u194448_div {
  2875. border-width:0px;
  2876. position:absolute;
  2877. left:0px;
  2878. top:0px;
  2879. width:12px;
  2880. height:12px;
  2881. background:inherit;
  2882. background-color:rgba(255, 255, 255, 0);
  2883. box-sizing:border-box;
  2884. border-width:2px;
  2885. border-style:solid;
  2886. border-color:rgba(51, 51, 51, 1);
  2887. border-right:0px;
  2888. border-bottom:0px;
  2889. border-radius:0px;
  2890. border-top-right-radius:0px;
  2891. border-bottom-left-radius:0px;
  2892. -moz-box-shadow:none;
  2893. -webkit-box-shadow:none;
  2894. box-shadow:none;
  2895. }
  2896. #u194448 {
  2897. border-width:0px;
  2898. position:absolute;
  2899. left:44px;
  2900. top:81px;
  2901. width:12px;
  2902. height:12px;
  2903. display:flex;
  2904. -webkit-transform:rotate(315deg);
  2905. -moz-transform:rotate(315deg);
  2906. -ms-transform:rotate(315deg);
  2907. transform:rotate(315deg);
  2908. }
  2909. #u194448 .text {
  2910. position:absolute;
  2911. align-self:center;
  2912. padding:2px 2px 2px 2px;
  2913. box-sizing:border-box;
  2914. width:100%;
  2915. }
  2916. #u194448_text {
  2917. border-width:0px;
  2918. word-wrap:break-word;
  2919. text-transform:none;
  2920. visibility:hidden;
  2921. }
  2922. #u194449_div {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:0px;
  2926. top:0px;
  2927. width:43px;
  2928. height:21px;
  2929. background:inherit;
  2930. background-color:rgba(24, 144, 255, 1);
  2931. border:none;
  2932. border-radius:17px;
  2933. -moz-box-shadow:none;
  2934. -webkit-box-shadow:none;
  2935. box-shadow:none;
  2936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2937. font-weight:400;
  2938. font-style:normal;
  2939. font-size:12px;
  2940. color:#FFFFFF;
  2941. }
  2942. #u194449 {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:42px;
  2946. top:155px;
  2947. width:43px;
  2948. height:21px;
  2949. display:flex;
  2950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2951. font-weight:400;
  2952. font-style:normal;
  2953. font-size:12px;
  2954. color:#FFFFFF;
  2955. }
  2956. #u194449 .text {
  2957. position:absolute;
  2958. align-self:center;
  2959. padding:2px 3px 2px 3px;
  2960. box-sizing:border-box;
  2961. width:100%;
  2962. }
  2963. #u194449_text {
  2964. border-width:0px;
  2965. white-space:nowrap;
  2966. text-transform:none;
  2967. }
  2968. #u194450_div {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:0px;
  2972. top:0px;
  2973. width:43px;
  2974. height:21px;
  2975. background:inherit;
  2976. background-color:rgba(242, 242, 242, 1);
  2977. border:none;
  2978. border-radius:17px;
  2979. -moz-box-shadow:none;
  2980. -webkit-box-shadow:none;
  2981. box-shadow:none;
  2982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2983. font-weight:400;
  2984. font-style:normal;
  2985. font-size:12px;
  2986. color:#555555;
  2987. }
  2988. #u194450 {
  2989. border-width:0px;
  2990. position:absolute;
  2991. left:98px;
  2992. top:155px;
  2993. width:43px;
  2994. height:21px;
  2995. display:flex;
  2996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2997. font-weight:400;
  2998. font-style:normal;
  2999. font-size:12px;
  3000. color:#555555;
  3001. }
  3002. #u194450 .text {
  3003. position:absolute;
  3004. align-self:center;
  3005. padding:2px 3px 2px 3px;
  3006. box-sizing:border-box;
  3007. width:100%;
  3008. }
  3009. #u194450_text {
  3010. border-width:0px;
  3011. white-space:nowrap;
  3012. text-transform:none;
  3013. }
  3014. #u194451_div {
  3015. border-width:0px;
  3016. position:absolute;
  3017. left:0px;
  3018. top:0px;
  3019. width:43px;
  3020. height:21px;
  3021. background:inherit;
  3022. background-color:rgba(242, 242, 242, 1);
  3023. border:none;
  3024. border-radius:17px;
  3025. -moz-box-shadow:none;
  3026. -webkit-box-shadow:none;
  3027. box-shadow:none;
  3028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3029. font-weight:400;
  3030. font-style:normal;
  3031. font-size:12px;
  3032. color:#555555;
  3033. }
  3034. #u194451 {
  3035. border-width:0px;
  3036. position:absolute;
  3037. left:155px;
  3038. top:155px;
  3039. width:43px;
  3040. height:21px;
  3041. display:flex;
  3042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3043. font-weight:400;
  3044. font-style:normal;
  3045. font-size:12px;
  3046. color:#555555;
  3047. }
  3048. #u194451 .text {
  3049. position:absolute;
  3050. align-self:center;
  3051. padding:2px 3px 2px 3px;
  3052. box-sizing:border-box;
  3053. width:100%;
  3054. }
  3055. #u194451_text {
  3056. border-width:0px;
  3057. white-space:nowrap;
  3058. text-transform:none;
  3059. }
  3060. #u194452 {
  3061. border-width:0px;
  3062. position:absolute;
  3063. left:0px;
  3064. top:0px;
  3065. width:0px;
  3066. height:0px;
  3067. }
  3068. #u194453_div {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:0px;
  3072. top:0px;
  3073. width:280px;
  3074. height:30px;
  3075. background:inherit;
  3076. background-color:rgba(242, 242, 242, 1);
  3077. border:none;
  3078. border-radius:20px;
  3079. -moz-box-shadow:none;
  3080. -webkit-box-shadow:none;
  3081. box-shadow:none;
  3082. }
  3083. #u194453 {
  3084. border-width:0px;
  3085. position:absolute;
  3086. left:42px;
  3087. top:115px;
  3088. width:280px;
  3089. height:30px;
  3090. display:flex;
  3091. }
  3092. #u194453 .text {
  3093. position:absolute;
  3094. align-self:center;
  3095. padding:2px 2px 2px 2px;
  3096. box-sizing:border-box;
  3097. width:100%;
  3098. }
  3099. #u194453_text {
  3100. border-width:0px;
  3101. word-wrap:break-word;
  3102. text-transform:none;
  3103. visibility:hidden;
  3104. }
  3105. #u194454_input {
  3106. position:absolute;
  3107. left:0px;
  3108. top:0px;
  3109. width:260px;
  3110. height:25px;
  3111. padding:2px 2px 2px 2px;
  3112. font-family:'ArialMT', 'Arial', sans-serif;
  3113. font-weight:400;
  3114. font-style:normal;
  3115. font-size:13px;
  3116. letter-spacing:normal;
  3117. color:#000000;
  3118. vertical-align:none;
  3119. text-align:left;
  3120. text-transform:none;
  3121. background-color:transparent;
  3122. border-color:transparent;
  3123. }
  3124. #u194454_input.disabled {
  3125. position:absolute;
  3126. left:0px;
  3127. top:0px;
  3128. width:260px;
  3129. height:25px;
  3130. padding:2px 2px 2px 2px;
  3131. font-family:'ArialMT', 'Arial', sans-serif;
  3132. font-weight:400;
  3133. font-style:normal;
  3134. font-size:13px;
  3135. letter-spacing:normal;
  3136. color:#000000;
  3137. vertical-align:none;
  3138. text-align:left;
  3139. text-transform:none;
  3140. background-color:transparent;
  3141. border-color:transparent;
  3142. }
  3143. #u194454_div {
  3144. border-width:0px;
  3145. position:absolute;
  3146. left:0px;
  3147. top:0px;
  3148. width:260px;
  3149. height:25px;
  3150. background:inherit;
  3151. background-color:rgba(242, 242, 242, 1);
  3152. border:none;
  3153. border-radius:0px;
  3154. -moz-box-shadow:none;
  3155. -webkit-box-shadow:none;
  3156. box-shadow:none;
  3157. }
  3158. #u194454 {
  3159. border-width:0px;
  3160. position:absolute;
  3161. left:51px;
  3162. top:116px;
  3163. width:260px;
  3164. height:25px;
  3165. display:flex;
  3166. }
  3167. #u194454 .text {
  3168. position:absolute;
  3169. align-self:center;
  3170. padding:2px 2px 2px 2px;
  3171. box-sizing:border-box;
  3172. width:100%;
  3173. }
  3174. #u194454_div.disabled {
  3175. border-width:0px;
  3176. position:absolute;
  3177. left:0px;
  3178. top:0px;
  3179. width:260px;
  3180. height:25px;
  3181. background:inherit;
  3182. background-color:rgba(240, 240, 240, 1);
  3183. border:none;
  3184. border-radius:0px;
  3185. -moz-box-shadow:none;
  3186. -webkit-box-shadow:none;
  3187. box-shadow:none;
  3188. }
  3189. #u194454.disabled {
  3190. }
  3191. #u194455_img {
  3192. border-width:0px;
  3193. position:absolute;
  3194. left:0px;
  3195. top:0px;
  3196. width:12px;
  3197. height:12px;
  3198. }
  3199. #u194455 {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:303px;
  3203. top:124px;
  3204. width:12px;
  3205. height:12px;
  3206. display:flex;
  3207. }
  3208. #u194455 .text {
  3209. position:absolute;
  3210. align-self:center;
  3211. padding:2px 2px 2px 2px;
  3212. box-sizing:border-box;
  3213. width:100%;
  3214. }
  3215. #u194455_text {
  3216. border-width:0px;
  3217. word-wrap:break-word;
  3218. text-transform:none;
  3219. visibility:hidden;
  3220. }
  3221. #u194456_div {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:0px;
  3225. top:0px;
  3226. width:49px;
  3227. height:30px;
  3228. background:inherit;
  3229. background-color:rgba(255, 255, 255, 0);
  3230. border:none;
  3231. border-left:0px;
  3232. border-top:0px;
  3233. border-right:0px;
  3234. border-radius:0px;
  3235. border-bottom-right-radius:0px;
  3236. border-bottom-left-radius:0px;
  3237. -moz-box-shadow:none;
  3238. -webkit-box-shadow:none;
  3239. box-shadow:none;
  3240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3241. font-weight:400;
  3242. font-style:normal;
  3243. font-size:12px;
  3244. color:#1890FF;
  3245. line-height:30px;
  3246. }
  3247. #u194456 {
  3248. border-width:0px;
  3249. position:absolute;
  3250. left:341px;
  3251. top:115px;
  3252. width:49px;
  3253. height:30px;
  3254. display:flex;
  3255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3256. font-weight:400;
  3257. font-style:normal;
  3258. font-size:12px;
  3259. color:#1890FF;
  3260. line-height:30px;
  3261. }
  3262. #u194456 .text {
  3263. position:absolute;
  3264. align-self:flex-start;
  3265. padding:0px 0px 0px 0px;
  3266. box-sizing:border-box;
  3267. width:100%;
  3268. }
  3269. #u194456_text {
  3270. border-width:0px;
  3271. white-space:nowrap;
  3272. text-transform:none;
  3273. }
  3274. #u194457_div {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:0px;
  3278. top:0px;
  3279. width:63px;
  3280. height:14px;
  3281. background:inherit;
  3282. background-color:rgba(255, 255, 255, 0);
  3283. border:none;
  3284. border-left:0px;
  3285. border-top:0px;
  3286. border-right:0px;
  3287. border-radius:0px;
  3288. border-bottom-right-radius:0px;
  3289. border-bottom-left-radius:0px;
  3290. -moz-box-shadow:none;
  3291. -webkit-box-shadow:none;
  3292. box-shadow:none;
  3293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3294. font-weight:400;
  3295. font-style:normal;
  3296. font-size:10px;
  3297. color:#AAAAAA;
  3298. }
  3299. #u194457 {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:42px;
  3303. top:184px;
  3304. width:63px;
  3305. height:14px;
  3306. display:flex;
  3307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3308. font-weight:400;
  3309. font-style:normal;
  3310. font-size:10px;
  3311. color:#AAAAAA;
  3312. }
  3313. #u194457 .text {
  3314. position:absolute;
  3315. align-self:flex-start;
  3316. padding:0px 0px 0px 0px;
  3317. box-sizing:border-box;
  3318. width:100%;
  3319. }
  3320. #u194457_text {
  3321. border-width:0px;
  3322. white-space:nowrap;
  3323. text-transform:none;
  3324. }
  3325. #u194458_div {
  3326. border-width:0px;
  3327. position:absolute;
  3328. left:0px;
  3329. top:0px;
  3330. width:97px;
  3331. height:22px;
  3332. background:inherit;
  3333. background-color:rgba(255, 255, 255, 0);
  3334. border:none;
  3335. border-radius:0px;
  3336. -moz-box-shadow:none;
  3337. -webkit-box-shadow:none;
  3338. box-shadow:none;
  3339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3340. font-weight:400;
  3341. font-style:normal;
  3342. font-size:16px;
  3343. color:#000000;
  3344. }
  3345. #u194458 {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:68px;
  3349. top:76px;
  3350. width:97px;
  3351. height:22px;
  3352. display:flex;
  3353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3354. font-weight:400;
  3355. font-style:normal;
  3356. font-size:16px;
  3357. color:#000000;
  3358. }
  3359. #u194458 .text {
  3360. position:absolute;
  3361. align-self:flex-start;
  3362. padding:0px 0px 0px 0px;
  3363. box-sizing:border-box;
  3364. width:100%;
  3365. }
  3366. #u194458_text {
  3367. border-width:0px;
  3368. white-space:nowrap;
  3369. text-transform:none;
  3370. }
  3371. #u194459_div {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:0px;
  3375. top:0px;
  3376. width:11px;
  3377. height:11px;
  3378. background:inherit;
  3379. background-color:rgba(217, 0, 27, 1);
  3380. border:none;
  3381. border-radius:7px;
  3382. -moz-box-shadow:none;
  3383. -webkit-box-shadow:none;
  3384. box-shadow:none;
  3385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3386. font-weight:400;
  3387. font-style:normal;
  3388. font-size:8px;
  3389. color:#FFFFFF;
  3390. text-align:center;
  3391. }
  3392. #u194459 {
  3393. border-width:0px;
  3394. position:absolute;
  3395. left:80px;
  3396. top:150px;
  3397. width:11px;
  3398. height:11px;
  3399. display:flex;
  3400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3401. font-weight:400;
  3402. font-style:normal;
  3403. font-size:8px;
  3404. color:#FFFFFF;
  3405. text-align:center;
  3406. }
  3407. #u194459 .text {
  3408. position:absolute;
  3409. align-self:flex-start;
  3410. padding:0px 0px 0px 0px;
  3411. box-sizing:border-box;
  3412. width:100%;
  3413. }
  3414. #u194459_text {
  3415. border-width:0px;
  3416. word-wrap:break-word;
  3417. text-transform:none;
  3418. }
  3419. #u194460_div {
  3420. border-width:0px;
  3421. position:absolute;
  3422. left:0px;
  3423. top:0px;
  3424. width:43px;
  3425. height:21px;
  3426. background:inherit;
  3427. background-color:rgba(242, 242, 242, 1);
  3428. border:none;
  3429. border-radius:17px;
  3430. -moz-box-shadow:none;
  3431. -webkit-box-shadow:none;
  3432. box-shadow:none;
  3433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3434. font-weight:400;
  3435. font-style:normal;
  3436. font-size:12px;
  3437. color:#555555;
  3438. }
  3439. #u194460 {
  3440. border-width:0px;
  3441. position:absolute;
  3442. left:211px;
  3443. top:155px;
  3444. width:43px;
  3445. height:21px;
  3446. display:flex;
  3447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3448. font-weight:400;
  3449. font-style:normal;
  3450. font-size:12px;
  3451. color:#555555;
  3452. }
  3453. #u194460 .text {
  3454. position:absolute;
  3455. align-self:center;
  3456. padding:2px 3px 2px 3px;
  3457. box-sizing:border-box;
  3458. width:100%;
  3459. }
  3460. #u194460_text {
  3461. border-width:0px;
  3462. white-space:nowrap;
  3463. text-transform:none;
  3464. }
  3465. #u194461_div {
  3466. border-width:0px;
  3467. position:absolute;
  3468. left:0px;
  3469. top:0px;
  3470. width:253px;
  3471. height:60px;
  3472. background:inherit;
  3473. background-color:rgba(255, 255, 255, 0);
  3474. border:none;
  3475. border-left:0px;
  3476. border-top:0px;
  3477. border-right:0px;
  3478. border-radius:0px;
  3479. border-bottom-right-radius:0px;
  3480. border-bottom-left-radius:0px;
  3481. -moz-box-shadow:none;
  3482. -webkit-box-shadow:none;
  3483. box-shadow:none;
  3484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3485. font-weight:400;
  3486. font-style:normal;
  3487. font-size:12px;
  3488. color:#1890FF;
  3489. line-height:30px;
  3490. }
  3491. #u194461 {
  3492. border-width:0px;
  3493. position:absolute;
  3494. left:50px;
  3495. top:393px;
  3496. width:253px;
  3497. height:60px;
  3498. display:flex;
  3499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3500. font-weight:400;
  3501. font-style:normal;
  3502. font-size:12px;
  3503. color:#1890FF;
  3504. line-height:30px;
  3505. }
  3506. #u194461 .text {
  3507. position:absolute;
  3508. align-self:flex-start;
  3509. padding:0px 0px 0px 0px;
  3510. box-sizing:border-box;
  3511. width:100%;
  3512. }
  3513. #u194461_text {
  3514. border-width:0px;
  3515. white-space:nowrap;
  3516. text-transform:none;
  3517. }
  3518. #u194462_div {
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:0px;
  3522. top:0px;
  3523. width:43px;
  3524. height:21px;
  3525. background:inherit;
  3526. background-color:rgba(242, 242, 242, 1);
  3527. border:none;
  3528. border-radius:17px;
  3529. -moz-box-shadow:none;
  3530. -webkit-box-shadow:none;
  3531. box-shadow:none;
  3532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3533. font-weight:400;
  3534. font-style:normal;
  3535. font-size:12px;
  3536. color:#555555;
  3537. }
  3538. #u194462 {
  3539. border-width:0px;
  3540. position:absolute;
  3541. left:267px;
  3542. top:155px;
  3543. width:43px;
  3544. height:21px;
  3545. display:flex;
  3546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3547. font-weight:400;
  3548. font-style:normal;
  3549. font-size:12px;
  3550. color:#555555;
  3551. }
  3552. #u194462 .text {
  3553. position:absolute;
  3554. align-self:center;
  3555. padding:2px 3px 2px 3px;
  3556. box-sizing:border-box;
  3557. width:100%;
  3558. }
  3559. #u194462_text {
  3560. border-width:0px;
  3561. white-space:nowrap;
  3562. text-transform:none;
  3563. }
  3564. #u194464_img {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:0px;
  3568. top:0px;
  3569. width:433px;
  3570. height:865px;
  3571. }
  3572. #u194464 {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:464px;
  3576. top:0px;
  3577. width:433px;
  3578. height:865px;
  3579. display:flex;
  3580. }
  3581. #u194464 .text {
  3582. position:absolute;
  3583. align-self:center;
  3584. padding:2px 2px 2px 2px;
  3585. box-sizing:border-box;
  3586. width:100%;
  3587. }
  3588. #u194464_text {
  3589. border-width:0px;
  3590. word-wrap:break-word;
  3591. text-transform:none;
  3592. visibility:hidden;
  3593. }
  3594. #u194465_div {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:0px;
  3598. top:0px;
  3599. width:375px;
  3600. height:40px;
  3601. background:inherit;
  3602. background-color:rgba(255, 255, 255, 1);
  3603. box-sizing:border-box;
  3604. border-width:1px;
  3605. border-style:solid;
  3606. border-color:rgba(215, 215, 215, 1);
  3607. border-left:0px;
  3608. border-top:0px;
  3609. border-right:0px;
  3610. border-radius:0px;
  3611. border-bottom-right-radius:0px;
  3612. border-bottom-left-radius:0px;
  3613. -moz-box-shadow:none;
  3614. -webkit-box-shadow:none;
  3615. box-shadow:none;
  3616. }
  3617. #u194465 {
  3618. border-width:0px;
  3619. position:absolute;
  3620. left:493px;
  3621. top:67px;
  3622. width:375px;
  3623. height:40px;
  3624. display:flex;
  3625. }
  3626. #u194465 .text {
  3627. position:absolute;
  3628. align-self:center;
  3629. padding:2px 2px 2px 2px;
  3630. box-sizing:border-box;
  3631. width:100%;
  3632. }
  3633. #u194465_text {
  3634. border-width:0px;
  3635. word-wrap:break-word;
  3636. text-transform:none;
  3637. visibility:hidden;
  3638. }
  3639. #u194466 {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:0px;
  3643. top:0px;
  3644. width:0px;
  3645. height:0px;
  3646. }
  3647. #u194467_div {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:0px;
  3651. top:0px;
  3652. width:88px;
  3653. height:32px;
  3654. background:inherit;
  3655. background-color:rgba(255, 255, 255, 1);
  3656. box-sizing:border-box;
  3657. border-width:1px;
  3658. border-style:solid;
  3659. border-color:rgba(242, 242, 242, 1);
  3660. border-radius:33px;
  3661. -moz-box-shadow:none;
  3662. -webkit-box-shadow:none;
  3663. box-shadow:none;
  3664. }
  3665. #u194467 {
  3666. border-width:0px;
  3667. position:absolute;
  3668. left:773px;
  3669. top:71px;
  3670. width:88px;
  3671. height:32px;
  3672. display:flex;
  3673. }
  3674. #u194467 .text {
  3675. position:absolute;
  3676. align-self:center;
  3677. padding:2px 2px 2px 2px;
  3678. box-sizing:border-box;
  3679. width:100%;
  3680. }
  3681. #u194467_text {
  3682. border-width:0px;
  3683. word-wrap:break-word;
  3684. text-transform:none;
  3685. visibility:hidden;
  3686. }
  3687. #u194468 {
  3688. border-width:0px;
  3689. position:absolute;
  3690. left:0px;
  3691. top:0px;
  3692. width:0px;
  3693. height:0px;
  3694. }
  3695. #u194469_img {
  3696. border-width:0px;
  3697. position:absolute;
  3698. left:0px;
  3699. top:0px;
  3700. width:18px;
  3701. height:18px;
  3702. }
  3703. #u194469 {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:836px;
  3707. top:78px;
  3708. width:18px;
  3709. height:18px;
  3710. display:flex;
  3711. }
  3712. #u194469 .text {
  3713. position:absolute;
  3714. align-self:center;
  3715. padding:2px 2px 2px 2px;
  3716. box-sizing:border-box;
  3717. width:100%;
  3718. }
  3719. #u194469_text {
  3720. border-width:0px;
  3721. word-wrap:break-word;
  3722. text-transform:none;
  3723. visibility:hidden;
  3724. }
  3725. #u194470_img {
  3726. border-width:0px;
  3727. position:absolute;
  3728. left:0px;
  3729. top:0px;
  3730. width:6px;
  3731. height:6px;
  3732. }
  3733. #u194470 {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:842px;
  3737. top:84px;
  3738. width:6px;
  3739. height:6px;
  3740. display:flex;
  3741. }
  3742. #u194470 .text {
  3743. position:absolute;
  3744. align-self:center;
  3745. padding:2px 2px 2px 2px;
  3746. box-sizing:border-box;
  3747. width:100%;
  3748. }
  3749. #u194470_text {
  3750. border-width:0px;
  3751. word-wrap:break-word;
  3752. text-transform:none;
  3753. visibility:hidden;
  3754. }
  3755. #u194471 {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:0px;
  3759. top:0px;
  3760. width:0px;
  3761. height:0px;
  3762. }
  3763. #u194472_img {
  3764. border-width:0px;
  3765. position:absolute;
  3766. left:0px;
  3767. top:0px;
  3768. width:5px;
  3769. height:5px;
  3770. }
  3771. #u194472 {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:787px;
  3775. top:85px;
  3776. width:5px;
  3777. height:5px;
  3778. display:flex;
  3779. }
  3780. #u194472 .text {
  3781. position:absolute;
  3782. align-self:center;
  3783. padding:2px 2px 2px 2px;
  3784. box-sizing:border-box;
  3785. width:100%;
  3786. }
  3787. #u194472_text {
  3788. border-width:0px;
  3789. word-wrap:break-word;
  3790. text-transform:none;
  3791. visibility:hidden;
  3792. }
  3793. #u194473_img {
  3794. border-width:0px;
  3795. position:absolute;
  3796. left:0px;
  3797. top:0px;
  3798. width:5px;
  3799. height:5px;
  3800. }
  3801. #u194473 {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:803px;
  3805. top:85px;
  3806. width:5px;
  3807. height:5px;
  3808. display:flex;
  3809. }
  3810. #u194473 .text {
  3811. position:absolute;
  3812. align-self:center;
  3813. padding:2px 2px 2px 2px;
  3814. box-sizing:border-box;
  3815. width:100%;
  3816. }
  3817. #u194473_text {
  3818. border-width:0px;
  3819. word-wrap:break-word;
  3820. text-transform:none;
  3821. visibility:hidden;
  3822. }
  3823. #u194474_img {
  3824. border-width:0px;
  3825. position:absolute;
  3826. left:0px;
  3827. top:0px;
  3828. width:7px;
  3829. height:7px;
  3830. }
  3831. #u194474 {
  3832. border-width:0px;
  3833. position:absolute;
  3834. left:794px;
  3835. top:84px;
  3836. width:7px;
  3837. height:7px;
  3838. display:flex;
  3839. }
  3840. #u194474 .text {
  3841. position:absolute;
  3842. align-self:center;
  3843. padding:2px 2px 2px 2px;
  3844. box-sizing:border-box;
  3845. width:100%;
  3846. }
  3847. #u194474_text {
  3848. border-width:0px;
  3849. word-wrap:break-word;
  3850. text-transform:none;
  3851. visibility:hidden;
  3852. }
  3853. #u194475_img {
  3854. border-width:0px;
  3855. position:absolute;
  3856. left:0px;
  3857. top:0px;
  3858. width:19px;
  3859. height:2px;
  3860. }
  3861. #u194475 {
  3862. border-width:0px;
  3863. position:absolute;
  3864. left:811px;
  3865. top:87px;
  3866. width:18px;
  3867. height:1px;
  3868. display:flex;
  3869. -webkit-transform:rotate(90deg);
  3870. -moz-transform:rotate(90deg);
  3871. -ms-transform:rotate(90deg);
  3872. transform:rotate(90deg);
  3873. }
  3874. #u194475 .text {
  3875. position:absolute;
  3876. align-self:center;
  3877. padding:2px 2px 2px 2px;
  3878. box-sizing:border-box;
  3879. width:100%;
  3880. }
  3881. #u194475_text {
  3882. border-width:0px;
  3883. word-wrap:break-word;
  3884. text-transform:none;
  3885. visibility:hidden;
  3886. }
  3887. #u194476_img {
  3888. border-width:0px;
  3889. position:absolute;
  3890. left:0px;
  3891. top:0px;
  3892. width:375px;
  3893. height:44px;
  3894. }
  3895. #u194476 {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:493px;
  3899. top:24px;
  3900. width:375px;
  3901. height:44px;
  3902. display:flex;
  3903. }
  3904. #u194476 .text {
  3905. position:absolute;
  3906. align-self:center;
  3907. padding:2px 2px 2px 2px;
  3908. box-sizing:border-box;
  3909. width:100%;
  3910. }
  3911. #u194476_text {
  3912. border-width:0px;
  3913. word-wrap:break-word;
  3914. text-transform:none;
  3915. visibility:hidden;
  3916. }
  3917. #u194477_div {
  3918. border-width:0px;
  3919. position:absolute;
  3920. left:0px;
  3921. top:0px;
  3922. width:375px;
  3923. height:50px;
  3924. background:inherit;
  3925. background-color:rgba(255, 255, 255, 1);
  3926. box-sizing:border-box;
  3927. border-width:1px;
  3928. border-style:solid;
  3929. border-color:rgba(242, 242, 242, 1);
  3930. border-radius:26px;
  3931. border-top-left-radius:0px;
  3932. border-top-right-radius:0px;
  3933. -moz-box-shadow:none;
  3934. -webkit-box-shadow:none;
  3935. box-shadow:none;
  3936. }
  3937. #u194477 {
  3938. border-width:0px;
  3939. position:absolute;
  3940. left:493px;
  3941. top:788px;
  3942. width:375px;
  3943. height:50px;
  3944. display:flex;
  3945. }
  3946. #u194477 .text {
  3947. position:absolute;
  3948. align-self:center;
  3949. padding:2px 2px 2px 2px;
  3950. box-sizing:border-box;
  3951. width:100%;
  3952. }
  3953. #u194477_text {
  3954. border-width:0px;
  3955. word-wrap:break-word;
  3956. text-transform:none;
  3957. visibility:hidden;
  3958. }
  3959. #u194478 {
  3960. border-width:0px;
  3961. position:absolute;
  3962. left:0px;
  3963. top:0px;
  3964. width:0px;
  3965. height:0px;
  3966. }
  3967. #u194479_img {
  3968. border-width:0px;
  3969. position:absolute;
  3970. left:0px;
  3971. top:0px;
  3972. width:24px;
  3973. height:24px;
  3974. }
  3975. #u194479 {
  3976. border-width:0px;
  3977. position:absolute;
  3978. left:533px;
  3979. top:792px;
  3980. width:24px;
  3981. height:24px;
  3982. display:flex;
  3983. font-size:8px;
  3984. }
  3985. #u194479 .text {
  3986. position:absolute;
  3987. align-self:center;
  3988. padding:2px 2px 2px 2px;
  3989. box-sizing:border-box;
  3990. width:100%;
  3991. }
  3992. #u194479_text {
  3993. border-width:0px;
  3994. word-wrap:break-word;
  3995. text-transform:none;
  3996. }
  3997. #u194480_div {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:0px;
  4001. top:0px;
  4002. width:25px;
  4003. height:17px;
  4004. background:inherit;
  4005. background-color:rgba(255, 255, 255, 0);
  4006. border:none;
  4007. border-radius:0px;
  4008. -moz-box-shadow:none;
  4009. -webkit-box-shadow:none;
  4010. box-shadow:none;
  4011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4012. font-weight:400;
  4013. font-style:normal;
  4014. font-size:12px;
  4015. }
  4016. #u194480 {
  4017. border-width:0px;
  4018. position:absolute;
  4019. left:533px;
  4020. top:817px;
  4021. width:25px;
  4022. height:17px;
  4023. display:flex;
  4024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4025. font-weight:400;
  4026. font-style:normal;
  4027. font-size:12px;
  4028. }
  4029. #u194480 .text {
  4030. position:absolute;
  4031. align-self:flex-start;
  4032. padding:0px 0px 0px 0px;
  4033. box-sizing:border-box;
  4034. width:100%;
  4035. }
  4036. #u194480_text {
  4037. border-width:0px;
  4038. white-space:nowrap;
  4039. text-transform:none;
  4040. }
  4041. #u194481 {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:0px;
  4045. top:0px;
  4046. width:0px;
  4047. height:0px;
  4048. }
  4049. #u194482_img {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:0px;
  4053. top:0px;
  4054. width:24px;
  4055. height:24px;
  4056. }
  4057. #u194482 {
  4058. border-width:0px;
  4059. position:absolute;
  4060. left:803px;
  4061. top:794px;
  4062. width:24px;
  4063. height:24px;
  4064. display:flex;
  4065. font-size:8px;
  4066. }
  4067. #u194482 .text {
  4068. position:absolute;
  4069. align-self:center;
  4070. padding:2px 2px 2px 2px;
  4071. box-sizing:border-box;
  4072. width:100%;
  4073. }
  4074. #u194482_text {
  4075. border-width:0px;
  4076. word-wrap:break-word;
  4077. text-transform:none;
  4078. }
  4079. #u194483_div {
  4080. border-width:0px;
  4081. position:absolute;
  4082. left:0px;
  4083. top:0px;
  4084. width:25px;
  4085. height:17px;
  4086. background:inherit;
  4087. background-color:rgba(255, 255, 255, 0);
  4088. border:none;
  4089. border-radius:0px;
  4090. -moz-box-shadow:none;
  4091. -webkit-box-shadow:none;
  4092. box-shadow:none;
  4093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4094. font-weight:400;
  4095. font-style:normal;
  4096. font-size:12px;
  4097. }
  4098. #u194483 {
  4099. border-width:0px;
  4100. position:absolute;
  4101. left:803px;
  4102. top:819px;
  4103. width:25px;
  4104. height:17px;
  4105. display:flex;
  4106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4107. font-weight:400;
  4108. font-style:normal;
  4109. font-size:12px;
  4110. }
  4111. #u194483 .text {
  4112. position:absolute;
  4113. align-self:flex-start;
  4114. padding:0px 0px 0px 0px;
  4115. box-sizing:border-box;
  4116. width:100%;
  4117. }
  4118. #u194483_text {
  4119. border-width:0px;
  4120. white-space:nowrap;
  4121. text-transform:none;
  4122. }
  4123. #u194484_div {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:0px;
  4127. top:0px;
  4128. width:375px;
  4129. height:681px;
  4130. background:inherit;
  4131. background-color:rgba(242, 242, 242, 0.462745098039216);
  4132. border:none;
  4133. border-radius:0px;
  4134. -moz-box-shadow:none;
  4135. -webkit-box-shadow:none;
  4136. box-shadow:none;
  4137. }
  4138. #u194484 {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:493px;
  4142. top:107px;
  4143. width:375px;
  4144. height:681px;
  4145. display:flex;
  4146. }
  4147. #u194484 .text {
  4148. position:absolute;
  4149. align-self:center;
  4150. padding:2px 2px 2px 2px;
  4151. box-sizing:border-box;
  4152. width:100%;
  4153. }
  4154. #u194484_text {
  4155. border-width:0px;
  4156. word-wrap:break-word;
  4157. text-transform:none;
  4158. visibility:hidden;
  4159. }
  4160. #u194485 {
  4161. border-width:0px;
  4162. position:absolute;
  4163. left:0px;
  4164. top:0px;
  4165. width:0px;
  4166. height:0px;
  4167. }
  4168. #u194486_img {
  4169. border-width:0px;
  4170. position:absolute;
  4171. left:0px;
  4172. top:0px;
  4173. width:24px;
  4174. height:24px;
  4175. }
  4176. #u194486 {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:715px;
  4180. top:792px;
  4181. width:24px;
  4182. height:24px;
  4183. display:flex;
  4184. font-size:8px;
  4185. }
  4186. #u194486 .text {
  4187. position:absolute;
  4188. align-self:center;
  4189. padding:2px 2px 2px 2px;
  4190. box-sizing:border-box;
  4191. width:100%;
  4192. }
  4193. #u194486_text {
  4194. border-width:0px;
  4195. word-wrap:break-word;
  4196. text-transform:none;
  4197. }
  4198. #u194487_div {
  4199. border-width:0px;
  4200. position:absolute;
  4201. left:0px;
  4202. top:0px;
  4203. width:37px;
  4204. height:17px;
  4205. background:inherit;
  4206. background-color:rgba(255, 255, 255, 0);
  4207. border:none;
  4208. border-radius:0px;
  4209. -moz-box-shadow:none;
  4210. -webkit-box-shadow:none;
  4211. box-shadow:none;
  4212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4213. font-weight:400;
  4214. font-style:normal;
  4215. font-size:12px;
  4216. }
  4217. #u194487 {
  4218. border-width:0px;
  4219. position:absolute;
  4220. left:709px;
  4221. top:817px;
  4222. width:37px;
  4223. height:17px;
  4224. display:flex;
  4225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4226. font-weight:400;
  4227. font-style:normal;
  4228. font-size:12px;
  4229. }
  4230. #u194487 .text {
  4231. position:absolute;
  4232. align-self:flex-start;
  4233. padding:0px 0px 0px 0px;
  4234. box-sizing:border-box;
  4235. width:100%;
  4236. }
  4237. #u194487_text {
  4238. border-width:0px;
  4239. white-space:nowrap;
  4240. text-transform:none;
  4241. }
  4242. #u194488 {
  4243. border-width:0px;
  4244. position:absolute;
  4245. left:0px;
  4246. top:0px;
  4247. width:0px;
  4248. height:0px;
  4249. }
  4250. #u194489_img {
  4251. border-width:0px;
  4252. position:absolute;
  4253. left:0px;
  4254. top:0px;
  4255. width:24px;
  4256. height:24px;
  4257. }
  4258. #u194489 {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:621px;
  4262. top:792px;
  4263. width:24px;
  4264. height:24px;
  4265. display:flex;
  4266. font-size:8px;
  4267. }
  4268. #u194489 .text {
  4269. position:absolute;
  4270. align-self:center;
  4271. padding:2px 2px 2px 2px;
  4272. box-sizing:border-box;
  4273. width:100%;
  4274. }
  4275. #u194489_text {
  4276. border-width:0px;
  4277. word-wrap:break-word;
  4278. text-transform:none;
  4279. }
  4280. #u194490_div {
  4281. border-width:0px;
  4282. position:absolute;
  4283. left:0px;
  4284. top:0px;
  4285. width:37px;
  4286. height:17px;
  4287. background:inherit;
  4288. background-color:rgba(255, 255, 255, 0);
  4289. border:none;
  4290. border-radius:0px;
  4291. -moz-box-shadow:none;
  4292. -webkit-box-shadow:none;
  4293. box-shadow:none;
  4294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4295. font-weight:400;
  4296. font-style:normal;
  4297. font-size:12px;
  4298. }
  4299. #u194490 {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:615px;
  4303. top:817px;
  4304. width:37px;
  4305. height:17px;
  4306. display:flex;
  4307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4308. font-weight:400;
  4309. font-style:normal;
  4310. font-size:12px;
  4311. }
  4312. #u194490 .text {
  4313. position:absolute;
  4314. align-self:flex-start;
  4315. padding:0px 0px 0px 0px;
  4316. box-sizing:border-box;
  4317. width:100%;
  4318. }
  4319. #u194490_text {
  4320. border-width:0px;
  4321. white-space:nowrap;
  4322. text-transform:none;
  4323. }
  4324. #u194491_div {
  4325. border-width:0px;
  4326. position:absolute;
  4327. left:0px;
  4328. top:0px;
  4329. width:375px;
  4330. height:1197px;
  4331. background:inherit;
  4332. background-color:rgba(242, 242, 242, 0.996078431372549);
  4333. border:none;
  4334. border-top:0px;
  4335. border-radius:28px;
  4336. border-top-left-radius:0px;
  4337. border-top-right-radius:0px;
  4338. -moz-box-shadow:none;
  4339. -webkit-box-shadow:none;
  4340. box-shadow:none;
  4341. }
  4342. #u194491 {
  4343. border-width:0px;
  4344. position:absolute;
  4345. left:492px;
  4346. top:107px;
  4347. width:375px;
  4348. height:1197px;
  4349. display:flex;
  4350. }
  4351. #u194491 .text {
  4352. position:absolute;
  4353. align-self:center;
  4354. padding:2px 2px 2px 2px;
  4355. box-sizing:border-box;
  4356. width:100%;
  4357. }
  4358. #u194491_text {
  4359. border-width:0px;
  4360. word-wrap:break-word;
  4361. text-transform:none;
  4362. visibility:hidden;
  4363. }
  4364. #u194492 {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:0px;
  4368. top:0px;
  4369. width:0px;
  4370. height:0px;
  4371. }
  4372. #u194493_div {
  4373. border-width:0px;
  4374. position:absolute;
  4375. left:0px;
  4376. top:0px;
  4377. width:88px;
  4378. height:32px;
  4379. background:inherit;
  4380. background-color:rgba(255, 255, 255, 1);
  4381. box-sizing:border-box;
  4382. border-width:1px;
  4383. border-style:solid;
  4384. border-color:rgba(242, 242, 242, 1);
  4385. border-radius:33px;
  4386. -moz-box-shadow:none;
  4387. -webkit-box-shadow:none;
  4388. box-shadow:none;
  4389. }
  4390. #u194493 {
  4391. border-width:0px;
  4392. position:absolute;
  4393. left:772px;
  4394. top:71px;
  4395. width:88px;
  4396. height:32px;
  4397. display:flex;
  4398. }
  4399. #u194493 .text {
  4400. position:absolute;
  4401. align-self:center;
  4402. padding:2px 2px 2px 2px;
  4403. box-sizing:border-box;
  4404. width:100%;
  4405. }
  4406. #u194493_text {
  4407. border-width:0px;
  4408. word-wrap:break-word;
  4409. text-transform:none;
  4410. visibility:hidden;
  4411. }
  4412. #u194494 {
  4413. border-width:0px;
  4414. position:absolute;
  4415. left:0px;
  4416. top:0px;
  4417. width:0px;
  4418. height:0px;
  4419. }
  4420. #u194495_img {
  4421. border-width:0px;
  4422. position:absolute;
  4423. left:0px;
  4424. top:0px;
  4425. width:18px;
  4426. height:18px;
  4427. }
  4428. #u194495 {
  4429. border-width:0px;
  4430. position:absolute;
  4431. left:835px;
  4432. top:78px;
  4433. width:18px;
  4434. height:18px;
  4435. display:flex;
  4436. }
  4437. #u194495 .text {
  4438. position:absolute;
  4439. align-self:center;
  4440. padding:2px 2px 2px 2px;
  4441. box-sizing:border-box;
  4442. width:100%;
  4443. }
  4444. #u194495_text {
  4445. border-width:0px;
  4446. word-wrap:break-word;
  4447. text-transform:none;
  4448. visibility:hidden;
  4449. }
  4450. #u194496_img {
  4451. border-width:0px;
  4452. position:absolute;
  4453. left:0px;
  4454. top:0px;
  4455. width:6px;
  4456. height:6px;
  4457. }
  4458. #u194496 {
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:841px;
  4462. top:84px;
  4463. width:6px;
  4464. height:6px;
  4465. display:flex;
  4466. }
  4467. #u194496 .text {
  4468. position:absolute;
  4469. align-self:center;
  4470. padding:2px 2px 2px 2px;
  4471. box-sizing:border-box;
  4472. width:100%;
  4473. }
  4474. #u194496_text {
  4475. border-width:0px;
  4476. word-wrap:break-word;
  4477. text-transform:none;
  4478. visibility:hidden;
  4479. }
  4480. #u194497 {
  4481. border-width:0px;
  4482. position:absolute;
  4483. left:0px;
  4484. top:0px;
  4485. width:0px;
  4486. height:0px;
  4487. }
  4488. #u194498_img {
  4489. border-width:0px;
  4490. position:absolute;
  4491. left:0px;
  4492. top:0px;
  4493. width:5px;
  4494. height:5px;
  4495. }
  4496. #u194498 {
  4497. border-width:0px;
  4498. position:absolute;
  4499. left:786px;
  4500. top:85px;
  4501. width:5px;
  4502. height:5px;
  4503. display:flex;
  4504. }
  4505. #u194498 .text {
  4506. position:absolute;
  4507. align-self:center;
  4508. padding:2px 2px 2px 2px;
  4509. box-sizing:border-box;
  4510. width:100%;
  4511. }
  4512. #u194498_text {
  4513. border-width:0px;
  4514. word-wrap:break-word;
  4515. text-transform:none;
  4516. visibility:hidden;
  4517. }
  4518. #u194499_img {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:0px;
  4522. top:0px;
  4523. width:5px;
  4524. height:5px;
  4525. }
  4526. #u194499 {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:802px;
  4530. top:85px;
  4531. width:5px;
  4532. height:5px;
  4533. display:flex;
  4534. }
  4535. #u194499 .text {
  4536. position:absolute;
  4537. align-self:center;
  4538. padding:2px 2px 2px 2px;
  4539. box-sizing:border-box;
  4540. width:100%;
  4541. }
  4542. #u194499_text {
  4543. border-width:0px;
  4544. word-wrap:break-word;
  4545. text-transform:none;
  4546. visibility:hidden;
  4547. }
  4548. #u194500_img {
  4549. border-width:0px;
  4550. position:absolute;
  4551. left:0px;
  4552. top:0px;
  4553. width:7px;
  4554. height:7px;
  4555. }
  4556. #u194500 {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:793px;
  4560. top:84px;
  4561. width:7px;
  4562. height:7px;
  4563. display:flex;
  4564. }
  4565. #u194500 .text {
  4566. position:absolute;
  4567. align-self:center;
  4568. padding:2px 2px 2px 2px;
  4569. box-sizing:border-box;
  4570. width:100%;
  4571. }
  4572. #u194500_text {
  4573. border-width:0px;
  4574. word-wrap:break-word;
  4575. text-transform:none;
  4576. visibility:hidden;
  4577. }
  4578. #u194501_img {
  4579. border-width:0px;
  4580. position:absolute;
  4581. left:0px;
  4582. top:0px;
  4583. width:19px;
  4584. height:2px;
  4585. }
  4586. #u194501 {
  4587. border-width:0px;
  4588. position:absolute;
  4589. left:810px;
  4590. top:87px;
  4591. width:18px;
  4592. height:1px;
  4593. display:flex;
  4594. -webkit-transform:rotate(90deg);
  4595. -moz-transform:rotate(90deg);
  4596. -ms-transform:rotate(90deg);
  4597. transform:rotate(90deg);
  4598. }
  4599. #u194501 .text {
  4600. position:absolute;
  4601. align-self:center;
  4602. padding:2px 2px 2px 2px;
  4603. box-sizing:border-box;
  4604. width:100%;
  4605. }
  4606. #u194501_text {
  4607. border-width:0px;
  4608. word-wrap:break-word;
  4609. text-transform:none;
  4610. visibility:hidden;
  4611. }
  4612. #u194502_div {
  4613. border-width:0px;
  4614. position:absolute;
  4615. left:0px;
  4616. top:0px;
  4617. width:12px;
  4618. height:12px;
  4619. background:inherit;
  4620. background-color:rgba(255, 255, 255, 0);
  4621. box-sizing:border-box;
  4622. border-width:2px;
  4623. border-style:solid;
  4624. border-color:rgba(51, 51, 51, 1);
  4625. border-right:0px;
  4626. border-bottom:0px;
  4627. border-radius:0px;
  4628. border-top-right-radius:0px;
  4629. border-bottom-left-radius:0px;
  4630. -moz-box-shadow:none;
  4631. -webkit-box-shadow:none;
  4632. box-shadow:none;
  4633. }
  4634. #u194502 {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:507px;
  4638. top:81px;
  4639. width:12px;
  4640. height:12px;
  4641. display:flex;
  4642. -webkit-transform:rotate(315deg);
  4643. -moz-transform:rotate(315deg);
  4644. -ms-transform:rotate(315deg);
  4645. transform:rotate(315deg);
  4646. }
  4647. #u194502 .text {
  4648. position:absolute;
  4649. align-self:center;
  4650. padding:2px 2px 2px 2px;
  4651. box-sizing:border-box;
  4652. width:100%;
  4653. }
  4654. #u194502_text {
  4655. border-width:0px;
  4656. word-wrap:break-word;
  4657. text-transform:none;
  4658. visibility:hidden;
  4659. }
  4660. #u194503_div {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:0px;
  4664. top:0px;
  4665. width:33px;
  4666. height:22px;
  4667. background:inherit;
  4668. background-color:rgba(255, 255, 255, 0);
  4669. border:none;
  4670. border-radius:0px;
  4671. -moz-box-shadow:none;
  4672. -webkit-box-shadow:none;
  4673. box-shadow:none;
  4674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4675. font-weight:400;
  4676. font-style:normal;
  4677. font-size:16px;
  4678. color:#000000;
  4679. }
  4680. #u194503 {
  4681. border-width:0px;
  4682. position:absolute;
  4683. left:531px;
  4684. top:76px;
  4685. width:33px;
  4686. height:22px;
  4687. display:flex;
  4688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4689. font-weight:400;
  4690. font-style:normal;
  4691. font-size:16px;
  4692. color:#000000;
  4693. }
  4694. #u194503 .text {
  4695. position:absolute;
  4696. align-self:flex-start;
  4697. padding:0px 0px 0px 0px;
  4698. box-sizing:border-box;
  4699. width:100%;
  4700. }
  4701. #u194503_text {
  4702. border-width:0px;
  4703. white-space:nowrap;
  4704. text-transform:none;
  4705. }
  4706. #u194504_div {
  4707. border-width:0px;
  4708. position:absolute;
  4709. left:0px;
  4710. top:0px;
  4711. width:375px;
  4712. height:100px;
  4713. background:inherit;
  4714. background-color:rgba(255, 255, 255, 1);
  4715. border:none;
  4716. border-radius:0px;
  4717. -moz-box-shadow:none;
  4718. -webkit-box-shadow:none;
  4719. box-shadow:none;
  4720. }
  4721. #u194504 {
  4722. border-width:0px;
  4723. position:absolute;
  4724. left:492px;
  4725. top:107px;
  4726. width:375px;
  4727. height:100px;
  4728. display:flex;
  4729. }
  4730. #u194504 .text {
  4731. position:absolute;
  4732. align-self:center;
  4733. padding:2px 2px 2px 2px;
  4734. box-sizing:border-box;
  4735. width:100%;
  4736. }
  4737. #u194504_text {
  4738. border-width:0px;
  4739. word-wrap:break-word;
  4740. text-transform:none;
  4741. visibility:hidden;
  4742. }
  4743. #u194505 {
  4744. border-width:0px;
  4745. position:absolute;
  4746. left:0px;
  4747. top:0px;
  4748. width:0px;
  4749. height:0px;
  4750. }
  4751. #u194506_div {
  4752. border-width:0px;
  4753. position:absolute;
  4754. left:0px;
  4755. top:0px;
  4756. width:375px;
  4757. height:60px;
  4758. background:inherit;
  4759. background-color:rgba(255, 255, 255, 1);
  4760. box-sizing:border-box;
  4761. border-width:1px;
  4762. border-style:solid;
  4763. border-color:rgba(242, 242, 242, 1);
  4764. border-radius:20px;
  4765. border-top-left-radius:0px;
  4766. border-top-right-radius:0px;
  4767. -moz-box-shadow:none;
  4768. -webkit-box-shadow:none;
  4769. box-shadow:none;
  4770. }
  4771. #u194506 {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:497px;
  4775. top:1244px;
  4776. width:375px;
  4777. height:60px;
  4778. display:flex;
  4779. }
  4780. #u194506 .text {
  4781. position:absolute;
  4782. align-self:center;
  4783. padding:2px 2px 2px 2px;
  4784. box-sizing:border-box;
  4785. width:100%;
  4786. }
  4787. #u194506_text {
  4788. border-width:0px;
  4789. word-wrap:break-word;
  4790. text-transform:none;
  4791. visibility:hidden;
  4792. }
  4793. #u194507_div {
  4794. border-width:0px;
  4795. position:absolute;
  4796. left:0px;
  4797. top:0px;
  4798. width:160px;
  4799. height:40px;
  4800. background:inherit;
  4801. background-color:rgba(0, 137, 254, 1);
  4802. border:none;
  4803. border-radius:63px;
  4804. -moz-box-shadow:none;
  4805. -webkit-box-shadow:none;
  4806. box-shadow:none;
  4807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4808. font-weight:400;
  4809. font-style:normal;
  4810. font-size:14px;
  4811. color:#FFFFFF;
  4812. }
  4813. #u194507 {
  4814. border-width:0px;
  4815. position:absolute;
  4816. left:692px;
  4817. top:1254px;
  4818. width:160px;
  4819. height:40px;
  4820. display:flex;
  4821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4822. font-weight:400;
  4823. font-style:normal;
  4824. font-size:14px;
  4825. color:#FFFFFF;
  4826. }
  4827. #u194507 .text {
  4828. position:absolute;
  4829. align-self:center;
  4830. padding:2px 2px 2px 2px;
  4831. box-sizing:border-box;
  4832. width:100%;
  4833. }
  4834. #u194507_text {
  4835. border-width:0px;
  4836. word-wrap:break-word;
  4837. text-transform:none;
  4838. }
  4839. #u194508_div {
  4840. border-width:0px;
  4841. position:absolute;
  4842. left:0px;
  4843. top:0px;
  4844. width:160px;
  4845. height:40px;
  4846. background:inherit;
  4847. background-color:rgba(255, 255, 255, 1);
  4848. box-sizing:border-box;
  4849. border-width:1px;
  4850. border-style:solid;
  4851. border-color:rgba(121, 121, 121, 1);
  4852. border-radius:63px;
  4853. -moz-box-shadow:none;
  4854. -webkit-box-shadow:none;
  4855. box-shadow:none;
  4856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4857. font-weight:400;
  4858. font-style:normal;
  4859. font-size:14px;
  4860. }
  4861. #u194508 {
  4862. border-width:0px;
  4863. position:absolute;
  4864. left:517px;
  4865. top:1254px;
  4866. width:160px;
  4867. height:40px;
  4868. display:flex;
  4869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4870. font-weight:400;
  4871. font-style:normal;
  4872. font-size:14px;
  4873. }
  4874. #u194508 .text {
  4875. position:absolute;
  4876. align-self:center;
  4877. padding:2px 2px 2px 2px;
  4878. box-sizing:border-box;
  4879. width:100%;
  4880. }
  4881. #u194508_text {
  4882. border-width:0px;
  4883. word-wrap:break-word;
  4884. text-transform:none;
  4885. }
  4886. #u194509 {
  4887. border-width:0px;
  4888. position:absolute;
  4889. left:0px;
  4890. top:0px;
  4891. width:0px;
  4892. height:0px;
  4893. }
  4894. #u194510_div {
  4895. border-width:0px;
  4896. position:absolute;
  4897. left:0px;
  4898. top:0px;
  4899. width:358px;
  4900. height:280px;
  4901. background:inherit;
  4902. background-color:rgba(255, 255, 255, 1);
  4903. border:none;
  4904. border-radius:6px;
  4905. -moz-box-shadow:none;
  4906. -webkit-box-shadow:none;
  4907. box-shadow:none;
  4908. }
  4909. #u194510 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:503px;
  4913. top:944px;
  4914. width:358px;
  4915. height:280px;
  4916. display:flex;
  4917. }
  4918. #u194510 .text {
  4919. position:absolute;
  4920. align-self:center;
  4921. padding:2px 2px 2px 2px;
  4922. box-sizing:border-box;
  4923. width:100%;
  4924. }
  4925. #u194510_text {
  4926. border-width:0px;
  4927. word-wrap:break-word;
  4928. text-transform:none;
  4929. visibility:hidden;
  4930. }
  4931. #u194511_div {
  4932. border-width:0px;
  4933. position:absolute;
  4934. left:0px;
  4935. top:0px;
  4936. width:57px;
  4937. height:30px;
  4938. background:inherit;
  4939. background-color:rgba(255, 255, 255, 0);
  4940. border:none;
  4941. border-left:0px;
  4942. border-top:0px;
  4943. border-right:0px;
  4944. border-radius:0px;
  4945. border-bottom-right-radius:0px;
  4946. border-bottom-left-radius:0px;
  4947. -moz-box-shadow:none;
  4948. -webkit-box-shadow:none;
  4949. box-shadow:none;
  4950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4951. font-weight:400;
  4952. font-style:normal;
  4953. font-size:14px;
  4954. line-height:30px;
  4955. }
  4956. #u194511 {
  4957. border-width:0px;
  4958. position:absolute;
  4959. left:517px;
  4960. top:954px;
  4961. width:57px;
  4962. height:30px;
  4963. display:flex;
  4964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4965. font-weight:400;
  4966. font-style:normal;
  4967. font-size:14px;
  4968. line-height:30px;
  4969. }
  4970. #u194511 .text {
  4971. position:absolute;
  4972. align-self:flex-start;
  4973. padding:0px 0px 0px 0px;
  4974. box-sizing:border-box;
  4975. width:100%;
  4976. }
  4977. #u194511_text {
  4978. border-width:0px;
  4979. white-space:nowrap;
  4980. text-transform:none;
  4981. }
  4982. #u194512_div {
  4983. border-width:0px;
  4984. position:absolute;
  4985. left:0px;
  4986. top:0px;
  4987. width:107px;
  4988. height:30px;
  4989. background:inherit;
  4990. background-color:rgba(255, 255, 255, 0);
  4991. border:none;
  4992. border-radius:0px;
  4993. -moz-box-shadow:none;
  4994. -webkit-box-shadow:none;
  4995. box-shadow:none;
  4996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4997. font-weight:400;
  4998. font-style:normal;
  4999. font-size:12px;
  5000. color:#7F7F7F;
  5001. text-align:right;
  5002. line-height:30px;
  5003. }
  5004. #u194512 {
  5005. border-width:0px;
  5006. position:absolute;
  5007. left:741px;
  5008. top:1064px;
  5009. width:107px;
  5010. height:30px;
  5011. display:flex;
  5012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5013. font-weight:400;
  5014. font-style:normal;
  5015. font-size:12px;
  5016. color:#7F7F7F;
  5017. text-align:right;
  5018. line-height:30px;
  5019. }
  5020. #u194512 .text {
  5021. position:absolute;
  5022. align-self:flex-start;
  5023. padding:0px 0px 0px 0px;
  5024. box-sizing:border-box;
  5025. width:100%;
  5026. }
  5027. #u194512_text {
  5028. border-width:0px;
  5029. white-space:nowrap;
  5030. text-transform:none;
  5031. }
  5032. #u194513_img {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:0px;
  5036. top:0px;
  5037. width:2px;
  5038. height:201px;
  5039. }
  5040. #u194513 {
  5041. border-width:0px;
  5042. position:absolute;
  5043. left:527px;
  5044. top:994px;
  5045. width:1px;
  5046. height:200px;
  5047. display:flex;
  5048. }
  5049. #u194513 .text {
  5050. position:absolute;
  5051. align-self:center;
  5052. padding:2px 2px 2px 2px;
  5053. box-sizing:border-box;
  5054. width:100%;
  5055. }
  5056. #u194513_text {
  5057. border-width:0px;
  5058. word-wrap:break-word;
  5059. text-transform:none;
  5060. visibility:hidden;
  5061. }
  5062. #u194514_div {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:0px;
  5066. top:0px;
  5067. width:97px;
  5068. height:30px;
  5069. background:inherit;
  5070. background-color:rgba(255, 255, 255, 0);
  5071. border:none;
  5072. border-left:0px;
  5073. border-top:0px;
  5074. border-right:0px;
  5075. border-radius:0px;
  5076. border-bottom-right-radius:0px;
  5077. border-bottom-left-radius:0px;
  5078. -moz-box-shadow:none;
  5079. -webkit-box-shadow:none;
  5080. box-shadow:none;
  5081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5082. font-weight:400;
  5083. font-style:normal;
  5084. font-size:14px;
  5085. color:#000000;
  5086. line-height:30px;
  5087. }
  5088. #u194514 {
  5089. border-width:0px;
  5090. position:absolute;
  5091. left:497px;
  5092. top:994px;
  5093. width:97px;
  5094. height:30px;
  5095. display:flex;
  5096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5097. font-weight:400;
  5098. font-style:normal;
  5099. font-size:14px;
  5100. color:#000000;
  5101. line-height:30px;
  5102. }
  5103. #u194514 .text {
  5104. position:absolute;
  5105. align-self:flex-start;
  5106. padding:0px 0px 0px 0px;
  5107. box-sizing:border-box;
  5108. width:100%;
  5109. }
  5110. #u194514_text {
  5111. border-width:0px;
  5112. white-space:nowrap;
  5113. text-transform:none;
  5114. }
  5115. #u194515_div {
  5116. border-width:0px;
  5117. position:absolute;
  5118. left:0px;
  5119. top:0px;
  5120. width:144px;
  5121. height:30px;
  5122. background:inherit;
  5123. background-color:rgba(255, 255, 255, 0);
  5124. border:none;
  5125. border-radius:0px;
  5126. -moz-box-shadow:none;
  5127. -webkit-box-shadow:none;
  5128. box-shadow:none;
  5129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5130. font-weight:400;
  5131. font-style:normal;
  5132. font-size:12px;
  5133. color:#AAAAAA;
  5134. line-height:30px;
  5135. }
  5136. #u194515 {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:539px;
  5140. top:1024px;
  5141. width:144px;
  5142. height:30px;
  5143. display:flex;
  5144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5145. font-weight:400;
  5146. font-style:normal;
  5147. font-size:12px;
  5148. color:#AAAAAA;
  5149. line-height:30px;
  5150. }
  5151. #u194515 .text {
  5152. position:absolute;
  5153. align-self:flex-start;
  5154. padding:0px 0px 0px 0px;
  5155. box-sizing:border-box;
  5156. width:100%;
  5157. }
  5158. #u194515_text {
  5159. border-width:0px;
  5160. white-space:nowrap;
  5161. text-transform:none;
  5162. }
  5163. #u194516_div {
  5164. border-width:0px;
  5165. position:absolute;
  5166. left:0px;
  5167. top:0px;
  5168. width:69px;
  5169. height:30px;
  5170. background:inherit;
  5171. background-color:rgba(255, 255, 255, 0);
  5172. border:none;
  5173. border-left:0px;
  5174. border-top:0px;
  5175. border-right:0px;
  5176. border-radius:0px;
  5177. border-bottom-right-radius:0px;
  5178. border-bottom-left-radius:0px;
  5179. -moz-box-shadow:none;
  5180. -webkit-box-shadow:none;
  5181. box-shadow:none;
  5182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5183. font-weight:400;
  5184. font-style:normal;
  5185. font-size:14px;
  5186. color:#000000;
  5187. line-height:30px;
  5188. }
  5189. #u194516 {
  5190. border-width:0px;
  5191. position:absolute;
  5192. left:497px;
  5193. top:1064px;
  5194. width:69px;
  5195. height:30px;
  5196. display:flex;
  5197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5198. font-weight:400;
  5199. font-style:normal;
  5200. font-size:14px;
  5201. color:#000000;
  5202. line-height:30px;
  5203. }
  5204. #u194516 .text {
  5205. position:absolute;
  5206. align-self:flex-start;
  5207. padding:0px 0px 0px 0px;
  5208. box-sizing:border-box;
  5209. width:100%;
  5210. }
  5211. #u194516_text {
  5212. border-width:0px;
  5213. white-space:nowrap;
  5214. text-transform:none;
  5215. }
  5216. #u194517_div {
  5217. border-width:0px;
  5218. position:absolute;
  5219. left:0px;
  5220. top:0px;
  5221. width:169px;
  5222. height:30px;
  5223. background:inherit;
  5224. background-color:rgba(255, 255, 255, 0);
  5225. border:none;
  5226. border-radius:0px;
  5227. -moz-box-shadow:none;
  5228. -webkit-box-shadow:none;
  5229. box-shadow:none;
  5230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5231. font-weight:400;
  5232. font-style:normal;
  5233. font-size:12px;
  5234. line-height:30px;
  5235. }
  5236. #u194517 {
  5237. border-width:0px;
  5238. position:absolute;
  5239. left:539px;
  5240. top:1094px;
  5241. width:169px;
  5242. height:30px;
  5243. display:flex;
  5244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5245. font-weight:400;
  5246. font-style:normal;
  5247. font-size:12px;
  5248. line-height:30px;
  5249. }
  5250. #u194517 .text {
  5251. position:absolute;
  5252. align-self:flex-start;
  5253. padding:0px 0px 0px 0px;
  5254. box-sizing:border-box;
  5255. width:100%;
  5256. }
  5257. #u194517_text {
  5258. border-width:0px;
  5259. white-space:nowrap;
  5260. text-transform:none;
  5261. }
  5262. #u194518_div {
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:0px;
  5266. top:0px;
  5267. width:69px;
  5268. height:30px;
  5269. background:inherit;
  5270. background-color:rgba(255, 255, 255, 0);
  5271. border:none;
  5272. border-left:0px;
  5273. border-top:0px;
  5274. border-right:0px;
  5275. border-radius:0px;
  5276. border-bottom-right-radius:0px;
  5277. border-bottom-left-radius:0px;
  5278. -moz-box-shadow:none;
  5279. -webkit-box-shadow:none;
  5280. box-shadow:none;
  5281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5282. font-weight:400;
  5283. font-style:normal;
  5284. font-size:14px;
  5285. color:#AAAAAA;
  5286. line-height:30px;
  5287. }
  5288. #u194518 {
  5289. border-width:0px;
  5290. position:absolute;
  5291. left:497px;
  5292. top:1144px;
  5293. width:69px;
  5294. height:30px;
  5295. display:flex;
  5296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5297. font-weight:400;
  5298. font-style:normal;
  5299. font-size:14px;
  5300. color:#AAAAAA;
  5301. line-height:30px;
  5302. }
  5303. #u194518 .text {
  5304. position:absolute;
  5305. align-self:flex-start;
  5306. padding:0px 0px 0px 0px;
  5307. box-sizing:border-box;
  5308. width:100%;
  5309. }
  5310. #u194518_text {
  5311. border-width:0px;
  5312. white-space:nowrap;
  5313. text-transform:none;
  5314. }
  5315. #u194519_div {
  5316. border-width:0px;
  5317. position:absolute;
  5318. left:0px;
  5319. top:0px;
  5320. width:61px;
  5321. height:30px;
  5322. background:inherit;
  5323. background-color:rgba(255, 255, 255, 0);
  5324. border:none;
  5325. border-radius:0px;
  5326. -moz-box-shadow:none;
  5327. -webkit-box-shadow:none;
  5328. box-shadow:none;
  5329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5330. font-weight:400;
  5331. font-style:normal;
  5332. font-size:12px;
  5333. line-height:30px;
  5334. }
  5335. #u194519 {
  5336. border-width:0px;
  5337. position:absolute;
  5338. left:539px;
  5339. top:1174px;
  5340. width:61px;
  5341. height:30px;
  5342. display:flex;
  5343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5344. font-weight:400;
  5345. font-style:normal;
  5346. font-size:12px;
  5347. line-height:30px;
  5348. }
  5349. #u194519 .text {
  5350. position:absolute;
  5351. align-self:flex-start;
  5352. padding:0px 0px 0px 0px;
  5353. box-sizing:border-box;
  5354. width:100%;
  5355. }
  5356. #u194519_text {
  5357. border-width:0px;
  5358. white-space:nowrap;
  5359. text-transform:none;
  5360. }
  5361. #u194520_div {
  5362. border-width:0px;
  5363. position:absolute;
  5364. left:0px;
  5365. top:0px;
  5366. width:107px;
  5367. height:30px;
  5368. background:inherit;
  5369. background-color:rgba(255, 255, 255, 0);
  5370. border:none;
  5371. border-radius:0px;
  5372. -moz-box-shadow:none;
  5373. -webkit-box-shadow:none;
  5374. box-shadow:none;
  5375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5376. font-weight:400;
  5377. font-style:normal;
  5378. font-size:12px;
  5379. color:#7F7F7F;
  5380. text-align:right;
  5381. line-height:30px;
  5382. }
  5383. #u194520 {
  5384. border-width:0px;
  5385. position:absolute;
  5386. left:741px;
  5387. top:994px;
  5388. width:107px;
  5389. height:30px;
  5390. display:flex;
  5391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5392. font-weight:400;
  5393. font-style:normal;
  5394. font-size:12px;
  5395. color:#7F7F7F;
  5396. text-align:right;
  5397. line-height:30px;
  5398. }
  5399. #u194520 .text {
  5400. position:absolute;
  5401. align-self:flex-start;
  5402. padding:0px 0px 0px 0px;
  5403. box-sizing:border-box;
  5404. width:100%;
  5405. }
  5406. #u194520_text {
  5407. border-width:0px;
  5408. white-space:nowrap;
  5409. text-transform:none;
  5410. }
  5411. #u194521 {
  5412. border-width:0px;
  5413. position:absolute;
  5414. left:0px;
  5415. top:0px;
  5416. width:0px;
  5417. height:0px;
  5418. }
  5419. #u194522_div {
  5420. border-width:0px;
  5421. position:absolute;
  5422. left:0px;
  5423. top:0px;
  5424. width:355px;
  5425. height:140px;
  5426. background:inherit;
  5427. background-color:rgba(255, 255, 255, 1);
  5428. border:none;
  5429. border-radius:4px;
  5430. -moz-box-shadow:none;
  5431. -webkit-box-shadow:none;
  5432. box-shadow:none;
  5433. }
  5434. #u194522 {
  5435. border-width:0px;
  5436. position:absolute;
  5437. left:39px;
  5438. top:217px;
  5439. width:355px;
  5440. height:140px;
  5441. display:flex;
  5442. }
  5443. #u194522 .text {
  5444. position:absolute;
  5445. align-self:center;
  5446. padding:2px 2px 2px 2px;
  5447. box-sizing:border-box;
  5448. width:100%;
  5449. }
  5450. #u194522_text {
  5451. border-width:0px;
  5452. word-wrap:break-word;
  5453. text-transform:none;
  5454. visibility:hidden;
  5455. }
  5456. #u194523_div {
  5457. border-width:0px;
  5458. position:absolute;
  5459. left:0px;
  5460. top:0px;
  5461. width:93px;
  5462. height:30px;
  5463. background:inherit;
  5464. background-color:rgba(255, 255, 255, 0);
  5465. border:none;
  5466. border-left:0px;
  5467. border-top:0px;
  5468. border-right:0px;
  5469. border-radius:0px;
  5470. border-bottom-right-radius:0px;
  5471. border-bottom-left-radius:0px;
  5472. -moz-box-shadow:none;
  5473. -webkit-box-shadow:none;
  5474. box-shadow:none;
  5475. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5476. font-weight:500;
  5477. font-style:normal;
  5478. font-size:14px;
  5479. line-height:30px;
  5480. }
  5481. #u194523 {
  5482. border-width:0px;
  5483. position:absolute;
  5484. left:55px;
  5485. top:261px;
  5486. width:93px;
  5487. height:30px;
  5488. display:flex;
  5489. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5490. font-weight:500;
  5491. font-style:normal;
  5492. font-size:14px;
  5493. line-height:30px;
  5494. }
  5495. #u194523 .text {
  5496. position:absolute;
  5497. align-self:flex-start;
  5498. padding:0px 0px 0px 0px;
  5499. box-sizing:border-box;
  5500. width:100%;
  5501. }
  5502. #u194523_text {
  5503. border-width:0px;
  5504. white-space:nowrap;
  5505. text-transform:none;
  5506. }
  5507. #u194524_div {
  5508. border-width:0px;
  5509. position:absolute;
  5510. left:0px;
  5511. top:0px;
  5512. width:177px;
  5513. height:50px;
  5514. background:inherit;
  5515. background-color:rgba(255, 255, 255, 0);
  5516. border:none;
  5517. border-left:0px;
  5518. border-top:0px;
  5519. border-right:0px;
  5520. border-radius:0px;
  5521. border-bottom-right-radius:0px;
  5522. border-bottom-left-radius:0px;
  5523. -moz-box-shadow:none;
  5524. -webkit-box-shadow:none;
  5525. box-shadow:none;
  5526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5527. font-weight:400;
  5528. font-style:normal;
  5529. font-size:12px;
  5530. line-height:25px;
  5531. }
  5532. #u194524 {
  5533. border-width:0px;
  5534. position:absolute;
  5535. left:55px;
  5536. top:296px;
  5537. width:177px;
  5538. height:50px;
  5539. display:flex;
  5540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5541. font-weight:400;
  5542. font-style:normal;
  5543. font-size:12px;
  5544. line-height:25px;
  5545. }
  5546. #u194524 .text {
  5547. position:absolute;
  5548. align-self:flex-start;
  5549. padding:0px 0px 0px 0px;
  5550. box-sizing:border-box;
  5551. width:100%;
  5552. }
  5553. #u194524_text {
  5554. border-width:0px;
  5555. white-space:nowrap;
  5556. text-transform:none;
  5557. }
  5558. #u194525_div {
  5559. border-width:0px;
  5560. position:absolute;
  5561. left:0px;
  5562. top:0px;
  5563. width:128px;
  5564. height:30px;
  5565. background:inherit;
  5566. background-color:rgba(255, 255, 255, 0);
  5567. border:none;
  5568. border-left:0px;
  5569. border-top:0px;
  5570. border-right:0px;
  5571. border-radius:0px;
  5572. border-bottom-right-radius:0px;
  5573. border-bottom-left-radius:0px;
  5574. -moz-box-shadow:none;
  5575. -webkit-box-shadow:none;
  5576. box-shadow:none;
  5577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5578. font-weight:400;
  5579. font-style:normal;
  5580. font-size:12px;
  5581. color:#AAAAAA;
  5582. line-height:30px;
  5583. }
  5584. #u194525 {
  5585. border-width:0px;
  5586. position:absolute;
  5587. left:55px;
  5588. top:226px;
  5589. width:128px;
  5590. height:30px;
  5591. display:flex;
  5592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5593. font-weight:400;
  5594. font-style:normal;
  5595. font-size:12px;
  5596. color:#AAAAAA;
  5597. line-height:30px;
  5598. }
  5599. #u194525 .text {
  5600. position:absolute;
  5601. align-self:flex-start;
  5602. padding:0px 0px 0px 0px;
  5603. box-sizing:border-box;
  5604. width:100%;
  5605. }
  5606. #u194525_text {
  5607. border-width:0px;
  5608. white-space:nowrap;
  5609. text-transform:none;
  5610. }
  5611. #u194526_div {
  5612. border-width:0px;
  5613. position:absolute;
  5614. left:0px;
  5615. top:0px;
  5616. width:71px;
  5617. height:25px;
  5618. background:inherit;
  5619. background-color:rgba(255, 255, 255, 0);
  5620. border:none;
  5621. border-left:0px;
  5622. border-top:0px;
  5623. border-right:0px;
  5624. border-radius:0px;
  5625. border-bottom-right-radius:0px;
  5626. border-bottom-left-radius:0px;
  5627. -moz-box-shadow:none;
  5628. -webkit-box-shadow:none;
  5629. box-shadow:none;
  5630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5631. font-weight:400;
  5632. font-style:normal;
  5633. text-align:right;
  5634. }
  5635. #u194526 {
  5636. border-width:0px;
  5637. position:absolute;
  5638. left:310px;
  5639. top:296px;
  5640. width:71px;
  5641. height:25px;
  5642. display:flex;
  5643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5644. font-weight:400;
  5645. font-style:normal;
  5646. text-align:right;
  5647. }
  5648. #u194526 .text {
  5649. position:absolute;
  5650. align-self:flex-start;
  5651. padding:0px 0px 0px 0px;
  5652. box-sizing:border-box;
  5653. width:100%;
  5654. }
  5655. #u194526_text {
  5656. border-width:0px;
  5657. white-space:nowrap;
  5658. text-transform:none;
  5659. }
  5660. #u194527_div {
  5661. border-width:0px;
  5662. position:absolute;
  5663. left:0px;
  5664. top:0px;
  5665. width:61px;
  5666. height:24px;
  5667. background:inherit;
  5668. background-color:rgba(255, 255, 255, 0);
  5669. border:none;
  5670. border-left:0px;
  5671. border-top:0px;
  5672. border-right:0px;
  5673. border-radius:0px;
  5674. border-bottom-right-radius:0px;
  5675. border-bottom-left-radius:0px;
  5676. -moz-box-shadow:none;
  5677. -webkit-box-shadow:none;
  5678. box-shadow:none;
  5679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5680. font-weight:400;
  5681. font-style:normal;
  5682. font-size:10px;
  5683. color:#555555;
  5684. text-align:right;
  5685. line-height:24px;
  5686. }
  5687. #u194527 {
  5688. border-width:0px;
  5689. position:absolute;
  5690. left:320px;
  5691. top:315px;
  5692. width:61px;
  5693. height:24px;
  5694. display:flex;
  5695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5696. font-weight:400;
  5697. font-style:normal;
  5698. font-size:10px;
  5699. color:#555555;
  5700. text-align:right;
  5701. line-height:24px;
  5702. }
  5703. #u194527 .text {
  5704. position:absolute;
  5705. align-self:flex-start;
  5706. padding:0px 0px 0px 0px;
  5707. box-sizing:border-box;
  5708. width:100%;
  5709. }
  5710. #u194527_text {
  5711. border-width:0px;
  5712. white-space:nowrap;
  5713. text-transform:none;
  5714. }
  5715. #u194528_div {
  5716. border-width:0px;
  5717. position:absolute;
  5718. left:0px;
  5719. top:0px;
  5720. width:358px;
  5721. height:717px;
  5722. background:inherit;
  5723. background-color:rgba(255, 255, 255, 1);
  5724. border:none;
  5725. border-radius:6px;
  5726. -moz-box-shadow:none;
  5727. -webkit-box-shadow:none;
  5728. box-shadow:none;
  5729. }
  5730. #u194528 {
  5731. border-width:0px;
  5732. position:absolute;
  5733. left:502px;
  5734. top:217px;
  5735. width:358px;
  5736. height:717px;
  5737. display:flex;
  5738. }
  5739. #u194528 .text {
  5740. position:absolute;
  5741. align-self:center;
  5742. padding:2px 2px 2px 2px;
  5743. box-sizing:border-box;
  5744. width:100%;
  5745. }
  5746. #u194528_text {
  5747. border-width:0px;
  5748. word-wrap:break-word;
  5749. text-transform:none;
  5750. visibility:hidden;
  5751. }
  5752. #u194529_div {
  5753. border-width:0px;
  5754. position:absolute;
  5755. left:0px;
  5756. top:0px;
  5757. width:57px;
  5758. height:30px;
  5759. background:inherit;
  5760. background-color:rgba(255, 255, 255, 0);
  5761. border:none;
  5762. border-left:0px;
  5763. border-top:0px;
  5764. border-right:0px;
  5765. border-radius:0px;
  5766. border-bottom-right-radius:0px;
  5767. border-bottom-left-radius:0px;
  5768. -moz-box-shadow:none;
  5769. -webkit-box-shadow:none;
  5770. box-shadow:none;
  5771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5772. font-weight:400;
  5773. font-style:normal;
  5774. font-size:14px;
  5775. line-height:30px;
  5776. }
  5777. #u194529 {
  5778. border-width:0px;
  5779. position:absolute;
  5780. left:516px;
  5781. top:227px;
  5782. width:57px;
  5783. height:30px;
  5784. display:flex;
  5785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5786. font-weight:400;
  5787. font-style:normal;
  5788. font-size:14px;
  5789. line-height:30px;
  5790. }
  5791. #u194529 .text {
  5792. position:absolute;
  5793. align-self:flex-start;
  5794. padding:0px 0px 0px 0px;
  5795. box-sizing:border-box;
  5796. width:100%;
  5797. }
  5798. #u194529_text {
  5799. border-width:0px;
  5800. white-space:nowrap;
  5801. text-transform:none;
  5802. }
  5803. #u194530_div {
  5804. border-width:0px;
  5805. position:absolute;
  5806. left:0px;
  5807. top:0px;
  5808. width:62px;
  5809. height:30px;
  5810. background:inherit;
  5811. background-color:rgba(255, 255, 255, 0);
  5812. border:none;
  5813. border-left:0px;
  5814. border-top:0px;
  5815. border-right:0px;
  5816. border-radius:0px;
  5817. border-bottom-right-radius:0px;
  5818. border-bottom-left-radius:0px;
  5819. -moz-box-shadow:none;
  5820. -webkit-box-shadow:none;
  5821. box-shadow:none;
  5822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5823. font-weight:400;
  5824. font-style:normal;
  5825. font-size:12px;
  5826. color:#7F7F7F;
  5827. line-height:30px;
  5828. }
  5829. #u194530 {
  5830. border-width:0px;
  5831. position:absolute;
  5832. left:526px;
  5833. top:448px;
  5834. width:62px;
  5835. height:30px;
  5836. display:flex;
  5837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5838. font-weight:400;
  5839. font-style:normal;
  5840. font-size:12px;
  5841. color:#7F7F7F;
  5842. line-height:30px;
  5843. }
  5844. #u194530 .text {
  5845. position:absolute;
  5846. align-self:flex-start;
  5847. padding:0px 0px 0px 0px;
  5848. box-sizing:border-box;
  5849. width:100%;
  5850. }
  5851. #u194530_text {
  5852. border-width:0px;
  5853. word-wrap:break-word;
  5854. text-transform:none;
  5855. }
  5856. #u194531_div {
  5857. border-width:0px;
  5858. position:absolute;
  5859. left:0px;
  5860. top:0px;
  5861. width:255px;
  5862. height:34px;
  5863. background:inherit;
  5864. background-color:rgba(255, 255, 255, 0);
  5865. border:none;
  5866. border-left:0px;
  5867. border-top:0px;
  5868. border-right:0px;
  5869. border-radius:0px;
  5870. border-bottom-right-radius:0px;
  5871. border-bottom-left-radius:0px;
  5872. -moz-box-shadow:none;
  5873. -webkit-box-shadow:none;
  5874. box-shadow:none;
  5875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5876. font-weight:400;
  5877. font-style:normal;
  5878. font-size:12px;
  5879. color:#000000;
  5880. }
  5881. #u194531 {
  5882. border-width:0px;
  5883. position:absolute;
  5884. left:598px;
  5885. top:454px;
  5886. width:255px;
  5887. height:34px;
  5888. display:flex;
  5889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5890. font-weight:400;
  5891. font-style:normal;
  5892. font-size:12px;
  5893. color:#000000;
  5894. }
  5895. #u194531 .text {
  5896. position:absolute;
  5897. align-self:flex-start;
  5898. padding:0px 0px 0px 0px;
  5899. box-sizing:border-box;
  5900. width:100%;
  5901. }
  5902. #u194531_text {
  5903. border-width:0px;
  5904. word-wrap:break-word;
  5905. text-transform:none;
  5906. }
  5907. #u194532_div {
  5908. border-width:0px;
  5909. position:absolute;
  5910. left:0px;
  5911. top:0px;
  5912. width:62px;
  5913. height:30px;
  5914. background:inherit;
  5915. background-color:rgba(255, 255, 255, 0);
  5916. border:none;
  5917. border-left:0px;
  5918. border-top:0px;
  5919. border-right:0px;
  5920. border-radius:0px;
  5921. border-bottom-right-radius:0px;
  5922. border-bottom-left-radius:0px;
  5923. -moz-box-shadow:none;
  5924. -webkit-box-shadow:none;
  5925. box-shadow:none;
  5926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5927. font-weight:400;
  5928. font-style:normal;
  5929. font-size:12px;
  5930. color:#7F7F7F;
  5931. line-height:30px;
  5932. }
  5933. #u194532 {
  5934. border-width:0px;
  5935. position:absolute;
  5936. left:526px;
  5937. top:358px;
  5938. width:62px;
  5939. height:30px;
  5940. display:flex;
  5941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5942. font-weight:400;
  5943. font-style:normal;
  5944. font-size:12px;
  5945. color:#7F7F7F;
  5946. line-height:30px;
  5947. }
  5948. #u194532 .text {
  5949. position:absolute;
  5950. align-self:flex-start;
  5951. padding:0px 0px 0px 0px;
  5952. box-sizing:border-box;
  5953. width:100%;
  5954. }
  5955. #u194532_text {
  5956. border-width:0px;
  5957. word-wrap:break-word;
  5958. text-transform:none;
  5959. }
  5960. #u194533_div {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:0px;
  5964. top:0px;
  5965. width:62px;
  5966. height:30px;
  5967. background:inherit;
  5968. background-color:rgba(255, 255, 255, 0);
  5969. border:none;
  5970. border-left:0px;
  5971. border-top:0px;
  5972. border-right:0px;
  5973. border-radius:0px;
  5974. border-bottom-right-radius:0px;
  5975. border-bottom-left-radius:0px;
  5976. -moz-box-shadow:none;
  5977. -webkit-box-shadow:none;
  5978. box-shadow:none;
  5979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5980. font-weight:400;
  5981. font-style:normal;
  5982. font-size:12px;
  5983. color:#7F7F7F;
  5984. line-height:30px;
  5985. }
  5986. #u194533 {
  5987. border-width:0px;
  5988. position:absolute;
  5989. left:526px;
  5990. top:267px;
  5991. width:62px;
  5992. height:30px;
  5993. display:flex;
  5994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5995. font-weight:400;
  5996. font-style:normal;
  5997. font-size:12px;
  5998. color:#7F7F7F;
  5999. line-height:30px;
  6000. }
  6001. #u194533 .text {
  6002. position:absolute;
  6003. align-self:flex-start;
  6004. padding:0px 0px 0px 0px;
  6005. box-sizing:border-box;
  6006. width:100%;
  6007. }
  6008. #u194533_text {
  6009. border-width:0px;
  6010. word-wrap:break-word;
  6011. text-transform:none;
  6012. }
  6013. #u194534_div {
  6014. border-width:0px;
  6015. position:absolute;
  6016. left:0px;
  6017. top:0px;
  6018. width:62px;
  6019. height:30px;
  6020. background:inherit;
  6021. background-color:rgba(255, 255, 255, 0);
  6022. border:none;
  6023. border-left:0px;
  6024. border-top:0px;
  6025. border-right:0px;
  6026. border-radius:0px;
  6027. border-bottom-right-radius:0px;
  6028. border-bottom-left-radius:0px;
  6029. -moz-box-shadow:none;
  6030. -webkit-box-shadow:none;
  6031. box-shadow:none;
  6032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6033. font-weight:400;
  6034. font-style:normal;
  6035. font-size:12px;
  6036. color:#7F7F7F;
  6037. line-height:30px;
  6038. }
  6039. #u194534 {
  6040. border-width:0px;
  6041. position:absolute;
  6042. left:526px;
  6043. top:297px;
  6044. width:62px;
  6045. height:30px;
  6046. display:flex;
  6047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6048. font-weight:400;
  6049. font-style:normal;
  6050. font-size:12px;
  6051. color:#7F7F7F;
  6052. line-height:30px;
  6053. }
  6054. #u194534 .text {
  6055. position:absolute;
  6056. align-self:flex-start;
  6057. padding:0px 0px 0px 0px;
  6058. box-sizing:border-box;
  6059. width:100%;
  6060. }
  6061. #u194534_text {
  6062. border-width:0px;
  6063. word-wrap:break-word;
  6064. text-transform:none;
  6065. }
  6066. #u194535_div {
  6067. border-width:0px;
  6068. position:absolute;
  6069. left:0px;
  6070. top:0px;
  6071. width:62px;
  6072. height:30px;
  6073. background:inherit;
  6074. background-color:rgba(255, 255, 255, 0);
  6075. border:none;
  6076. border-left:0px;
  6077. border-top:0px;
  6078. border-right:0px;
  6079. border-radius:0px;
  6080. border-bottom-right-radius:0px;
  6081. border-bottom-left-radius:0px;
  6082. -moz-box-shadow:none;
  6083. -webkit-box-shadow:none;
  6084. box-shadow:none;
  6085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6086. font-weight:400;
  6087. font-style:normal;
  6088. font-size:12px;
  6089. color:#7F7F7F;
  6090. line-height:30px;
  6091. }
  6092. #u194535 {
  6093. border-width:0px;
  6094. position:absolute;
  6095. left:526px;
  6096. top:388px;
  6097. width:62px;
  6098. height:30px;
  6099. display:flex;
  6100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6101. font-weight:400;
  6102. font-style:normal;
  6103. font-size:12px;
  6104. color:#7F7F7F;
  6105. line-height:30px;
  6106. }
  6107. #u194535 .text {
  6108. position:absolute;
  6109. align-self:flex-start;
  6110. padding:0px 0px 0px 0px;
  6111. box-sizing:border-box;
  6112. width:100%;
  6113. }
  6114. #u194535_text {
  6115. border-width:0px;
  6116. word-wrap:break-word;
  6117. text-transform:none;
  6118. }
  6119. #u194536_div {
  6120. border-width:0px;
  6121. position:absolute;
  6122. left:0px;
  6123. top:0px;
  6124. width:49px;
  6125. height:30px;
  6126. background:inherit;
  6127. background-color:rgba(255, 255, 255, 0);
  6128. border:none;
  6129. border-left:0px;
  6130. border-top:0px;
  6131. border-right:0px;
  6132. border-radius:0px;
  6133. border-bottom-right-radius:0px;
  6134. border-bottom-left-radius:0px;
  6135. -moz-box-shadow:none;
  6136. -webkit-box-shadow:none;
  6137. box-shadow:none;
  6138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6139. font-weight:400;
  6140. font-style:normal;
  6141. font-size:12px;
  6142. color:#000000;
  6143. line-height:30px;
  6144. }
  6145. #u194536 {
  6146. border-width:0px;
  6147. position:absolute;
  6148. left:598px;
  6149. top:358px;
  6150. width:49px;
  6151. height:30px;
  6152. display:flex;
  6153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6154. font-weight:400;
  6155. font-style:normal;
  6156. font-size:12px;
  6157. color:#000000;
  6158. line-height:30px;
  6159. }
  6160. #u194536 .text {
  6161. position:absolute;
  6162. align-self:flex-start;
  6163. padding:0px 0px 0px 0px;
  6164. box-sizing:border-box;
  6165. width:100%;
  6166. }
  6167. #u194536_text {
  6168. border-width:0px;
  6169. white-space:nowrap;
  6170. text-transform:none;
  6171. }
  6172. #u194537_div {
  6173. border-width:0px;
  6174. position:absolute;
  6175. left:0px;
  6176. top:0px;
  6177. width:49px;
  6178. height:30px;
  6179. background:inherit;
  6180. background-color:rgba(255, 255, 255, 0);
  6181. border:none;
  6182. border-left:0px;
  6183. border-top:0px;
  6184. border-right:0px;
  6185. border-radius:0px;
  6186. border-bottom-right-radius:0px;
  6187. border-bottom-left-radius:0px;
  6188. -moz-box-shadow:none;
  6189. -webkit-box-shadow:none;
  6190. box-shadow:none;
  6191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6192. font-weight:400;
  6193. font-style:normal;
  6194. font-size:12px;
  6195. color:#000000;
  6196. line-height:30px;
  6197. }
  6198. #u194537 {
  6199. border-width:0px;
  6200. position:absolute;
  6201. left:598px;
  6202. top:267px;
  6203. width:49px;
  6204. height:30px;
  6205. display:flex;
  6206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6207. font-weight:400;
  6208. font-style:normal;
  6209. font-size:12px;
  6210. color:#000000;
  6211. line-height:30px;
  6212. }
  6213. #u194537 .text {
  6214. position:absolute;
  6215. align-self:flex-start;
  6216. padding:0px 0px 0px 0px;
  6217. box-sizing:border-box;
  6218. width:100%;
  6219. }
  6220. #u194537_text {
  6221. border-width:0px;
  6222. white-space:nowrap;
  6223. text-transform:none;
  6224. }
  6225. #u194538_div {
  6226. border-width:0px;
  6227. position:absolute;
  6228. left:0px;
  6229. top:0px;
  6230. width:236px;
  6231. height:30px;
  6232. background:inherit;
  6233. background-color:rgba(255, 255, 255, 0);
  6234. border:none;
  6235. border-left:0px;
  6236. border-top:0px;
  6237. border-right:0px;
  6238. border-radius:0px;
  6239. border-bottom-right-radius:0px;
  6240. border-bottom-left-radius:0px;
  6241. -moz-box-shadow:none;
  6242. -webkit-box-shadow:none;
  6243. box-shadow:none;
  6244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6245. font-weight:400;
  6246. font-style:normal;
  6247. font-size:12px;
  6248. line-height:30px;
  6249. }
  6250. #u194538 {
  6251. border-width:0px;
  6252. position:absolute;
  6253. left:598px;
  6254. top:297px;
  6255. width:236px;
  6256. height:30px;
  6257. display:flex;
  6258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6259. font-weight:400;
  6260. font-style:normal;
  6261. font-size:12px;
  6262. line-height:30px;
  6263. }
  6264. #u194538 .text {
  6265. position:absolute;
  6266. align-self:flex-start;
  6267. padding:0px 0px 0px 0px;
  6268. box-sizing:border-box;
  6269. width:100%;
  6270. }
  6271. #u194538_text {
  6272. border-width:0px;
  6273. word-wrap:break-word;
  6274. text-transform:none;
  6275. }
  6276. #u194539_div {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:0px;
  6280. top:0px;
  6281. width:59px;
  6282. height:30px;
  6283. background:inherit;
  6284. background-color:rgba(255, 255, 255, 0);
  6285. border:none;
  6286. border-left:0px;
  6287. border-top:0px;
  6288. border-right:0px;
  6289. border-radius:0px;
  6290. border-bottom-right-radius:0px;
  6291. border-bottom-left-radius:0px;
  6292. -moz-box-shadow:none;
  6293. -webkit-box-shadow:none;
  6294. box-shadow:none;
  6295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6296. font-weight:400;
  6297. font-style:normal;
  6298. font-size:12px;
  6299. color:#000000;
  6300. line-height:30px;
  6301. }
  6302. #u194539 {
  6303. border-width:0px;
  6304. position:absolute;
  6305. left:598px;
  6306. top:388px;
  6307. width:59px;
  6308. height:30px;
  6309. display:flex;
  6310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6311. font-weight:400;
  6312. font-style:normal;
  6313. font-size:12px;
  6314. color:#000000;
  6315. line-height:30px;
  6316. }
  6317. #u194539 .text {
  6318. position:absolute;
  6319. align-self:flex-start;
  6320. padding:0px 0px 0px 0px;
  6321. box-sizing:border-box;
  6322. width:100%;
  6323. }
  6324. #u194539_text {
  6325. border-width:0px;
  6326. white-space:nowrap;
  6327. text-transform:none;
  6328. }
  6329. #u194540_div {
  6330. border-width:0px;
  6331. position:absolute;
  6332. left:0px;
  6333. top:0px;
  6334. width:62px;
  6335. height:30px;
  6336. background:inherit;
  6337. background-color:rgba(255, 255, 255, 0);
  6338. border:none;
  6339. border-left:0px;
  6340. border-top:0px;
  6341. border-right:0px;
  6342. border-radius:0px;
  6343. border-bottom-right-radius:0px;
  6344. border-bottom-left-radius:0px;
  6345. -moz-box-shadow:none;
  6346. -webkit-box-shadow:none;
  6347. box-shadow:none;
  6348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6349. font-weight:400;
  6350. font-style:normal;
  6351. font-size:12px;
  6352. color:#7F7F7F;
  6353. line-height:30px;
  6354. }
  6355. #u194540 {
  6356. border-width:0px;
  6357. position:absolute;
  6358. left:526px;
  6359. top:327px;
  6360. width:62px;
  6361. height:30px;
  6362. display:flex;
  6363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6364. font-weight:400;
  6365. font-style:normal;
  6366. font-size:12px;
  6367. color:#7F7F7F;
  6368. line-height:30px;
  6369. }
  6370. #u194540 .text {
  6371. position:absolute;
  6372. align-self:flex-start;
  6373. padding:0px 0px 0px 0px;
  6374. box-sizing:border-box;
  6375. width:100%;
  6376. }
  6377. #u194540_text {
  6378. border-width:0px;
  6379. word-wrap:break-word;
  6380. text-transform:none;
  6381. }
  6382. #u194541_div {
  6383. border-width:0px;
  6384. position:absolute;
  6385. left:0px;
  6386. top:0px;
  6387. width:236px;
  6388. height:30px;
  6389. background:inherit;
  6390. background-color:rgba(255, 255, 255, 0);
  6391. border:none;
  6392. border-left:0px;
  6393. border-top:0px;
  6394. border-right:0px;
  6395. border-radius:0px;
  6396. border-bottom-right-radius:0px;
  6397. border-bottom-left-radius:0px;
  6398. -moz-box-shadow:none;
  6399. -webkit-box-shadow:none;
  6400. box-shadow:none;
  6401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6402. font-weight:400;
  6403. font-style:normal;
  6404. font-size:12px;
  6405. color:#000000;
  6406. line-height:30px;
  6407. }
  6408. #u194541 {
  6409. border-width:0px;
  6410. position:absolute;
  6411. left:598px;
  6412. top:327px;
  6413. width:236px;
  6414. height:30px;
  6415. display:flex;
  6416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6417. font-weight:400;
  6418. font-style:normal;
  6419. font-size:12px;
  6420. color:#000000;
  6421. line-height:30px;
  6422. }
  6423. #u194541 .text {
  6424. position:absolute;
  6425. align-self:flex-start;
  6426. padding:0px 0px 0px 0px;
  6427. box-sizing:border-box;
  6428. width:100%;
  6429. }
  6430. #u194541_text {
  6431. border-width:0px;
  6432. word-wrap:break-word;
  6433. text-transform:none;
  6434. }
  6435. #u194542_div {
  6436. border-width:0px;
  6437. position:absolute;
  6438. left:0px;
  6439. top:0px;
  6440. width:62px;
  6441. height:30px;
  6442. background:inherit;
  6443. background-color:rgba(255, 255, 255, 0);
  6444. border:none;
  6445. border-left:0px;
  6446. border-top:0px;
  6447. border-right:0px;
  6448. border-radius:0px;
  6449. border-bottom-right-radius:0px;
  6450. border-bottom-left-radius:0px;
  6451. -moz-box-shadow:none;
  6452. -webkit-box-shadow:none;
  6453. box-shadow:none;
  6454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6455. font-weight:400;
  6456. font-style:normal;
  6457. font-size:12px;
  6458. color:#7F7F7F;
  6459. line-height:30px;
  6460. }
  6461. #u194542 {
  6462. border-width:0px;
  6463. position:absolute;
  6464. left:526px;
  6465. top:418px;
  6466. width:62px;
  6467. height:30px;
  6468. display:flex;
  6469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6470. font-weight:400;
  6471. font-style:normal;
  6472. font-size:12px;
  6473. color:#7F7F7F;
  6474. line-height:30px;
  6475. }
  6476. #u194542 .text {
  6477. position:absolute;
  6478. align-self:flex-start;
  6479. padding:0px 0px 0px 0px;
  6480. box-sizing:border-box;
  6481. width:100%;
  6482. }
  6483. #u194542_text {
  6484. border-width:0px;
  6485. word-wrap:break-word;
  6486. text-transform:none;
  6487. }
  6488. #u194543_div {
  6489. border-width:0px;
  6490. position:absolute;
  6491. left:0px;
  6492. top:0px;
  6493. width:59px;
  6494. height:30px;
  6495. background:inherit;
  6496. background-color:rgba(255, 255, 255, 0);
  6497. border:none;
  6498. border-left:0px;
  6499. border-top:0px;
  6500. border-right:0px;
  6501. border-radius:0px;
  6502. border-bottom-right-radius:0px;
  6503. border-bottom-left-radius:0px;
  6504. -moz-box-shadow:none;
  6505. -webkit-box-shadow:none;
  6506. box-shadow:none;
  6507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6508. font-weight:400;
  6509. font-style:normal;
  6510. font-size:12px;
  6511. color:#000000;
  6512. line-height:30px;
  6513. }
  6514. #u194543 {
  6515. border-width:0px;
  6516. position:absolute;
  6517. left:598px;
  6518. top:418px;
  6519. width:59px;
  6520. height:30px;
  6521. display:flex;
  6522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6523. font-weight:400;
  6524. font-style:normal;
  6525. font-size:12px;
  6526. color:#000000;
  6527. line-height:30px;
  6528. }
  6529. #u194543 .text {
  6530. position:absolute;
  6531. align-self:flex-start;
  6532. padding:0px 0px 0px 0px;
  6533. box-sizing:border-box;
  6534. width:100%;
  6535. }
  6536. #u194543_text {
  6537. border-width:0px;
  6538. white-space:nowrap;
  6539. text-transform:none;
  6540. }
  6541. #u194544_div {
  6542. border-width:0px;
  6543. position:absolute;
  6544. left:0px;
  6545. top:0px;
  6546. width:62px;
  6547. height:30px;
  6548. background:inherit;
  6549. background-color:rgba(255, 255, 255, 0);
  6550. border:none;
  6551. border-left:0px;
  6552. border-top:0px;
  6553. border-right:0px;
  6554. border-radius:0px;
  6555. border-bottom-right-radius:0px;
  6556. border-bottom-left-radius:0px;
  6557. -moz-box-shadow:none;
  6558. -webkit-box-shadow:none;
  6559. box-shadow:none;
  6560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6561. font-weight:400;
  6562. font-style:normal;
  6563. font-size:12px;
  6564. color:#7F7F7F;
  6565. line-height:30px;
  6566. }
  6567. #u194544 {
  6568. border-width:0px;
  6569. position:absolute;
  6570. left:526px;
  6571. top:497px;
  6572. width:62px;
  6573. height:30px;
  6574. display:flex;
  6575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6576. font-weight:400;
  6577. font-style:normal;
  6578. font-size:12px;
  6579. color:#7F7F7F;
  6580. line-height:30px;
  6581. }
  6582. #u194544 .text {
  6583. position:absolute;
  6584. align-self:flex-start;
  6585. padding:0px 0px 0px 0px;
  6586. box-sizing:border-box;
  6587. width:100%;
  6588. }
  6589. #u194544_text {
  6590. border-width:0px;
  6591. word-wrap:break-word;
  6592. text-transform:none;
  6593. }
  6594. #u194545_div {
  6595. border-width:0px;
  6596. position:absolute;
  6597. left:0px;
  6598. top:0px;
  6599. width:236px;
  6600. height:30px;
  6601. background:inherit;
  6602. background-color:rgba(255, 255, 255, 0);
  6603. border:none;
  6604. border-left:0px;
  6605. border-top:0px;
  6606. border-right:0px;
  6607. border-radius:0px;
  6608. border-bottom-right-radius:0px;
  6609. border-bottom-left-radius:0px;
  6610. -moz-box-shadow:none;
  6611. -webkit-box-shadow:none;
  6612. box-shadow:none;
  6613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6614. font-weight:400;
  6615. font-style:normal;
  6616. font-size:12px;
  6617. line-height:30px;
  6618. }
  6619. #u194545 {
  6620. border-width:0px;
  6621. position:absolute;
  6622. left:598px;
  6623. top:497px;
  6624. width:236px;
  6625. height:30px;
  6626. display:flex;
  6627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6628. font-weight:400;
  6629. font-style:normal;
  6630. font-size:12px;
  6631. line-height:30px;
  6632. }
  6633. #u194545 .text {
  6634. position:absolute;
  6635. align-self:flex-start;
  6636. padding:0px 0px 0px 0px;
  6637. box-sizing:border-box;
  6638. width:100%;
  6639. }
  6640. #u194545_text {
  6641. border-width:0px;
  6642. word-wrap:break-word;
  6643. text-transform:none;
  6644. }
  6645. #u194546_div {
  6646. border-width:0px;
  6647. position:absolute;
  6648. left:0px;
  6649. top:0px;
  6650. width:62px;
  6651. height:30px;
  6652. background:inherit;
  6653. background-color:rgba(255, 255, 255, 0);
  6654. border:none;
  6655. border-left:0px;
  6656. border-top:0px;
  6657. border-right:0px;
  6658. border-radius:0px;
  6659. border-bottom-right-radius:0px;
  6660. border-bottom-left-radius:0px;
  6661. -moz-box-shadow:none;
  6662. -webkit-box-shadow:none;
  6663. box-shadow:none;
  6664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6665. font-weight:400;
  6666. font-style:normal;
  6667. font-size:12px;
  6668. color:#7F7F7F;
  6669. line-height:30px;
  6670. }
  6671. #u194546 {
  6672. border-width:0px;
  6673. position:absolute;
  6674. left:526px;
  6675. top:527px;
  6676. width:62px;
  6677. height:30px;
  6678. display:flex;
  6679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6680. font-weight:400;
  6681. font-style:normal;
  6682. font-size:12px;
  6683. color:#7F7F7F;
  6684. line-height:30px;
  6685. }
  6686. #u194546 .text {
  6687. position:absolute;
  6688. align-self:flex-start;
  6689. padding:0px 0px 0px 0px;
  6690. box-sizing:border-box;
  6691. width:100%;
  6692. }
  6693. #u194546_text {
  6694. border-width:0px;
  6695. word-wrap:break-word;
  6696. text-transform:none;
  6697. }
  6698. #u194547_div {
  6699. border-width:0px;
  6700. position:absolute;
  6701. left:0px;
  6702. top:0px;
  6703. width:236px;
  6704. height:30px;
  6705. background:inherit;
  6706. background-color:rgba(255, 255, 255, 0);
  6707. border:none;
  6708. border-left:0px;
  6709. border-top:0px;
  6710. border-right:0px;
  6711. border-radius:0px;
  6712. border-bottom-right-radius:0px;
  6713. border-bottom-left-radius:0px;
  6714. -moz-box-shadow:none;
  6715. -webkit-box-shadow:none;
  6716. box-shadow:none;
  6717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6718. font-weight:400;
  6719. font-style:normal;
  6720. font-size:12px;
  6721. color:#000000;
  6722. line-height:30px;
  6723. }
  6724. #u194547 {
  6725. border-width:0px;
  6726. position:absolute;
  6727. left:598px;
  6728. top:527px;
  6729. width:236px;
  6730. height:30px;
  6731. display:flex;
  6732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6733. font-weight:400;
  6734. font-style:normal;
  6735. font-size:12px;
  6736. color:#000000;
  6737. line-height:30px;
  6738. }
  6739. #u194547 .text {
  6740. position:absolute;
  6741. align-self:flex-start;
  6742. padding:0px 0px 0px 0px;
  6743. box-sizing:border-box;
  6744. width:100%;
  6745. }
  6746. #u194547_text {
  6747. border-width:0px;
  6748. word-wrap:break-word;
  6749. text-transform:none;
  6750. }
  6751. #u194548_div {
  6752. border-width:0px;
  6753. position:absolute;
  6754. left:0px;
  6755. top:0px;
  6756. width:78px;
  6757. height:50px;
  6758. background:inherit;
  6759. background-color:rgba(255, 255, 255, 0);
  6760. border:none;
  6761. border-left:0px;
  6762. border-top:0px;
  6763. border-right:0px;
  6764. border-radius:0px;
  6765. border-bottom-right-radius:0px;
  6766. border-bottom-left-radius:0px;
  6767. -moz-box-shadow:none;
  6768. -webkit-box-shadow:none;
  6769. box-shadow:none;
  6770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6771. font-weight:400;
  6772. font-style:normal;
  6773. text-align:center;
  6774. }
  6775. #u194548 {
  6776. border-width:0px;
  6777. position:absolute;
  6778. left:643px;
  6779. top:127px;
  6780. width:78px;
  6781. height:50px;
  6782. display:flex;
  6783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6784. font-weight:400;
  6785. font-style:normal;
  6786. text-align:center;
  6787. }
  6788. #u194548 .text {
  6789. position:absolute;
  6790. align-self:flex-start;
  6791. padding:0px 0px 0px 0px;
  6792. box-sizing:border-box;
  6793. width:100%;
  6794. }
  6795. #u194548_text {
  6796. border-width:0px;
  6797. white-space:nowrap;
  6798. text-transform:none;
  6799. }
  6800. #u194549_div {
  6801. border-width:0px;
  6802. position:absolute;
  6803. left:0px;
  6804. top:0px;
  6805. width:81px;
  6806. height:24px;
  6807. background:inherit;
  6808. background-color:rgba(255, 255, 255, 0);
  6809. border:none;
  6810. border-left:0px;
  6811. border-top:0px;
  6812. border-right:0px;
  6813. border-radius:0px;
  6814. border-bottom-right-radius:0px;
  6815. border-bottom-left-radius:0px;
  6816. -moz-box-shadow:none;
  6817. -webkit-box-shadow:none;
  6818. box-shadow:none;
  6819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6820. font-weight:400;
  6821. font-style:normal;
  6822. font-size:10px;
  6823. color:#0089FE;
  6824. text-align:right;
  6825. line-height:24px;
  6826. }
  6827. #u194549 {
  6828. border-width:0px;
  6829. position:absolute;
  6830. left:641px;
  6831. top:170px;
  6832. width:81px;
  6833. height:24px;
  6834. display:flex;
  6835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6836. font-weight:400;
  6837. font-style:normal;
  6838. font-size:10px;
  6839. color:#0089FE;
  6840. text-align:right;
  6841. line-height:24px;
  6842. }
  6843. #u194549 .text {
  6844. position:absolute;
  6845. align-self:flex-start;
  6846. padding:0px 0px 0px 0px;
  6847. box-sizing:border-box;
  6848. width:100%;
  6849. }
  6850. #u194549_text {
  6851. border-width:0px;
  6852. white-space:nowrap;
  6853. text-transform:none;
  6854. }
  6855. #u194550_div {
  6856. border-width:0px;
  6857. position:absolute;
  6858. left:0px;
  6859. top:0px;
  6860. width:321px;
  6861. height:346px;
  6862. background:inherit;
  6863. background-color:rgba(242, 242, 242, 1);
  6864. border:none;
  6865. border-radius:6px;
  6866. -moz-box-shadow:none;
  6867. -webkit-box-shadow:none;
  6868. box-shadow:none;
  6869. }
  6870. #u194550 {
  6871. border-width:0px;
  6872. position:absolute;
  6873. left:526px;
  6874. top:567px;
  6875. width:321px;
  6876. height:346px;
  6877. display:flex;
  6878. }
  6879. #u194550 .text {
  6880. position:absolute;
  6881. align-self:center;
  6882. padding:2px 2px 2px 2px;
  6883. box-sizing:border-box;
  6884. width:100%;
  6885. }
  6886. #u194550_text {
  6887. border-width:0px;
  6888. word-wrap:break-word;
  6889. text-transform:none;
  6890. visibility:hidden;
  6891. }
  6892. #u194551_div {
  6893. border-width:0px;
  6894. position:absolute;
  6895. left:0px;
  6896. top:0px;
  6897. width:57px;
  6898. height:30px;
  6899. background:inherit;
  6900. background-color:rgba(255, 255, 255, 0);
  6901. border:none;
  6902. border-left:0px;
  6903. border-top:0px;
  6904. border-right:0px;
  6905. border-radius:0px;
  6906. border-bottom-right-radius:0px;
  6907. border-bottom-left-radius:0px;
  6908. -moz-box-shadow:none;
  6909. -webkit-box-shadow:none;
  6910. box-shadow:none;
  6911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6912. font-weight:400;
  6913. font-style:normal;
  6914. font-size:14px;
  6915. line-height:30px;
  6916. }
  6917. #u194551 {
  6918. border-width:0px;
  6919. position:absolute;
  6920. left:540px;
  6921. top:577px;
  6922. width:57px;
  6923. height:30px;
  6924. display:flex;
  6925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6926. font-weight:400;
  6927. font-style:normal;
  6928. font-size:14px;
  6929. line-height:30px;
  6930. }
  6931. #u194551 .text {
  6932. position:absolute;
  6933. align-self:flex-start;
  6934. padding:0px 0px 0px 0px;
  6935. box-sizing:border-box;
  6936. width:100%;
  6937. }
  6938. #u194551_text {
  6939. border-width:0px;
  6940. white-space:nowrap;
  6941. text-transform:none;
  6942. }
  6943. #u194552 {
  6944. border-width:0px;
  6945. position:absolute;
  6946. left:0px;
  6947. top:0px;
  6948. width:0px;
  6949. height:0px;
  6950. }
  6951. #u194553_div {
  6952. border-width:0px;
  6953. position:absolute;
  6954. left:0px;
  6955. top:0px;
  6956. width:61px;
  6957. height:30px;
  6958. background:inherit;
  6959. background-color:rgba(255, 255, 255, 0);
  6960. border:none;
  6961. border-left:0px;
  6962. border-top:0px;
  6963. border-right:0px;
  6964. border-radius:0px;
  6965. border-bottom-right-radius:0px;
  6966. border-bottom-left-radius:0px;
  6967. -moz-box-shadow:none;
  6968. -webkit-box-shadow:none;
  6969. box-shadow:none;
  6970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6971. font-weight:400;
  6972. font-style:normal;
  6973. font-size:12px;
  6974. color:#7F7F7F;
  6975. line-height:30px;
  6976. }
  6977. #u194553 {
  6978. border-width:0px;
  6979. position:absolute;
  6980. left:549px;
  6981. top:676px;
  6982. width:61px;
  6983. height:30px;
  6984. display:flex;
  6985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6986. font-weight:400;
  6987. font-style:normal;
  6988. font-size:12px;
  6989. color:#7F7F7F;
  6990. line-height:30px;
  6991. }
  6992. #u194553 .text {
  6993. position:absolute;
  6994. align-self:flex-start;
  6995. padding:0px 0px 0px 0px;
  6996. box-sizing:border-box;
  6997. width:100%;
  6998. }
  6999. #u194553_text {
  7000. border-width:0px;
  7001. white-space:nowrap;
  7002. text-transform:none;
  7003. }
  7004. #u194554_div {
  7005. border-width:0px;
  7006. position:absolute;
  7007. left:0px;
  7008. top:0px;
  7009. width:61px;
  7010. height:30px;
  7011. background:inherit;
  7012. background-color:rgba(255, 255, 255, 0);
  7013. border:none;
  7014. border-left:0px;
  7015. border-top:0px;
  7016. border-right:0px;
  7017. border-radius:0px;
  7018. border-bottom-right-radius:0px;
  7019. border-bottom-left-radius:0px;
  7020. -moz-box-shadow:none;
  7021. -webkit-box-shadow:none;
  7022. box-shadow:none;
  7023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7024. font-weight:400;
  7025. font-style:normal;
  7026. font-size:12px;
  7027. color:#7F7F7F;
  7028. line-height:30px;
  7029. }
  7030. #u194554 {
  7031. border-width:0px;
  7032. position:absolute;
  7033. left:549px;
  7034. top:766px;
  7035. width:61px;
  7036. height:30px;
  7037. display:flex;
  7038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7039. font-weight:400;
  7040. font-style:normal;
  7041. font-size:12px;
  7042. color:#7F7F7F;
  7043. line-height:30px;
  7044. }
  7045. #u194554 .text {
  7046. position:absolute;
  7047. align-self:flex-start;
  7048. padding:0px 0px 0px 0px;
  7049. box-sizing:border-box;
  7050. width:100%;
  7051. }
  7052. #u194554_text {
  7053. border-width:0px;
  7054. white-space:nowrap;
  7055. text-transform:none;
  7056. }
  7057. #u194555_div {
  7058. border-width:0px;
  7059. position:absolute;
  7060. left:0px;
  7061. top:0px;
  7062. width:61px;
  7063. height:30px;
  7064. background:inherit;
  7065. background-color:rgba(255, 255, 255, 0);
  7066. border:none;
  7067. border-left:0px;
  7068. border-top:0px;
  7069. border-right:0px;
  7070. border-radius:0px;
  7071. border-bottom-right-radius:0px;
  7072. border-bottom-left-radius:0px;
  7073. -moz-box-shadow:none;
  7074. -webkit-box-shadow:none;
  7075. box-shadow:none;
  7076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7077. font-weight:400;
  7078. font-style:normal;
  7079. font-size:12px;
  7080. color:#7F7F7F;
  7081. line-height:30px;
  7082. }
  7083. #u194555 {
  7084. border-width:0px;
  7085. position:absolute;
  7086. left:549px;
  7087. top:615px;
  7088. width:61px;
  7089. height:30px;
  7090. display:flex;
  7091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7092. font-weight:400;
  7093. font-style:normal;
  7094. font-size:12px;
  7095. color:#7F7F7F;
  7096. line-height:30px;
  7097. }
  7098. #u194555 .text {
  7099. position:absolute;
  7100. align-self:flex-start;
  7101. padding:0px 0px 0px 0px;
  7102. box-sizing:border-box;
  7103. width:100%;
  7104. }
  7105. #u194555_text {
  7106. border-width:0px;
  7107. white-space:nowrap;
  7108. text-transform:none;
  7109. }
  7110. #u194556_div {
  7111. border-width:0px;
  7112. position:absolute;
  7113. left:0px;
  7114. top:0px;
  7115. width:25px;
  7116. height:30px;
  7117. background:inherit;
  7118. background-color:rgba(255, 255, 255, 0);
  7119. border:none;
  7120. border-left:0px;
  7121. border-top:0px;
  7122. border-right:0px;
  7123. border-radius:0px;
  7124. border-bottom-right-radius:0px;
  7125. border-bottom-left-radius:0px;
  7126. -moz-box-shadow:none;
  7127. -webkit-box-shadow:none;
  7128. box-shadow:none;
  7129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7130. font-weight:400;
  7131. font-style:normal;
  7132. font-size:12px;
  7133. color:#000000;
  7134. line-height:30px;
  7135. }
  7136. #u194556 {
  7137. border-width:0px;
  7138. position:absolute;
  7139. left:611px;
  7140. top:676px;
  7141. width:25px;
  7142. height:30px;
  7143. display:flex;
  7144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7145. font-weight:400;
  7146. font-style:normal;
  7147. font-size:12px;
  7148. color:#000000;
  7149. line-height:30px;
  7150. }
  7151. #u194556 .text {
  7152. position:absolute;
  7153. align-self:flex-start;
  7154. padding:0px 0px 0px 0px;
  7155. box-sizing:border-box;
  7156. width:100%;
  7157. }
  7158. #u194556_text {
  7159. border-width:0px;
  7160. white-space:nowrap;
  7161. text-transform:none;
  7162. }
  7163. #u194557_div {
  7164. border-width:0px;
  7165. position:absolute;
  7166. left:0px;
  7167. top:0px;
  7168. width:70px;
  7169. height:30px;
  7170. background:inherit;
  7171. background-color:rgba(255, 255, 255, 0);
  7172. border:none;
  7173. border-left:0px;
  7174. border-top:0px;
  7175. border-right:0px;
  7176. border-radius:0px;
  7177. border-bottom-right-radius:0px;
  7178. border-bottom-left-radius:0px;
  7179. -moz-box-shadow:none;
  7180. -webkit-box-shadow:none;
  7181. box-shadow:none;
  7182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7183. font-weight:400;
  7184. font-style:normal;
  7185. font-size:12px;
  7186. color:#000000;
  7187. line-height:30px;
  7188. }
  7189. #u194557 {
  7190. border-width:0px;
  7191. position:absolute;
  7192. left:611px;
  7193. top:766px;
  7194. width:70px;
  7195. height:30px;
  7196. display:flex;
  7197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7198. font-weight:400;
  7199. font-style:normal;
  7200. font-size:12px;
  7201. color:#000000;
  7202. line-height:30px;
  7203. }
  7204. #u194557 .text {
  7205. position:absolute;
  7206. align-self:flex-start;
  7207. padding:0px 0px 0px 0px;
  7208. box-sizing:border-box;
  7209. width:100%;
  7210. }
  7211. #u194557_text {
  7212. border-width:0px;
  7213. white-space:nowrap;
  7214. text-transform:none;
  7215. }
  7216. #u194558_div {
  7217. border-width:0px;
  7218. position:absolute;
  7219. left:0px;
  7220. top:0px;
  7221. width:121px;
  7222. height:30px;
  7223. background:inherit;
  7224. background-color:rgba(255, 255, 255, 0);
  7225. border:none;
  7226. border-left:0px;
  7227. border-top:0px;
  7228. border-right:0px;
  7229. border-radius:0px;
  7230. border-bottom-right-radius:0px;
  7231. border-bottom-left-radius:0px;
  7232. -moz-box-shadow:none;
  7233. -webkit-box-shadow:none;
  7234. box-shadow:none;
  7235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7236. font-weight:400;
  7237. font-style:normal;
  7238. font-size:12px;
  7239. color:#000000;
  7240. line-height:30px;
  7241. }
  7242. #u194558 {
  7243. border-width:0px;
  7244. position:absolute;
  7245. left:611px;
  7246. top:615px;
  7247. width:121px;
  7248. height:30px;
  7249. display:flex;
  7250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7251. font-weight:400;
  7252. font-style:normal;
  7253. font-size:12px;
  7254. color:#000000;
  7255. line-height:30px;
  7256. }
  7257. #u194558 .text {
  7258. position:absolute;
  7259. align-self:flex-start;
  7260. padding:0px 0px 0px 0px;
  7261. box-sizing:border-box;
  7262. width:100%;
  7263. }
  7264. #u194558_text {
  7265. border-width:0px;
  7266. white-space:nowrap;
  7267. text-transform:none;
  7268. }
  7269. #u194559_div {
  7270. border-width:0px;
  7271. position:absolute;
  7272. left:0px;
  7273. top:0px;
  7274. width:61px;
  7275. height:30px;
  7276. background:inherit;
  7277. background-color:rgba(255, 255, 255, 0);
  7278. border:none;
  7279. border-left:0px;
  7280. border-top:0px;
  7281. border-right:0px;
  7282. border-radius:0px;
  7283. border-bottom-right-radius:0px;
  7284. border-bottom-left-radius:0px;
  7285. -moz-box-shadow:none;
  7286. -webkit-box-shadow:none;
  7287. box-shadow:none;
  7288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7289. font-weight:400;
  7290. font-style:normal;
  7291. font-size:12px;
  7292. color:#7F7F7F;
  7293. line-height:30px;
  7294. }
  7295. #u194559 {
  7296. border-width:0px;
  7297. position:absolute;
  7298. left:549px;
  7299. top:645px;
  7300. width:61px;
  7301. height:30px;
  7302. display:flex;
  7303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7304. font-weight:400;
  7305. font-style:normal;
  7306. font-size:12px;
  7307. color:#7F7F7F;
  7308. line-height:30px;
  7309. }
  7310. #u194559 .text {
  7311. position:absolute;
  7312. align-self:flex-start;
  7313. padding:0px 0px 0px 0px;
  7314. box-sizing:border-box;
  7315. width:100%;
  7316. }
  7317. #u194559_text {
  7318. border-width:0px;
  7319. white-space:nowrap;
  7320. text-transform:none;
  7321. }
  7322. #u194560_div {
  7323. border-width:0px;
  7324. position:absolute;
  7325. left:0px;
  7326. top:0px;
  7327. width:55px;
  7328. height:30px;
  7329. background:inherit;
  7330. background-color:rgba(255, 255, 255, 0);
  7331. border:none;
  7332. border-left:0px;
  7333. border-top:0px;
  7334. border-right:0px;
  7335. border-radius:0px;
  7336. border-bottom-right-radius:0px;
  7337. border-bottom-left-radius:0px;
  7338. -moz-box-shadow:none;
  7339. -webkit-box-shadow:none;
  7340. box-shadow:none;
  7341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7342. font-weight:400;
  7343. font-style:normal;
  7344. font-size:12px;
  7345. color:#000000;
  7346. line-height:30px;
  7347. }
  7348. #u194560 {
  7349. border-width:0px;
  7350. position:absolute;
  7351. left:611px;
  7352. top:645px;
  7353. width:55px;
  7354. height:30px;
  7355. display:flex;
  7356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7357. font-weight:400;
  7358. font-style:normal;
  7359. font-size:12px;
  7360. color:#000000;
  7361. line-height:30px;
  7362. }
  7363. #u194560 .text {
  7364. position:absolute;
  7365. align-self:flex-start;
  7366. padding:0px 0px 0px 0px;
  7367. box-sizing:border-box;
  7368. width:100%;
  7369. }
  7370. #u194560_text {
  7371. border-width:0px;
  7372. white-space:nowrap;
  7373. text-transform:none;
  7374. }
  7375. #u194561_div {
  7376. border-width:0px;
  7377. position:absolute;
  7378. left:0px;
  7379. top:0px;
  7380. width:61px;
  7381. height:30px;
  7382. background:inherit;
  7383. background-color:rgba(255, 255, 255, 0);
  7384. border:none;
  7385. border-left:0px;
  7386. border-top:0px;
  7387. border-right:0px;
  7388. border-radius:0px;
  7389. border-bottom-right-radius:0px;
  7390. border-bottom-left-radius:0px;
  7391. -moz-box-shadow:none;
  7392. -webkit-box-shadow:none;
  7393. box-shadow:none;
  7394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7395. font-weight:400;
  7396. font-style:normal;
  7397. font-size:12px;
  7398. color:#7F7F7F;
  7399. line-height:30px;
  7400. }
  7401. #u194561 {
  7402. border-width:0px;
  7403. position:absolute;
  7404. left:549px;
  7405. top:706px;
  7406. width:61px;
  7407. height:30px;
  7408. display:flex;
  7409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7410. font-weight:400;
  7411. font-style:normal;
  7412. font-size:12px;
  7413. color:#7F7F7F;
  7414. line-height:30px;
  7415. }
  7416. #u194561 .text {
  7417. position:absolute;
  7418. align-self:flex-start;
  7419. padding:0px 0px 0px 0px;
  7420. box-sizing:border-box;
  7421. width:100%;
  7422. }
  7423. #u194561_text {
  7424. border-width:0px;
  7425. white-space:nowrap;
  7426. text-transform:none;
  7427. }
  7428. #u194562_div {
  7429. border-width:0px;
  7430. position:absolute;
  7431. left:0px;
  7432. top:0px;
  7433. width:78px;
  7434. height:30px;
  7435. background:inherit;
  7436. background-color:rgba(255, 255, 255, 0);
  7437. border:none;
  7438. border-left:0px;
  7439. border-top:0px;
  7440. border-right:0px;
  7441. border-radius:0px;
  7442. border-bottom-right-radius:0px;
  7443. border-bottom-left-radius:0px;
  7444. -moz-box-shadow:none;
  7445. -webkit-box-shadow:none;
  7446. box-shadow:none;
  7447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7448. font-weight:400;
  7449. font-style:normal;
  7450. font-size:12px;
  7451. color:#000000;
  7452. line-height:30px;
  7453. }
  7454. #u194562 {
  7455. border-width:0px;
  7456. position:absolute;
  7457. left:611px;
  7458. top:706px;
  7459. width:78px;
  7460. height:30px;
  7461. display:flex;
  7462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7463. font-weight:400;
  7464. font-style:normal;
  7465. font-size:12px;
  7466. color:#000000;
  7467. line-height:30px;
  7468. }
  7469. #u194562 .text {
  7470. position:absolute;
  7471. align-self:flex-start;
  7472. padding:0px 0px 0px 0px;
  7473. box-sizing:border-box;
  7474. width:100%;
  7475. }
  7476. #u194562_text {
  7477. border-width:0px;
  7478. white-space:nowrap;
  7479. text-transform:none;
  7480. }
  7481. #u194563_div {
  7482. border-width:0px;
  7483. position:absolute;
  7484. left:0px;
  7485. top:0px;
  7486. width:61px;
  7487. height:30px;
  7488. background:inherit;
  7489. background-color:rgba(255, 255, 255, 0);
  7490. border:none;
  7491. border-left:0px;
  7492. border-top:0px;
  7493. border-right:0px;
  7494. border-radius:0px;
  7495. border-bottom-right-radius:0px;
  7496. border-bottom-left-radius:0px;
  7497. -moz-box-shadow:none;
  7498. -webkit-box-shadow:none;
  7499. box-shadow:none;
  7500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7501. font-weight:400;
  7502. font-style:normal;
  7503. font-size:12px;
  7504. color:#7F7F7F;
  7505. line-height:30px;
  7506. }
  7507. #u194563 {
  7508. border-width:0px;
  7509. position:absolute;
  7510. left:549px;
  7511. top:736px;
  7512. width:61px;
  7513. height:30px;
  7514. display:flex;
  7515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7516. font-weight:400;
  7517. font-style:normal;
  7518. font-size:12px;
  7519. color:#7F7F7F;
  7520. line-height:30px;
  7521. }
  7522. #u194563 .text {
  7523. position:absolute;
  7524. align-self:flex-start;
  7525. padding:0px 0px 0px 0px;
  7526. box-sizing:border-box;
  7527. width:100%;
  7528. }
  7529. #u194563_text {
  7530. border-width:0px;
  7531. white-space:nowrap;
  7532. text-transform:none;
  7533. }
  7534. #u194564_div {
  7535. border-width:0px;
  7536. position:absolute;
  7537. left:0px;
  7538. top:0px;
  7539. width:49px;
  7540. height:30px;
  7541. background:inherit;
  7542. background-color:rgba(255, 255, 255, 0);
  7543. border:none;
  7544. border-left:0px;
  7545. border-top:0px;
  7546. border-right:0px;
  7547. border-radius:0px;
  7548. border-bottom-right-radius:0px;
  7549. border-bottom-left-radius:0px;
  7550. -moz-box-shadow:none;
  7551. -webkit-box-shadow:none;
  7552. box-shadow:none;
  7553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7554. font-weight:400;
  7555. font-style:normal;
  7556. font-size:12px;
  7557. color:#000000;
  7558. line-height:30px;
  7559. }
  7560. #u194564 {
  7561. border-width:0px;
  7562. position:absolute;
  7563. left:611px;
  7564. top:736px;
  7565. width:49px;
  7566. height:30px;
  7567. display:flex;
  7568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7569. font-weight:400;
  7570. font-style:normal;
  7571. font-size:12px;
  7572. color:#000000;
  7573. line-height:30px;
  7574. }
  7575. #u194564 .text {
  7576. position:absolute;
  7577. align-self:flex-start;
  7578. padding:0px 0px 0px 0px;
  7579. box-sizing:border-box;
  7580. width:100%;
  7581. }
  7582. #u194564_text {
  7583. border-width:0px;
  7584. white-space:nowrap;
  7585. text-transform:none;
  7586. }
  7587. #u194565_div {
  7588. border-width:0px;
  7589. position:absolute;
  7590. left:0px;
  7591. top:0px;
  7592. width:61px;
  7593. height:30px;
  7594. background:inherit;
  7595. background-color:rgba(255, 255, 255, 0);
  7596. border:none;
  7597. border-left:0px;
  7598. border-top:0px;
  7599. border-right:0px;
  7600. border-radius:0px;
  7601. border-bottom-right-radius:0px;
  7602. border-bottom-left-radius:0px;
  7603. -moz-box-shadow:none;
  7604. -webkit-box-shadow:none;
  7605. box-shadow:none;
  7606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7607. font-weight:400;
  7608. font-style:normal;
  7609. font-size:12px;
  7610. color:#7F7F7F;
  7611. line-height:30px;
  7612. }
  7613. #u194565 {
  7614. border-width:0px;
  7615. position:absolute;
  7616. left:549px;
  7617. top:796px;
  7618. width:61px;
  7619. height:30px;
  7620. display:flex;
  7621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7622. font-weight:400;
  7623. font-style:normal;
  7624. font-size:12px;
  7625. color:#7F7F7F;
  7626. line-height:30px;
  7627. }
  7628. #u194565 .text {
  7629. position:absolute;
  7630. align-self:flex-start;
  7631. padding:0px 0px 0px 0px;
  7632. box-sizing:border-box;
  7633. width:100%;
  7634. }
  7635. #u194565_text {
  7636. border-width:0px;
  7637. white-space:nowrap;
  7638. text-transform:none;
  7639. }
  7640. #u194566_div {
  7641. border-width:0px;
  7642. position:absolute;
  7643. left:0px;
  7644. top:0px;
  7645. width:145px;
  7646. height:30px;
  7647. background:inherit;
  7648. background-color:rgba(255, 255, 255, 0);
  7649. border:none;
  7650. border-left:0px;
  7651. border-top:0px;
  7652. border-right:0px;
  7653. border-radius:0px;
  7654. border-bottom-right-radius:0px;
  7655. border-bottom-left-radius:0px;
  7656. -moz-box-shadow:none;
  7657. -webkit-box-shadow:none;
  7658. box-shadow:none;
  7659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7660. font-weight:400;
  7661. font-style:normal;
  7662. font-size:12px;
  7663. color:#000000;
  7664. line-height:30px;
  7665. }
  7666. #u194566 {
  7667. border-width:0px;
  7668. position:absolute;
  7669. left:611px;
  7670. top:796px;
  7671. width:145px;
  7672. height:30px;
  7673. display:flex;
  7674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7675. font-weight:400;
  7676. font-style:normal;
  7677. font-size:12px;
  7678. color:#000000;
  7679. line-height:30px;
  7680. }
  7681. #u194566 .text {
  7682. position:absolute;
  7683. align-self:flex-start;
  7684. padding:0px 0px 0px 0px;
  7685. box-sizing:border-box;
  7686. width:100%;
  7687. }
  7688. #u194566_text {
  7689. border-width:0px;
  7690. white-space:nowrap;
  7691. text-transform:none;
  7692. }
  7693. #u194567_div {
  7694. border-width:0px;
  7695. position:absolute;
  7696. left:0px;
  7697. top:0px;
  7698. width:61px;
  7699. height:30px;
  7700. background:inherit;
  7701. background-color:rgba(255, 255, 255, 0);
  7702. border:none;
  7703. border-left:0px;
  7704. border-top:0px;
  7705. border-right:0px;
  7706. border-radius:0px;
  7707. border-bottom-right-radius:0px;
  7708. border-bottom-left-radius:0px;
  7709. -moz-box-shadow:none;
  7710. -webkit-box-shadow:none;
  7711. box-shadow:none;
  7712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7713. font-weight:400;
  7714. font-style:normal;
  7715. font-size:12px;
  7716. color:#7F7F7F;
  7717. line-height:30px;
  7718. }
  7719. #u194567 {
  7720. border-width:0px;
  7721. position:absolute;
  7722. left:549px;
  7723. top:826px;
  7724. width:61px;
  7725. height:30px;
  7726. display:flex;
  7727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7728. font-weight:400;
  7729. font-style:normal;
  7730. font-size:12px;
  7731. color:#7F7F7F;
  7732. line-height:30px;
  7733. }
  7734. #u194567 .text {
  7735. position:absolute;
  7736. align-self:flex-start;
  7737. padding:0px 0px 0px 0px;
  7738. box-sizing:border-box;
  7739. width:100%;
  7740. }
  7741. #u194567_text {
  7742. border-width:0px;
  7743. white-space:nowrap;
  7744. text-transform:none;
  7745. }
  7746. #u194568_div {
  7747. border-width:0px;
  7748. position:absolute;
  7749. left:0px;
  7750. top:0px;
  7751. width:32px;
  7752. height:30px;
  7753. background:inherit;
  7754. background-color:rgba(255, 255, 255, 0);
  7755. border:none;
  7756. border-left:0px;
  7757. border-top:0px;
  7758. border-right:0px;
  7759. border-radius:0px;
  7760. border-bottom-right-radius:0px;
  7761. border-bottom-left-radius:0px;
  7762. -moz-box-shadow:none;
  7763. -webkit-box-shadow:none;
  7764. box-shadow:none;
  7765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7766. font-weight:400;
  7767. font-style:normal;
  7768. font-size:12px;
  7769. color:#000000;
  7770. line-height:30px;
  7771. }
  7772. #u194568 {
  7773. border-width:0px;
  7774. position:absolute;
  7775. left:611px;
  7776. top:826px;
  7777. width:32px;
  7778. height:30px;
  7779. display:flex;
  7780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7781. font-weight:400;
  7782. font-style:normal;
  7783. font-size:12px;
  7784. color:#000000;
  7785. line-height:30px;
  7786. }
  7787. #u194568 .text {
  7788. position:absolute;
  7789. align-self:flex-start;
  7790. padding:0px 0px 0px 0px;
  7791. box-sizing:border-box;
  7792. width:100%;
  7793. }
  7794. #u194568_text {
  7795. border-width:0px;
  7796. white-space:nowrap;
  7797. text-transform:none;
  7798. }
  7799. #u194569_div {
  7800. border-width:0px;
  7801. position:absolute;
  7802. left:0px;
  7803. top:0px;
  7804. width:61px;
  7805. height:30px;
  7806. background:inherit;
  7807. background-color:rgba(255, 255, 255, 0);
  7808. border:none;
  7809. border-left:0px;
  7810. border-top:0px;
  7811. border-right:0px;
  7812. border-radius:0px;
  7813. border-bottom-right-radius:0px;
  7814. border-bottom-left-radius:0px;
  7815. -moz-box-shadow:none;
  7816. -webkit-box-shadow:none;
  7817. box-shadow:none;
  7818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7819. font-weight:400;
  7820. font-style:normal;
  7821. font-size:12px;
  7822. color:#7F7F7F;
  7823. line-height:30px;
  7824. }
  7825. #u194569 {
  7826. border-width:0px;
  7827. position:absolute;
  7828. left:549px;
  7829. top:856px;
  7830. width:61px;
  7831. height:30px;
  7832. display:flex;
  7833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7834. font-weight:400;
  7835. font-style:normal;
  7836. font-size:12px;
  7837. color:#7F7F7F;
  7838. line-height:30px;
  7839. }
  7840. #u194569 .text {
  7841. position:absolute;
  7842. align-self:flex-start;
  7843. padding:0px 0px 0px 0px;
  7844. box-sizing:border-box;
  7845. width:100%;
  7846. }
  7847. #u194569_text {
  7848. border-width:0px;
  7849. white-space:nowrap;
  7850. text-transform:none;
  7851. }
  7852. #u194570_div {
  7853. border-width:0px;
  7854. position:absolute;
  7855. left:0px;
  7856. top:0px;
  7857. width:59px;
  7858. height:30px;
  7859. background:inherit;
  7860. background-color:rgba(255, 255, 255, 0);
  7861. border:none;
  7862. border-left:0px;
  7863. border-top:0px;
  7864. border-right:0px;
  7865. border-radius:0px;
  7866. border-bottom-right-radius:0px;
  7867. border-bottom-left-radius:0px;
  7868. -moz-box-shadow:none;
  7869. -webkit-box-shadow:none;
  7870. box-shadow:none;
  7871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7872. font-weight:400;
  7873. font-style:normal;
  7874. font-size:12px;
  7875. color:#000000;
  7876. line-height:30px;
  7877. }
  7878. #u194570 {
  7879. border-width:0px;
  7880. position:absolute;
  7881. left:611px;
  7882. top:856px;
  7883. width:59px;
  7884. height:30px;
  7885. display:flex;
  7886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7887. font-weight:400;
  7888. font-style:normal;
  7889. font-size:12px;
  7890. color:#000000;
  7891. line-height:30px;
  7892. }
  7893. #u194570 .text {
  7894. position:absolute;
  7895. align-self:flex-start;
  7896. padding:0px 0px 0px 0px;
  7897. box-sizing:border-box;
  7898. width:100%;
  7899. }
  7900. #u194570_text {
  7901. border-width:0px;
  7902. white-space:nowrap;
  7903. text-transform:none;
  7904. }
  7905. #u194571_img {
  7906. border-width:0px;
  7907. position:absolute;
  7908. left:0px;
  7909. top:0px;
  7910. width:433px;
  7911. height:865px;
  7912. }
  7913. #u194571 {
  7914. border-width:0px;
  7915. position:absolute;
  7916. left:927px;
  7917. top:0px;
  7918. width:433px;
  7919. height:865px;
  7920. display:flex;
  7921. }
  7922. #u194571 .text {
  7923. position:absolute;
  7924. align-self:center;
  7925. padding:2px 2px 2px 2px;
  7926. box-sizing:border-box;
  7927. width:100%;
  7928. }
  7929. #u194571_text {
  7930. border-width:0px;
  7931. word-wrap:break-word;
  7932. text-transform:none;
  7933. visibility:hidden;
  7934. }
  7935. #u194572_img {
  7936. border-width:0px;
  7937. position:absolute;
  7938. left:0px;
  7939. top:0px;
  7940. width:433px;
  7941. height:865px;
  7942. }
  7943. #u194572 {
  7944. border-width:0px;
  7945. position:absolute;
  7946. left:1390px;
  7947. top:0px;
  7948. width:433px;
  7949. height:865px;
  7950. display:flex;
  7951. }
  7952. #u194572 .text {
  7953. position:absolute;
  7954. align-self:center;
  7955. padding:2px 2px 2px 2px;
  7956. box-sizing:border-box;
  7957. width:100%;
  7958. }
  7959. #u194572_text {
  7960. border-width:0px;
  7961. word-wrap:break-word;
  7962. text-transform:none;
  7963. visibility:hidden;
  7964. }
  7965. #u194573 {
  7966. border-width:0px;
  7967. position:absolute;
  7968. left:0px;
  7969. top:0px;
  7970. width:0px;
  7971. height:0px;
  7972. }
  7973. #u194574_div {
  7974. border-width:0px;
  7975. position:absolute;
  7976. left:0px;
  7977. top:0px;
  7978. width:375px;
  7979. height:773px;
  7980. background:inherit;
  7981. background-color:rgba(51, 51, 51, 0.498039215686275);
  7982. border:none;
  7983. border-top:0px;
  7984. border-radius:28px;
  7985. border-top-left-radius:0px;
  7986. border-top-right-radius:0px;
  7987. -moz-box-shadow:none;
  7988. -webkit-box-shadow:none;
  7989. box-shadow:none;
  7990. }
  7991. #u194574 {
  7992. border-width:0px;
  7993. position:absolute;
  7994. left:956px;
  7995. top:68px;
  7996. width:375px;
  7997. height:773px;
  7998. display:flex;
  7999. }
  8000. #u194574 .text {
  8001. position:absolute;
  8002. align-self:center;
  8003. padding:2px 2px 2px 2px;
  8004. box-sizing:border-box;
  8005. width:100%;
  8006. }
  8007. #u194574_text {
  8008. border-width:0px;
  8009. word-wrap:break-word;
  8010. text-transform:none;
  8011. visibility:hidden;
  8012. }
  8013. #u194575_div {
  8014. border-width:0px;
  8015. position:absolute;
  8016. left:0px;
  8017. top:0px;
  8018. width:375px;
  8019. height:282px;
  8020. background:inherit;
  8021. background-color:rgba(255, 255, 255, 0.996078431372549);
  8022. border:none;
  8023. border-top:0px;
  8024. border-radius:28px;
  8025. border-top-left-radius:0px;
  8026. border-top-right-radius:0px;
  8027. -moz-box-shadow:none;
  8028. -webkit-box-shadow:none;
  8029. box-shadow:none;
  8030. }
  8031. #u194575 {
  8032. border-width:0px;
  8033. position:absolute;
  8034. left:956px;
  8035. top:559px;
  8036. width:375px;
  8037. height:282px;
  8038. display:flex;
  8039. }
  8040. #u194575 .text {
  8041. position:absolute;
  8042. align-self:center;
  8043. padding:2px 2px 2px 2px;
  8044. box-sizing:border-box;
  8045. width:100%;
  8046. }
  8047. #u194575_text {
  8048. border-width:0px;
  8049. word-wrap:break-word;
  8050. text-transform:none;
  8051. visibility:hidden;
  8052. }
  8053. #u194576_div {
  8054. border-width:0px;
  8055. position:absolute;
  8056. left:0px;
  8057. top:0px;
  8058. width:37px;
  8059. height:30px;
  8060. background:inherit;
  8061. background-color:rgba(255, 255, 255, 0);
  8062. border:none;
  8063. border-left:0px;
  8064. border-top:0px;
  8065. border-right:0px;
  8066. border-radius:0px;
  8067. border-bottom-right-radius:0px;
  8068. border-bottom-left-radius:0px;
  8069. -moz-box-shadow:none;
  8070. -webkit-box-shadow:none;
  8071. box-shadow:none;
  8072. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8073. font-weight:500;
  8074. font-style:normal;
  8075. font-size:18px;
  8076. line-height:30px;
  8077. }
  8078. #u194576 {
  8079. border-width:0px;
  8080. position:absolute;
  8081. left:976px;
  8082. top:572px;
  8083. width:37px;
  8084. height:30px;
  8085. display:flex;
  8086. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8087. font-weight:500;
  8088. font-style:normal;
  8089. font-size:18px;
  8090. line-height:30px;
  8091. }
  8092. #u194576 .text {
  8093. position:absolute;
  8094. align-self:flex-start;
  8095. padding:0px 0px 0px 0px;
  8096. box-sizing:border-box;
  8097. width:100%;
  8098. }
  8099. #u194576_text {
  8100. border-width:0px;
  8101. white-space:nowrap;
  8102. text-transform:none;
  8103. }
  8104. #u194577 {
  8105. border-width:0px;
  8106. position:absolute;
  8107. left:0px;
  8108. top:0px;
  8109. width:0px;
  8110. height:0px;
  8111. }
  8112. #u194578_div {
  8113. border-width:0px;
  8114. position:absolute;
  8115. left:0px;
  8116. top:0px;
  8117. width:375px;
  8118. height:60px;
  8119. background:inherit;
  8120. background-color:rgba(255, 255, 255, 1);
  8121. box-sizing:border-box;
  8122. border-width:1px;
  8123. border-style:solid;
  8124. border-color:rgba(242, 242, 242, 1);
  8125. border-radius:20px;
  8126. border-top-left-radius:0px;
  8127. border-top-right-radius:0px;
  8128. -moz-box-shadow:none;
  8129. -webkit-box-shadow:none;
  8130. box-shadow:none;
  8131. }
  8132. #u194578 {
  8133. border-width:0px;
  8134. position:absolute;
  8135. left:956px;
  8136. top:781px;
  8137. width:375px;
  8138. height:60px;
  8139. display:flex;
  8140. }
  8141. #u194578 .text {
  8142. position:absolute;
  8143. align-self:center;
  8144. padding:2px 2px 2px 2px;
  8145. box-sizing:border-box;
  8146. width:100%;
  8147. }
  8148. #u194578_text {
  8149. border-width:0px;
  8150. word-wrap:break-word;
  8151. text-transform:none;
  8152. visibility:hidden;
  8153. }
  8154. #u194579_div {
  8155. border-width:0px;
  8156. position:absolute;
  8157. left:0px;
  8158. top:0px;
  8159. width:160px;
  8160. height:40px;
  8161. background:inherit;
  8162. background-color:rgba(0, 137, 254, 1);
  8163. border:none;
  8164. border-radius:63px;
  8165. -moz-box-shadow:none;
  8166. -webkit-box-shadow:none;
  8167. box-shadow:none;
  8168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8169. font-weight:400;
  8170. font-style:normal;
  8171. font-size:14px;
  8172. color:#FFFFFF;
  8173. }
  8174. #u194579 {
  8175. border-width:0px;
  8176. position:absolute;
  8177. left:1151px;
  8178. top:791px;
  8179. width:160px;
  8180. height:40px;
  8181. display:flex;
  8182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8183. font-weight:400;
  8184. font-style:normal;
  8185. font-size:14px;
  8186. color:#FFFFFF;
  8187. }
  8188. #u194579 .text {
  8189. position:absolute;
  8190. align-self:center;
  8191. padding:2px 2px 2px 2px;
  8192. box-sizing:border-box;
  8193. width:100%;
  8194. }
  8195. #u194579_text {
  8196. border-width:0px;
  8197. word-wrap:break-word;
  8198. text-transform:none;
  8199. }
  8200. #u194580_div {
  8201. border-width:0px;
  8202. position:absolute;
  8203. left:0px;
  8204. top:0px;
  8205. width:160px;
  8206. height:40px;
  8207. background:inherit;
  8208. background-color:rgba(255, 255, 255, 1);
  8209. box-sizing:border-box;
  8210. border-width:1px;
  8211. border-style:solid;
  8212. border-color:rgba(121, 121, 121, 1);
  8213. border-radius:63px;
  8214. -moz-box-shadow:none;
  8215. -webkit-box-shadow:none;
  8216. box-shadow:none;
  8217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8218. font-weight:400;
  8219. font-style:normal;
  8220. font-size:14px;
  8221. }
  8222. #u194580 {
  8223. border-width:0px;
  8224. position:absolute;
  8225. left:976px;
  8226. top:791px;
  8227. width:160px;
  8228. height:40px;
  8229. display:flex;
  8230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8231. font-weight:400;
  8232. font-style:normal;
  8233. font-size:14px;
  8234. }
  8235. #u194580 .text {
  8236. position:absolute;
  8237. align-self:center;
  8238. padding:2px 2px 2px 2px;
  8239. box-sizing:border-box;
  8240. width:100%;
  8241. }
  8242. #u194580_text {
  8243. border-width:0px;
  8244. word-wrap:break-word;
  8245. text-transform:none;
  8246. }
  8247. #u194581_div {
  8248. border-width:0px;
  8249. position:absolute;
  8250. left:0px;
  8251. top:0px;
  8252. width:340px;
  8253. height:92px;
  8254. background:inherit;
  8255. background-color:rgba(255, 255, 255, 1);
  8256. box-sizing:border-box;
  8257. border-width:1px;
  8258. border-style:solid;
  8259. border-color:rgba(215, 215, 215, 1);
  8260. border-radius:4px;
  8261. -moz-box-shadow:none;
  8262. -webkit-box-shadow:none;
  8263. box-shadow:none;
  8264. }
  8265. #u194581 {
  8266. border-width:0px;
  8267. position:absolute;
  8268. left:976px;
  8269. top:612px;
  8270. width:340px;
  8271. height:92px;
  8272. display:flex;
  8273. }
  8274. #u194581 .text {
  8275. position:absolute;
  8276. align-self:center;
  8277. padding:2px 2px 2px 2px;
  8278. box-sizing:border-box;
  8279. width:100%;
  8280. }
  8281. #u194581_text {
  8282. border-width:0px;
  8283. word-wrap:break-word;
  8284. text-transform:none;
  8285. visibility:hidden;
  8286. }
  8287. #u194582_div {
  8288. border-width:0px;
  8289. position:absolute;
  8290. left:0px;
  8291. top:0px;
  8292. width:127px;
  8293. height:30px;
  8294. background:inherit;
  8295. background-color:rgba(255, 255, 255, 0);
  8296. border:none;
  8297. border-left:0px;
  8298. border-top:0px;
  8299. border-right:0px;
  8300. border-radius:0px;
  8301. border-bottom-right-radius:0px;
  8302. border-bottom-left-radius:0px;
  8303. -moz-box-shadow:none;
  8304. -webkit-box-shadow:none;
  8305. box-shadow:none;
  8306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8307. font-weight:400;
  8308. font-style:normal;
  8309. font-size:14px;
  8310. color:#AAAAAA;
  8311. line-height:30px;
  8312. }
  8313. #u194582 {
  8314. border-width:0px;
  8315. position:absolute;
  8316. left:985px;
  8317. top:620px;
  8318. width:127px;
  8319. height:30px;
  8320. display:flex;
  8321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8322. font-weight:400;
  8323. font-style:normal;
  8324. font-size:14px;
  8325. color:#AAAAAA;
  8326. line-height:30px;
  8327. }
  8328. #u194582 .text {
  8329. position:absolute;
  8330. align-self:center;
  8331. padding:0px 0px 0px 0px;
  8332. box-sizing:border-box;
  8333. width:100%;
  8334. }
  8335. #u194582_text {
  8336. border-width:0px;
  8337. white-space:nowrap;
  8338. text-transform:none;
  8339. }
  8340. #u194583 {
  8341. border-width:0px;
  8342. position:absolute;
  8343. left:0px;
  8344. top:0px;
  8345. width:0px;
  8346. height:0px;
  8347. }
  8348. #u194584_div {
  8349. border-width:0px;
  8350. position:absolute;
  8351. left:0px;
  8352. top:0px;
  8353. width:375px;
  8354. height:773px;
  8355. background:inherit;
  8356. background-color:rgba(51, 51, 51, 0.498039215686275);
  8357. border:none;
  8358. border-top:0px;
  8359. border-radius:28px;
  8360. border-top-left-radius:0px;
  8361. border-top-right-radius:0px;
  8362. -moz-box-shadow:none;
  8363. -webkit-box-shadow:none;
  8364. box-shadow:none;
  8365. }
  8366. #u194584 {
  8367. border-width:0px;
  8368. position:absolute;
  8369. left:1419px;
  8370. top:71px;
  8371. width:375px;
  8372. height:773px;
  8373. display:flex;
  8374. }
  8375. #u194584 .text {
  8376. position:absolute;
  8377. align-self:center;
  8378. padding:2px 2px 2px 2px;
  8379. box-sizing:border-box;
  8380. width:100%;
  8381. }
  8382. #u194584_text {
  8383. border-width:0px;
  8384. word-wrap:break-word;
  8385. text-transform:none;
  8386. visibility:hidden;
  8387. }
  8388. #u194585_div {
  8389. border-width:0px;
  8390. position:absolute;
  8391. left:0px;
  8392. top:0px;
  8393. width:375px;
  8394. height:282px;
  8395. background:inherit;
  8396. background-color:rgba(255, 255, 255, 0.996078431372549);
  8397. border:none;
  8398. border-top:0px;
  8399. border-radius:28px;
  8400. border-top-left-radius:0px;
  8401. border-top-right-radius:0px;
  8402. -moz-box-shadow:none;
  8403. -webkit-box-shadow:none;
  8404. box-shadow:none;
  8405. }
  8406. #u194585 {
  8407. border-width:0px;
  8408. position:absolute;
  8409. left:1419px;
  8410. top:562px;
  8411. width:375px;
  8412. height:282px;
  8413. display:flex;
  8414. }
  8415. #u194585 .text {
  8416. position:absolute;
  8417. align-self:center;
  8418. padding:2px 2px 2px 2px;
  8419. box-sizing:border-box;
  8420. width:100%;
  8421. }
  8422. #u194585_text {
  8423. border-width:0px;
  8424. word-wrap:break-word;
  8425. text-transform:none;
  8426. visibility:hidden;
  8427. }
  8428. #u194586_div {
  8429. border-width:0px;
  8430. position:absolute;
  8431. left:0px;
  8432. top:0px;
  8433. width:37px;
  8434. height:30px;
  8435. background:inherit;
  8436. background-color:rgba(255, 255, 255, 0);
  8437. border:none;
  8438. border-left:0px;
  8439. border-top:0px;
  8440. border-right:0px;
  8441. border-radius:0px;
  8442. border-bottom-right-radius:0px;
  8443. border-bottom-left-radius:0px;
  8444. -moz-box-shadow:none;
  8445. -webkit-box-shadow:none;
  8446. box-shadow:none;
  8447. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8448. font-weight:500;
  8449. font-style:normal;
  8450. font-size:18px;
  8451. line-height:30px;
  8452. }
  8453. #u194586 {
  8454. border-width:0px;
  8455. position:absolute;
  8456. left:1439px;
  8457. top:575px;
  8458. width:37px;
  8459. height:30px;
  8460. display:flex;
  8461. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8462. font-weight:500;
  8463. font-style:normal;
  8464. font-size:18px;
  8465. line-height:30px;
  8466. }
  8467. #u194586 .text {
  8468. position:absolute;
  8469. align-self:flex-start;
  8470. padding:0px 0px 0px 0px;
  8471. box-sizing:border-box;
  8472. width:100%;
  8473. }
  8474. #u194586_text {
  8475. border-width:0px;
  8476. white-space:nowrap;
  8477. text-transform:none;
  8478. }
  8479. #u194587 {
  8480. border-width:0px;
  8481. position:absolute;
  8482. left:0px;
  8483. top:0px;
  8484. width:0px;
  8485. height:0px;
  8486. }
  8487. #u194588_div {
  8488. border-width:0px;
  8489. position:absolute;
  8490. left:0px;
  8491. top:0px;
  8492. width:375px;
  8493. height:60px;
  8494. background:inherit;
  8495. background-color:rgba(255, 255, 255, 1);
  8496. box-sizing:border-box;
  8497. border-width:1px;
  8498. border-style:solid;
  8499. border-color:rgba(242, 242, 242, 1);
  8500. border-radius:20px;
  8501. border-top-left-radius:0px;
  8502. border-top-right-radius:0px;
  8503. -moz-box-shadow:none;
  8504. -webkit-box-shadow:none;
  8505. box-shadow:none;
  8506. }
  8507. #u194588 {
  8508. border-width:0px;
  8509. position:absolute;
  8510. left:1419px;
  8511. top:784px;
  8512. width:375px;
  8513. height:60px;
  8514. display:flex;
  8515. }
  8516. #u194588 .text {
  8517. position:absolute;
  8518. align-self:center;
  8519. padding:2px 2px 2px 2px;
  8520. box-sizing:border-box;
  8521. width:100%;
  8522. }
  8523. #u194588_text {
  8524. border-width:0px;
  8525. word-wrap:break-word;
  8526. text-transform:none;
  8527. visibility:hidden;
  8528. }
  8529. #u194589_div {
  8530. border-width:0px;
  8531. position:absolute;
  8532. left:0px;
  8533. top:0px;
  8534. width:160px;
  8535. height:40px;
  8536. background:inherit;
  8537. background-color:rgba(0, 137, 254, 1);
  8538. border:none;
  8539. border-radius:63px;
  8540. -moz-box-shadow:none;
  8541. -webkit-box-shadow:none;
  8542. box-shadow:none;
  8543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8544. font-weight:400;
  8545. font-style:normal;
  8546. font-size:14px;
  8547. color:#FFFFFF;
  8548. }
  8549. #u194589 {
  8550. border-width:0px;
  8551. position:absolute;
  8552. left:1614px;
  8553. top:794px;
  8554. width:160px;
  8555. height:40px;
  8556. display:flex;
  8557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8558. font-weight:400;
  8559. font-style:normal;
  8560. font-size:14px;
  8561. color:#FFFFFF;
  8562. }
  8563. #u194589 .text {
  8564. position:absolute;
  8565. align-self:center;
  8566. padding:2px 2px 2px 2px;
  8567. box-sizing:border-box;
  8568. width:100%;
  8569. }
  8570. #u194589_text {
  8571. border-width:0px;
  8572. word-wrap:break-word;
  8573. text-transform:none;
  8574. }
  8575. #u194590_div {
  8576. border-width:0px;
  8577. position:absolute;
  8578. left:0px;
  8579. top:0px;
  8580. width:160px;
  8581. height:40px;
  8582. background:inherit;
  8583. background-color:rgba(255, 255, 255, 1);
  8584. box-sizing:border-box;
  8585. border-width:1px;
  8586. border-style:solid;
  8587. border-color:rgba(121, 121, 121, 1);
  8588. border-radius:63px;
  8589. -moz-box-shadow:none;
  8590. -webkit-box-shadow:none;
  8591. box-shadow:none;
  8592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8593. font-weight:400;
  8594. font-style:normal;
  8595. font-size:14px;
  8596. }
  8597. #u194590 {
  8598. border-width:0px;
  8599. position:absolute;
  8600. left:1439px;
  8601. top:794px;
  8602. width:160px;
  8603. height:40px;
  8604. display:flex;
  8605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8606. font-weight:400;
  8607. font-style:normal;
  8608. font-size:14px;
  8609. }
  8610. #u194590 .text {
  8611. position:absolute;
  8612. align-self:center;
  8613. padding:2px 2px 2px 2px;
  8614. box-sizing:border-box;
  8615. width:100%;
  8616. }
  8617. #u194590_text {
  8618. border-width:0px;
  8619. word-wrap:break-word;
  8620. text-transform:none;
  8621. }
  8622. #u194591_div {
  8623. border-width:0px;
  8624. position:absolute;
  8625. left:0px;
  8626. top:0px;
  8627. width:340px;
  8628. height:92px;
  8629. background:inherit;
  8630. background-color:rgba(255, 255, 255, 1);
  8631. box-sizing:border-box;
  8632. border-width:1px;
  8633. border-style:solid;
  8634. border-color:rgba(215, 215, 215, 1);
  8635. border-radius:4px;
  8636. -moz-box-shadow:none;
  8637. -webkit-box-shadow:none;
  8638. box-shadow:none;
  8639. }
  8640. #u194591 {
  8641. border-width:0px;
  8642. position:absolute;
  8643. left:1439px;
  8644. top:615px;
  8645. width:340px;
  8646. height:92px;
  8647. display:flex;
  8648. }
  8649. #u194591 .text {
  8650. position:absolute;
  8651. align-self:center;
  8652. padding:2px 2px 2px 2px;
  8653. box-sizing:border-box;
  8654. width:100%;
  8655. }
  8656. #u194591_text {
  8657. border-width:0px;
  8658. word-wrap:break-word;
  8659. text-transform:none;
  8660. visibility:hidden;
  8661. }
  8662. #u194592_div {
  8663. border-width:0px;
  8664. position:absolute;
  8665. left:0px;
  8666. top:0px;
  8667. width:127px;
  8668. height:30px;
  8669. background:inherit;
  8670. background-color:rgba(255, 255, 255, 0);
  8671. border:none;
  8672. border-left:0px;
  8673. border-top:0px;
  8674. border-right:0px;
  8675. border-radius:0px;
  8676. border-bottom-right-radius:0px;
  8677. border-bottom-left-radius:0px;
  8678. -moz-box-shadow:none;
  8679. -webkit-box-shadow:none;
  8680. box-shadow:none;
  8681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8682. font-weight:400;
  8683. font-style:normal;
  8684. font-size:14px;
  8685. color:#AAAAAA;
  8686. line-height:30px;
  8687. }
  8688. #u194592 {
  8689. border-width:0px;
  8690. position:absolute;
  8691. left:1448px;
  8692. top:623px;
  8693. width:127px;
  8694. height:30px;
  8695. display:flex;
  8696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8697. font-weight:400;
  8698. font-style:normal;
  8699. font-size:14px;
  8700. color:#AAAAAA;
  8701. line-height:30px;
  8702. }
  8703. #u194592 .text {
  8704. position:absolute;
  8705. align-self:center;
  8706. padding:0px 0px 0px 0px;
  8707. box-sizing:border-box;
  8708. width:100%;
  8709. }
  8710. #u194592_text {
  8711. border-width:0px;
  8712. white-space:nowrap;
  8713. text-transform:none;
  8714. }