styles.css 135 KB

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