styles.css 174 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2285px;
  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. #u51634_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u51634 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u51634 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u51634_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u51635_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. #u51635 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u51635 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u51635_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u51636 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u51637_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. #u51637 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u51637 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u51637_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u51638 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u51639_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u51639 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u51639 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u51639_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u51640_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u51640 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u51640 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u51640_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u51641 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u51642_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u51642 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u51642 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u51642_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u51643_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u51643 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u51643 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u51643_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u51644_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u51644 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u51644 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u51644_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u51645_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u51645 {
  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. #u51645 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u51645_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u51646_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u51646 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u51646 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u51646_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u51647_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. #u51647 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u51647 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u51647_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u51648 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u51649_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u51649 {
  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. #u51649 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u51649_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u51650_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. #u51650 {
  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. #u51650 .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. #u51650_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u51651 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u51652_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u51652 {
  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. #u51652 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u51652_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u51653_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. #u51653 {
  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. #u51653 .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. #u51653_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u51654_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. #u51654 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u51654 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u51654_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u51655 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u51656_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u51656 {
  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. #u51656 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u51656_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u51657_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. #u51657 {
  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. #u51657 .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. #u51657_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u51658 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u51659_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u51659 {
  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. #u51659 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u51659_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u51660_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. #u51660 {
  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. #u51660 .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. #u51660_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u51661_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:847px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. border:none;
  789. border-top:0px;
  790. border-radius:25px;
  791. border-top-left-radius:0px;
  792. border-top-right-radius:0px;
  793. -moz-box-shadow:none;
  794. -webkit-box-shadow:none;
  795. box-shadow:none;
  796. }
  797. #u51661 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:105px;
  802. width:375px;
  803. height:847px;
  804. display:flex;
  805. }
  806. #u51661 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u51661_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u51662_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:375px;
  825. height:156px;
  826. background:inherit;
  827. background-color:rgba(255, 255, 255, 1);
  828. border:none;
  829. border-top:0px;
  830. border-radius:0px;
  831. border-top-left-radius:0px;
  832. border-top-right-radius:0px;
  833. -moz-box-shadow:none;
  834. -webkit-box-shadow:none;
  835. box-shadow:none;
  836. }
  837. #u51662 {
  838. border-width:0px;
  839. position:absolute;
  840. left:29px;
  841. top:106px;
  842. width:375px;
  843. height:156px;
  844. display:flex;
  845. }
  846. #u51662 .text {
  847. position:absolute;
  848. align-self:center;
  849. padding:2px 2px 2px 2px;
  850. box-sizing:border-box;
  851. width:100%;
  852. }
  853. #u51662_text {
  854. border-width:0px;
  855. word-wrap:break-word;
  856. text-transform:none;
  857. visibility:hidden;
  858. }
  859. #u51663_img {
  860. border-width:0px;
  861. position:absolute;
  862. left:0px;
  863. top:0px;
  864. width:11px;
  865. height:18px;
  866. }
  867. #u51663 {
  868. border-width:0px;
  869. position:absolute;
  870. left:42px;
  871. top:79px;
  872. width:11px;
  873. height:18px;
  874. display:flex;
  875. }
  876. #u51663 .text {
  877. position:absolute;
  878. align-self:center;
  879. padding:2px 2px 2px 2px;
  880. box-sizing:border-box;
  881. width:100%;
  882. }
  883. #u51663_text {
  884. border-width:0px;
  885. word-wrap:break-word;
  886. text-transform:none;
  887. visibility:hidden;
  888. }
  889. #u51664_div {
  890. border-width:0px;
  891. position:absolute;
  892. left:0px;
  893. top:0px;
  894. width:73px;
  895. height:30px;
  896. background:inherit;
  897. background-color:rgba(255, 255, 255, 0);
  898. border:none;
  899. border-left:0px;
  900. border-top:0px;
  901. border-right:0px;
  902. border-radius:0px;
  903. border-bottom-right-radius:0px;
  904. border-bottom-left-radius:0px;
  905. -moz-box-shadow:none;
  906. -webkit-box-shadow:none;
  907. box-shadow:none;
  908. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  909. font-weight:500;
  910. font-style:normal;
  911. font-size:18px;
  912. line-height:30px;
  913. }
  914. #u51664 {
  915. border-width:0px;
  916. position:absolute;
  917. left:48px;
  918. top:120px;
  919. width:73px;
  920. height:30px;
  921. display:flex;
  922. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  923. font-weight:500;
  924. font-style:normal;
  925. font-size:18px;
  926. line-height:30px;
  927. }
  928. #u51664 .text {
  929. position:absolute;
  930. align-self:flex-start;
  931. padding:0px 0px 0px 0px;
  932. box-sizing:border-box;
  933. width:100%;
  934. }
  935. #u51664_text {
  936. border-width:0px;
  937. white-space:nowrap;
  938. text-transform:none;
  939. }
  940. #u51665 {
  941. border-width:0px;
  942. position:absolute;
  943. left:0px;
  944. top:0px;
  945. width:0px;
  946. height:0px;
  947. }
  948. #u51666_img {
  949. border-width:0px;
  950. position:absolute;
  951. left:0px;
  952. top:0px;
  953. width:375px;
  954. height:50px;
  955. }
  956. #u51666 {
  957. border-width:0px;
  958. position:absolute;
  959. left:29px;
  960. top:162px;
  961. width:375px;
  962. height:50px;
  963. display:flex;
  964. }
  965. #u51666 .text {
  966. position:absolute;
  967. align-self:center;
  968. padding:2px 2px 2px 2px;
  969. box-sizing:border-box;
  970. width:100%;
  971. }
  972. #u51666_text {
  973. border-width:0px;
  974. word-wrap:break-word;
  975. text-transform:none;
  976. visibility:hidden;
  977. }
  978. #u51667_div {
  979. border-width:0px;
  980. position:absolute;
  981. left:0px;
  982. top:0px;
  983. width:64px;
  984. height:30px;
  985. background:inherit;
  986. background-color:rgba(255, 255, 255, 0);
  987. border:none;
  988. border-left:0px;
  989. border-top:0px;
  990. border-right:0px;
  991. border-radius:0px;
  992. border-bottom-right-radius:0px;
  993. border-bottom-left-radius:0px;
  994. -moz-box-shadow:none;
  995. -webkit-box-shadow:none;
  996. box-shadow:none;
  997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  998. font-weight:400;
  999. font-style:normal;
  1000. font-size:14px;
  1001. line-height:30px;
  1002. }
  1003. #u51667 {
  1004. border-width:0px;
  1005. position:absolute;
  1006. left:53px;
  1007. top:172px;
  1008. width:64px;
  1009. height:30px;
  1010. display:flex;
  1011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1012. font-weight:400;
  1013. font-style:normal;
  1014. font-size:14px;
  1015. line-height:30px;
  1016. }
  1017. #u51667 .text {
  1018. position:absolute;
  1019. align-self:flex-start;
  1020. padding:0px 0px 0px 0px;
  1021. box-sizing:border-box;
  1022. width:100%;
  1023. }
  1024. #u51667_text {
  1025. border-width:0px;
  1026. white-space:nowrap;
  1027. text-transform:none;
  1028. }
  1029. #u51668_img {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:0px;
  1033. top:0px;
  1034. width:8px;
  1035. height:13px;
  1036. }
  1037. #u51668 {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:380px;
  1041. top:179px;
  1042. width:8px;
  1043. height:13px;
  1044. display:flex;
  1045. -webkit-transform:rotate(180deg);
  1046. -moz-transform:rotate(180deg);
  1047. -ms-transform:rotate(180deg);
  1048. transform:rotate(180deg);
  1049. }
  1050. #u51668 .text {
  1051. position:absolute;
  1052. align-self:center;
  1053. padding:2px 2px 2px 2px;
  1054. box-sizing:border-box;
  1055. width:100%;
  1056. }
  1057. #u51668_text {
  1058. border-width:0px;
  1059. word-wrap:break-word;
  1060. text-transform:none;
  1061. visibility:hidden;
  1062. }
  1063. #u51669_div {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:161px;
  1069. height:30px;
  1070. background:inherit;
  1071. background-color:rgba(255, 255, 255, 0);
  1072. border:none;
  1073. border-left:0px;
  1074. border-top:0px;
  1075. border-right:0px;
  1076. border-radius:0px;
  1077. border-bottom-right-radius:0px;
  1078. border-bottom-left-radius:0px;
  1079. -moz-box-shadow:none;
  1080. -webkit-box-shadow:none;
  1081. box-shadow:none;
  1082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1083. font-weight:400;
  1084. font-style:normal;
  1085. font-size:14px;
  1086. text-align:right;
  1087. line-height:30px;
  1088. }
  1089. #u51669 {
  1090. border-width:0px;
  1091. position:absolute;
  1092. left:211px;
  1093. top:172px;
  1094. width:161px;
  1095. height:30px;
  1096. display:flex;
  1097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1098. font-weight:400;
  1099. font-style:normal;
  1100. font-size:14px;
  1101. text-align:right;
  1102. line-height:30px;
  1103. }
  1104. #u51669 .text {
  1105. position:absolute;
  1106. align-self:flex-start;
  1107. padding:0px 0px 0px 0px;
  1108. box-sizing:border-box;
  1109. width:100%;
  1110. }
  1111. #u51669_text {
  1112. border-width:0px;
  1113. white-space:nowrap;
  1114. text-transform:none;
  1115. }
  1116. #u51670 {
  1117. border-width:0px;
  1118. position:absolute;
  1119. left:0px;
  1120. top:0px;
  1121. width:0px;
  1122. height:0px;
  1123. }
  1124. #u51671_div {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:375px;
  1130. height:50px;
  1131. background:inherit;
  1132. background-color:rgba(255, 255, 255, 1);
  1133. border:none;
  1134. border-left:0px;
  1135. border-right:0px;
  1136. border-radius:0px;
  1137. border-top-left-radius:0px;
  1138. border-top-right-radius:0px;
  1139. border-bottom-right-radius:0px;
  1140. border-bottom-left-radius:0px;
  1141. -moz-box-shadow:none;
  1142. -webkit-box-shadow:none;
  1143. box-shadow:none;
  1144. }
  1145. #u51671 {
  1146. border-width:0px;
  1147. position:absolute;
  1148. left:29px;
  1149. top:212px;
  1150. width:375px;
  1151. height:50px;
  1152. display:flex;
  1153. }
  1154. #u51671 .text {
  1155. position:absolute;
  1156. align-self:center;
  1157. padding:2px 2px 2px 2px;
  1158. box-sizing:border-box;
  1159. width:100%;
  1160. }
  1161. #u51671_text {
  1162. border-width:0px;
  1163. word-wrap:break-word;
  1164. text-transform:none;
  1165. visibility:hidden;
  1166. }
  1167. #u51672_div {
  1168. border-width:0px;
  1169. position:absolute;
  1170. left:0px;
  1171. top:0px;
  1172. width:64px;
  1173. height:30px;
  1174. background:inherit;
  1175. background-color:rgba(255, 255, 255, 0);
  1176. border:none;
  1177. border-left:0px;
  1178. border-top:0px;
  1179. border-right:0px;
  1180. border-radius:0px;
  1181. border-bottom-right-radius:0px;
  1182. border-bottom-left-radius:0px;
  1183. -moz-box-shadow:none;
  1184. -webkit-box-shadow:none;
  1185. box-shadow:none;
  1186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1187. font-weight:400;
  1188. font-style:normal;
  1189. font-size:14px;
  1190. line-height:30px;
  1191. }
  1192. #u51672 {
  1193. border-width:0px;
  1194. position:absolute;
  1195. left:53px;
  1196. top:222px;
  1197. width:64px;
  1198. height:30px;
  1199. display:flex;
  1200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1201. font-weight:400;
  1202. font-style:normal;
  1203. font-size:14px;
  1204. line-height:30px;
  1205. }
  1206. #u51672 .text {
  1207. position:absolute;
  1208. align-self:flex-start;
  1209. padding:0px 0px 0px 0px;
  1210. box-sizing:border-box;
  1211. width:100%;
  1212. }
  1213. #u51672_text {
  1214. border-width:0px;
  1215. white-space:nowrap;
  1216. text-transform:none;
  1217. }
  1218. #u51673_img {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:8px;
  1224. height:13px;
  1225. }
  1226. #u51673 {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:380px;
  1230. top:231px;
  1231. width:8px;
  1232. height:13px;
  1233. display:flex;
  1234. -webkit-transform:rotate(180deg);
  1235. -moz-transform:rotate(180deg);
  1236. -ms-transform:rotate(180deg);
  1237. transform:rotate(180deg);
  1238. }
  1239. #u51673 .text {
  1240. position:absolute;
  1241. align-self:center;
  1242. padding:2px 2px 2px 2px;
  1243. box-sizing:border-box;
  1244. width:100%;
  1245. }
  1246. #u51673_text {
  1247. border-width:0px;
  1248. word-wrap:break-word;
  1249. text-transform:none;
  1250. visibility:hidden;
  1251. }
  1252. #u51674_div {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:0px;
  1256. top:0px;
  1257. width:29px;
  1258. height:30px;
  1259. background:inherit;
  1260. background-color:rgba(255, 255, 255, 0);
  1261. border:none;
  1262. border-left:0px;
  1263. border-top:0px;
  1264. border-right:0px;
  1265. border-radius:0px;
  1266. border-bottom-right-radius:0px;
  1267. border-bottom-left-radius:0px;
  1268. -moz-box-shadow:none;
  1269. -webkit-box-shadow:none;
  1270. box-shadow:none;
  1271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1272. font-weight:400;
  1273. font-style:normal;
  1274. font-size:14px;
  1275. text-align:right;
  1276. line-height:30px;
  1277. }
  1278. #u51674 {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:343px;
  1282. top:222px;
  1283. width:29px;
  1284. height:30px;
  1285. display:flex;
  1286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1287. font-weight:400;
  1288. font-style:normal;
  1289. font-size:14px;
  1290. text-align:right;
  1291. line-height:30px;
  1292. }
  1293. #u51674 .text {
  1294. position:absolute;
  1295. align-self:flex-start;
  1296. padding:0px 0px 0px 0px;
  1297. box-sizing:border-box;
  1298. width:100%;
  1299. }
  1300. #u51674_text {
  1301. border-width:0px;
  1302. white-space:nowrap;
  1303. text-transform:none;
  1304. }
  1305. #u51675 {
  1306. border-width:0px;
  1307. position:absolute;
  1308. left:0px;
  1309. top:0px;
  1310. width:0px;
  1311. height:0px;
  1312. }
  1313. #u51677_img {
  1314. border-width:0px;
  1315. position:absolute;
  1316. left:0px;
  1317. top:0px;
  1318. width:433px;
  1319. height:865px;
  1320. }
  1321. #u51677 {
  1322. border-width:0px;
  1323. position:absolute;
  1324. left:929px;
  1325. top:0px;
  1326. width:433px;
  1327. height:865px;
  1328. display:flex;
  1329. }
  1330. #u51677 .text {
  1331. position:absolute;
  1332. align-self:center;
  1333. padding:2px 2px 2px 2px;
  1334. box-sizing:border-box;
  1335. width:100%;
  1336. }
  1337. #u51677_text {
  1338. border-width:0px;
  1339. word-wrap:break-word;
  1340. text-transform:none;
  1341. visibility:hidden;
  1342. }
  1343. #u51678_div {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:0px;
  1347. top:0px;
  1348. width:375px;
  1349. height:40px;
  1350. background:inherit;
  1351. background-color:rgba(255, 255, 255, 1);
  1352. box-sizing:border-box;
  1353. border-width:1px;
  1354. border-style:solid;
  1355. border-color:rgba(215, 215, 215, 1);
  1356. border-left:0px;
  1357. border-top:0px;
  1358. border-right:0px;
  1359. border-radius:0px;
  1360. border-bottom-right-radius:0px;
  1361. border-bottom-left-radius:0px;
  1362. -moz-box-shadow:none;
  1363. -webkit-box-shadow:none;
  1364. box-shadow:none;
  1365. }
  1366. #u51678 {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:958px;
  1370. top:67px;
  1371. width:375px;
  1372. height:40px;
  1373. display:flex;
  1374. }
  1375. #u51678 .text {
  1376. position:absolute;
  1377. align-self:center;
  1378. padding:2px 2px 2px 2px;
  1379. box-sizing:border-box;
  1380. width:100%;
  1381. }
  1382. #u51678_text {
  1383. border-width:0px;
  1384. word-wrap:break-word;
  1385. text-transform:none;
  1386. visibility:hidden;
  1387. }
  1388. #u51679 {
  1389. border-width:0px;
  1390. position:absolute;
  1391. left:0px;
  1392. top:0px;
  1393. width:0px;
  1394. height:0px;
  1395. }
  1396. #u51680_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:88px;
  1402. height:32px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 1);
  1405. box-sizing:border-box;
  1406. border-width:1px;
  1407. border-style:solid;
  1408. border-color:rgba(242, 242, 242, 1);
  1409. border-radius:33px;
  1410. -moz-box-shadow:none;
  1411. -webkit-box-shadow:none;
  1412. box-shadow:none;
  1413. }
  1414. #u51680 {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:1238px;
  1418. top:71px;
  1419. width:88px;
  1420. height:32px;
  1421. display:flex;
  1422. }
  1423. #u51680 .text {
  1424. position:absolute;
  1425. align-self:center;
  1426. padding:2px 2px 2px 2px;
  1427. box-sizing:border-box;
  1428. width:100%;
  1429. }
  1430. #u51680_text {
  1431. border-width:0px;
  1432. word-wrap:break-word;
  1433. text-transform:none;
  1434. visibility:hidden;
  1435. }
  1436. #u51681 {
  1437. border-width:0px;
  1438. position:absolute;
  1439. left:0px;
  1440. top:0px;
  1441. width:0px;
  1442. height:0px;
  1443. }
  1444. #u51682_img {
  1445. border-width:0px;
  1446. position:absolute;
  1447. left:0px;
  1448. top:0px;
  1449. width:18px;
  1450. height:18px;
  1451. }
  1452. #u51682 {
  1453. border-width:0px;
  1454. position:absolute;
  1455. left:1301px;
  1456. top:78px;
  1457. width:18px;
  1458. height:18px;
  1459. display:flex;
  1460. }
  1461. #u51682 .text {
  1462. position:absolute;
  1463. align-self:center;
  1464. padding:2px 2px 2px 2px;
  1465. box-sizing:border-box;
  1466. width:100%;
  1467. }
  1468. #u51682_text {
  1469. border-width:0px;
  1470. word-wrap:break-word;
  1471. text-transform:none;
  1472. visibility:hidden;
  1473. }
  1474. #u51683_img {
  1475. border-width:0px;
  1476. position:absolute;
  1477. left:0px;
  1478. top:0px;
  1479. width:6px;
  1480. height:6px;
  1481. }
  1482. #u51683 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:1307px;
  1486. top:84px;
  1487. width:6px;
  1488. height:6px;
  1489. display:flex;
  1490. }
  1491. #u51683 .text {
  1492. position:absolute;
  1493. align-self:center;
  1494. padding:2px 2px 2px 2px;
  1495. box-sizing:border-box;
  1496. width:100%;
  1497. }
  1498. #u51683_text {
  1499. border-width:0px;
  1500. word-wrap:break-word;
  1501. text-transform:none;
  1502. visibility:hidden;
  1503. }
  1504. #u51684 {
  1505. border-width:0px;
  1506. position:absolute;
  1507. left:0px;
  1508. top:0px;
  1509. width:0px;
  1510. height:0px;
  1511. }
  1512. #u51685_img {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:0px;
  1516. top:0px;
  1517. width:5px;
  1518. height:5px;
  1519. }
  1520. #u51685 {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:1252px;
  1524. top:85px;
  1525. width:5px;
  1526. height:5px;
  1527. display:flex;
  1528. }
  1529. #u51685 .text {
  1530. position:absolute;
  1531. align-self:center;
  1532. padding:2px 2px 2px 2px;
  1533. box-sizing:border-box;
  1534. width:100%;
  1535. }
  1536. #u51685_text {
  1537. border-width:0px;
  1538. word-wrap:break-word;
  1539. text-transform:none;
  1540. visibility:hidden;
  1541. }
  1542. #u51686_img {
  1543. border-width:0px;
  1544. position:absolute;
  1545. left:0px;
  1546. top:0px;
  1547. width:5px;
  1548. height:5px;
  1549. }
  1550. #u51686 {
  1551. border-width:0px;
  1552. position:absolute;
  1553. left:1268px;
  1554. top:85px;
  1555. width:5px;
  1556. height:5px;
  1557. display:flex;
  1558. }
  1559. #u51686 .text {
  1560. position:absolute;
  1561. align-self:center;
  1562. padding:2px 2px 2px 2px;
  1563. box-sizing:border-box;
  1564. width:100%;
  1565. }
  1566. #u51686_text {
  1567. border-width:0px;
  1568. word-wrap:break-word;
  1569. text-transform:none;
  1570. visibility:hidden;
  1571. }
  1572. #u51687_img {
  1573. border-width:0px;
  1574. position:absolute;
  1575. left:0px;
  1576. top:0px;
  1577. width:7px;
  1578. height:7px;
  1579. }
  1580. #u51687 {
  1581. border-width:0px;
  1582. position:absolute;
  1583. left:1259px;
  1584. top:84px;
  1585. width:7px;
  1586. height:7px;
  1587. display:flex;
  1588. }
  1589. #u51687 .text {
  1590. position:absolute;
  1591. align-self:center;
  1592. padding:2px 2px 2px 2px;
  1593. box-sizing:border-box;
  1594. width:100%;
  1595. }
  1596. #u51687_text {
  1597. border-width:0px;
  1598. word-wrap:break-word;
  1599. text-transform:none;
  1600. visibility:hidden;
  1601. }
  1602. #u51688_img {
  1603. border-width:0px;
  1604. position:absolute;
  1605. left:0px;
  1606. top:0px;
  1607. width:19px;
  1608. height:2px;
  1609. }
  1610. #u51688 {
  1611. border-width:0px;
  1612. position:absolute;
  1613. left:1276px;
  1614. top:87px;
  1615. width:18px;
  1616. height:1px;
  1617. display:flex;
  1618. -webkit-transform:rotate(90deg);
  1619. -moz-transform:rotate(90deg);
  1620. -ms-transform:rotate(90deg);
  1621. transform:rotate(90deg);
  1622. }
  1623. #u51688 .text {
  1624. position:absolute;
  1625. align-self:center;
  1626. padding:2px 2px 2px 2px;
  1627. box-sizing:border-box;
  1628. width:100%;
  1629. }
  1630. #u51688_text {
  1631. border-width:0px;
  1632. word-wrap:break-word;
  1633. text-transform:none;
  1634. visibility:hidden;
  1635. }
  1636. #u51689_img {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:0px;
  1640. top:0px;
  1641. width:375px;
  1642. height:44px;
  1643. }
  1644. #u51689 {
  1645. border-width:0px;
  1646. position:absolute;
  1647. left:958px;
  1648. top:24px;
  1649. width:375px;
  1650. height:44px;
  1651. display:flex;
  1652. }
  1653. #u51689 .text {
  1654. position:absolute;
  1655. align-self:center;
  1656. padding:2px 2px 2px 2px;
  1657. box-sizing:border-box;
  1658. width:100%;
  1659. }
  1660. #u51689_text {
  1661. border-width:0px;
  1662. word-wrap:break-word;
  1663. text-transform:none;
  1664. visibility:hidden;
  1665. }
  1666. #u51690_div {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:0px;
  1670. top:0px;
  1671. width:375px;
  1672. height:50px;
  1673. background:inherit;
  1674. background-color:rgba(255, 255, 255, 1);
  1675. box-sizing:border-box;
  1676. border-width:1px;
  1677. border-style:solid;
  1678. border-color:rgba(242, 242, 242, 1);
  1679. border-radius:26px;
  1680. border-top-left-radius:0px;
  1681. border-top-right-radius:0px;
  1682. -moz-box-shadow:none;
  1683. -webkit-box-shadow:none;
  1684. box-shadow:none;
  1685. }
  1686. #u51690 {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:958px;
  1690. top:788px;
  1691. width:375px;
  1692. height:50px;
  1693. display:flex;
  1694. }
  1695. #u51690 .text {
  1696. position:absolute;
  1697. align-self:center;
  1698. padding:2px 2px 2px 2px;
  1699. box-sizing:border-box;
  1700. width:100%;
  1701. }
  1702. #u51690_text {
  1703. border-width:0px;
  1704. word-wrap:break-word;
  1705. text-transform:none;
  1706. visibility:hidden;
  1707. }
  1708. #u51691 {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:0px;
  1712. top:0px;
  1713. width:0px;
  1714. height:0px;
  1715. }
  1716. #u51692_img {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:0px;
  1720. top:0px;
  1721. width:24px;
  1722. height:24px;
  1723. }
  1724. #u51692 {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:998px;
  1728. top:792px;
  1729. width:24px;
  1730. height:24px;
  1731. display:flex;
  1732. font-size:8px;
  1733. }
  1734. #u51692 .text {
  1735. position:absolute;
  1736. align-self:center;
  1737. padding:2px 2px 2px 2px;
  1738. box-sizing:border-box;
  1739. width:100%;
  1740. }
  1741. #u51692_text {
  1742. border-width:0px;
  1743. word-wrap:break-word;
  1744. text-transform:none;
  1745. }
  1746. #u51693_div {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:0px;
  1750. top:0px;
  1751. width:25px;
  1752. height:17px;
  1753. background:inherit;
  1754. background-color:rgba(255, 255, 255, 0);
  1755. border:none;
  1756. border-radius:0px;
  1757. -moz-box-shadow:none;
  1758. -webkit-box-shadow:none;
  1759. box-shadow:none;
  1760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1761. font-weight:400;
  1762. font-style:normal;
  1763. font-size:12px;
  1764. }
  1765. #u51693 {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:998px;
  1769. top:817px;
  1770. width:25px;
  1771. height:17px;
  1772. display:flex;
  1773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1774. font-weight:400;
  1775. font-style:normal;
  1776. font-size:12px;
  1777. }
  1778. #u51693 .text {
  1779. position:absolute;
  1780. align-self:flex-start;
  1781. padding:0px 0px 0px 0px;
  1782. box-sizing:border-box;
  1783. width:100%;
  1784. }
  1785. #u51693_text {
  1786. border-width:0px;
  1787. white-space:nowrap;
  1788. text-transform:none;
  1789. }
  1790. #u51694 {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:0px;
  1794. top:0px;
  1795. width:0px;
  1796. height:0px;
  1797. }
  1798. #u51695_img {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:0px;
  1802. top:0px;
  1803. width:24px;
  1804. height:24px;
  1805. }
  1806. #u51695 {
  1807. border-width:0px;
  1808. position:absolute;
  1809. left:1268px;
  1810. top:794px;
  1811. width:24px;
  1812. height:24px;
  1813. display:flex;
  1814. font-size:8px;
  1815. }
  1816. #u51695 .text {
  1817. position:absolute;
  1818. align-self:center;
  1819. padding:2px 2px 2px 2px;
  1820. box-sizing:border-box;
  1821. width:100%;
  1822. }
  1823. #u51695_text {
  1824. border-width:0px;
  1825. word-wrap:break-word;
  1826. text-transform:none;
  1827. }
  1828. #u51696_div {
  1829. border-width:0px;
  1830. position:absolute;
  1831. left:0px;
  1832. top:0px;
  1833. width:25px;
  1834. height:17px;
  1835. background:inherit;
  1836. background-color:rgba(255, 255, 255, 0);
  1837. border:none;
  1838. border-radius:0px;
  1839. -moz-box-shadow:none;
  1840. -webkit-box-shadow:none;
  1841. box-shadow:none;
  1842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1843. font-weight:400;
  1844. font-style:normal;
  1845. font-size:12px;
  1846. }
  1847. #u51696 {
  1848. border-width:0px;
  1849. position:absolute;
  1850. left:1268px;
  1851. top:819px;
  1852. width:25px;
  1853. height:17px;
  1854. display:flex;
  1855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1856. font-weight:400;
  1857. font-style:normal;
  1858. font-size:12px;
  1859. }
  1860. #u51696 .text {
  1861. position:absolute;
  1862. align-self:flex-start;
  1863. padding:0px 0px 0px 0px;
  1864. box-sizing:border-box;
  1865. width:100%;
  1866. }
  1867. #u51696_text {
  1868. border-width:0px;
  1869. white-space:nowrap;
  1870. text-transform:none;
  1871. }
  1872. #u51697_div {
  1873. border-width:0px;
  1874. position:absolute;
  1875. left:0px;
  1876. top:0px;
  1877. width:375px;
  1878. height:681px;
  1879. background:inherit;
  1880. background-color:rgba(242, 242, 242, 0.462745098039216);
  1881. border:none;
  1882. border-radius:0px;
  1883. -moz-box-shadow:none;
  1884. -webkit-box-shadow:none;
  1885. box-shadow:none;
  1886. }
  1887. #u51697 {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:958px;
  1891. top:107px;
  1892. width:375px;
  1893. height:681px;
  1894. display:flex;
  1895. }
  1896. #u51697 .text {
  1897. position:absolute;
  1898. align-self:center;
  1899. padding:2px 2px 2px 2px;
  1900. box-sizing:border-box;
  1901. width:100%;
  1902. }
  1903. #u51697_text {
  1904. border-width:0px;
  1905. word-wrap:break-word;
  1906. text-transform:none;
  1907. visibility:hidden;
  1908. }
  1909. #u51698 {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:0px;
  1915. height:0px;
  1916. }
  1917. #u51699_img {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:0px;
  1921. top:0px;
  1922. width:24px;
  1923. height:24px;
  1924. }
  1925. #u51699 {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:1180px;
  1929. top:792px;
  1930. width:24px;
  1931. height:24px;
  1932. display:flex;
  1933. font-size:8px;
  1934. }
  1935. #u51699 .text {
  1936. position:absolute;
  1937. align-self:center;
  1938. padding:2px 2px 2px 2px;
  1939. box-sizing:border-box;
  1940. width:100%;
  1941. }
  1942. #u51699_text {
  1943. border-width:0px;
  1944. word-wrap:break-word;
  1945. text-transform:none;
  1946. }
  1947. #u51700_div {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:0px;
  1951. top:0px;
  1952. width:37px;
  1953. height:17px;
  1954. background:inherit;
  1955. background-color:rgba(255, 255, 255, 0);
  1956. border:none;
  1957. border-radius:0px;
  1958. -moz-box-shadow:none;
  1959. -webkit-box-shadow:none;
  1960. box-shadow:none;
  1961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1962. font-weight:400;
  1963. font-style:normal;
  1964. font-size:12px;
  1965. }
  1966. #u51700 {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:1174px;
  1970. top:817px;
  1971. width:37px;
  1972. height:17px;
  1973. display:flex;
  1974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1975. font-weight:400;
  1976. font-style:normal;
  1977. font-size:12px;
  1978. }
  1979. #u51700 .text {
  1980. position:absolute;
  1981. align-self:flex-start;
  1982. padding:0px 0px 0px 0px;
  1983. box-sizing:border-box;
  1984. width:100%;
  1985. }
  1986. #u51700_text {
  1987. border-width:0px;
  1988. white-space:nowrap;
  1989. text-transform:none;
  1990. }
  1991. #u51701 {
  1992. border-width:0px;
  1993. position:absolute;
  1994. left:0px;
  1995. top:0px;
  1996. width:0px;
  1997. height:0px;
  1998. }
  1999. #u51702_img {
  2000. border-width:0px;
  2001. position:absolute;
  2002. left:0px;
  2003. top:0px;
  2004. width:24px;
  2005. height:24px;
  2006. }
  2007. #u51702 {
  2008. border-width:0px;
  2009. position:absolute;
  2010. left:1086px;
  2011. top:792px;
  2012. width:24px;
  2013. height:24px;
  2014. display:flex;
  2015. font-size:8px;
  2016. }
  2017. #u51702 .text {
  2018. position:absolute;
  2019. align-self:center;
  2020. padding:2px 2px 2px 2px;
  2021. box-sizing:border-box;
  2022. width:100%;
  2023. }
  2024. #u51702_text {
  2025. border-width:0px;
  2026. word-wrap:break-word;
  2027. text-transform:none;
  2028. }
  2029. #u51703_div {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:0px;
  2033. top:0px;
  2034. width:37px;
  2035. height:17px;
  2036. background:inherit;
  2037. background-color:rgba(255, 255, 255, 0);
  2038. border:none;
  2039. border-radius:0px;
  2040. -moz-box-shadow:none;
  2041. -webkit-box-shadow:none;
  2042. box-shadow:none;
  2043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2044. font-weight:400;
  2045. font-style:normal;
  2046. font-size:12px;
  2047. }
  2048. #u51703 {
  2049. border-width:0px;
  2050. position:absolute;
  2051. left:1080px;
  2052. top:817px;
  2053. width:37px;
  2054. height:17px;
  2055. display:flex;
  2056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2057. font-weight:400;
  2058. font-style:normal;
  2059. font-size:12px;
  2060. }
  2061. #u51703 .text {
  2062. position:absolute;
  2063. align-self:flex-start;
  2064. padding:0px 0px 0px 0px;
  2065. box-sizing:border-box;
  2066. width:100%;
  2067. }
  2068. #u51703_text {
  2069. border-width:0px;
  2070. white-space:nowrap;
  2071. text-transform:none;
  2072. }
  2073. #u51704_div {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:0px;
  2077. top:0px;
  2078. width:375px;
  2079. height:735px;
  2080. background:inherit;
  2081. background-color:rgba(242, 242, 242, 1);
  2082. border:none;
  2083. border-top:0px;
  2084. border-radius:25px;
  2085. border-top-left-radius:0px;
  2086. border-top-right-radius:0px;
  2087. -moz-box-shadow:none;
  2088. -webkit-box-shadow:none;
  2089. box-shadow:none;
  2090. }
  2091. #u51704 {
  2092. border-width:0px;
  2093. position:absolute;
  2094. left:958px;
  2095. top:105px;
  2096. width:375px;
  2097. height:735px;
  2098. display:flex;
  2099. }
  2100. #u51704 .text {
  2101. position:absolute;
  2102. align-self:center;
  2103. padding:2px 2px 2px 2px;
  2104. box-sizing:border-box;
  2105. width:100%;
  2106. }
  2107. #u51704_text {
  2108. border-width:0px;
  2109. word-wrap:break-word;
  2110. text-transform:none;
  2111. visibility:hidden;
  2112. }
  2113. #u51705_div {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:0px;
  2117. top:0px;
  2118. width:375px;
  2119. height:735px;
  2120. background:inherit;
  2121. background-color:rgba(255, 255, 255, 1);
  2122. border:none;
  2123. border-top:0px;
  2124. border-radius:22px;
  2125. border-top-left-radius:0px;
  2126. border-top-right-radius:0px;
  2127. -moz-box-shadow:none;
  2128. -webkit-box-shadow:none;
  2129. box-shadow:none;
  2130. }
  2131. #u51705 {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:958px;
  2135. top:105px;
  2136. width:375px;
  2137. height:735px;
  2138. display:flex;
  2139. }
  2140. #u51705 .text {
  2141. position:absolute;
  2142. align-self:center;
  2143. padding:2px 2px 2px 2px;
  2144. box-sizing:border-box;
  2145. width:100%;
  2146. }
  2147. #u51705_text {
  2148. border-width:0px;
  2149. word-wrap:break-word;
  2150. text-transform:none;
  2151. visibility:hidden;
  2152. }
  2153. #u51706_img {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:0px;
  2157. top:0px;
  2158. width:11px;
  2159. height:18px;
  2160. }
  2161. #u51706 {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:971px;
  2165. top:79px;
  2166. width:11px;
  2167. height:18px;
  2168. display:flex;
  2169. }
  2170. #u51706 .text {
  2171. position:absolute;
  2172. align-self:center;
  2173. padding:2px 2px 2px 2px;
  2174. box-sizing:border-box;
  2175. width:100%;
  2176. }
  2177. #u51706_text {
  2178. border-width:0px;
  2179. word-wrap:break-word;
  2180. text-transform:none;
  2181. visibility:hidden;
  2182. }
  2183. #u51707_div {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:0px;
  2187. top:0px;
  2188. width:73px;
  2189. height:30px;
  2190. background:inherit;
  2191. background-color:rgba(255, 255, 255, 0);
  2192. border:none;
  2193. border-left:0px;
  2194. border-top:0px;
  2195. border-right:0px;
  2196. border-radius:0px;
  2197. border-bottom-right-radius:0px;
  2198. border-bottom-left-radius:0px;
  2199. -moz-box-shadow:none;
  2200. -webkit-box-shadow:none;
  2201. box-shadow:none;
  2202. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2203. font-weight:500;
  2204. font-style:normal;
  2205. font-size:18px;
  2206. line-height:30px;
  2207. }
  2208. #u51707 {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:977px;
  2212. top:120px;
  2213. width:73px;
  2214. height:30px;
  2215. display:flex;
  2216. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2217. font-weight:500;
  2218. font-style:normal;
  2219. font-size:18px;
  2220. line-height:30px;
  2221. }
  2222. #u51707 .text {
  2223. position:absolute;
  2224. align-self:flex-start;
  2225. padding:0px 0px 0px 0px;
  2226. box-sizing:border-box;
  2227. width:100%;
  2228. }
  2229. #u51707_text {
  2230. border-width:0px;
  2231. white-space:nowrap;
  2232. text-transform:none;
  2233. }
  2234. #u51708_div {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:0px;
  2238. top:0px;
  2239. width:335px;
  2240. height:40px;
  2241. background:inherit;
  2242. background-color:rgba(24, 144, 255, 1);
  2243. box-sizing:border-box;
  2244. border-width:1px;
  2245. border-style:solid;
  2246. border-color:rgba(24, 144, 255, 1);
  2247. border-radius:19px;
  2248. -moz-box-shadow:none;
  2249. -webkit-box-shadow:none;
  2250. box-shadow:none;
  2251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2252. font-weight:400;
  2253. font-style:normal;
  2254. font-size:14px;
  2255. color:#FFFFFF;
  2256. text-align:center;
  2257. line-height:30px;
  2258. }
  2259. #u51708 {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:978px;
  2263. top:729px;
  2264. width:335px;
  2265. height:40px;
  2266. display:flex;
  2267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2268. font-weight:400;
  2269. font-style:normal;
  2270. font-size:14px;
  2271. color:#FFFFFF;
  2272. text-align:center;
  2273. line-height:30px;
  2274. }
  2275. #u51708 .text {
  2276. position:absolute;
  2277. align-self:center;
  2278. padding:0px 0px 0px 0px;
  2279. box-sizing:border-box;
  2280. width:100%;
  2281. }
  2282. #u51708_text {
  2283. border-width:0px;
  2284. word-wrap:break-word;
  2285. text-transform:none;
  2286. }
  2287. #u51709 {
  2288. border-width:0px;
  2289. position:absolute;
  2290. left:0px;
  2291. top:0px;
  2292. width:0px;
  2293. height:0px;
  2294. }
  2295. #u51710_img {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:0px;
  2299. top:0px;
  2300. width:375px;
  2301. height:50px;
  2302. }
  2303. #u51710 {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:958px;
  2307. top:162px;
  2308. width:375px;
  2309. height:50px;
  2310. display:flex;
  2311. }
  2312. #u51710 .text {
  2313. position:absolute;
  2314. align-self:center;
  2315. padding:2px 2px 2px 2px;
  2316. box-sizing:border-box;
  2317. width:100%;
  2318. }
  2319. #u51710_text {
  2320. border-width:0px;
  2321. word-wrap:break-word;
  2322. text-transform:none;
  2323. visibility:hidden;
  2324. }
  2325. #u51711_div {
  2326. border-width:0px;
  2327. position:absolute;
  2328. left:0px;
  2329. top:0px;
  2330. width:57px;
  2331. height:30px;
  2332. background:inherit;
  2333. background-color:rgba(255, 255, 255, 0);
  2334. border:none;
  2335. border-left:0px;
  2336. border-top:0px;
  2337. border-right:0px;
  2338. border-radius:0px;
  2339. border-bottom-right-radius:0px;
  2340. border-bottom-left-radius:0px;
  2341. -moz-box-shadow:none;
  2342. -webkit-box-shadow:none;
  2343. box-shadow:none;
  2344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2345. font-weight:400;
  2346. font-style:normal;
  2347. font-size:14px;
  2348. line-height:30px;
  2349. }
  2350. #u51711 {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:982px;
  2354. top:172px;
  2355. width:57px;
  2356. height:30px;
  2357. display:flex;
  2358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2359. font-weight:400;
  2360. font-style:normal;
  2361. font-size:14px;
  2362. line-height:30px;
  2363. }
  2364. #u51711 .text {
  2365. position:absolute;
  2366. align-self:flex-start;
  2367. padding:0px 0px 0px 0px;
  2368. box-sizing:border-box;
  2369. width:100%;
  2370. }
  2371. #u51711_text {
  2372. border-width:0px;
  2373. white-space:nowrap;
  2374. text-transform:none;
  2375. }
  2376. #u51712_img {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:0px;
  2380. top:0px;
  2381. width:8px;
  2382. height:13px;
  2383. }
  2384. #u51712 {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:1309px;
  2388. top:179px;
  2389. width:8px;
  2390. height:13px;
  2391. display:flex;
  2392. -webkit-transform:rotate(180deg);
  2393. -moz-transform:rotate(180deg);
  2394. -ms-transform:rotate(180deg);
  2395. transform:rotate(180deg);
  2396. }
  2397. #u51712 .text {
  2398. position:absolute;
  2399. align-self:center;
  2400. padding:2px 2px 2px 2px;
  2401. box-sizing:border-box;
  2402. width:100%;
  2403. }
  2404. #u51712_text {
  2405. border-width:0px;
  2406. word-wrap:break-word;
  2407. text-transform:none;
  2408. visibility:hidden;
  2409. }
  2410. #u51713_div {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:0px;
  2414. top:0px;
  2415. width:29px;
  2416. height:30px;
  2417. background:inherit;
  2418. background-color:rgba(255, 255, 255, 0);
  2419. border:none;
  2420. border-left:0px;
  2421. border-top:0px;
  2422. border-right:0px;
  2423. border-radius:0px;
  2424. border-bottom-right-radius:0px;
  2425. border-bottom-left-radius:0px;
  2426. -moz-box-shadow:none;
  2427. -webkit-box-shadow:none;
  2428. box-shadow:none;
  2429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2430. font-weight:400;
  2431. font-style:normal;
  2432. font-size:14px;
  2433. text-align:right;
  2434. line-height:30px;
  2435. }
  2436. #u51713 {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:1272px;
  2440. top:172px;
  2441. width:29px;
  2442. height:30px;
  2443. display:flex;
  2444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2445. font-weight:400;
  2446. font-style:normal;
  2447. font-size:14px;
  2448. text-align:right;
  2449. line-height:30px;
  2450. }
  2451. #u51713 .text {
  2452. position:absolute;
  2453. align-self:flex-start;
  2454. padding:0px 0px 0px 0px;
  2455. box-sizing:border-box;
  2456. width:100%;
  2457. }
  2458. #u51713_text {
  2459. border-width:0px;
  2460. white-space:nowrap;
  2461. text-transform:none;
  2462. }
  2463. #u51714 {
  2464. border-width:0px;
  2465. position:absolute;
  2466. left:0px;
  2467. top:0px;
  2468. width:0px;
  2469. height:0px;
  2470. }
  2471. #u51715_img {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:0px;
  2475. top:0px;
  2476. width:375px;
  2477. height:50px;
  2478. }
  2479. #u51715 {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:958px;
  2483. top:212px;
  2484. width:375px;
  2485. height:50px;
  2486. display:flex;
  2487. }
  2488. #u51715 .text {
  2489. position:absolute;
  2490. align-self:center;
  2491. padding:2px 2px 2px 2px;
  2492. box-sizing:border-box;
  2493. width:100%;
  2494. }
  2495. #u51715_text {
  2496. border-width:0px;
  2497. word-wrap:break-word;
  2498. text-transform:none;
  2499. visibility:hidden;
  2500. }
  2501. #u51716_div {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:0px;
  2505. top:0px;
  2506. width:71px;
  2507. height:30px;
  2508. background:inherit;
  2509. background-color:rgba(255, 255, 255, 0);
  2510. border:none;
  2511. border-left:0px;
  2512. border-top:0px;
  2513. border-right:0px;
  2514. border-radius:0px;
  2515. border-bottom-right-radius:0px;
  2516. border-bottom-left-radius:0px;
  2517. -moz-box-shadow:none;
  2518. -webkit-box-shadow:none;
  2519. box-shadow:none;
  2520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2521. font-weight:400;
  2522. font-style:normal;
  2523. font-size:14px;
  2524. line-height:30px;
  2525. }
  2526. #u51716 {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:982px;
  2530. top:222px;
  2531. width:71px;
  2532. height:30px;
  2533. display:flex;
  2534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2535. font-weight:400;
  2536. font-style:normal;
  2537. font-size:14px;
  2538. line-height:30px;
  2539. }
  2540. #u51716 .text {
  2541. position:absolute;
  2542. align-self:flex-start;
  2543. padding:0px 0px 0px 0px;
  2544. box-sizing:border-box;
  2545. width:100%;
  2546. }
  2547. #u51716_text {
  2548. border-width:0px;
  2549. white-space:nowrap;
  2550. text-transform:none;
  2551. }
  2552. #u51717_div {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:0px;
  2556. top:0px;
  2557. width:83px;
  2558. height:30px;
  2559. background:inherit;
  2560. background-color:rgba(255, 255, 255, 0);
  2561. border:none;
  2562. border-left:0px;
  2563. border-top:0px;
  2564. border-right:0px;
  2565. border-radius:0px;
  2566. border-bottom-right-radius:0px;
  2567. border-bottom-left-radius:0px;
  2568. -moz-box-shadow:none;
  2569. -webkit-box-shadow:none;
  2570. box-shadow:none;
  2571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2572. font-weight:400;
  2573. font-style:normal;
  2574. font-size:14px;
  2575. text-align:right;
  2576. line-height:30px;
  2577. }
  2578. #u51717 {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:1218px;
  2582. top:222px;
  2583. width:83px;
  2584. height:30px;
  2585. display:flex;
  2586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2587. font-weight:400;
  2588. font-style:normal;
  2589. font-size:14px;
  2590. text-align:right;
  2591. line-height:30px;
  2592. }
  2593. #u51717 .text {
  2594. position:absolute;
  2595. align-self:flex-start;
  2596. padding:0px 0px 0px 0px;
  2597. box-sizing:border-box;
  2598. width:100%;
  2599. }
  2600. #u51717_text {
  2601. border-width:0px;
  2602. white-space:nowrap;
  2603. text-transform:none;
  2604. }
  2605. #u51718_div {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:0px;
  2609. top:0px;
  2610. width:335px;
  2611. height:40px;
  2612. background:inherit;
  2613. background-color:rgba(255, 255, 255, 1);
  2614. box-sizing:border-box;
  2615. border-width:1px;
  2616. border-style:solid;
  2617. border-color:rgba(215, 215, 215, 1);
  2618. border-radius:19px;
  2619. -moz-box-shadow:none;
  2620. -webkit-box-shadow:none;
  2621. box-shadow:none;
  2622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2623. font-weight:400;
  2624. font-style:normal;
  2625. font-size:14px;
  2626. color:#7F7F7F;
  2627. text-align:center;
  2628. line-height:30px;
  2629. }
  2630. #u51718 {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:978px;
  2634. top:782px;
  2635. width:335px;
  2636. height:40px;
  2637. display:flex;
  2638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2639. font-weight:400;
  2640. font-style:normal;
  2641. font-size:14px;
  2642. color:#7F7F7F;
  2643. text-align:center;
  2644. line-height:30px;
  2645. }
  2646. #u51718 .text {
  2647. position:absolute;
  2648. align-self:center;
  2649. padding:0px 0px 0px 0px;
  2650. box-sizing:border-box;
  2651. width:100%;
  2652. }
  2653. #u51718_text {
  2654. border-width:0px;
  2655. word-wrap:break-word;
  2656. text-transform:none;
  2657. }
  2658. #u51719 {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:0px;
  2662. top:0px;
  2663. width:0px;
  2664. height:0px;
  2665. }
  2666. #u51720_div {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:0px;
  2670. top:0px;
  2671. width:341px;
  2672. height:17px;
  2673. background:inherit;
  2674. background-color:rgba(255, 255, 255, 0);
  2675. border:none;
  2676. border-left:0px;
  2677. border-top:0px;
  2678. border-right:0px;
  2679. border-radius:0px;
  2680. border-bottom-right-radius:0px;
  2681. border-bottom-left-radius:0px;
  2682. -moz-box-shadow:none;
  2683. -webkit-box-shadow:none;
  2684. box-shadow:none;
  2685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2686. font-weight:400;
  2687. font-style:normal;
  2688. font-size:12px;
  2689. color:#F59A23;
  2690. }
  2691. #u51720 {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:986px;
  2695. top:271px;
  2696. width:341px;
  2697. height:17px;
  2698. display:flex;
  2699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2700. font-weight:400;
  2701. font-style:normal;
  2702. font-size:12px;
  2703. color:#F59A23;
  2704. }
  2705. #u51720 .text {
  2706. position:absolute;
  2707. align-self:flex-start;
  2708. padding:0px 0px 0px 0px;
  2709. box-sizing:border-box;
  2710. width:100%;
  2711. }
  2712. #u51720_text {
  2713. border-width:0px;
  2714. word-wrap:break-word;
  2715. text-transform:none;
  2716. }
  2717. #u51721_img {
  2718. border-width:0px;
  2719. position:absolute;
  2720. left:0px;
  2721. top:0px;
  2722. width:11px;
  2723. height:11px;
  2724. }
  2725. #u51721 {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:971px;
  2729. top:274px;
  2730. width:11px;
  2731. height:11px;
  2732. display:flex;
  2733. }
  2734. #u51721 .text {
  2735. position:absolute;
  2736. align-self:center;
  2737. padding:2px 2px 2px 2px;
  2738. box-sizing:border-box;
  2739. width:100%;
  2740. }
  2741. #u51721_text {
  2742. border-width:0px;
  2743. word-wrap:break-word;
  2744. text-transform:none;
  2745. visibility:hidden;
  2746. }
  2747. #u51722_div {
  2748. border-width:0px;
  2749. position:absolute;
  2750. left:0px;
  2751. top:0px;
  2752. width:361px;
  2753. height:200px;
  2754. background:inherit;
  2755. background-color:rgba(255, 255, 255, 0);
  2756. border:none;
  2757. border-left:0px;
  2758. border-top:0px;
  2759. border-right:0px;
  2760. border-radius:0px;
  2761. border-bottom-right-radius:0px;
  2762. border-bottom-left-radius:0px;
  2763. -moz-box-shadow:none;
  2764. -webkit-box-shadow:none;
  2765. box-shadow:none;
  2766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2767. font-weight:400;
  2768. font-style:normal;
  2769. font-size:12px;
  2770. color:#D9001B;
  2771. line-height:25px;
  2772. }
  2773. #u51722 {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:966px;
  2777. top:319px;
  2778. width:361px;
  2779. height:200px;
  2780. display:flex;
  2781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2782. font-weight:400;
  2783. font-style:normal;
  2784. font-size:12px;
  2785. color:#D9001B;
  2786. line-height:25px;
  2787. }
  2788. #u51722 .text {
  2789. position:absolute;
  2790. align-self:flex-start;
  2791. padding:0px 0px 0px 0px;
  2792. box-sizing:border-box;
  2793. width:100%;
  2794. }
  2795. #u51722_text {
  2796. border-width:0px;
  2797. word-wrap:break-word;
  2798. text-transform:none;
  2799. }
  2800. #u51723_div {
  2801. border-width:0px;
  2802. position:absolute;
  2803. left:0px;
  2804. top:0px;
  2805. width:375px;
  2806. height:610px;
  2807. background:inherit;
  2808. background-color:rgba(255, 255, 255, 1);
  2809. border:none;
  2810. border-left:0px;
  2811. border-right:0px;
  2812. border-radius:0px;
  2813. border-top-left-radius:0px;
  2814. border-top-right-radius:0px;
  2815. border-bottom-right-radius:0px;
  2816. border-bottom-left-radius:0px;
  2817. -moz-box-shadow:none;
  2818. -webkit-box-shadow:none;
  2819. box-shadow:none;
  2820. }
  2821. #u51723 {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:29px;
  2825. top:273px;
  2826. width:375px;
  2827. height:610px;
  2828. display:flex;
  2829. }
  2830. #u51723 .text {
  2831. position:absolute;
  2832. align-self:center;
  2833. padding:2px 2px 2px 2px;
  2834. box-sizing:border-box;
  2835. width:100%;
  2836. }
  2837. #u51723_text {
  2838. border-width:0px;
  2839. word-wrap:break-word;
  2840. text-transform:none;
  2841. visibility:hidden;
  2842. }
  2843. #u51724_div {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:0px;
  2847. top:0px;
  2848. width:73px;
  2849. height:30px;
  2850. background:inherit;
  2851. background-color:rgba(255, 255, 255, 0);
  2852. border:none;
  2853. border-left:0px;
  2854. border-top:0px;
  2855. border-right:0px;
  2856. border-radius:0px;
  2857. border-bottom-right-radius:0px;
  2858. border-bottom-left-radius:0px;
  2859. -moz-box-shadow:none;
  2860. -webkit-box-shadow:none;
  2861. box-shadow:none;
  2862. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2863. font-weight:500;
  2864. font-style:normal;
  2865. font-size:18px;
  2866. line-height:30px;
  2867. }
  2868. #u51724 {
  2869. border-width:0px;
  2870. position:absolute;
  2871. left:51px;
  2872. top:288px;
  2873. width:73px;
  2874. height:30px;
  2875. display:flex;
  2876. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2877. font-weight:500;
  2878. font-style:normal;
  2879. font-size:18px;
  2880. line-height:30px;
  2881. }
  2882. #u51724 .text {
  2883. position:absolute;
  2884. align-self:flex-start;
  2885. padding:0px 0px 0px 0px;
  2886. box-sizing:border-box;
  2887. width:100%;
  2888. }
  2889. #u51724_text {
  2890. border-width:0px;
  2891. white-space:nowrap;
  2892. text-transform:none;
  2893. }
  2894. #u51725 {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:0px;
  2898. top:0px;
  2899. width:0px;
  2900. height:0px;
  2901. }
  2902. #u51726_img {
  2903. border-width:0px;
  2904. position:absolute;
  2905. left:0px;
  2906. top:0px;
  2907. width:342px;
  2908. height:160px;
  2909. }
  2910. #u51726 {
  2911. border-width:0px;
  2912. position:absolute;
  2913. left:51px;
  2914. top:323px;
  2915. width:342px;
  2916. height:160px;
  2917. display:flex;
  2918. }
  2919. #u51726 .text {
  2920. position:absolute;
  2921. align-self:center;
  2922. padding:2px 2px 2px 2px;
  2923. box-sizing:border-box;
  2924. width:100%;
  2925. }
  2926. #u51726_text {
  2927. border-width:0px;
  2928. word-wrap:break-word;
  2929. text-transform:none;
  2930. visibility:hidden;
  2931. }
  2932. #u51727_div {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:0px;
  2936. top:0px;
  2937. width:64px;
  2938. height:30px;
  2939. background:inherit;
  2940. background-color:rgba(255, 255, 255, 0);
  2941. border:none;
  2942. border-left:0px;
  2943. border-top:0px;
  2944. border-right:0px;
  2945. border-radius:0px;
  2946. border-bottom-right-radius:0px;
  2947. border-bottom-left-radius:0px;
  2948. -moz-box-shadow:none;
  2949. -webkit-box-shadow:none;
  2950. box-shadow:none;
  2951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2952. font-weight:400;
  2953. font-style:normal;
  2954. font-size:14px;
  2955. line-height:30px;
  2956. }
  2957. #u51727 {
  2958. border-width:0px;
  2959. position:absolute;
  2960. left:51px;
  2961. top:333px;
  2962. width:64px;
  2963. height:30px;
  2964. display:flex;
  2965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2966. font-weight:400;
  2967. font-style:normal;
  2968. font-size:14px;
  2969. line-height:30px;
  2970. }
  2971. #u51727 .text {
  2972. position:absolute;
  2973. align-self:flex-start;
  2974. padding:0px 0px 0px 0px;
  2975. box-sizing:border-box;
  2976. width:100%;
  2977. }
  2978. #u51727_text {
  2979. border-width:0px;
  2980. white-space:nowrap;
  2981. text-transform:none;
  2982. }
  2983. #u51728_img {
  2984. border-width:0px;
  2985. position:absolute;
  2986. left:0px;
  2987. top:0px;
  2988. width:331px;
  2989. height:110px;
  2990. }
  2991. #u51728 {
  2992. border-width:0px;
  2993. position:absolute;
  2994. left:51px;
  2995. top:363px;
  2996. width:331px;
  2997. height:110px;
  2998. display:flex;
  2999. }
  3000. #u51728 .text {
  3001. position:absolute;
  3002. align-self:center;
  3003. padding:2px 2px 2px 2px;
  3004. box-sizing:border-box;
  3005. width:100%;
  3006. }
  3007. #u51728_text {
  3008. border-width:0px;
  3009. word-wrap:break-word;
  3010. text-transform:none;
  3011. visibility:hidden;
  3012. }
  3013. #u51729 {
  3014. border-width:0px;
  3015. position:absolute;
  3016. left:0px;
  3017. top:0px;
  3018. width:0px;
  3019. height:0px;
  3020. }
  3021. #u51730_img {
  3022. border-width:0px;
  3023. position:absolute;
  3024. left:0px;
  3025. top:0px;
  3026. width:342px;
  3027. height:50px;
  3028. }
  3029. #u51730 {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:51px;
  3033. top:533px;
  3034. width:342px;
  3035. height:50px;
  3036. display:flex;
  3037. }
  3038. #u51730 .text {
  3039. position:absolute;
  3040. align-self:center;
  3041. padding:2px 2px 2px 2px;
  3042. box-sizing:border-box;
  3043. width:100%;
  3044. }
  3045. #u51730_text {
  3046. border-width:0px;
  3047. word-wrap:break-word;
  3048. text-transform:none;
  3049. visibility:hidden;
  3050. }
  3051. #u51731_div {
  3052. border-width:0px;
  3053. position:absolute;
  3054. left:0px;
  3055. top:0px;
  3056. width:78px;
  3057. height:30px;
  3058. background:inherit;
  3059. background-color:rgba(255, 255, 255, 0);
  3060. border:none;
  3061. border-left:0px;
  3062. border-top:0px;
  3063. border-right:0px;
  3064. border-radius:0px;
  3065. border-bottom-right-radius:0px;
  3066. border-bottom-left-radius:0px;
  3067. -moz-box-shadow:none;
  3068. -webkit-box-shadow:none;
  3069. box-shadow:none;
  3070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3071. font-weight:400;
  3072. font-style:normal;
  3073. font-size:14px;
  3074. line-height:30px;
  3075. }
  3076. #u51731 {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:51px;
  3080. top:543px;
  3081. width:78px;
  3082. height:30px;
  3083. display:flex;
  3084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3085. font-weight:400;
  3086. font-style:normal;
  3087. font-size:14px;
  3088. line-height:30px;
  3089. }
  3090. #u51731 .text {
  3091. position:absolute;
  3092. align-self:flex-start;
  3093. padding:0px 0px 0px 0px;
  3094. box-sizing:border-box;
  3095. width:100%;
  3096. }
  3097. #u51731_text {
  3098. border-width:0px;
  3099. white-space:nowrap;
  3100. text-transform:none;
  3101. }
  3102. #u51732_input {
  3103. position:absolute;
  3104. left:0px;
  3105. top:0px;
  3106. width:240px;
  3107. height:33px;
  3108. padding:2px 2px 2px 2px;
  3109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3110. font-weight:400;
  3111. font-style:normal;
  3112. font-size:14px;
  3113. letter-spacing:normal;
  3114. color:#000000;
  3115. vertical-align:none;
  3116. text-align:right;
  3117. text-transform:none;
  3118. background-color:transparent;
  3119. border-color:transparent;
  3120. }
  3121. #u51732_input.disabled {
  3122. position:absolute;
  3123. left:0px;
  3124. top:0px;
  3125. width:240px;
  3126. height:33px;
  3127. padding:2px 2px 2px 2px;
  3128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3129. font-weight:400;
  3130. font-style:normal;
  3131. font-size:14px;
  3132. letter-spacing:normal;
  3133. color:#000000;
  3134. vertical-align:none;
  3135. text-align:right;
  3136. text-transform:none;
  3137. background-color:transparent;
  3138. border-color:transparent;
  3139. }
  3140. #u51732_div {
  3141. border-width:0px;
  3142. position:absolute;
  3143. left:0px;
  3144. top:0px;
  3145. width:240px;
  3146. height:33px;
  3147. background:inherit;
  3148. background-color:rgba(255, 255, 255, 1);
  3149. border:none;
  3150. border-radius:0px;
  3151. -moz-box-shadow:none;
  3152. -webkit-box-shadow:none;
  3153. box-shadow:none;
  3154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3155. font-weight:400;
  3156. font-style:normal;
  3157. font-size:14px;
  3158. text-align:right;
  3159. }
  3160. #u51732 {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:126px;
  3164. top:542px;
  3165. width:240px;
  3166. height:33px;
  3167. display:flex;
  3168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3169. font-weight:400;
  3170. font-style:normal;
  3171. font-size:14px;
  3172. text-align:right;
  3173. }
  3174. #u51732 .text {
  3175. position:absolute;
  3176. align-self:center;
  3177. padding:2px 2px 2px 2px;
  3178. box-sizing:border-box;
  3179. width:100%;
  3180. }
  3181. #u51732_div.disabled {
  3182. border-width:0px;
  3183. position:absolute;
  3184. left:0px;
  3185. top:0px;
  3186. width:240px;
  3187. height:33px;
  3188. background:inherit;
  3189. background-color:rgba(240, 240, 240, 1);
  3190. border:none;
  3191. border-radius:0px;
  3192. -moz-box-shadow:none;
  3193. -webkit-box-shadow:none;
  3194. box-shadow:none;
  3195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3196. font-weight:400;
  3197. font-style:normal;
  3198. font-size:14px;
  3199. text-align:right;
  3200. }
  3201. #u51732.disabled {
  3202. }
  3203. #u51733 {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:0px;
  3207. top:0px;
  3208. width:0px;
  3209. height:0px;
  3210. }
  3211. #u51734_img {
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:0px;
  3215. top:0px;
  3216. width:342px;
  3217. height:50px;
  3218. }
  3219. #u51734 {
  3220. border-width:0px;
  3221. position:absolute;
  3222. left:51px;
  3223. top:583px;
  3224. width:342px;
  3225. height:50px;
  3226. display:flex;
  3227. }
  3228. #u51734 .text {
  3229. position:absolute;
  3230. align-self:center;
  3231. padding:2px 2px 2px 2px;
  3232. box-sizing:border-box;
  3233. width:100%;
  3234. }
  3235. #u51734_text {
  3236. border-width:0px;
  3237. word-wrap:break-word;
  3238. text-transform:none;
  3239. visibility:hidden;
  3240. }
  3241. #u51735_div {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:0px;
  3245. top:0px;
  3246. width:78px;
  3247. height:30px;
  3248. background:inherit;
  3249. background-color:rgba(255, 255, 255, 0);
  3250. border:none;
  3251. border-left:0px;
  3252. border-top:0px;
  3253. border-right:0px;
  3254. border-radius:0px;
  3255. border-bottom-right-radius:0px;
  3256. border-bottom-left-radius:0px;
  3257. -moz-box-shadow:none;
  3258. -webkit-box-shadow:none;
  3259. box-shadow:none;
  3260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3261. font-weight:400;
  3262. font-style:normal;
  3263. font-size:14px;
  3264. line-height:30px;
  3265. }
  3266. #u51735 {
  3267. border-width:0px;
  3268. position:absolute;
  3269. left:51px;
  3270. top:593px;
  3271. width:78px;
  3272. height:30px;
  3273. display:flex;
  3274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3275. font-weight:400;
  3276. font-style:normal;
  3277. font-size:14px;
  3278. line-height:30px;
  3279. }
  3280. #u51735 .text {
  3281. position:absolute;
  3282. align-self:flex-start;
  3283. padding:0px 0px 0px 0px;
  3284. box-sizing:border-box;
  3285. width:100%;
  3286. }
  3287. #u51735_text {
  3288. border-width:0px;
  3289. white-space:nowrap;
  3290. text-transform:none;
  3291. }
  3292. #u51736_input {
  3293. position:absolute;
  3294. left:0px;
  3295. top:0px;
  3296. width:240px;
  3297. height:33px;
  3298. padding:2px 2px 2px 2px;
  3299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3300. font-weight:400;
  3301. font-style:normal;
  3302. font-size:14px;
  3303. letter-spacing:normal;
  3304. color:#000000;
  3305. vertical-align:none;
  3306. text-align:right;
  3307. text-transform:none;
  3308. background-color:transparent;
  3309. border-color:transparent;
  3310. }
  3311. #u51736_input.disabled {
  3312. position:absolute;
  3313. left:0px;
  3314. top:0px;
  3315. width:240px;
  3316. height:33px;
  3317. padding:2px 2px 2px 2px;
  3318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3319. font-weight:400;
  3320. font-style:normal;
  3321. font-size:14px;
  3322. letter-spacing:normal;
  3323. color:#000000;
  3324. vertical-align:none;
  3325. text-align:right;
  3326. text-transform:none;
  3327. background-color:transparent;
  3328. border-color:transparent;
  3329. }
  3330. #u51736_div {
  3331. border-width:0px;
  3332. position:absolute;
  3333. left:0px;
  3334. top:0px;
  3335. width:240px;
  3336. height:33px;
  3337. background:inherit;
  3338. background-color:rgba(255, 255, 255, 1);
  3339. border:none;
  3340. border-radius:0px;
  3341. -moz-box-shadow:none;
  3342. -webkit-box-shadow:none;
  3343. box-shadow:none;
  3344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3345. font-weight:400;
  3346. font-style:normal;
  3347. font-size:14px;
  3348. text-align:right;
  3349. }
  3350. #u51736 {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:126px;
  3354. top:592px;
  3355. width:240px;
  3356. height:33px;
  3357. display:flex;
  3358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3359. font-weight:400;
  3360. font-style:normal;
  3361. font-size:14px;
  3362. text-align:right;
  3363. }
  3364. #u51736 .text {
  3365. position:absolute;
  3366. align-self:center;
  3367. padding:2px 2px 2px 2px;
  3368. box-sizing:border-box;
  3369. width:100%;
  3370. }
  3371. #u51736_div.disabled {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:0px;
  3375. top:0px;
  3376. width:240px;
  3377. height:33px;
  3378. background:inherit;
  3379. background-color:rgba(240, 240, 240, 1);
  3380. border:none;
  3381. border-radius:0px;
  3382. -moz-box-shadow:none;
  3383. -webkit-box-shadow:none;
  3384. box-shadow:none;
  3385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3386. font-weight:400;
  3387. font-style:normal;
  3388. font-size:14px;
  3389. text-align:right;
  3390. }
  3391. #u51736.disabled {
  3392. }
  3393. #u51737 {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:0px;
  3397. top:0px;
  3398. width:0px;
  3399. height:0px;
  3400. }
  3401. #u51738_img {
  3402. border-width:0px;
  3403. position:absolute;
  3404. left:0px;
  3405. top:0px;
  3406. width:342px;
  3407. height:50px;
  3408. }
  3409. #u51738 {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:51px;
  3413. top:633px;
  3414. width:342px;
  3415. height:50px;
  3416. display:flex;
  3417. }
  3418. #u51738 .text {
  3419. position:absolute;
  3420. align-self:center;
  3421. padding:2px 2px 2px 2px;
  3422. box-sizing:border-box;
  3423. width:100%;
  3424. }
  3425. #u51738_text {
  3426. border-width:0px;
  3427. word-wrap:break-word;
  3428. text-transform:none;
  3429. visibility:hidden;
  3430. }
  3431. #u51739_div {
  3432. border-width:0px;
  3433. position:absolute;
  3434. left:0px;
  3435. top:0px;
  3436. width:78px;
  3437. height:30px;
  3438. background:inherit;
  3439. background-color:rgba(255, 255, 255, 0);
  3440. border:none;
  3441. border-left:0px;
  3442. border-top:0px;
  3443. border-right:0px;
  3444. border-radius:0px;
  3445. border-bottom-right-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:14px;
  3454. line-height:30px;
  3455. }
  3456. #u51739 {
  3457. border-width:0px;
  3458. position:absolute;
  3459. left:51px;
  3460. top:643px;
  3461. width:78px;
  3462. height:30px;
  3463. display:flex;
  3464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3465. font-weight:400;
  3466. font-style:normal;
  3467. font-size:14px;
  3468. line-height:30px;
  3469. }
  3470. #u51739 .text {
  3471. position:absolute;
  3472. align-self:flex-start;
  3473. padding:0px 0px 0px 0px;
  3474. box-sizing:border-box;
  3475. width:100%;
  3476. }
  3477. #u51739_text {
  3478. border-width:0px;
  3479. white-space:nowrap;
  3480. text-transform:none;
  3481. }
  3482. #u51740_input {
  3483. position:absolute;
  3484. left:0px;
  3485. top:0px;
  3486. width:240px;
  3487. height:33px;
  3488. padding:2px 2px 2px 2px;
  3489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3490. font-weight:400;
  3491. font-style:normal;
  3492. font-size:14px;
  3493. letter-spacing:normal;
  3494. color:#000000;
  3495. vertical-align:none;
  3496. text-align:right;
  3497. text-transform:none;
  3498. background-color:transparent;
  3499. border-color:transparent;
  3500. }
  3501. #u51740_input.disabled {
  3502. position:absolute;
  3503. left:0px;
  3504. top:0px;
  3505. width:240px;
  3506. height:33px;
  3507. padding:2px 2px 2px 2px;
  3508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3509. font-weight:400;
  3510. font-style:normal;
  3511. font-size:14px;
  3512. letter-spacing:normal;
  3513. color:#000000;
  3514. vertical-align:none;
  3515. text-align:right;
  3516. text-transform:none;
  3517. background-color:transparent;
  3518. border-color:transparent;
  3519. }
  3520. #u51740_div {
  3521. border-width:0px;
  3522. position:absolute;
  3523. left:0px;
  3524. top:0px;
  3525. width:240px;
  3526. height:33px;
  3527. background:inherit;
  3528. background-color:rgba(255, 255, 255, 1);
  3529. border:none;
  3530. border-radius:0px;
  3531. -moz-box-shadow:none;
  3532. -webkit-box-shadow:none;
  3533. box-shadow:none;
  3534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3535. font-weight:400;
  3536. font-style:normal;
  3537. font-size:14px;
  3538. text-align:right;
  3539. }
  3540. #u51740 {
  3541. border-width:0px;
  3542. position:absolute;
  3543. left:126px;
  3544. top:642px;
  3545. width:240px;
  3546. height:33px;
  3547. display:flex;
  3548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3549. font-weight:400;
  3550. font-style:normal;
  3551. font-size:14px;
  3552. text-align:right;
  3553. }
  3554. #u51740 .text {
  3555. position:absolute;
  3556. align-self:center;
  3557. padding:2px 2px 2px 2px;
  3558. box-sizing:border-box;
  3559. width:100%;
  3560. }
  3561. #u51740_div.disabled {
  3562. border-width:0px;
  3563. position:absolute;
  3564. left:0px;
  3565. top:0px;
  3566. width:240px;
  3567. height:33px;
  3568. background:inherit;
  3569. background-color:rgba(240, 240, 240, 1);
  3570. border:none;
  3571. border-radius:0px;
  3572. -moz-box-shadow:none;
  3573. -webkit-box-shadow:none;
  3574. box-shadow:none;
  3575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3576. font-weight:400;
  3577. font-style:normal;
  3578. font-size:14px;
  3579. text-align:right;
  3580. }
  3581. #u51740.disabled {
  3582. }
  3583. #u51741 {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:0px;
  3587. top:0px;
  3588. width:0px;
  3589. height:0px;
  3590. }
  3591. #u51742_div {
  3592. border-width:0px;
  3593. position:absolute;
  3594. left:0px;
  3595. top:0px;
  3596. width:342px;
  3597. height:200px;
  3598. background:inherit;
  3599. background-color:rgba(255, 255, 255, 1);
  3600. border:none;
  3601. border-left:0px;
  3602. border-top:0px;
  3603. border-right:0px;
  3604. border-radius:0px;
  3605. border-bottom-right-radius:0px;
  3606. border-bottom-left-radius:0px;
  3607. -moz-box-shadow:none;
  3608. -webkit-box-shadow:none;
  3609. box-shadow:none;
  3610. }
  3611. #u51742 {
  3612. border-width:0px;
  3613. position:absolute;
  3614. left:51px;
  3615. top:683px;
  3616. width:342px;
  3617. height:200px;
  3618. display:flex;
  3619. }
  3620. #u51742 .text {
  3621. position:absolute;
  3622. align-self:center;
  3623. padding:2px 2px 2px 2px;
  3624. box-sizing:border-box;
  3625. width:100%;
  3626. }
  3627. #u51742_text {
  3628. border-width:0px;
  3629. word-wrap:break-word;
  3630. text-transform:none;
  3631. visibility:hidden;
  3632. }
  3633. #u51743_div {
  3634. border-width:0px;
  3635. position:absolute;
  3636. left:0px;
  3637. top:0px;
  3638. width:57px;
  3639. height:30px;
  3640. background:inherit;
  3641. background-color:rgba(255, 255, 255, 0);
  3642. border:none;
  3643. border-left:0px;
  3644. border-top:0px;
  3645. border-right:0px;
  3646. border-radius:0px;
  3647. border-bottom-right-radius:0px;
  3648. border-bottom-left-radius:0px;
  3649. -moz-box-shadow:none;
  3650. -webkit-box-shadow:none;
  3651. box-shadow:none;
  3652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3653. font-weight:400;
  3654. font-style:normal;
  3655. font-size:14px;
  3656. line-height:30px;
  3657. }
  3658. #u51743 {
  3659. border-width:0px;
  3660. position:absolute;
  3661. left:51px;
  3662. top:693px;
  3663. width:57px;
  3664. height:30px;
  3665. display:flex;
  3666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3667. font-weight:400;
  3668. font-style:normal;
  3669. font-size:14px;
  3670. line-height:30px;
  3671. }
  3672. #u51743 .text {
  3673. position:absolute;
  3674. align-self:flex-start;
  3675. padding:0px 0px 0px 0px;
  3676. box-sizing:border-box;
  3677. width:100%;
  3678. }
  3679. #u51743_text {
  3680. border-width:0px;
  3681. white-space:nowrap;
  3682. text-transform:none;
  3683. }
  3684. #u51744_div {
  3685. border-width:0px;
  3686. position:absolute;
  3687. left:0px;
  3688. top:0px;
  3689. width:342px;
  3690. height:31px;
  3691. background:inherit;
  3692. background-color:rgba(255, 255, 255, 0);
  3693. border:none;
  3694. border-radius:0px;
  3695. -moz-box-shadow:none;
  3696. -webkit-box-shadow:none;
  3697. box-shadow:none;
  3698. font-size:12px;
  3699. color:#AAAAAA;
  3700. }
  3701. #u51744 {
  3702. border-width:0px;
  3703. position:absolute;
  3704. left:51px;
  3705. top:719px;
  3706. width:342px;
  3707. height:31px;
  3708. display:flex;
  3709. font-size:12px;
  3710. color:#AAAAAA;
  3711. }
  3712. #u51744 .text {
  3713. position:absolute;
  3714. align-self:flex-start;
  3715. padding:0px 0px 0px 0px;
  3716. box-sizing:border-box;
  3717. width:100%;
  3718. }
  3719. #u51744_text {
  3720. border-width:0px;
  3721. word-wrap:break-word;
  3722. text-transform:none;
  3723. }
  3724. #u51745_img {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:0px;
  3728. top:0px;
  3729. width:95px;
  3730. height:94px;
  3731. }
  3732. #u51745 {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:51px;
  3736. top:750px;
  3737. width:95px;
  3738. height:94px;
  3739. display:flex;
  3740. font-size:28px;
  3741. }
  3742. #u51745 .text {
  3743. position:absolute;
  3744. align-self:center;
  3745. padding:2px 2px 2px 2px;
  3746. box-sizing:border-box;
  3747. width:100%;
  3748. }
  3749. #u51745_text {
  3750. border-width:0px;
  3751. word-wrap:break-word;
  3752. text-transform:none;
  3753. }
  3754. #u51746 {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:0px;
  3758. top:0px;
  3759. width:0px;
  3760. height:0px;
  3761. }
  3762. #u51747_div {
  3763. border-width:0px;
  3764. position:absolute;
  3765. left:0px;
  3766. top:0px;
  3767. width:376px;
  3768. height:60px;
  3769. background:inherit;
  3770. background-color:rgba(255, 255, 255, 1);
  3771. border:none;
  3772. border-top:0px;
  3773. border-radius:22px;
  3774. border-top-left-radius:0px;
  3775. border-top-right-radius:0px;
  3776. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  3777. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  3778. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  3779. }
  3780. #u51747 {
  3781. border-width:0px;
  3782. position:absolute;
  3783. left:29px;
  3784. top:893px;
  3785. width:376px;
  3786. height:60px;
  3787. display:flex;
  3788. }
  3789. #u51747 .text {
  3790. position:absolute;
  3791. align-self:center;
  3792. padding:2px 2px 2px 2px;
  3793. box-sizing:border-box;
  3794. width:100%;
  3795. }
  3796. #u51747_text {
  3797. border-width:0px;
  3798. word-wrap:break-word;
  3799. text-transform:none;
  3800. visibility:hidden;
  3801. }
  3802. #u51748_div {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:0px;
  3806. top:0px;
  3807. width:334px;
  3808. height:40px;
  3809. background:inherit;
  3810. background-color:rgba(215, 215, 215, 1);
  3811. border:none;
  3812. border-radius:45px;
  3813. -moz-box-shadow:none;
  3814. -webkit-box-shadow:none;
  3815. box-shadow:none;
  3816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3817. font-weight:400;
  3818. font-style:normal;
  3819. font-size:14px;
  3820. color:#FFFFFF;
  3821. }
  3822. #u51748 {
  3823. border-width:0px;
  3824. position:absolute;
  3825. left:50px;
  3826. top:903px;
  3827. width:334px;
  3828. height:40px;
  3829. display:flex;
  3830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3831. font-weight:400;
  3832. font-style:normal;
  3833. font-size:14px;
  3834. color:#FFFFFF;
  3835. }
  3836. #u51748 .text {
  3837. position:absolute;
  3838. align-self:center;
  3839. padding:2px 2px 2px 2px;
  3840. box-sizing:border-box;
  3841. width:100%;
  3842. }
  3843. #u51748_text {
  3844. border-width:0px;
  3845. word-wrap:break-word;
  3846. text-transform:none;
  3847. }
  3848. #u51749 {
  3849. border-width:0px;
  3850. position:absolute;
  3851. left:0px;
  3852. top:0px;
  3853. width:0px;
  3854. height:0px;
  3855. }
  3856. #u51750_img {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:0px;
  3860. top:0px;
  3861. width:342px;
  3862. height:50px;
  3863. }
  3864. #u51750 {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:51px;
  3868. top:483px;
  3869. width:342px;
  3870. height:50px;
  3871. display:flex;
  3872. }
  3873. #u51750 .text {
  3874. position:absolute;
  3875. align-self:center;
  3876. padding:2px 2px 2px 2px;
  3877. box-sizing:border-box;
  3878. width:100%;
  3879. }
  3880. #u51750_text {
  3881. border-width:0px;
  3882. word-wrap:break-word;
  3883. text-transform:none;
  3884. visibility:hidden;
  3885. }
  3886. #u51751_div {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:0px;
  3890. top:0px;
  3891. width:78px;
  3892. height:30px;
  3893. background:inherit;
  3894. background-color:rgba(255, 255, 255, 0);
  3895. border:none;
  3896. border-left:0px;
  3897. border-top:0px;
  3898. border-right:0px;
  3899. border-radius:0px;
  3900. border-bottom-right-radius:0px;
  3901. border-bottom-left-radius:0px;
  3902. -moz-box-shadow:none;
  3903. -webkit-box-shadow:none;
  3904. box-shadow:none;
  3905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3906. font-weight:400;
  3907. font-style:normal;
  3908. font-size:14px;
  3909. line-height:30px;
  3910. }
  3911. #u51751 {
  3912. border-width:0px;
  3913. position:absolute;
  3914. left:51px;
  3915. top:493px;
  3916. width:78px;
  3917. height:30px;
  3918. display:flex;
  3919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3920. font-weight:400;
  3921. font-style:normal;
  3922. font-size:14px;
  3923. line-height:30px;
  3924. }
  3925. #u51751 .text {
  3926. position:absolute;
  3927. align-self:flex-start;
  3928. padding:0px 0px 0px 0px;
  3929. box-sizing:border-box;
  3930. width:100%;
  3931. }
  3932. #u51751_text {
  3933. border-width:0px;
  3934. white-space:nowrap;
  3935. text-transform:none;
  3936. }
  3937. #u51752_input {
  3938. position:absolute;
  3939. left:0px;
  3940. top:0px;
  3941. width:240px;
  3942. height:33px;
  3943. padding:2px 2px 2px 2px;
  3944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3945. font-weight:400;
  3946. font-style:normal;
  3947. font-size:14px;
  3948. letter-spacing:normal;
  3949. color:#000000;
  3950. vertical-align:none;
  3951. text-align:right;
  3952. text-transform:none;
  3953. background-color:transparent;
  3954. border-color:transparent;
  3955. }
  3956. #u51752_input.disabled {
  3957. position:absolute;
  3958. left:0px;
  3959. top:0px;
  3960. width:240px;
  3961. height:33px;
  3962. padding:2px 2px 2px 2px;
  3963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3964. font-weight:400;
  3965. font-style:normal;
  3966. font-size:14px;
  3967. letter-spacing:normal;
  3968. color:#000000;
  3969. vertical-align:none;
  3970. text-align:right;
  3971. text-transform:none;
  3972. background-color:transparent;
  3973. border-color:transparent;
  3974. }
  3975. #u51752_div {
  3976. border-width:0px;
  3977. position:absolute;
  3978. left:0px;
  3979. top:0px;
  3980. width:240px;
  3981. height:33px;
  3982. background:inherit;
  3983. background-color:rgba(255, 255, 255, 1);
  3984. border:none;
  3985. border-radius:0px;
  3986. -moz-box-shadow:none;
  3987. -webkit-box-shadow:none;
  3988. box-shadow:none;
  3989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3990. font-weight:400;
  3991. font-style:normal;
  3992. font-size:14px;
  3993. text-align:right;
  3994. }
  3995. #u51752 {
  3996. border-width:0px;
  3997. position:absolute;
  3998. left:126px;
  3999. top:492px;
  4000. width:240px;
  4001. height:33px;
  4002. display:flex;
  4003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4004. font-weight:400;
  4005. font-style:normal;
  4006. font-size:14px;
  4007. text-align:right;
  4008. }
  4009. #u51752 .text {
  4010. position:absolute;
  4011. align-self:center;
  4012. padding:2px 2px 2px 2px;
  4013. box-sizing:border-box;
  4014. width:100%;
  4015. }
  4016. #u51752_div.disabled {
  4017. border-width:0px;
  4018. position:absolute;
  4019. left:0px;
  4020. top:0px;
  4021. width:240px;
  4022. height:33px;
  4023. background:inherit;
  4024. background-color:rgba(240, 240, 240, 1);
  4025. border:none;
  4026. border-radius:0px;
  4027. -moz-box-shadow:none;
  4028. -webkit-box-shadow:none;
  4029. box-shadow:none;
  4030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4031. font-weight:400;
  4032. font-style:normal;
  4033. font-size:14px;
  4034. text-align:right;
  4035. }
  4036. #u51752.disabled {
  4037. }
  4038. #u51754_img {
  4039. border-width:0px;
  4040. position:absolute;
  4041. left:0px;
  4042. top:0px;
  4043. width:433px;
  4044. height:865px;
  4045. }
  4046. #u51754 {
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:464px;
  4050. top:0px;
  4051. width:433px;
  4052. height:865px;
  4053. display:flex;
  4054. }
  4055. #u51754 .text {
  4056. position:absolute;
  4057. align-self:center;
  4058. padding:2px 2px 2px 2px;
  4059. box-sizing:border-box;
  4060. width:100%;
  4061. }
  4062. #u51754_text {
  4063. border-width:0px;
  4064. word-wrap:break-word;
  4065. text-transform:none;
  4066. visibility:hidden;
  4067. }
  4068. #u51755_div {
  4069. border-width:0px;
  4070. position:absolute;
  4071. left:0px;
  4072. top:0px;
  4073. width:375px;
  4074. height:40px;
  4075. background:inherit;
  4076. background-color:rgba(255, 255, 255, 1);
  4077. box-sizing:border-box;
  4078. border-width:1px;
  4079. border-style:solid;
  4080. border-color:rgba(215, 215, 215, 1);
  4081. border-left:0px;
  4082. border-top:0px;
  4083. border-right:0px;
  4084. border-radius:0px;
  4085. border-bottom-right-radius:0px;
  4086. border-bottom-left-radius:0px;
  4087. -moz-box-shadow:none;
  4088. -webkit-box-shadow:none;
  4089. box-shadow:none;
  4090. }
  4091. #u51755 {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:493px;
  4095. top:67px;
  4096. width:375px;
  4097. height:40px;
  4098. display:flex;
  4099. }
  4100. #u51755 .text {
  4101. position:absolute;
  4102. align-self:center;
  4103. padding:2px 2px 2px 2px;
  4104. box-sizing:border-box;
  4105. width:100%;
  4106. }
  4107. #u51755_text {
  4108. border-width:0px;
  4109. word-wrap:break-word;
  4110. text-transform:none;
  4111. visibility:hidden;
  4112. }
  4113. #u51756 {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:0px;
  4117. top:0px;
  4118. width:0px;
  4119. height:0px;
  4120. }
  4121. #u51757_div {
  4122. border-width:0px;
  4123. position:absolute;
  4124. left:0px;
  4125. top:0px;
  4126. width:88px;
  4127. height:32px;
  4128. background:inherit;
  4129. background-color:rgba(255, 255, 255, 1);
  4130. box-sizing:border-box;
  4131. border-width:1px;
  4132. border-style:solid;
  4133. border-color:rgba(242, 242, 242, 1);
  4134. border-radius:33px;
  4135. -moz-box-shadow:none;
  4136. -webkit-box-shadow:none;
  4137. box-shadow:none;
  4138. }
  4139. #u51757 {
  4140. border-width:0px;
  4141. position:absolute;
  4142. left:773px;
  4143. top:71px;
  4144. width:88px;
  4145. height:32px;
  4146. display:flex;
  4147. }
  4148. #u51757 .text {
  4149. position:absolute;
  4150. align-self:center;
  4151. padding:2px 2px 2px 2px;
  4152. box-sizing:border-box;
  4153. width:100%;
  4154. }
  4155. #u51757_text {
  4156. border-width:0px;
  4157. word-wrap:break-word;
  4158. text-transform:none;
  4159. visibility:hidden;
  4160. }
  4161. #u51758 {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:0px;
  4165. top:0px;
  4166. width:0px;
  4167. height:0px;
  4168. }
  4169. #u51759_img {
  4170. border-width:0px;
  4171. position:absolute;
  4172. left:0px;
  4173. top:0px;
  4174. width:18px;
  4175. height:18px;
  4176. }
  4177. #u51759 {
  4178. border-width:0px;
  4179. position:absolute;
  4180. left:836px;
  4181. top:78px;
  4182. width:18px;
  4183. height:18px;
  4184. display:flex;
  4185. }
  4186. #u51759 .text {
  4187. position:absolute;
  4188. align-self:center;
  4189. padding:2px 2px 2px 2px;
  4190. box-sizing:border-box;
  4191. width:100%;
  4192. }
  4193. #u51759_text {
  4194. border-width:0px;
  4195. word-wrap:break-word;
  4196. text-transform:none;
  4197. visibility:hidden;
  4198. }
  4199. #u51760_img {
  4200. border-width:0px;
  4201. position:absolute;
  4202. left:0px;
  4203. top:0px;
  4204. width:6px;
  4205. height:6px;
  4206. }
  4207. #u51760 {
  4208. border-width:0px;
  4209. position:absolute;
  4210. left:842px;
  4211. top:84px;
  4212. width:6px;
  4213. height:6px;
  4214. display:flex;
  4215. }
  4216. #u51760 .text {
  4217. position:absolute;
  4218. align-self:center;
  4219. padding:2px 2px 2px 2px;
  4220. box-sizing:border-box;
  4221. width:100%;
  4222. }
  4223. #u51760_text {
  4224. border-width:0px;
  4225. word-wrap:break-word;
  4226. text-transform:none;
  4227. visibility:hidden;
  4228. }
  4229. #u51761 {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:0px;
  4233. top:0px;
  4234. width:0px;
  4235. height:0px;
  4236. }
  4237. #u51762_img {
  4238. border-width:0px;
  4239. position:absolute;
  4240. left:0px;
  4241. top:0px;
  4242. width:5px;
  4243. height:5px;
  4244. }
  4245. #u51762 {
  4246. border-width:0px;
  4247. position:absolute;
  4248. left:787px;
  4249. top:85px;
  4250. width:5px;
  4251. height:5px;
  4252. display:flex;
  4253. }
  4254. #u51762 .text {
  4255. position:absolute;
  4256. align-self:center;
  4257. padding:2px 2px 2px 2px;
  4258. box-sizing:border-box;
  4259. width:100%;
  4260. }
  4261. #u51762_text {
  4262. border-width:0px;
  4263. word-wrap:break-word;
  4264. text-transform:none;
  4265. visibility:hidden;
  4266. }
  4267. #u51763_img {
  4268. border-width:0px;
  4269. position:absolute;
  4270. left:0px;
  4271. top:0px;
  4272. width:5px;
  4273. height:5px;
  4274. }
  4275. #u51763 {
  4276. border-width:0px;
  4277. position:absolute;
  4278. left:803px;
  4279. top:85px;
  4280. width:5px;
  4281. height:5px;
  4282. display:flex;
  4283. }
  4284. #u51763 .text {
  4285. position:absolute;
  4286. align-self:center;
  4287. padding:2px 2px 2px 2px;
  4288. box-sizing:border-box;
  4289. width:100%;
  4290. }
  4291. #u51763_text {
  4292. border-width:0px;
  4293. word-wrap:break-word;
  4294. text-transform:none;
  4295. visibility:hidden;
  4296. }
  4297. #u51764_img {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:0px;
  4301. top:0px;
  4302. width:7px;
  4303. height:7px;
  4304. }
  4305. #u51764 {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:794px;
  4309. top:84px;
  4310. width:7px;
  4311. height:7px;
  4312. display:flex;
  4313. }
  4314. #u51764 .text {
  4315. position:absolute;
  4316. align-self:center;
  4317. padding:2px 2px 2px 2px;
  4318. box-sizing:border-box;
  4319. width:100%;
  4320. }
  4321. #u51764_text {
  4322. border-width:0px;
  4323. word-wrap:break-word;
  4324. text-transform:none;
  4325. visibility:hidden;
  4326. }
  4327. #u51765_img {
  4328. border-width:0px;
  4329. position:absolute;
  4330. left:0px;
  4331. top:0px;
  4332. width:19px;
  4333. height:2px;
  4334. }
  4335. #u51765 {
  4336. border-width:0px;
  4337. position:absolute;
  4338. left:811px;
  4339. top:87px;
  4340. width:18px;
  4341. height:1px;
  4342. display:flex;
  4343. -webkit-transform:rotate(90deg);
  4344. -moz-transform:rotate(90deg);
  4345. -ms-transform:rotate(90deg);
  4346. transform:rotate(90deg);
  4347. }
  4348. #u51765 .text {
  4349. position:absolute;
  4350. align-self:center;
  4351. padding:2px 2px 2px 2px;
  4352. box-sizing:border-box;
  4353. width:100%;
  4354. }
  4355. #u51765_text {
  4356. border-width:0px;
  4357. word-wrap:break-word;
  4358. text-transform:none;
  4359. visibility:hidden;
  4360. }
  4361. #u51766_img {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:0px;
  4365. top:0px;
  4366. width:375px;
  4367. height:44px;
  4368. }
  4369. #u51766 {
  4370. border-width:0px;
  4371. position:absolute;
  4372. left:493px;
  4373. top:24px;
  4374. width:375px;
  4375. height:44px;
  4376. display:flex;
  4377. }
  4378. #u51766 .text {
  4379. position:absolute;
  4380. align-self:center;
  4381. padding:2px 2px 2px 2px;
  4382. box-sizing:border-box;
  4383. width:100%;
  4384. }
  4385. #u51766_text {
  4386. border-width:0px;
  4387. word-wrap:break-word;
  4388. text-transform:none;
  4389. visibility:hidden;
  4390. }
  4391. #u51767_div {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:0px;
  4395. top:0px;
  4396. width:375px;
  4397. height:50px;
  4398. background:inherit;
  4399. background-color:rgba(255, 255, 255, 1);
  4400. box-sizing:border-box;
  4401. border-width:1px;
  4402. border-style:solid;
  4403. border-color:rgba(242, 242, 242, 1);
  4404. border-radius:26px;
  4405. border-top-left-radius:0px;
  4406. border-top-right-radius:0px;
  4407. -moz-box-shadow:none;
  4408. -webkit-box-shadow:none;
  4409. box-shadow:none;
  4410. }
  4411. #u51767 {
  4412. border-width:0px;
  4413. position:absolute;
  4414. left:493px;
  4415. top:788px;
  4416. width:375px;
  4417. height:50px;
  4418. display:flex;
  4419. }
  4420. #u51767 .text {
  4421. position:absolute;
  4422. align-self:center;
  4423. padding:2px 2px 2px 2px;
  4424. box-sizing:border-box;
  4425. width:100%;
  4426. }
  4427. #u51767_text {
  4428. border-width:0px;
  4429. word-wrap:break-word;
  4430. text-transform:none;
  4431. visibility:hidden;
  4432. }
  4433. #u51768 {
  4434. border-width:0px;
  4435. position:absolute;
  4436. left:0px;
  4437. top:0px;
  4438. width:0px;
  4439. height:0px;
  4440. }
  4441. #u51769_img {
  4442. border-width:0px;
  4443. position:absolute;
  4444. left:0px;
  4445. top:0px;
  4446. width:24px;
  4447. height:24px;
  4448. }
  4449. #u51769 {
  4450. border-width:0px;
  4451. position:absolute;
  4452. left:533px;
  4453. top:792px;
  4454. width:24px;
  4455. height:24px;
  4456. display:flex;
  4457. font-size:8px;
  4458. }
  4459. #u51769 .text {
  4460. position:absolute;
  4461. align-self:center;
  4462. padding:2px 2px 2px 2px;
  4463. box-sizing:border-box;
  4464. width:100%;
  4465. }
  4466. #u51769_text {
  4467. border-width:0px;
  4468. word-wrap:break-word;
  4469. text-transform:none;
  4470. }
  4471. #u51770_div {
  4472. border-width:0px;
  4473. position:absolute;
  4474. left:0px;
  4475. top:0px;
  4476. width:25px;
  4477. height:17px;
  4478. background:inherit;
  4479. background-color:rgba(255, 255, 255, 0);
  4480. border:none;
  4481. border-radius:0px;
  4482. -moz-box-shadow:none;
  4483. -webkit-box-shadow:none;
  4484. box-shadow:none;
  4485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4486. font-weight:400;
  4487. font-style:normal;
  4488. font-size:12px;
  4489. }
  4490. #u51770 {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:533px;
  4494. top:817px;
  4495. width:25px;
  4496. height:17px;
  4497. display:flex;
  4498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4499. font-weight:400;
  4500. font-style:normal;
  4501. font-size:12px;
  4502. }
  4503. #u51770 .text {
  4504. position:absolute;
  4505. align-self:flex-start;
  4506. padding:0px 0px 0px 0px;
  4507. box-sizing:border-box;
  4508. width:100%;
  4509. }
  4510. #u51770_text {
  4511. border-width:0px;
  4512. white-space:nowrap;
  4513. text-transform:none;
  4514. }
  4515. #u51771 {
  4516. border-width:0px;
  4517. position:absolute;
  4518. left:0px;
  4519. top:0px;
  4520. width:0px;
  4521. height:0px;
  4522. }
  4523. #u51772_img {
  4524. border-width:0px;
  4525. position:absolute;
  4526. left:0px;
  4527. top:0px;
  4528. width:24px;
  4529. height:24px;
  4530. }
  4531. #u51772 {
  4532. border-width:0px;
  4533. position:absolute;
  4534. left:803px;
  4535. top:794px;
  4536. width:24px;
  4537. height:24px;
  4538. display:flex;
  4539. font-size:8px;
  4540. }
  4541. #u51772 .text {
  4542. position:absolute;
  4543. align-self:center;
  4544. padding:2px 2px 2px 2px;
  4545. box-sizing:border-box;
  4546. width:100%;
  4547. }
  4548. #u51772_text {
  4549. border-width:0px;
  4550. word-wrap:break-word;
  4551. text-transform:none;
  4552. }
  4553. #u51773_div {
  4554. border-width:0px;
  4555. position:absolute;
  4556. left:0px;
  4557. top:0px;
  4558. width:25px;
  4559. height:17px;
  4560. background:inherit;
  4561. background-color:rgba(255, 255, 255, 0);
  4562. border:none;
  4563. border-radius:0px;
  4564. -moz-box-shadow:none;
  4565. -webkit-box-shadow:none;
  4566. box-shadow:none;
  4567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4568. font-weight:400;
  4569. font-style:normal;
  4570. font-size:12px;
  4571. }
  4572. #u51773 {
  4573. border-width:0px;
  4574. position:absolute;
  4575. left:803px;
  4576. top:819px;
  4577. width:25px;
  4578. height:17px;
  4579. display:flex;
  4580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4581. font-weight:400;
  4582. font-style:normal;
  4583. font-size:12px;
  4584. }
  4585. #u51773 .text {
  4586. position:absolute;
  4587. align-self:flex-start;
  4588. padding:0px 0px 0px 0px;
  4589. box-sizing:border-box;
  4590. width:100%;
  4591. }
  4592. #u51773_text {
  4593. border-width:0px;
  4594. white-space:nowrap;
  4595. text-transform:none;
  4596. }
  4597. #u51774_div {
  4598. border-width:0px;
  4599. position:absolute;
  4600. left:0px;
  4601. top:0px;
  4602. width:375px;
  4603. height:681px;
  4604. background:inherit;
  4605. background-color:rgba(242, 242, 242, 0.462745098039216);
  4606. border:none;
  4607. border-radius:0px;
  4608. -moz-box-shadow:none;
  4609. -webkit-box-shadow:none;
  4610. box-shadow:none;
  4611. }
  4612. #u51774 {
  4613. border-width:0px;
  4614. position:absolute;
  4615. left:493px;
  4616. top:107px;
  4617. width:375px;
  4618. height:681px;
  4619. display:flex;
  4620. }
  4621. #u51774 .text {
  4622. position:absolute;
  4623. align-self:center;
  4624. padding:2px 2px 2px 2px;
  4625. box-sizing:border-box;
  4626. width:100%;
  4627. }
  4628. #u51774_text {
  4629. border-width:0px;
  4630. word-wrap:break-word;
  4631. text-transform:none;
  4632. visibility:hidden;
  4633. }
  4634. #u51775 {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:0px;
  4638. top:0px;
  4639. width:0px;
  4640. height:0px;
  4641. }
  4642. #u51776_img {
  4643. border-width:0px;
  4644. position:absolute;
  4645. left:0px;
  4646. top:0px;
  4647. width:24px;
  4648. height:24px;
  4649. }
  4650. #u51776 {
  4651. border-width:0px;
  4652. position:absolute;
  4653. left:715px;
  4654. top:792px;
  4655. width:24px;
  4656. height:24px;
  4657. display:flex;
  4658. font-size:8px;
  4659. }
  4660. #u51776 .text {
  4661. position:absolute;
  4662. align-self:center;
  4663. padding:2px 2px 2px 2px;
  4664. box-sizing:border-box;
  4665. width:100%;
  4666. }
  4667. #u51776_text {
  4668. border-width:0px;
  4669. word-wrap:break-word;
  4670. text-transform:none;
  4671. }
  4672. #u51777_div {
  4673. border-width:0px;
  4674. position:absolute;
  4675. left:0px;
  4676. top:0px;
  4677. width:37px;
  4678. height:17px;
  4679. background:inherit;
  4680. background-color:rgba(255, 255, 255, 0);
  4681. border:none;
  4682. border-radius:0px;
  4683. -moz-box-shadow:none;
  4684. -webkit-box-shadow:none;
  4685. box-shadow:none;
  4686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4687. font-weight:400;
  4688. font-style:normal;
  4689. font-size:12px;
  4690. }
  4691. #u51777 {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:709px;
  4695. top:817px;
  4696. width:37px;
  4697. height:17px;
  4698. display:flex;
  4699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4700. font-weight:400;
  4701. font-style:normal;
  4702. font-size:12px;
  4703. }
  4704. #u51777 .text {
  4705. position:absolute;
  4706. align-self:flex-start;
  4707. padding:0px 0px 0px 0px;
  4708. box-sizing:border-box;
  4709. width:100%;
  4710. }
  4711. #u51777_text {
  4712. border-width:0px;
  4713. white-space:nowrap;
  4714. text-transform:none;
  4715. }
  4716. #u51778 {
  4717. border-width:0px;
  4718. position:absolute;
  4719. left:0px;
  4720. top:0px;
  4721. width:0px;
  4722. height:0px;
  4723. }
  4724. #u51779_img {
  4725. border-width:0px;
  4726. position:absolute;
  4727. left:0px;
  4728. top:0px;
  4729. width:24px;
  4730. height:24px;
  4731. }
  4732. #u51779 {
  4733. border-width:0px;
  4734. position:absolute;
  4735. left:621px;
  4736. top:792px;
  4737. width:24px;
  4738. height:24px;
  4739. display:flex;
  4740. font-size:8px;
  4741. }
  4742. #u51779 .text {
  4743. position:absolute;
  4744. align-self:center;
  4745. padding:2px 2px 2px 2px;
  4746. box-sizing:border-box;
  4747. width:100%;
  4748. }
  4749. #u51779_text {
  4750. border-width:0px;
  4751. word-wrap:break-word;
  4752. text-transform:none;
  4753. }
  4754. #u51780_div {
  4755. border-width:0px;
  4756. position:absolute;
  4757. left:0px;
  4758. top:0px;
  4759. width:37px;
  4760. height:17px;
  4761. background:inherit;
  4762. background-color:rgba(255, 255, 255, 0);
  4763. border:none;
  4764. border-radius:0px;
  4765. -moz-box-shadow:none;
  4766. -webkit-box-shadow:none;
  4767. box-shadow:none;
  4768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4769. font-weight:400;
  4770. font-style:normal;
  4771. font-size:12px;
  4772. }
  4773. #u51780 {
  4774. border-width:0px;
  4775. position:absolute;
  4776. left:615px;
  4777. top:817px;
  4778. width:37px;
  4779. height:17px;
  4780. display:flex;
  4781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4782. font-weight:400;
  4783. font-style:normal;
  4784. font-size:12px;
  4785. }
  4786. #u51780 .text {
  4787. position:absolute;
  4788. align-self:flex-start;
  4789. padding:0px 0px 0px 0px;
  4790. box-sizing:border-box;
  4791. width:100%;
  4792. }
  4793. #u51780_text {
  4794. border-width:0px;
  4795. white-space:nowrap;
  4796. text-transform:none;
  4797. }
  4798. #u51781_div {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:0px;
  4802. top:0px;
  4803. width:375px;
  4804. height:847px;
  4805. background:inherit;
  4806. background-color:rgba(242, 242, 242, 1);
  4807. border:none;
  4808. border-top:0px;
  4809. border-radius:25px;
  4810. border-top-left-radius:0px;
  4811. border-top-right-radius:0px;
  4812. -moz-box-shadow:none;
  4813. -webkit-box-shadow:none;
  4814. box-shadow:none;
  4815. }
  4816. #u51781 {
  4817. border-width:0px;
  4818. position:absolute;
  4819. left:493px;
  4820. top:105px;
  4821. width:375px;
  4822. height:847px;
  4823. display:flex;
  4824. }
  4825. #u51781 .text {
  4826. position:absolute;
  4827. align-self:center;
  4828. padding:2px 2px 2px 2px;
  4829. box-sizing:border-box;
  4830. width:100%;
  4831. }
  4832. #u51781_text {
  4833. border-width:0px;
  4834. word-wrap:break-word;
  4835. text-transform:none;
  4836. visibility:hidden;
  4837. }
  4838. #u51782_div {
  4839. border-width:0px;
  4840. position:absolute;
  4841. left:0px;
  4842. top:0px;
  4843. width:375px;
  4844. height:156px;
  4845. background:inherit;
  4846. background-color:rgba(255, 255, 255, 1);
  4847. border:none;
  4848. border-top:0px;
  4849. border-radius:0px;
  4850. border-top-left-radius:0px;
  4851. border-top-right-radius:0px;
  4852. -moz-box-shadow:none;
  4853. -webkit-box-shadow:none;
  4854. box-shadow:none;
  4855. }
  4856. #u51782 {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:493px;
  4860. top:106px;
  4861. width:375px;
  4862. height:156px;
  4863. display:flex;
  4864. }
  4865. #u51782 .text {
  4866. position:absolute;
  4867. align-self:center;
  4868. padding:2px 2px 2px 2px;
  4869. box-sizing:border-box;
  4870. width:100%;
  4871. }
  4872. #u51782_text {
  4873. border-width:0px;
  4874. word-wrap:break-word;
  4875. text-transform:none;
  4876. visibility:hidden;
  4877. }
  4878. #u51783_img {
  4879. border-width:0px;
  4880. position:absolute;
  4881. left:0px;
  4882. top:0px;
  4883. width:11px;
  4884. height:18px;
  4885. }
  4886. #u51783 {
  4887. border-width:0px;
  4888. position:absolute;
  4889. left:506px;
  4890. top:79px;
  4891. width:11px;
  4892. height:18px;
  4893. display:flex;
  4894. }
  4895. #u51783 .text {
  4896. position:absolute;
  4897. align-self:center;
  4898. padding:2px 2px 2px 2px;
  4899. box-sizing:border-box;
  4900. width:100%;
  4901. }
  4902. #u51783_text {
  4903. border-width:0px;
  4904. word-wrap:break-word;
  4905. text-transform:none;
  4906. visibility:hidden;
  4907. }
  4908. #u51784_div {
  4909. border-width:0px;
  4910. position:absolute;
  4911. left:0px;
  4912. top:0px;
  4913. width:73px;
  4914. height:30px;
  4915. background:inherit;
  4916. background-color:rgba(255, 255, 255, 0);
  4917. border:none;
  4918. border-left:0px;
  4919. border-top:0px;
  4920. border-right:0px;
  4921. border-radius:0px;
  4922. border-bottom-right-radius:0px;
  4923. border-bottom-left-radius:0px;
  4924. -moz-box-shadow:none;
  4925. -webkit-box-shadow:none;
  4926. box-shadow:none;
  4927. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4928. font-weight:500;
  4929. font-style:normal;
  4930. font-size:18px;
  4931. line-height:30px;
  4932. }
  4933. #u51784 {
  4934. border-width:0px;
  4935. position:absolute;
  4936. left:512px;
  4937. top:120px;
  4938. width:73px;
  4939. height:30px;
  4940. display:flex;
  4941. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4942. font-weight:500;
  4943. font-style:normal;
  4944. font-size:18px;
  4945. line-height:30px;
  4946. }
  4947. #u51784 .text {
  4948. position:absolute;
  4949. align-self:flex-start;
  4950. padding:0px 0px 0px 0px;
  4951. box-sizing:border-box;
  4952. width:100%;
  4953. }
  4954. #u51784_text {
  4955. border-width:0px;
  4956. white-space:nowrap;
  4957. text-transform:none;
  4958. }
  4959. #u51785 {
  4960. border-width:0px;
  4961. position:absolute;
  4962. left:0px;
  4963. top:0px;
  4964. width:0px;
  4965. height:0px;
  4966. }
  4967. #u51786_img {
  4968. border-width:0px;
  4969. position:absolute;
  4970. left:0px;
  4971. top:0px;
  4972. width:375px;
  4973. height:50px;
  4974. }
  4975. #u51786 {
  4976. border-width:0px;
  4977. position:absolute;
  4978. left:493px;
  4979. top:162px;
  4980. width:375px;
  4981. height:50px;
  4982. display:flex;
  4983. }
  4984. #u51786 .text {
  4985. position:absolute;
  4986. align-self:center;
  4987. padding:2px 2px 2px 2px;
  4988. box-sizing:border-box;
  4989. width:100%;
  4990. }
  4991. #u51786_text {
  4992. border-width:0px;
  4993. word-wrap:break-word;
  4994. text-transform:none;
  4995. visibility:hidden;
  4996. }
  4997. #u51787_div {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:0px;
  5001. top:0px;
  5002. width:64px;
  5003. height:30px;
  5004. background:inherit;
  5005. background-color:rgba(255, 255, 255, 0);
  5006. border:none;
  5007. border-left:0px;
  5008. border-top:0px;
  5009. border-right:0px;
  5010. border-radius:0px;
  5011. border-bottom-right-radius:0px;
  5012. border-bottom-left-radius:0px;
  5013. -moz-box-shadow:none;
  5014. -webkit-box-shadow:none;
  5015. box-shadow:none;
  5016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5017. font-weight:400;
  5018. font-style:normal;
  5019. font-size:14px;
  5020. line-height:30px;
  5021. }
  5022. #u51787 {
  5023. border-width:0px;
  5024. position:absolute;
  5025. left:517px;
  5026. top:172px;
  5027. width:64px;
  5028. height:30px;
  5029. display:flex;
  5030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5031. font-weight:400;
  5032. font-style:normal;
  5033. font-size:14px;
  5034. line-height:30px;
  5035. }
  5036. #u51787 .text {
  5037. position:absolute;
  5038. align-self:flex-start;
  5039. padding:0px 0px 0px 0px;
  5040. box-sizing:border-box;
  5041. width:100%;
  5042. }
  5043. #u51787_text {
  5044. border-width:0px;
  5045. white-space:nowrap;
  5046. text-transform:none;
  5047. }
  5048. #u51788_img {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:0px;
  5052. top:0px;
  5053. width:8px;
  5054. height:13px;
  5055. }
  5056. #u51788 {
  5057. border-width:0px;
  5058. position:absolute;
  5059. left:844px;
  5060. top:179px;
  5061. width:8px;
  5062. height:13px;
  5063. display:flex;
  5064. -webkit-transform:rotate(180deg);
  5065. -moz-transform:rotate(180deg);
  5066. -ms-transform:rotate(180deg);
  5067. transform:rotate(180deg);
  5068. }
  5069. #u51788 .text {
  5070. position:absolute;
  5071. align-self:center;
  5072. padding:2px 2px 2px 2px;
  5073. box-sizing:border-box;
  5074. width:100%;
  5075. }
  5076. #u51788_text {
  5077. border-width:0px;
  5078. word-wrap:break-word;
  5079. text-transform:none;
  5080. visibility:hidden;
  5081. }
  5082. #u51789_div {
  5083. border-width:0px;
  5084. position:absolute;
  5085. left:0px;
  5086. top:0px;
  5087. width:161px;
  5088. height:30px;
  5089. background:inherit;
  5090. background-color:rgba(255, 255, 255, 0);
  5091. border:none;
  5092. border-left:0px;
  5093. border-top:0px;
  5094. border-right:0px;
  5095. border-radius:0px;
  5096. border-bottom-right-radius:0px;
  5097. border-bottom-left-radius:0px;
  5098. -moz-box-shadow:none;
  5099. -webkit-box-shadow:none;
  5100. box-shadow:none;
  5101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5102. font-weight:400;
  5103. font-style:normal;
  5104. font-size:14px;
  5105. text-align:right;
  5106. line-height:30px;
  5107. }
  5108. #u51789 {
  5109. border-width:0px;
  5110. position:absolute;
  5111. left:675px;
  5112. top:172px;
  5113. width:161px;
  5114. height:30px;
  5115. display:flex;
  5116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5117. font-weight:400;
  5118. font-style:normal;
  5119. font-size:14px;
  5120. text-align:right;
  5121. line-height:30px;
  5122. }
  5123. #u51789 .text {
  5124. position:absolute;
  5125. align-self:flex-start;
  5126. padding:0px 0px 0px 0px;
  5127. box-sizing:border-box;
  5128. width:100%;
  5129. }
  5130. #u51789_text {
  5131. border-width:0px;
  5132. white-space:nowrap;
  5133. text-transform:none;
  5134. }
  5135. #u51790 {
  5136. border-width:0px;
  5137. position:absolute;
  5138. left:0px;
  5139. top:0px;
  5140. width:0px;
  5141. height:0px;
  5142. }
  5143. #u51791_div {
  5144. border-width:0px;
  5145. position:absolute;
  5146. left:0px;
  5147. top:0px;
  5148. width:375px;
  5149. height:50px;
  5150. background:inherit;
  5151. background-color:rgba(255, 255, 255, 1);
  5152. border:none;
  5153. border-left:0px;
  5154. border-right:0px;
  5155. border-radius:0px;
  5156. border-top-left-radius:0px;
  5157. border-top-right-radius:0px;
  5158. border-bottom-right-radius:0px;
  5159. border-bottom-left-radius:0px;
  5160. -moz-box-shadow:none;
  5161. -webkit-box-shadow:none;
  5162. box-shadow:none;
  5163. }
  5164. #u51791 {
  5165. border-width:0px;
  5166. position:absolute;
  5167. left:493px;
  5168. top:212px;
  5169. width:375px;
  5170. height:50px;
  5171. display:flex;
  5172. }
  5173. #u51791 .text {
  5174. position:absolute;
  5175. align-self:center;
  5176. padding:2px 2px 2px 2px;
  5177. box-sizing:border-box;
  5178. width:100%;
  5179. }
  5180. #u51791_text {
  5181. border-width:0px;
  5182. word-wrap:break-word;
  5183. text-transform:none;
  5184. visibility:hidden;
  5185. }
  5186. #u51792_div {
  5187. border-width:0px;
  5188. position:absolute;
  5189. left:0px;
  5190. top:0px;
  5191. width:64px;
  5192. height:30px;
  5193. background:inherit;
  5194. background-color:rgba(255, 255, 255, 0);
  5195. border:none;
  5196. border-left:0px;
  5197. border-top:0px;
  5198. border-right:0px;
  5199. border-radius:0px;
  5200. border-bottom-right-radius:0px;
  5201. border-bottom-left-radius:0px;
  5202. -moz-box-shadow:none;
  5203. -webkit-box-shadow:none;
  5204. box-shadow:none;
  5205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5206. font-weight:400;
  5207. font-style:normal;
  5208. font-size:14px;
  5209. line-height:30px;
  5210. }
  5211. #u51792 {
  5212. border-width:0px;
  5213. position:absolute;
  5214. left:517px;
  5215. top:222px;
  5216. width:64px;
  5217. height:30px;
  5218. display:flex;
  5219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5220. font-weight:400;
  5221. font-style:normal;
  5222. font-size:14px;
  5223. line-height:30px;
  5224. }
  5225. #u51792 .text {
  5226. position:absolute;
  5227. align-self:flex-start;
  5228. padding:0px 0px 0px 0px;
  5229. box-sizing:border-box;
  5230. width:100%;
  5231. }
  5232. #u51792_text {
  5233. border-width:0px;
  5234. white-space:nowrap;
  5235. text-transform:none;
  5236. }
  5237. #u51793_img {
  5238. border-width:0px;
  5239. position:absolute;
  5240. left:0px;
  5241. top:0px;
  5242. width:8px;
  5243. height:13px;
  5244. }
  5245. #u51793 {
  5246. border-width:0px;
  5247. position:absolute;
  5248. left:844px;
  5249. top:231px;
  5250. width:8px;
  5251. height:13px;
  5252. display:flex;
  5253. -webkit-transform:rotate(180deg);
  5254. -moz-transform:rotate(180deg);
  5255. -ms-transform:rotate(180deg);
  5256. transform:rotate(180deg);
  5257. }
  5258. #u51793 .text {
  5259. position:absolute;
  5260. align-self:center;
  5261. padding:2px 2px 2px 2px;
  5262. box-sizing:border-box;
  5263. width:100%;
  5264. }
  5265. #u51793_text {
  5266. border-width:0px;
  5267. word-wrap:break-word;
  5268. text-transform:none;
  5269. visibility:hidden;
  5270. }
  5271. #u51794_div {
  5272. border-width:0px;
  5273. position:absolute;
  5274. left:0px;
  5275. top:0px;
  5276. width:29px;
  5277. height:30px;
  5278. background:inherit;
  5279. background-color:rgba(255, 255, 255, 0);
  5280. border:none;
  5281. border-left:0px;
  5282. border-top:0px;
  5283. border-right:0px;
  5284. border-radius:0px;
  5285. border-bottom-right-radius:0px;
  5286. border-bottom-left-radius:0px;
  5287. -moz-box-shadow:none;
  5288. -webkit-box-shadow:none;
  5289. box-shadow:none;
  5290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5291. font-weight:400;
  5292. font-style:normal;
  5293. font-size:14px;
  5294. text-align:right;
  5295. line-height:30px;
  5296. }
  5297. #u51794 {
  5298. border-width:0px;
  5299. position:absolute;
  5300. left:807px;
  5301. top:222px;
  5302. width:29px;
  5303. height:30px;
  5304. display:flex;
  5305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5306. font-weight:400;
  5307. font-style:normal;
  5308. font-size:14px;
  5309. text-align:right;
  5310. line-height:30px;
  5311. }
  5312. #u51794 .text {
  5313. position:absolute;
  5314. align-self:flex-start;
  5315. padding:0px 0px 0px 0px;
  5316. box-sizing:border-box;
  5317. width:100%;
  5318. }
  5319. #u51794_text {
  5320. border-width:0px;
  5321. white-space:nowrap;
  5322. text-transform:none;
  5323. }
  5324. #u51795_div {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:0px;
  5328. top:0px;
  5329. width:375px;
  5330. height:610px;
  5331. background:inherit;
  5332. background-color:rgba(255, 255, 255, 1);
  5333. border:none;
  5334. border-left:0px;
  5335. border-right:0px;
  5336. border-radius:0px;
  5337. border-top-left-radius:0px;
  5338. border-top-right-radius:0px;
  5339. border-bottom-right-radius:0px;
  5340. border-bottom-left-radius:0px;
  5341. -moz-box-shadow:none;
  5342. -webkit-box-shadow:none;
  5343. box-shadow:none;
  5344. }
  5345. #u51795 {
  5346. border-width:0px;
  5347. position:absolute;
  5348. left:493px;
  5349. top:273px;
  5350. width:375px;
  5351. height:610px;
  5352. display:flex;
  5353. }
  5354. #u51795 .text {
  5355. position:absolute;
  5356. align-self:center;
  5357. padding:2px 2px 2px 2px;
  5358. box-sizing:border-box;
  5359. width:100%;
  5360. }
  5361. #u51795_text {
  5362. border-width:0px;
  5363. word-wrap:break-word;
  5364. text-transform:none;
  5365. visibility:hidden;
  5366. }
  5367. #u51796_div {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:0px;
  5371. top:0px;
  5372. width:73px;
  5373. height:30px;
  5374. background:inherit;
  5375. background-color:rgba(255, 255, 255, 0);
  5376. border:none;
  5377. border-left:0px;
  5378. border-top:0px;
  5379. border-right:0px;
  5380. border-radius:0px;
  5381. border-bottom-right-radius:0px;
  5382. border-bottom-left-radius:0px;
  5383. -moz-box-shadow:none;
  5384. -webkit-box-shadow:none;
  5385. box-shadow:none;
  5386. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5387. font-weight:500;
  5388. font-style:normal;
  5389. font-size:18px;
  5390. line-height:30px;
  5391. }
  5392. #u51796 {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:515px;
  5396. top:288px;
  5397. width:73px;
  5398. height:30px;
  5399. display:flex;
  5400. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5401. font-weight:500;
  5402. font-style:normal;
  5403. font-size:18px;
  5404. line-height:30px;
  5405. }
  5406. #u51796 .text {
  5407. position:absolute;
  5408. align-self:flex-start;
  5409. padding:0px 0px 0px 0px;
  5410. box-sizing:border-box;
  5411. width:100%;
  5412. }
  5413. #u51796_text {
  5414. border-width:0px;
  5415. white-space:nowrap;
  5416. text-transform:none;
  5417. }
  5418. #u51797 {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:0px;
  5422. top:0px;
  5423. width:0px;
  5424. height:0px;
  5425. }
  5426. #u51798_img {
  5427. border-width:0px;
  5428. position:absolute;
  5429. left:0px;
  5430. top:0px;
  5431. width:342px;
  5432. height:160px;
  5433. }
  5434. #u51798 {
  5435. border-width:0px;
  5436. position:absolute;
  5437. left:515px;
  5438. top:323px;
  5439. width:342px;
  5440. height:160px;
  5441. display:flex;
  5442. }
  5443. #u51798 .text {
  5444. position:absolute;
  5445. align-self:center;
  5446. padding:2px 2px 2px 2px;
  5447. box-sizing:border-box;
  5448. width:100%;
  5449. }
  5450. #u51798_text {
  5451. border-width:0px;
  5452. word-wrap:break-word;
  5453. text-transform:none;
  5454. visibility:hidden;
  5455. }
  5456. #u51799_div {
  5457. border-width:0px;
  5458. position:absolute;
  5459. left:0px;
  5460. top:0px;
  5461. width:64px;
  5462. height:30px;
  5463. background:inherit;
  5464. background-color:rgba(255, 255, 255, 0);
  5465. border:none;
  5466. border-left:0px;
  5467. border-top:0px;
  5468. border-right:0px;
  5469. border-radius:0px;
  5470. border-bottom-right-radius:0px;
  5471. border-bottom-left-radius:0px;
  5472. -moz-box-shadow:none;
  5473. -webkit-box-shadow:none;
  5474. box-shadow:none;
  5475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5476. font-weight:400;
  5477. font-style:normal;
  5478. font-size:14px;
  5479. line-height:30px;
  5480. }
  5481. #u51799 {
  5482. border-width:0px;
  5483. position:absolute;
  5484. left:515px;
  5485. top:333px;
  5486. width:64px;
  5487. height:30px;
  5488. display:flex;
  5489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5490. font-weight:400;
  5491. font-style:normal;
  5492. font-size:14px;
  5493. line-height:30px;
  5494. }
  5495. #u51799 .text {
  5496. position:absolute;
  5497. align-self:flex-start;
  5498. padding:0px 0px 0px 0px;
  5499. box-sizing:border-box;
  5500. width:100%;
  5501. }
  5502. #u51799_text {
  5503. border-width:0px;
  5504. white-space:nowrap;
  5505. text-transform:none;
  5506. }
  5507. #u51800_img {
  5508. border-width:0px;
  5509. position:absolute;
  5510. left:0px;
  5511. top:0px;
  5512. width:331px;
  5513. height:110px;
  5514. }
  5515. #u51800 {
  5516. border-width:0px;
  5517. position:absolute;
  5518. left:515px;
  5519. top:363px;
  5520. width:331px;
  5521. height:110px;
  5522. display:flex;
  5523. }
  5524. #u51800 .text {
  5525. position:absolute;
  5526. align-self:center;
  5527. padding:2px 2px 2px 2px;
  5528. box-sizing:border-box;
  5529. width:100%;
  5530. }
  5531. #u51800_text {
  5532. border-width:0px;
  5533. word-wrap:break-word;
  5534. text-transform:none;
  5535. visibility:hidden;
  5536. }
  5537. #u51801 {
  5538. border-width:0px;
  5539. position:absolute;
  5540. left:0px;
  5541. top:0px;
  5542. width:0px;
  5543. height:0px;
  5544. }
  5545. #u51802_img {
  5546. border-width:0px;
  5547. position:absolute;
  5548. left:0px;
  5549. top:0px;
  5550. width:342px;
  5551. height:50px;
  5552. }
  5553. #u51802 {
  5554. border-width:0px;
  5555. position:absolute;
  5556. left:515px;
  5557. top:533px;
  5558. width:342px;
  5559. height:50px;
  5560. display:flex;
  5561. }
  5562. #u51802 .text {
  5563. position:absolute;
  5564. align-self:center;
  5565. padding:2px 2px 2px 2px;
  5566. box-sizing:border-box;
  5567. width:100%;
  5568. }
  5569. #u51802_text {
  5570. border-width:0px;
  5571. word-wrap:break-word;
  5572. text-transform:none;
  5573. visibility:hidden;
  5574. }
  5575. #u51803_div {
  5576. border-width:0px;
  5577. position:absolute;
  5578. left:0px;
  5579. top:0px;
  5580. width:78px;
  5581. height:30px;
  5582. background:inherit;
  5583. background-color:rgba(255, 255, 255, 0);
  5584. border:none;
  5585. border-left:0px;
  5586. border-top:0px;
  5587. border-right:0px;
  5588. border-radius:0px;
  5589. border-bottom-right-radius:0px;
  5590. border-bottom-left-radius:0px;
  5591. -moz-box-shadow:none;
  5592. -webkit-box-shadow:none;
  5593. box-shadow:none;
  5594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5595. font-weight:400;
  5596. font-style:normal;
  5597. font-size:14px;
  5598. line-height:30px;
  5599. }
  5600. #u51803 {
  5601. border-width:0px;
  5602. position:absolute;
  5603. left:515px;
  5604. top:543px;
  5605. width:78px;
  5606. height:30px;
  5607. display:flex;
  5608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5609. font-weight:400;
  5610. font-style:normal;
  5611. font-size:14px;
  5612. line-height:30px;
  5613. }
  5614. #u51803 .text {
  5615. position:absolute;
  5616. align-self:flex-start;
  5617. padding:0px 0px 0px 0px;
  5618. box-sizing:border-box;
  5619. width:100%;
  5620. }
  5621. #u51803_text {
  5622. border-width:0px;
  5623. white-space:nowrap;
  5624. text-transform:none;
  5625. }
  5626. #u51804_input {
  5627. position:absolute;
  5628. left:0px;
  5629. top:0px;
  5630. width:240px;
  5631. height:33px;
  5632. padding:2px 2px 2px 2px;
  5633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5634. font-weight:400;
  5635. font-style:normal;
  5636. font-size:14px;
  5637. letter-spacing:normal;
  5638. color:#000000;
  5639. vertical-align:none;
  5640. text-align:right;
  5641. text-transform:none;
  5642. background-color:transparent;
  5643. border-color:transparent;
  5644. }
  5645. #u51804_input.disabled {
  5646. position:absolute;
  5647. left:0px;
  5648. top:0px;
  5649. width:240px;
  5650. height:33px;
  5651. padding:2px 2px 2px 2px;
  5652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5653. font-weight:400;
  5654. font-style:normal;
  5655. font-size:14px;
  5656. letter-spacing:normal;
  5657. color:#000000;
  5658. vertical-align:none;
  5659. text-align:right;
  5660. text-transform:none;
  5661. background-color:transparent;
  5662. border-color:transparent;
  5663. }
  5664. #u51804_div {
  5665. border-width:0px;
  5666. position:absolute;
  5667. left:0px;
  5668. top:0px;
  5669. width:240px;
  5670. height:33px;
  5671. background:inherit;
  5672. background-color:rgba(255, 255, 255, 1);
  5673. border:none;
  5674. border-radius:0px;
  5675. -moz-box-shadow:none;
  5676. -webkit-box-shadow:none;
  5677. box-shadow:none;
  5678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5679. font-weight:400;
  5680. font-style:normal;
  5681. font-size:14px;
  5682. text-align:right;
  5683. }
  5684. #u51804 {
  5685. border-width:0px;
  5686. position:absolute;
  5687. left:590px;
  5688. top:542px;
  5689. width:240px;
  5690. height:33px;
  5691. display:flex;
  5692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5693. font-weight:400;
  5694. font-style:normal;
  5695. font-size:14px;
  5696. text-align:right;
  5697. }
  5698. #u51804 .text {
  5699. position:absolute;
  5700. align-self:center;
  5701. padding:2px 2px 2px 2px;
  5702. box-sizing:border-box;
  5703. width:100%;
  5704. }
  5705. #u51804_div.disabled {
  5706. border-width:0px;
  5707. position:absolute;
  5708. left:0px;
  5709. top:0px;
  5710. width:240px;
  5711. height:33px;
  5712. background:inherit;
  5713. background-color:rgba(240, 240, 240, 1);
  5714. border:none;
  5715. border-radius:0px;
  5716. -moz-box-shadow:none;
  5717. -webkit-box-shadow:none;
  5718. box-shadow:none;
  5719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5720. font-weight:400;
  5721. font-style:normal;
  5722. font-size:14px;
  5723. text-align:right;
  5724. }
  5725. #u51804.disabled {
  5726. }
  5727. #u51805 {
  5728. border-width:0px;
  5729. position:absolute;
  5730. left:0px;
  5731. top:0px;
  5732. width:0px;
  5733. height:0px;
  5734. }
  5735. #u51806_img {
  5736. border-width:0px;
  5737. position:absolute;
  5738. left:0px;
  5739. top:0px;
  5740. width:342px;
  5741. height:50px;
  5742. }
  5743. #u51806 {
  5744. border-width:0px;
  5745. position:absolute;
  5746. left:515px;
  5747. top:583px;
  5748. width:342px;
  5749. height:50px;
  5750. display:flex;
  5751. }
  5752. #u51806 .text {
  5753. position:absolute;
  5754. align-self:center;
  5755. padding:2px 2px 2px 2px;
  5756. box-sizing:border-box;
  5757. width:100%;
  5758. }
  5759. #u51806_text {
  5760. border-width:0px;
  5761. word-wrap:break-word;
  5762. text-transform:none;
  5763. visibility:hidden;
  5764. }
  5765. #u51807_div {
  5766. border-width:0px;
  5767. position:absolute;
  5768. left:0px;
  5769. top:0px;
  5770. width:78px;
  5771. height:30px;
  5772. background:inherit;
  5773. background-color:rgba(255, 255, 255, 0);
  5774. border:none;
  5775. border-left:0px;
  5776. border-top:0px;
  5777. border-right:0px;
  5778. border-radius:0px;
  5779. border-bottom-right-radius:0px;
  5780. border-bottom-left-radius:0px;
  5781. -moz-box-shadow:none;
  5782. -webkit-box-shadow:none;
  5783. box-shadow:none;
  5784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5785. font-weight:400;
  5786. font-style:normal;
  5787. font-size:14px;
  5788. line-height:30px;
  5789. }
  5790. #u51807 {
  5791. border-width:0px;
  5792. position:absolute;
  5793. left:515px;
  5794. top:593px;
  5795. width:78px;
  5796. height:30px;
  5797. display:flex;
  5798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5799. font-weight:400;
  5800. font-style:normal;
  5801. font-size:14px;
  5802. line-height:30px;
  5803. }
  5804. #u51807 .text {
  5805. position:absolute;
  5806. align-self:flex-start;
  5807. padding:0px 0px 0px 0px;
  5808. box-sizing:border-box;
  5809. width:100%;
  5810. }
  5811. #u51807_text {
  5812. border-width:0px;
  5813. white-space:nowrap;
  5814. text-transform:none;
  5815. }
  5816. #u51808_input {
  5817. position:absolute;
  5818. left:0px;
  5819. top:0px;
  5820. width:240px;
  5821. height:33px;
  5822. padding:2px 2px 2px 2px;
  5823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5824. font-weight:400;
  5825. font-style:normal;
  5826. font-size:14px;
  5827. letter-spacing:normal;
  5828. color:#000000;
  5829. vertical-align:none;
  5830. text-align:right;
  5831. text-transform:none;
  5832. background-color:transparent;
  5833. border-color:transparent;
  5834. }
  5835. #u51808_input.disabled {
  5836. position:absolute;
  5837. left:0px;
  5838. top:0px;
  5839. width:240px;
  5840. height:33px;
  5841. padding:2px 2px 2px 2px;
  5842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5843. font-weight:400;
  5844. font-style:normal;
  5845. font-size:14px;
  5846. letter-spacing:normal;
  5847. color:#000000;
  5848. vertical-align:none;
  5849. text-align:right;
  5850. text-transform:none;
  5851. background-color:transparent;
  5852. border-color:transparent;
  5853. }
  5854. #u51808_div {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:0px;
  5858. top:0px;
  5859. width:240px;
  5860. height:33px;
  5861. background:inherit;
  5862. background-color:rgba(255, 255, 255, 1);
  5863. border:none;
  5864. border-radius:0px;
  5865. -moz-box-shadow:none;
  5866. -webkit-box-shadow:none;
  5867. box-shadow:none;
  5868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5869. font-weight:400;
  5870. font-style:normal;
  5871. font-size:14px;
  5872. text-align:right;
  5873. }
  5874. #u51808 {
  5875. border-width:0px;
  5876. position:absolute;
  5877. left:590px;
  5878. top:592px;
  5879. width:240px;
  5880. height:33px;
  5881. display:flex;
  5882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5883. font-weight:400;
  5884. font-style:normal;
  5885. font-size:14px;
  5886. text-align:right;
  5887. }
  5888. #u51808 .text {
  5889. position:absolute;
  5890. align-self:center;
  5891. padding:2px 2px 2px 2px;
  5892. box-sizing:border-box;
  5893. width:100%;
  5894. }
  5895. #u51808_div.disabled {
  5896. border-width:0px;
  5897. position:absolute;
  5898. left:0px;
  5899. top:0px;
  5900. width:240px;
  5901. height:33px;
  5902. background:inherit;
  5903. background-color:rgba(240, 240, 240, 1);
  5904. border:none;
  5905. border-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. text-align:right;
  5914. }
  5915. #u51808.disabled {
  5916. }
  5917. #u51809 {
  5918. border-width:0px;
  5919. position:absolute;
  5920. left:0px;
  5921. top:0px;
  5922. width:0px;
  5923. height:0px;
  5924. }
  5925. #u51810_img {
  5926. border-width:0px;
  5927. position:absolute;
  5928. left:0px;
  5929. top:0px;
  5930. width:342px;
  5931. height:50px;
  5932. }
  5933. #u51810 {
  5934. border-width:0px;
  5935. position:absolute;
  5936. left:515px;
  5937. top:633px;
  5938. width:342px;
  5939. height:50px;
  5940. display:flex;
  5941. }
  5942. #u51810 .text {
  5943. position:absolute;
  5944. align-self:center;
  5945. padding:2px 2px 2px 2px;
  5946. box-sizing:border-box;
  5947. width:100%;
  5948. }
  5949. #u51810_text {
  5950. border-width:0px;
  5951. word-wrap:break-word;
  5952. text-transform:none;
  5953. visibility:hidden;
  5954. }
  5955. #u51811_div {
  5956. border-width:0px;
  5957. position:absolute;
  5958. left:0px;
  5959. top:0px;
  5960. width:78px;
  5961. height:30px;
  5962. background:inherit;
  5963. background-color:rgba(255, 255, 255, 0);
  5964. border:none;
  5965. border-left:0px;
  5966. border-top:0px;
  5967. border-right:0px;
  5968. border-radius:0px;
  5969. border-bottom-right-radius:0px;
  5970. border-bottom-left-radius:0px;
  5971. -moz-box-shadow:none;
  5972. -webkit-box-shadow:none;
  5973. box-shadow:none;
  5974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5975. font-weight:400;
  5976. font-style:normal;
  5977. font-size:14px;
  5978. line-height:30px;
  5979. }
  5980. #u51811 {
  5981. border-width:0px;
  5982. position:absolute;
  5983. left:515px;
  5984. top:643px;
  5985. width:78px;
  5986. height:30px;
  5987. display:flex;
  5988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5989. font-weight:400;
  5990. font-style:normal;
  5991. font-size:14px;
  5992. line-height:30px;
  5993. }
  5994. #u51811 .text {
  5995. position:absolute;
  5996. align-self:flex-start;
  5997. padding:0px 0px 0px 0px;
  5998. box-sizing:border-box;
  5999. width:100%;
  6000. }
  6001. #u51811_text {
  6002. border-width:0px;
  6003. white-space:nowrap;
  6004. text-transform:none;
  6005. }
  6006. #u51812_input {
  6007. position:absolute;
  6008. left:0px;
  6009. top:0px;
  6010. width:240px;
  6011. height:33px;
  6012. padding:2px 2px 2px 2px;
  6013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6014. font-weight:400;
  6015. font-style:normal;
  6016. font-size:14px;
  6017. letter-spacing:normal;
  6018. color:#000000;
  6019. vertical-align:none;
  6020. text-align:right;
  6021. text-transform:none;
  6022. background-color:transparent;
  6023. border-color:transparent;
  6024. }
  6025. #u51812_input.disabled {
  6026. position:absolute;
  6027. left:0px;
  6028. top:0px;
  6029. width:240px;
  6030. height:33px;
  6031. padding:2px 2px 2px 2px;
  6032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6033. font-weight:400;
  6034. font-style:normal;
  6035. font-size:14px;
  6036. letter-spacing:normal;
  6037. color:#000000;
  6038. vertical-align:none;
  6039. text-align:right;
  6040. text-transform:none;
  6041. background-color:transparent;
  6042. border-color:transparent;
  6043. }
  6044. #u51812_div {
  6045. border-width:0px;
  6046. position:absolute;
  6047. left:0px;
  6048. top:0px;
  6049. width:240px;
  6050. height:33px;
  6051. background:inherit;
  6052. background-color:rgba(255, 255, 255, 1);
  6053. border:none;
  6054. border-radius:0px;
  6055. -moz-box-shadow:none;
  6056. -webkit-box-shadow:none;
  6057. box-shadow:none;
  6058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6059. font-weight:400;
  6060. font-style:normal;
  6061. font-size:14px;
  6062. text-align:right;
  6063. }
  6064. #u51812 {
  6065. border-width:0px;
  6066. position:absolute;
  6067. left:590px;
  6068. top:642px;
  6069. width:240px;
  6070. height:33px;
  6071. display:flex;
  6072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6073. font-weight:400;
  6074. font-style:normal;
  6075. font-size:14px;
  6076. text-align:right;
  6077. }
  6078. #u51812 .text {
  6079. position:absolute;
  6080. align-self:center;
  6081. padding:2px 2px 2px 2px;
  6082. box-sizing:border-box;
  6083. width:100%;
  6084. }
  6085. #u51812_div.disabled {
  6086. border-width:0px;
  6087. position:absolute;
  6088. left:0px;
  6089. top:0px;
  6090. width:240px;
  6091. height:33px;
  6092. background:inherit;
  6093. background-color:rgba(240, 240, 240, 1);
  6094. border:none;
  6095. border-radius:0px;
  6096. -moz-box-shadow:none;
  6097. -webkit-box-shadow:none;
  6098. box-shadow:none;
  6099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6100. font-weight:400;
  6101. font-style:normal;
  6102. font-size:14px;
  6103. text-align:right;
  6104. }
  6105. #u51812.disabled {
  6106. }
  6107. #u51813 {
  6108. border-width:0px;
  6109. position:absolute;
  6110. left:0px;
  6111. top:0px;
  6112. width:0px;
  6113. height:0px;
  6114. }
  6115. #u51814_div {
  6116. border-width:0px;
  6117. position:absolute;
  6118. left:0px;
  6119. top:0px;
  6120. width:342px;
  6121. height:200px;
  6122. background:inherit;
  6123. background-color:rgba(255, 255, 255, 1);
  6124. border:none;
  6125. border-left:0px;
  6126. border-top:0px;
  6127. border-right:0px;
  6128. border-radius:0px;
  6129. border-bottom-right-radius:0px;
  6130. border-bottom-left-radius:0px;
  6131. -moz-box-shadow:none;
  6132. -webkit-box-shadow:none;
  6133. box-shadow:none;
  6134. }
  6135. #u51814 {
  6136. border-width:0px;
  6137. position:absolute;
  6138. left:515px;
  6139. top:683px;
  6140. width:342px;
  6141. height:200px;
  6142. display:flex;
  6143. }
  6144. #u51814 .text {
  6145. position:absolute;
  6146. align-self:center;
  6147. padding:2px 2px 2px 2px;
  6148. box-sizing:border-box;
  6149. width:100%;
  6150. }
  6151. #u51814_text {
  6152. border-width:0px;
  6153. word-wrap:break-word;
  6154. text-transform:none;
  6155. visibility:hidden;
  6156. }
  6157. #u51815_div {
  6158. border-width:0px;
  6159. position:absolute;
  6160. left:0px;
  6161. top:0px;
  6162. width:57px;
  6163. height:30px;
  6164. background:inherit;
  6165. background-color:rgba(255, 255, 255, 0);
  6166. border:none;
  6167. border-left:0px;
  6168. border-top:0px;
  6169. border-right:0px;
  6170. border-radius:0px;
  6171. border-bottom-right-radius:0px;
  6172. border-bottom-left-radius:0px;
  6173. -moz-box-shadow:none;
  6174. -webkit-box-shadow:none;
  6175. box-shadow:none;
  6176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6177. font-weight:400;
  6178. font-style:normal;
  6179. font-size:14px;
  6180. line-height:30px;
  6181. }
  6182. #u51815 {
  6183. border-width:0px;
  6184. position:absolute;
  6185. left:515px;
  6186. top:693px;
  6187. width:57px;
  6188. height:30px;
  6189. display:flex;
  6190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6191. font-weight:400;
  6192. font-style:normal;
  6193. font-size:14px;
  6194. line-height:30px;
  6195. }
  6196. #u51815 .text {
  6197. position:absolute;
  6198. align-self:flex-start;
  6199. padding:0px 0px 0px 0px;
  6200. box-sizing:border-box;
  6201. width:100%;
  6202. }
  6203. #u51815_text {
  6204. border-width:0px;
  6205. white-space:nowrap;
  6206. text-transform:none;
  6207. }
  6208. #u51816_div {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:0px;
  6212. top:0px;
  6213. width:342px;
  6214. height:31px;
  6215. background:inherit;
  6216. background-color:rgba(255, 255, 255, 0);
  6217. border:none;
  6218. border-radius:0px;
  6219. -moz-box-shadow:none;
  6220. -webkit-box-shadow:none;
  6221. box-shadow:none;
  6222. font-size:12px;
  6223. color:#AAAAAA;
  6224. }
  6225. #u51816 {
  6226. border-width:0px;
  6227. position:absolute;
  6228. left:515px;
  6229. top:719px;
  6230. width:342px;
  6231. height:31px;
  6232. display:flex;
  6233. font-size:12px;
  6234. color:#AAAAAA;
  6235. }
  6236. #u51816 .text {
  6237. position:absolute;
  6238. align-self:flex-start;
  6239. padding:0px 0px 0px 0px;
  6240. box-sizing:border-box;
  6241. width:100%;
  6242. }
  6243. #u51816_text {
  6244. border-width:0px;
  6245. word-wrap:break-word;
  6246. text-transform:none;
  6247. }
  6248. #u51817_img {
  6249. border-width:0px;
  6250. position:absolute;
  6251. left:0px;
  6252. top:0px;
  6253. width:95px;
  6254. height:94px;
  6255. }
  6256. #u51817 {
  6257. border-width:0px;
  6258. position:absolute;
  6259. left:515px;
  6260. top:750px;
  6261. width:95px;
  6262. height:94px;
  6263. display:flex;
  6264. font-size:28px;
  6265. }
  6266. #u51817 .text {
  6267. position:absolute;
  6268. align-self:center;
  6269. padding:2px 2px 2px 2px;
  6270. box-sizing:border-box;
  6271. width:100%;
  6272. }
  6273. #u51817_text {
  6274. border-width:0px;
  6275. word-wrap:break-word;
  6276. text-transform:none;
  6277. }
  6278. #u51818 {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:0px;
  6282. top:0px;
  6283. width:0px;
  6284. height:0px;
  6285. }
  6286. #u51819_div {
  6287. border-width:0px;
  6288. position:absolute;
  6289. left:0px;
  6290. top:0px;
  6291. width:376px;
  6292. height:60px;
  6293. background:inherit;
  6294. background-color:rgba(255, 255, 255, 1);
  6295. border:none;
  6296. border-top:0px;
  6297. border-radius:22px;
  6298. border-top-left-radius:0px;
  6299. border-top-right-radius:0px;
  6300. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  6301. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  6302. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  6303. }
  6304. #u51819 {
  6305. border-width:0px;
  6306. position:absolute;
  6307. left:493px;
  6308. top:893px;
  6309. width:376px;
  6310. height:60px;
  6311. display:flex;
  6312. }
  6313. #u51819 .text {
  6314. position:absolute;
  6315. align-self:center;
  6316. padding:2px 2px 2px 2px;
  6317. box-sizing:border-box;
  6318. width:100%;
  6319. }
  6320. #u51819_text {
  6321. border-width:0px;
  6322. word-wrap:break-word;
  6323. text-transform:none;
  6324. visibility:hidden;
  6325. }
  6326. #u51820_div {
  6327. border-width:0px;
  6328. position:absolute;
  6329. left:0px;
  6330. top:0px;
  6331. width:334px;
  6332. height:40px;
  6333. background:inherit;
  6334. background-color:rgba(215, 215, 215, 1);
  6335. border:none;
  6336. border-radius:45px;
  6337. -moz-box-shadow:none;
  6338. -webkit-box-shadow:none;
  6339. box-shadow:none;
  6340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6341. font-weight:400;
  6342. font-style:normal;
  6343. font-size:14px;
  6344. color:#FFFFFF;
  6345. }
  6346. #u51820 {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:514px;
  6350. top:903px;
  6351. width:334px;
  6352. height:40px;
  6353. display:flex;
  6354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6355. font-weight:400;
  6356. font-style:normal;
  6357. font-size:14px;
  6358. color:#FFFFFF;
  6359. }
  6360. #u51820 .text {
  6361. position:absolute;
  6362. align-self:center;
  6363. padding:2px 2px 2px 2px;
  6364. box-sizing:border-box;
  6365. width:100%;
  6366. }
  6367. #u51820_text {
  6368. border-width:0px;
  6369. word-wrap:break-word;
  6370. text-transform:none;
  6371. }
  6372. #u51821 {
  6373. border-width:0px;
  6374. position:absolute;
  6375. left:0px;
  6376. top:0px;
  6377. width:0px;
  6378. height:0px;
  6379. }
  6380. #u51822_img {
  6381. border-width:0px;
  6382. position:absolute;
  6383. left:0px;
  6384. top:0px;
  6385. width:342px;
  6386. height:50px;
  6387. }
  6388. #u51822 {
  6389. border-width:0px;
  6390. position:absolute;
  6391. left:515px;
  6392. top:483px;
  6393. width:342px;
  6394. height:50px;
  6395. display:flex;
  6396. }
  6397. #u51822 .text {
  6398. position:absolute;
  6399. align-self:center;
  6400. padding:2px 2px 2px 2px;
  6401. box-sizing:border-box;
  6402. width:100%;
  6403. }
  6404. #u51822_text {
  6405. border-width:0px;
  6406. word-wrap:break-word;
  6407. text-transform:none;
  6408. visibility:hidden;
  6409. }
  6410. #u51823_div {
  6411. border-width:0px;
  6412. position:absolute;
  6413. left:0px;
  6414. top:0px;
  6415. width:78px;
  6416. height:30px;
  6417. background:inherit;
  6418. background-color:rgba(255, 255, 255, 0);
  6419. border:none;
  6420. border-left:0px;
  6421. border-top:0px;
  6422. border-right:0px;
  6423. border-radius:0px;
  6424. border-bottom-right-radius:0px;
  6425. border-bottom-left-radius:0px;
  6426. -moz-box-shadow:none;
  6427. -webkit-box-shadow:none;
  6428. box-shadow:none;
  6429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6430. font-weight:400;
  6431. font-style:normal;
  6432. font-size:14px;
  6433. line-height:30px;
  6434. }
  6435. #u51823 {
  6436. border-width:0px;
  6437. position:absolute;
  6438. left:515px;
  6439. top:493px;
  6440. width:78px;
  6441. height:30px;
  6442. display:flex;
  6443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6444. font-weight:400;
  6445. font-style:normal;
  6446. font-size:14px;
  6447. line-height:30px;
  6448. }
  6449. #u51823 .text {
  6450. position:absolute;
  6451. align-self:flex-start;
  6452. padding:0px 0px 0px 0px;
  6453. box-sizing:border-box;
  6454. width:100%;
  6455. }
  6456. #u51823_text {
  6457. border-width:0px;
  6458. white-space:nowrap;
  6459. text-transform:none;
  6460. }
  6461. #u51824_input {
  6462. position:absolute;
  6463. left:0px;
  6464. top:0px;
  6465. width:240px;
  6466. height:33px;
  6467. padding:2px 2px 2px 2px;
  6468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6469. font-weight:400;
  6470. font-style:normal;
  6471. font-size:14px;
  6472. letter-spacing:normal;
  6473. color:#000000;
  6474. vertical-align:none;
  6475. text-align:right;
  6476. text-transform:none;
  6477. background-color:transparent;
  6478. border-color:transparent;
  6479. }
  6480. #u51824_input.disabled {
  6481. position:absolute;
  6482. left:0px;
  6483. top:0px;
  6484. width:240px;
  6485. height:33px;
  6486. padding:2px 2px 2px 2px;
  6487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6488. font-weight:400;
  6489. font-style:normal;
  6490. font-size:14px;
  6491. letter-spacing:normal;
  6492. color:#000000;
  6493. vertical-align:none;
  6494. text-align:right;
  6495. text-transform:none;
  6496. background-color:transparent;
  6497. border-color:transparent;
  6498. }
  6499. #u51824_div {
  6500. border-width:0px;
  6501. position:absolute;
  6502. left:0px;
  6503. top:0px;
  6504. width:240px;
  6505. height:33px;
  6506. background:inherit;
  6507. background-color:rgba(255, 255, 255, 1);
  6508. border:none;
  6509. border-radius:0px;
  6510. -moz-box-shadow:none;
  6511. -webkit-box-shadow:none;
  6512. box-shadow:none;
  6513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6514. font-weight:400;
  6515. font-style:normal;
  6516. font-size:14px;
  6517. text-align:right;
  6518. }
  6519. #u51824 {
  6520. border-width:0px;
  6521. position:absolute;
  6522. left:590px;
  6523. top:492px;
  6524. width:240px;
  6525. height:33px;
  6526. display:flex;
  6527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6528. font-weight:400;
  6529. font-style:normal;
  6530. font-size:14px;
  6531. text-align:right;
  6532. }
  6533. #u51824 .text {
  6534. position:absolute;
  6535. align-self:center;
  6536. padding:2px 2px 2px 2px;
  6537. box-sizing:border-box;
  6538. width:100%;
  6539. }
  6540. #u51824_div.disabled {
  6541. border-width:0px;
  6542. position:absolute;
  6543. left:0px;
  6544. top:0px;
  6545. width:240px;
  6546. height:33px;
  6547. background:inherit;
  6548. background-color:rgba(240, 240, 240, 1);
  6549. border:none;
  6550. border-radius:0px;
  6551. -moz-box-shadow:none;
  6552. -webkit-box-shadow:none;
  6553. box-shadow:none;
  6554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6555. font-weight:400;
  6556. font-style:normal;
  6557. font-size:14px;
  6558. text-align:right;
  6559. }
  6560. #u51824.disabled {
  6561. }
  6562. #u51825_div {
  6563. border-width:0px;
  6564. position:absolute;
  6565. left:0px;
  6566. top:0px;
  6567. width:652px;
  6568. height:125px;
  6569. background:inherit;
  6570. background-color:rgba(255, 255, 255, 0);
  6571. border:none;
  6572. border-left:0px;
  6573. border-top:0px;
  6574. border-right:0px;
  6575. border-radius:0px;
  6576. border-bottom-right-radius:0px;
  6577. border-bottom-left-radius:0px;
  6578. -moz-box-shadow:none;
  6579. -webkit-box-shadow:none;
  6580. box-shadow:none;
  6581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6582. font-weight:400;
  6583. font-style:normal;
  6584. font-size:12px;
  6585. color:#D9001B;
  6586. line-height:25px;
  6587. }
  6588. #u51825 {
  6589. border-width:0px;
  6590. position:absolute;
  6591. left:899px;
  6592. top:893px;
  6593. width:652px;
  6594. height:125px;
  6595. display:flex;
  6596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6597. font-weight:400;
  6598. font-style:normal;
  6599. font-size:12px;
  6600. color:#D9001B;
  6601. line-height:25px;
  6602. }
  6603. #u51825 .text {
  6604. position:absolute;
  6605. align-self:flex-start;
  6606. padding:0px 0px 0px 0px;
  6607. box-sizing:border-box;
  6608. width:100%;
  6609. }
  6610. #u51825_text {
  6611. border-width:0px;
  6612. word-wrap:break-word;
  6613. text-transform:none;
  6614. }
  6615. #u51826 {
  6616. border-width:0px;
  6617. position:absolute;
  6618. left:0px;
  6619. top:0px;
  6620. width:0px;
  6621. height:0px;
  6622. }
  6623. #u51828_img {
  6624. border-width:0px;
  6625. position:absolute;
  6626. left:0px;
  6627. top:0px;
  6628. width:433px;
  6629. height:865px;
  6630. }
  6631. #u51828 {
  6632. border-width:0px;
  6633. position:absolute;
  6634. left:1390px;
  6635. top:1px;
  6636. width:433px;
  6637. height:865px;
  6638. display:flex;
  6639. }
  6640. #u51828 .text {
  6641. position:absolute;
  6642. align-self:center;
  6643. padding:2px 2px 2px 2px;
  6644. box-sizing:border-box;
  6645. width:100%;
  6646. }
  6647. #u51828_text {
  6648. border-width:0px;
  6649. word-wrap:break-word;
  6650. text-transform:none;
  6651. visibility:hidden;
  6652. }
  6653. #u51829_div {
  6654. border-width:0px;
  6655. position:absolute;
  6656. left:0px;
  6657. top:0px;
  6658. width:375px;
  6659. height:40px;
  6660. background:inherit;
  6661. background-color:rgba(255, 255, 255, 1);
  6662. box-sizing:border-box;
  6663. border-width:1px;
  6664. border-style:solid;
  6665. border-color:rgba(215, 215, 215, 1);
  6666. border-left:0px;
  6667. border-top:0px;
  6668. border-right:0px;
  6669. border-radius:0px;
  6670. border-bottom-right-radius:0px;
  6671. border-bottom-left-radius:0px;
  6672. -moz-box-shadow:none;
  6673. -webkit-box-shadow:none;
  6674. box-shadow:none;
  6675. }
  6676. #u51829 {
  6677. border-width:0px;
  6678. position:absolute;
  6679. left:1419px;
  6680. top:68px;
  6681. width:375px;
  6682. height:40px;
  6683. display:flex;
  6684. }
  6685. #u51829 .text {
  6686. position:absolute;
  6687. align-self:center;
  6688. padding:2px 2px 2px 2px;
  6689. box-sizing:border-box;
  6690. width:100%;
  6691. }
  6692. #u51829_text {
  6693. border-width:0px;
  6694. word-wrap:break-word;
  6695. text-transform:none;
  6696. visibility:hidden;
  6697. }
  6698. #u51830 {
  6699. border-width:0px;
  6700. position:absolute;
  6701. left:0px;
  6702. top:0px;
  6703. width:0px;
  6704. height:0px;
  6705. }
  6706. #u51831_div {
  6707. border-width:0px;
  6708. position:absolute;
  6709. left:0px;
  6710. top:0px;
  6711. width:88px;
  6712. height:32px;
  6713. background:inherit;
  6714. background-color:rgba(255, 255, 255, 1);
  6715. box-sizing:border-box;
  6716. border-width:1px;
  6717. border-style:solid;
  6718. border-color:rgba(242, 242, 242, 1);
  6719. border-radius:33px;
  6720. -moz-box-shadow:none;
  6721. -webkit-box-shadow:none;
  6722. box-shadow:none;
  6723. }
  6724. #u51831 {
  6725. border-width:0px;
  6726. position:absolute;
  6727. left:1699px;
  6728. top:72px;
  6729. width:88px;
  6730. height:32px;
  6731. display:flex;
  6732. }
  6733. #u51831 .text {
  6734. position:absolute;
  6735. align-self:center;
  6736. padding:2px 2px 2px 2px;
  6737. box-sizing:border-box;
  6738. width:100%;
  6739. }
  6740. #u51831_text {
  6741. border-width:0px;
  6742. word-wrap:break-word;
  6743. text-transform:none;
  6744. visibility:hidden;
  6745. }
  6746. #u51832 {
  6747. border-width:0px;
  6748. position:absolute;
  6749. left:0px;
  6750. top:0px;
  6751. width:0px;
  6752. height:0px;
  6753. }
  6754. #u51833_img {
  6755. border-width:0px;
  6756. position:absolute;
  6757. left:0px;
  6758. top:0px;
  6759. width:18px;
  6760. height:18px;
  6761. }
  6762. #u51833 {
  6763. border-width:0px;
  6764. position:absolute;
  6765. left:1762px;
  6766. top:79px;
  6767. width:18px;
  6768. height:18px;
  6769. display:flex;
  6770. }
  6771. #u51833 .text {
  6772. position:absolute;
  6773. align-self:center;
  6774. padding:2px 2px 2px 2px;
  6775. box-sizing:border-box;
  6776. width:100%;
  6777. }
  6778. #u51833_text {
  6779. border-width:0px;
  6780. word-wrap:break-word;
  6781. text-transform:none;
  6782. visibility:hidden;
  6783. }
  6784. #u51834_img {
  6785. border-width:0px;
  6786. position:absolute;
  6787. left:0px;
  6788. top:0px;
  6789. width:6px;
  6790. height:6px;
  6791. }
  6792. #u51834 {
  6793. border-width:0px;
  6794. position:absolute;
  6795. left:1768px;
  6796. top:85px;
  6797. width:6px;
  6798. height:6px;
  6799. display:flex;
  6800. }
  6801. #u51834 .text {
  6802. position:absolute;
  6803. align-self:center;
  6804. padding:2px 2px 2px 2px;
  6805. box-sizing:border-box;
  6806. width:100%;
  6807. }
  6808. #u51834_text {
  6809. border-width:0px;
  6810. word-wrap:break-word;
  6811. text-transform:none;
  6812. visibility:hidden;
  6813. }
  6814. #u51835 {
  6815. border-width:0px;
  6816. position:absolute;
  6817. left:0px;
  6818. top:0px;
  6819. width:0px;
  6820. height:0px;
  6821. }
  6822. #u51836_img {
  6823. border-width:0px;
  6824. position:absolute;
  6825. left:0px;
  6826. top:0px;
  6827. width:5px;
  6828. height:5px;
  6829. }
  6830. #u51836 {
  6831. border-width:0px;
  6832. position:absolute;
  6833. left:1713px;
  6834. top:86px;
  6835. width:5px;
  6836. height:5px;
  6837. display:flex;
  6838. }
  6839. #u51836 .text {
  6840. position:absolute;
  6841. align-self:center;
  6842. padding:2px 2px 2px 2px;
  6843. box-sizing:border-box;
  6844. width:100%;
  6845. }
  6846. #u51836_text {
  6847. border-width:0px;
  6848. word-wrap:break-word;
  6849. text-transform:none;
  6850. visibility:hidden;
  6851. }
  6852. #u51837_img {
  6853. border-width:0px;
  6854. position:absolute;
  6855. left:0px;
  6856. top:0px;
  6857. width:5px;
  6858. height:5px;
  6859. }
  6860. #u51837 {
  6861. border-width:0px;
  6862. position:absolute;
  6863. left:1729px;
  6864. top:86px;
  6865. width:5px;
  6866. height:5px;
  6867. display:flex;
  6868. }
  6869. #u51837 .text {
  6870. position:absolute;
  6871. align-self:center;
  6872. padding:2px 2px 2px 2px;
  6873. box-sizing:border-box;
  6874. width:100%;
  6875. }
  6876. #u51837_text {
  6877. border-width:0px;
  6878. word-wrap:break-word;
  6879. text-transform:none;
  6880. visibility:hidden;
  6881. }
  6882. #u51838_img {
  6883. border-width:0px;
  6884. position:absolute;
  6885. left:0px;
  6886. top:0px;
  6887. width:7px;
  6888. height:7px;
  6889. }
  6890. #u51838 {
  6891. border-width:0px;
  6892. position:absolute;
  6893. left:1720px;
  6894. top:85px;
  6895. width:7px;
  6896. height:7px;
  6897. display:flex;
  6898. }
  6899. #u51838 .text {
  6900. position:absolute;
  6901. align-self:center;
  6902. padding:2px 2px 2px 2px;
  6903. box-sizing:border-box;
  6904. width:100%;
  6905. }
  6906. #u51838_text {
  6907. border-width:0px;
  6908. word-wrap:break-word;
  6909. text-transform:none;
  6910. visibility:hidden;
  6911. }
  6912. #u51839_img {
  6913. border-width:0px;
  6914. position:absolute;
  6915. left:0px;
  6916. top:0px;
  6917. width:19px;
  6918. height:2px;
  6919. }
  6920. #u51839 {
  6921. border-width:0px;
  6922. position:absolute;
  6923. left:1737px;
  6924. top:88px;
  6925. width:18px;
  6926. height:1px;
  6927. display:flex;
  6928. -webkit-transform:rotate(90deg);
  6929. -moz-transform:rotate(90deg);
  6930. -ms-transform:rotate(90deg);
  6931. transform:rotate(90deg);
  6932. }
  6933. #u51839 .text {
  6934. position:absolute;
  6935. align-self:center;
  6936. padding:2px 2px 2px 2px;
  6937. box-sizing:border-box;
  6938. width:100%;
  6939. }
  6940. #u51839_text {
  6941. border-width:0px;
  6942. word-wrap:break-word;
  6943. text-transform:none;
  6944. visibility:hidden;
  6945. }
  6946. #u51840_img {
  6947. border-width:0px;
  6948. position:absolute;
  6949. left:0px;
  6950. top:0px;
  6951. width:375px;
  6952. height:44px;
  6953. }
  6954. #u51840 {
  6955. border-width:0px;
  6956. position:absolute;
  6957. left:1419px;
  6958. top:25px;
  6959. width:375px;
  6960. height:44px;
  6961. display:flex;
  6962. }
  6963. #u51840 .text {
  6964. position:absolute;
  6965. align-self:center;
  6966. padding:2px 2px 2px 2px;
  6967. box-sizing:border-box;
  6968. width:100%;
  6969. }
  6970. #u51840_text {
  6971. border-width:0px;
  6972. word-wrap:break-word;
  6973. text-transform:none;
  6974. visibility:hidden;
  6975. }
  6976. #u51841_div {
  6977. border-width:0px;
  6978. position:absolute;
  6979. left:0px;
  6980. top:0px;
  6981. width:375px;
  6982. height:50px;
  6983. background:inherit;
  6984. background-color:rgba(255, 255, 255, 1);
  6985. box-sizing:border-box;
  6986. border-width:1px;
  6987. border-style:solid;
  6988. border-color:rgba(242, 242, 242, 1);
  6989. border-radius:26px;
  6990. border-top-left-radius:0px;
  6991. border-top-right-radius:0px;
  6992. -moz-box-shadow:none;
  6993. -webkit-box-shadow:none;
  6994. box-shadow:none;
  6995. }
  6996. #u51841 {
  6997. border-width:0px;
  6998. position:absolute;
  6999. left:1419px;
  7000. top:789px;
  7001. width:375px;
  7002. height:50px;
  7003. display:flex;
  7004. }
  7005. #u51841 .text {
  7006. position:absolute;
  7007. align-self:center;
  7008. padding:2px 2px 2px 2px;
  7009. box-sizing:border-box;
  7010. width:100%;
  7011. }
  7012. #u51841_text {
  7013. border-width:0px;
  7014. word-wrap:break-word;
  7015. text-transform:none;
  7016. visibility:hidden;
  7017. }
  7018. #u51842 {
  7019. border-width:0px;
  7020. position:absolute;
  7021. left:0px;
  7022. top:0px;
  7023. width:0px;
  7024. height:0px;
  7025. }
  7026. #u51843_img {
  7027. border-width:0px;
  7028. position:absolute;
  7029. left:0px;
  7030. top:0px;
  7031. width:24px;
  7032. height:24px;
  7033. }
  7034. #u51843 {
  7035. border-width:0px;
  7036. position:absolute;
  7037. left:1459px;
  7038. top:793px;
  7039. width:24px;
  7040. height:24px;
  7041. display:flex;
  7042. font-size:8px;
  7043. }
  7044. #u51843 .text {
  7045. position:absolute;
  7046. align-self:center;
  7047. padding:2px 2px 2px 2px;
  7048. box-sizing:border-box;
  7049. width:100%;
  7050. }
  7051. #u51843_text {
  7052. border-width:0px;
  7053. word-wrap:break-word;
  7054. text-transform:none;
  7055. }
  7056. #u51844_div {
  7057. border-width:0px;
  7058. position:absolute;
  7059. left:0px;
  7060. top:0px;
  7061. width:25px;
  7062. height:17px;
  7063. background:inherit;
  7064. background-color:rgba(255, 255, 255, 0);
  7065. border:none;
  7066. border-radius:0px;
  7067. -moz-box-shadow:none;
  7068. -webkit-box-shadow:none;
  7069. box-shadow:none;
  7070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7071. font-weight:400;
  7072. font-style:normal;
  7073. font-size:12px;
  7074. }
  7075. #u51844 {
  7076. border-width:0px;
  7077. position:absolute;
  7078. left:1459px;
  7079. top:818px;
  7080. width:25px;
  7081. height:17px;
  7082. display:flex;
  7083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7084. font-weight:400;
  7085. font-style:normal;
  7086. font-size:12px;
  7087. }
  7088. #u51844 .text {
  7089. position:absolute;
  7090. align-self:flex-start;
  7091. padding:0px 0px 0px 0px;
  7092. box-sizing:border-box;
  7093. width:100%;
  7094. }
  7095. #u51844_text {
  7096. border-width:0px;
  7097. white-space:nowrap;
  7098. text-transform:none;
  7099. }
  7100. #u51845 {
  7101. border-width:0px;
  7102. position:absolute;
  7103. left:0px;
  7104. top:0px;
  7105. width:0px;
  7106. height:0px;
  7107. }
  7108. #u51846_img {
  7109. border-width:0px;
  7110. position:absolute;
  7111. left:0px;
  7112. top:0px;
  7113. width:24px;
  7114. height:24px;
  7115. }
  7116. #u51846 {
  7117. border-width:0px;
  7118. position:absolute;
  7119. left:1729px;
  7120. top:795px;
  7121. width:24px;
  7122. height:24px;
  7123. display:flex;
  7124. font-size:8px;
  7125. }
  7126. #u51846 .text {
  7127. position:absolute;
  7128. align-self:center;
  7129. padding:2px 2px 2px 2px;
  7130. box-sizing:border-box;
  7131. width:100%;
  7132. }
  7133. #u51846_text {
  7134. border-width:0px;
  7135. word-wrap:break-word;
  7136. text-transform:none;
  7137. }
  7138. #u51847_div {
  7139. border-width:0px;
  7140. position:absolute;
  7141. left:0px;
  7142. top:0px;
  7143. width:25px;
  7144. height:17px;
  7145. background:inherit;
  7146. background-color:rgba(255, 255, 255, 0);
  7147. border:none;
  7148. border-radius:0px;
  7149. -moz-box-shadow:none;
  7150. -webkit-box-shadow:none;
  7151. box-shadow:none;
  7152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7153. font-weight:400;
  7154. font-style:normal;
  7155. font-size:12px;
  7156. }
  7157. #u51847 {
  7158. border-width:0px;
  7159. position:absolute;
  7160. left:1729px;
  7161. top:820px;
  7162. width:25px;
  7163. height:17px;
  7164. display:flex;
  7165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7166. font-weight:400;
  7167. font-style:normal;
  7168. font-size:12px;
  7169. }
  7170. #u51847 .text {
  7171. position:absolute;
  7172. align-self:flex-start;
  7173. padding:0px 0px 0px 0px;
  7174. box-sizing:border-box;
  7175. width:100%;
  7176. }
  7177. #u51847_text {
  7178. border-width:0px;
  7179. white-space:nowrap;
  7180. text-transform:none;
  7181. }
  7182. #u51848_div {
  7183. border-width:0px;
  7184. position:absolute;
  7185. left:0px;
  7186. top:0px;
  7187. width:375px;
  7188. height:681px;
  7189. background:inherit;
  7190. background-color:rgba(242, 242, 242, 0.462745098039216);
  7191. border:none;
  7192. border-radius:0px;
  7193. -moz-box-shadow:none;
  7194. -webkit-box-shadow:none;
  7195. box-shadow:none;
  7196. }
  7197. #u51848 {
  7198. border-width:0px;
  7199. position:absolute;
  7200. left:1419px;
  7201. top:108px;
  7202. width:375px;
  7203. height:681px;
  7204. display:flex;
  7205. }
  7206. #u51848 .text {
  7207. position:absolute;
  7208. align-self:center;
  7209. padding:2px 2px 2px 2px;
  7210. box-sizing:border-box;
  7211. width:100%;
  7212. }
  7213. #u51848_text {
  7214. border-width:0px;
  7215. word-wrap:break-word;
  7216. text-transform:none;
  7217. visibility:hidden;
  7218. }
  7219. #u51849 {
  7220. border-width:0px;
  7221. position:absolute;
  7222. left:0px;
  7223. top:0px;
  7224. width:0px;
  7225. height:0px;
  7226. }
  7227. #u51850_img {
  7228. border-width:0px;
  7229. position:absolute;
  7230. left:0px;
  7231. top:0px;
  7232. width:24px;
  7233. height:24px;
  7234. }
  7235. #u51850 {
  7236. border-width:0px;
  7237. position:absolute;
  7238. left:1641px;
  7239. top:793px;
  7240. width:24px;
  7241. height:24px;
  7242. display:flex;
  7243. font-size:8px;
  7244. }
  7245. #u51850 .text {
  7246. position:absolute;
  7247. align-self:center;
  7248. padding:2px 2px 2px 2px;
  7249. box-sizing:border-box;
  7250. width:100%;
  7251. }
  7252. #u51850_text {
  7253. border-width:0px;
  7254. word-wrap:break-word;
  7255. text-transform:none;
  7256. }
  7257. #u51851_div {
  7258. border-width:0px;
  7259. position:absolute;
  7260. left:0px;
  7261. top:0px;
  7262. width:37px;
  7263. height:17px;
  7264. background:inherit;
  7265. background-color:rgba(255, 255, 255, 0);
  7266. border:none;
  7267. border-radius:0px;
  7268. -moz-box-shadow:none;
  7269. -webkit-box-shadow:none;
  7270. box-shadow:none;
  7271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7272. font-weight:400;
  7273. font-style:normal;
  7274. font-size:12px;
  7275. }
  7276. #u51851 {
  7277. border-width:0px;
  7278. position:absolute;
  7279. left:1635px;
  7280. top:818px;
  7281. width:37px;
  7282. height:17px;
  7283. display:flex;
  7284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7285. font-weight:400;
  7286. font-style:normal;
  7287. font-size:12px;
  7288. }
  7289. #u51851 .text {
  7290. position:absolute;
  7291. align-self:flex-start;
  7292. padding:0px 0px 0px 0px;
  7293. box-sizing:border-box;
  7294. width:100%;
  7295. }
  7296. #u51851_text {
  7297. border-width:0px;
  7298. white-space:nowrap;
  7299. text-transform:none;
  7300. }
  7301. #u51852 {
  7302. border-width:0px;
  7303. position:absolute;
  7304. left:0px;
  7305. top:0px;
  7306. width:0px;
  7307. height:0px;
  7308. }
  7309. #u51853_img {
  7310. border-width:0px;
  7311. position:absolute;
  7312. left:0px;
  7313. top:0px;
  7314. width:24px;
  7315. height:24px;
  7316. }
  7317. #u51853 {
  7318. border-width:0px;
  7319. position:absolute;
  7320. left:1547px;
  7321. top:793px;
  7322. width:24px;
  7323. height:24px;
  7324. display:flex;
  7325. font-size:8px;
  7326. }
  7327. #u51853 .text {
  7328. position:absolute;
  7329. align-self:center;
  7330. padding:2px 2px 2px 2px;
  7331. box-sizing:border-box;
  7332. width:100%;
  7333. }
  7334. #u51853_text {
  7335. border-width:0px;
  7336. word-wrap:break-word;
  7337. text-transform:none;
  7338. }
  7339. #u51854_div {
  7340. border-width:0px;
  7341. position:absolute;
  7342. left:0px;
  7343. top:0px;
  7344. width:37px;
  7345. height:17px;
  7346. background:inherit;
  7347. background-color:rgba(255, 255, 255, 0);
  7348. border:none;
  7349. border-radius:0px;
  7350. -moz-box-shadow:none;
  7351. -webkit-box-shadow:none;
  7352. box-shadow:none;
  7353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7354. font-weight:400;
  7355. font-style:normal;
  7356. font-size:12px;
  7357. }
  7358. #u51854 {
  7359. border-width:0px;
  7360. position:absolute;
  7361. left:1541px;
  7362. top:818px;
  7363. width:37px;
  7364. height:17px;
  7365. display:flex;
  7366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7367. font-weight:400;
  7368. font-style:normal;
  7369. font-size:12px;
  7370. }
  7371. #u51854 .text {
  7372. position:absolute;
  7373. align-self:flex-start;
  7374. padding:0px 0px 0px 0px;
  7375. box-sizing:border-box;
  7376. width:100%;
  7377. }
  7378. #u51854_text {
  7379. border-width:0px;
  7380. white-space:nowrap;
  7381. text-transform:none;
  7382. }
  7383. #u51855_div {
  7384. border-width:0px;
  7385. position:absolute;
  7386. left:0px;
  7387. top:0px;
  7388. width:375px;
  7389. height:775px;
  7390. background:inherit;
  7391. background-color:rgba(255, 255, 255, 1);
  7392. border:none;
  7393. border-top:0px;
  7394. border-radius:28px;
  7395. border-top-left-radius:0px;
  7396. border-top-right-radius:0px;
  7397. -moz-box-shadow:none;
  7398. -webkit-box-shadow:none;
  7399. box-shadow:none;
  7400. }
  7401. #u51855 {
  7402. border-width:0px;
  7403. position:absolute;
  7404. left:1419px;
  7405. top:66px;
  7406. width:375px;
  7407. height:775px;
  7408. display:flex;
  7409. }
  7410. #u51855 .text {
  7411. position:absolute;
  7412. align-self:center;
  7413. padding:2px 2px 2px 2px;
  7414. box-sizing:border-box;
  7415. width:100%;
  7416. }
  7417. #u51855_text {
  7418. border-width:0px;
  7419. word-wrap:break-word;
  7420. text-transform:none;
  7421. visibility:hidden;
  7422. }
  7423. #u51856_div {
  7424. border-width:0px;
  7425. position:absolute;
  7426. left:0px;
  7427. top:0px;
  7428. width:97px;
  7429. height:30px;
  7430. background:inherit;
  7431. background-color:rgba(255, 255, 255, 0);
  7432. border:none;
  7433. border-left:0px;
  7434. border-top:0px;
  7435. border-right:0px;
  7436. border-radius:0px;
  7437. border-bottom-right-radius:0px;
  7438. border-bottom-left-radius:0px;
  7439. -moz-box-shadow:none;
  7440. -webkit-box-shadow:none;
  7441. box-shadow:none;
  7442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7443. font-weight:400;
  7444. font-style:normal;
  7445. line-height:30px;
  7446. }
  7447. #u51856 {
  7448. border-width:0px;
  7449. position:absolute;
  7450. left:1558px;
  7451. top:227px;
  7452. width:97px;
  7453. height:30px;
  7454. display:flex;
  7455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7456. font-weight:400;
  7457. font-style:normal;
  7458. line-height:30px;
  7459. }
  7460. #u51856 .text {
  7461. position:absolute;
  7462. align-self:center;
  7463. padding:0px 0px 0px 0px;
  7464. box-sizing:border-box;
  7465. width:100%;
  7466. }
  7467. #u51856_text {
  7468. border-width:0px;
  7469. white-space:nowrap;
  7470. text-transform:none;
  7471. }
  7472. #u51857_div {
  7473. border-width:0px;
  7474. position:absolute;
  7475. left:0px;
  7476. top:0px;
  7477. width:126px;
  7478. height:40px;
  7479. background:inherit;
  7480. background-color:rgba(255, 255, 255, 1);
  7481. box-sizing:border-box;
  7482. border-width:1px;
  7483. border-style:solid;
  7484. border-color:rgba(121, 121, 121, 1);
  7485. border-radius:63px;
  7486. -moz-box-shadow:none;
  7487. -webkit-box-shadow:none;
  7488. box-shadow:none;
  7489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7490. font-weight:400;
  7491. font-style:normal;
  7492. font-size:14px;
  7493. }
  7494. #u51857 {
  7495. border-width:0px;
  7496. position:absolute;
  7497. left:1617px;
  7498. top:355px;
  7499. width:126px;
  7500. height:40px;
  7501. display:flex;
  7502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7503. font-weight:400;
  7504. font-style:normal;
  7505. font-size:14px;
  7506. }
  7507. #u51857 .text {
  7508. position:absolute;
  7509. align-self:center;
  7510. padding:2px 2px 2px 2px;
  7511. box-sizing:border-box;
  7512. width:100%;
  7513. }
  7514. #u51857_text {
  7515. border-width:0px;
  7516. word-wrap:break-word;
  7517. text-transform:none;
  7518. }
  7519. #u51858_img {
  7520. border-width:0px;
  7521. position:absolute;
  7522. left:0px;
  7523. top:0px;
  7524. width:83px;
  7525. height:83px;
  7526. }
  7527. #u51858 {
  7528. border-width:0px;
  7529. position:absolute;
  7530. left:1565px;
  7531. top:128px;
  7532. width:83px;
  7533. height:83px;
  7534. display:flex;
  7535. }
  7536. #u51858 .text {
  7537. position:absolute;
  7538. align-self:center;
  7539. padding:2px 2px 2px 2px;
  7540. box-sizing:border-box;
  7541. width:100%;
  7542. }
  7543. #u51858_text {
  7544. border-width:0px;
  7545. word-wrap:break-word;
  7546. text-transform:none;
  7547. visibility:hidden;
  7548. }
  7549. #u51859_div {
  7550. border-width:0px;
  7551. position:absolute;
  7552. left:0px;
  7553. top:0px;
  7554. width:126px;
  7555. height:40px;
  7556. background:inherit;
  7557. background-color:rgba(255, 255, 255, 1);
  7558. box-sizing:border-box;
  7559. border-width:1px;
  7560. border-style:solid;
  7561. border-color:rgba(121, 121, 121, 1);
  7562. border-radius:63px;
  7563. -moz-box-shadow:none;
  7564. -webkit-box-shadow:none;
  7565. box-shadow:none;
  7566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7567. font-weight:400;
  7568. font-style:normal;
  7569. font-size:14px;
  7570. }
  7571. #u51859 {
  7572. border-width:0px;
  7573. position:absolute;
  7574. left:1471px;
  7575. top:355px;
  7576. width:126px;
  7577. height:40px;
  7578. display:flex;
  7579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7580. font-weight:400;
  7581. font-style:normal;
  7582. font-size:14px;
  7583. }
  7584. #u51859 .text {
  7585. position:absolute;
  7586. align-self:center;
  7587. padding:2px 2px 2px 2px;
  7588. box-sizing:border-box;
  7589. width:100%;
  7590. }
  7591. #u51859_text {
  7592. border-width:0px;
  7593. word-wrap:break-word;
  7594. text-transform:none;
  7595. }
  7596. #u51860_div {
  7597. border-width:0px;
  7598. position:absolute;
  7599. left:0px;
  7600. top:0px;
  7601. width:30px;
  7602. height:30px;
  7603. background:inherit;
  7604. background-color:rgba(255, 255, 255, 0);
  7605. border:none;
  7606. border-left:0px;
  7607. border-top:0px;
  7608. border-right:0px;
  7609. border-radius:0px;
  7610. border-bottom-right-radius:0px;
  7611. border-bottom-left-radius:0px;
  7612. -moz-box-shadow:none;
  7613. -webkit-box-shadow:none;
  7614. box-shadow:none;
  7615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7616. font-weight:400;
  7617. font-style:normal;
  7618. font-size:18px;
  7619. text-align:center;
  7620. line-height:30px;
  7621. }
  7622. #u51860 {
  7623. border-width:0px;
  7624. position:absolute;
  7625. left:1429px;
  7626. top:76px;
  7627. width:30px;
  7628. height:30px;
  7629. display:flex;
  7630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7631. font-weight:400;
  7632. font-style:normal;
  7633. font-size:18px;
  7634. text-align:center;
  7635. line-height:30px;
  7636. }
  7637. #u51860 .text {
  7638. position:absolute;
  7639. align-self:center;
  7640. padding:0px 0px 0px 0px;
  7641. box-sizing:border-box;
  7642. width:100%;
  7643. }
  7644. #u51860_text {
  7645. border-width:0px;
  7646. word-wrap:break-word;
  7647. text-transform:none;
  7648. }
  7649. #u51861 {
  7650. border-width:0px;
  7651. position:absolute;
  7652. left:0px;
  7653. top:0px;
  7654. width:0px;
  7655. height:0px;
  7656. }
  7657. #u51862_img {
  7658. border-width:0px;
  7659. position:absolute;
  7660. left:0px;
  7661. top:0px;
  7662. width:350px;
  7663. height:40px;
  7664. }
  7665. #u51862 {
  7666. border-width:0px;
  7667. position:absolute;
  7668. left:1431px;
  7669. top:403px;
  7670. width:350px;
  7671. height:40px;
  7672. display:flex;
  7673. }
  7674. #u51862 .text {
  7675. position:absolute;
  7676. align-self:center;
  7677. padding:2px 2px 2px 2px;
  7678. box-sizing:border-box;
  7679. width:100%;
  7680. }
  7681. #u51862_text {
  7682. border-width:0px;
  7683. word-wrap:break-word;
  7684. text-transform:none;
  7685. visibility:hidden;
  7686. }
  7687. #u51863 {
  7688. border-width:0px;
  7689. position:absolute;
  7690. left:0px;
  7691. top:0px;
  7692. width:0px;
  7693. height:0px;
  7694. }
  7695. #u51864_div {
  7696. border-width:0px;
  7697. position:absolute;
  7698. left:0px;
  7699. top:0px;
  7700. width:221px;
  7701. height:30px;
  7702. background:inherit;
  7703. background-color:rgba(255, 255, 255, 0);
  7704. border:none;
  7705. border-left:0px;
  7706. border-top:0px;
  7707. border-right:0px;
  7708. border-radius:0px;
  7709. border-bottom-right-radius:0px;
  7710. border-bottom-left-radius:0px;
  7711. -moz-box-shadow:none;
  7712. -webkit-box-shadow:none;
  7713. box-shadow:none;
  7714. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7715. font-style:normal;
  7716. color:#FFFFFF;
  7717. text-align:center;
  7718. line-height:30px;
  7719. }
  7720. #u51864 {
  7721. border-width:0px;
  7722. position:absolute;
  7723. left:1511px;
  7724. top:408px;
  7725. width:221px;
  7726. height:30px;
  7727. display:flex;
  7728. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7729. font-style:normal;
  7730. color:#FFFFFF;
  7731. text-align:center;
  7732. line-height:30px;
  7733. }
  7734. #u51864 .text {
  7735. position:absolute;
  7736. align-self:center;
  7737. padding:0px 0px 0px 0px;
  7738. box-sizing:border-box;
  7739. width:100%;
  7740. }
  7741. #u51864_text {
  7742. border-width:0px;
  7743. white-space:nowrap;
  7744. text-transform:none;
  7745. }
  7746. #u51865_img {
  7747. border-width:0px;
  7748. position:absolute;
  7749. left:0px;
  7750. top:0px;
  7751. width:26px;
  7752. height:26px;
  7753. }
  7754. #u51865 {
  7755. border-width:0px;
  7756. position:absolute;
  7757. left:1481px;
  7758. top:410px;
  7759. width:26px;
  7760. height:26px;
  7761. display:flex;
  7762. }
  7763. #u51865 .text {
  7764. position:absolute;
  7765. align-self:center;
  7766. padding:2px 2px 2px 2px;
  7767. box-sizing:border-box;
  7768. width:100%;
  7769. }
  7770. #u51865_text {
  7771. border-width:0px;
  7772. word-wrap:break-word;
  7773. text-transform:none;
  7774. }
  7775. #u51866_div {
  7776. border-width:0px;
  7777. position:absolute;
  7778. left:0px;
  7779. top:0px;
  7780. width:295px;
  7781. height:30px;
  7782. background:inherit;
  7783. background-color:rgba(255, 255, 255, 0);
  7784. border:none;
  7785. border-left:0px;
  7786. border-top:0px;
  7787. border-right:0px;
  7788. border-radius:0px;
  7789. border-bottom-right-radius:0px;
  7790. border-bottom-left-radius:0px;
  7791. -moz-box-shadow:none;
  7792. -webkit-box-shadow:none;
  7793. box-shadow:none;
  7794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7795. font-weight:400;
  7796. font-style:normal;
  7797. font-size:14px;
  7798. text-align:center;
  7799. line-height:30px;
  7800. }
  7801. #u51866 {
  7802. border-width:0px;
  7803. position:absolute;
  7804. left:1458px;
  7805. top:285px;
  7806. width:295px;
  7807. height:30px;
  7808. display:flex;
  7809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7810. font-weight:400;
  7811. font-style:normal;
  7812. font-size:14px;
  7813. text-align:center;
  7814. line-height:30px;
  7815. }
  7816. #u51866 .text {
  7817. position:absolute;
  7818. align-self:center;
  7819. padding:0px 0px 0px 0px;
  7820. box-sizing:border-box;
  7821. width:100%;
  7822. }
  7823. #u51866_text {
  7824. border-width:0px;
  7825. white-space:nowrap;
  7826. text-transform:none;
  7827. }
  7828. #u51867_div {
  7829. border-width:0px;
  7830. position:absolute;
  7831. left:0px;
  7832. top:0px;
  7833. width:363px;
  7834. height:30px;
  7835. background:inherit;
  7836. background-color:rgba(255, 255, 255, 0);
  7837. border:none;
  7838. border-left:0px;
  7839. border-top:0px;
  7840. border-right:0px;
  7841. border-radius:0px;
  7842. border-bottom-right-radius:0px;
  7843. border-bottom-left-radius:0px;
  7844. -moz-box-shadow:none;
  7845. -webkit-box-shadow:none;
  7846. box-shadow:none;
  7847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7848. font-weight:400;
  7849. font-style:normal;
  7850. font-size:14px;
  7851. color:#D9001B;
  7852. line-height:30px;
  7853. }
  7854. #u51867 {
  7855. border-width:0px;
  7856. position:absolute;
  7857. left:1431px;
  7858. top:472px;
  7859. width:363px;
  7860. height:30px;
  7861. display:flex;
  7862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7863. font-weight:400;
  7864. font-style:normal;
  7865. font-size:14px;
  7866. color:#D9001B;
  7867. line-height:30px;
  7868. }
  7869. #u51867 .text {
  7870. position:absolute;
  7871. align-self:flex-start;
  7872. padding:0px 0px 0px 0px;
  7873. box-sizing:border-box;
  7874. width:100%;
  7875. }
  7876. #u51867_text {
  7877. border-width:0px;
  7878. word-wrap:break-word;
  7879. text-transform:none;
  7880. }
  7881. #u51868 {
  7882. border-width:0px;
  7883. position:absolute;
  7884. left:0px;
  7885. top:0px;
  7886. width:0px;
  7887. height:0px;
  7888. }
  7889. #u51870_img {
  7890. border-width:0px;
  7891. position:absolute;
  7892. left:0px;
  7893. top:0px;
  7894. width:433px;
  7895. height:865px;
  7896. }
  7897. #u51870 {
  7898. border-width:0px;
  7899. position:absolute;
  7900. left:1852px;
  7901. top:1px;
  7902. width:433px;
  7903. height:865px;
  7904. display:flex;
  7905. }
  7906. #u51870 .text {
  7907. position:absolute;
  7908. align-self:center;
  7909. padding:2px 2px 2px 2px;
  7910. box-sizing:border-box;
  7911. width:100%;
  7912. }
  7913. #u51870_text {
  7914. border-width:0px;
  7915. word-wrap:break-word;
  7916. text-transform:none;
  7917. visibility:hidden;
  7918. }
  7919. #u51871_div {
  7920. border-width:0px;
  7921. position:absolute;
  7922. left:0px;
  7923. top:0px;
  7924. width:375px;
  7925. height:40px;
  7926. background:inherit;
  7927. background-color:rgba(255, 255, 255, 1);
  7928. box-sizing:border-box;
  7929. border-width:1px;
  7930. border-style:solid;
  7931. border-color:rgba(215, 215, 215, 1);
  7932. border-left:0px;
  7933. border-top:0px;
  7934. border-right:0px;
  7935. border-radius:0px;
  7936. border-bottom-right-radius:0px;
  7937. border-bottom-left-radius:0px;
  7938. -moz-box-shadow:none;
  7939. -webkit-box-shadow:none;
  7940. box-shadow:none;
  7941. }
  7942. #u51871 {
  7943. border-width:0px;
  7944. position:absolute;
  7945. left:1881px;
  7946. top:68px;
  7947. width:375px;
  7948. height:40px;
  7949. display:flex;
  7950. }
  7951. #u51871 .text {
  7952. position:absolute;
  7953. align-self:center;
  7954. padding:2px 2px 2px 2px;
  7955. box-sizing:border-box;
  7956. width:100%;
  7957. }
  7958. #u51871_text {
  7959. border-width:0px;
  7960. word-wrap:break-word;
  7961. text-transform:none;
  7962. visibility:hidden;
  7963. }
  7964. #u51872 {
  7965. border-width:0px;
  7966. position:absolute;
  7967. left:0px;
  7968. top:0px;
  7969. width:0px;
  7970. height:0px;
  7971. }
  7972. #u51873_div {
  7973. border-width:0px;
  7974. position:absolute;
  7975. left:0px;
  7976. top:0px;
  7977. width:88px;
  7978. height:32px;
  7979. background:inherit;
  7980. background-color:rgba(255, 255, 255, 1);
  7981. box-sizing:border-box;
  7982. border-width:1px;
  7983. border-style:solid;
  7984. border-color:rgba(242, 242, 242, 1);
  7985. border-radius:33px;
  7986. -moz-box-shadow:none;
  7987. -webkit-box-shadow:none;
  7988. box-shadow:none;
  7989. }
  7990. #u51873 {
  7991. border-width:0px;
  7992. position:absolute;
  7993. left:2161px;
  7994. top:72px;
  7995. width:88px;
  7996. height:32px;
  7997. display:flex;
  7998. }
  7999. #u51873 .text {
  8000. position:absolute;
  8001. align-self:center;
  8002. padding:2px 2px 2px 2px;
  8003. box-sizing:border-box;
  8004. width:100%;
  8005. }
  8006. #u51873_text {
  8007. border-width:0px;
  8008. word-wrap:break-word;
  8009. text-transform:none;
  8010. visibility:hidden;
  8011. }
  8012. #u51874 {
  8013. border-width:0px;
  8014. position:absolute;
  8015. left:0px;
  8016. top:0px;
  8017. width:0px;
  8018. height:0px;
  8019. }
  8020. #u51875_img {
  8021. border-width:0px;
  8022. position:absolute;
  8023. left:0px;
  8024. top:0px;
  8025. width:18px;
  8026. height:18px;
  8027. }
  8028. #u51875 {
  8029. border-width:0px;
  8030. position:absolute;
  8031. left:2224px;
  8032. top:79px;
  8033. width:18px;
  8034. height:18px;
  8035. display:flex;
  8036. }
  8037. #u51875 .text {
  8038. position:absolute;
  8039. align-self:center;
  8040. padding:2px 2px 2px 2px;
  8041. box-sizing:border-box;
  8042. width:100%;
  8043. }
  8044. #u51875_text {
  8045. border-width:0px;
  8046. word-wrap:break-word;
  8047. text-transform:none;
  8048. visibility:hidden;
  8049. }
  8050. #u51876_img {
  8051. border-width:0px;
  8052. position:absolute;
  8053. left:0px;
  8054. top:0px;
  8055. width:6px;
  8056. height:6px;
  8057. }
  8058. #u51876 {
  8059. border-width:0px;
  8060. position:absolute;
  8061. left:2230px;
  8062. top:85px;
  8063. width:6px;
  8064. height:6px;
  8065. display:flex;
  8066. }
  8067. #u51876 .text {
  8068. position:absolute;
  8069. align-self:center;
  8070. padding:2px 2px 2px 2px;
  8071. box-sizing:border-box;
  8072. width:100%;
  8073. }
  8074. #u51876_text {
  8075. border-width:0px;
  8076. word-wrap:break-word;
  8077. text-transform:none;
  8078. visibility:hidden;
  8079. }
  8080. #u51877 {
  8081. border-width:0px;
  8082. position:absolute;
  8083. left:0px;
  8084. top:0px;
  8085. width:0px;
  8086. height:0px;
  8087. }
  8088. #u51878_img {
  8089. border-width:0px;
  8090. position:absolute;
  8091. left:0px;
  8092. top:0px;
  8093. width:5px;
  8094. height:5px;
  8095. }
  8096. #u51878 {
  8097. border-width:0px;
  8098. position:absolute;
  8099. left:2175px;
  8100. top:86px;
  8101. width:5px;
  8102. height:5px;
  8103. display:flex;
  8104. }
  8105. #u51878 .text {
  8106. position:absolute;
  8107. align-self:center;
  8108. padding:2px 2px 2px 2px;
  8109. box-sizing:border-box;
  8110. width:100%;
  8111. }
  8112. #u51878_text {
  8113. border-width:0px;
  8114. word-wrap:break-word;
  8115. text-transform:none;
  8116. visibility:hidden;
  8117. }
  8118. #u51879_img {
  8119. border-width:0px;
  8120. position:absolute;
  8121. left:0px;
  8122. top:0px;
  8123. width:5px;
  8124. height:5px;
  8125. }
  8126. #u51879 {
  8127. border-width:0px;
  8128. position:absolute;
  8129. left:2191px;
  8130. top:86px;
  8131. width:5px;
  8132. height:5px;
  8133. display:flex;
  8134. }
  8135. #u51879 .text {
  8136. position:absolute;
  8137. align-self:center;
  8138. padding:2px 2px 2px 2px;
  8139. box-sizing:border-box;
  8140. width:100%;
  8141. }
  8142. #u51879_text {
  8143. border-width:0px;
  8144. word-wrap:break-word;
  8145. text-transform:none;
  8146. visibility:hidden;
  8147. }
  8148. #u51880_img {
  8149. border-width:0px;
  8150. position:absolute;
  8151. left:0px;
  8152. top:0px;
  8153. width:7px;
  8154. height:7px;
  8155. }
  8156. #u51880 {
  8157. border-width:0px;
  8158. position:absolute;
  8159. left:2182px;
  8160. top:85px;
  8161. width:7px;
  8162. height:7px;
  8163. display:flex;
  8164. }
  8165. #u51880 .text {
  8166. position:absolute;
  8167. align-self:center;
  8168. padding:2px 2px 2px 2px;
  8169. box-sizing:border-box;
  8170. width:100%;
  8171. }
  8172. #u51880_text {
  8173. border-width:0px;
  8174. word-wrap:break-word;
  8175. text-transform:none;
  8176. visibility:hidden;
  8177. }
  8178. #u51881_img {
  8179. border-width:0px;
  8180. position:absolute;
  8181. left:0px;
  8182. top:0px;
  8183. width:19px;
  8184. height:2px;
  8185. }
  8186. #u51881 {
  8187. border-width:0px;
  8188. position:absolute;
  8189. left:2199px;
  8190. top:88px;
  8191. width:18px;
  8192. height:1px;
  8193. display:flex;
  8194. -webkit-transform:rotate(90deg);
  8195. -moz-transform:rotate(90deg);
  8196. -ms-transform:rotate(90deg);
  8197. transform:rotate(90deg);
  8198. }
  8199. #u51881 .text {
  8200. position:absolute;
  8201. align-self:center;
  8202. padding:2px 2px 2px 2px;
  8203. box-sizing:border-box;
  8204. width:100%;
  8205. }
  8206. #u51881_text {
  8207. border-width:0px;
  8208. word-wrap:break-word;
  8209. text-transform:none;
  8210. visibility:hidden;
  8211. }
  8212. #u51882_img {
  8213. border-width:0px;
  8214. position:absolute;
  8215. left:0px;
  8216. top:0px;
  8217. width:375px;
  8218. height:44px;
  8219. }
  8220. #u51882 {
  8221. border-width:0px;
  8222. position:absolute;
  8223. left:1881px;
  8224. top:25px;
  8225. width:375px;
  8226. height:44px;
  8227. display:flex;
  8228. }
  8229. #u51882 .text {
  8230. position:absolute;
  8231. align-self:center;
  8232. padding:2px 2px 2px 2px;
  8233. box-sizing:border-box;
  8234. width:100%;
  8235. }
  8236. #u51882_text {
  8237. border-width:0px;
  8238. word-wrap:break-word;
  8239. text-transform:none;
  8240. visibility:hidden;
  8241. }
  8242. #u51883_div {
  8243. border-width:0px;
  8244. position:absolute;
  8245. left:0px;
  8246. top:0px;
  8247. width:375px;
  8248. height:50px;
  8249. background:inherit;
  8250. background-color:rgba(255, 255, 255, 1);
  8251. box-sizing:border-box;
  8252. border-width:1px;
  8253. border-style:solid;
  8254. border-color:rgba(242, 242, 242, 1);
  8255. border-radius:26px;
  8256. border-top-left-radius:0px;
  8257. border-top-right-radius:0px;
  8258. -moz-box-shadow:none;
  8259. -webkit-box-shadow:none;
  8260. box-shadow:none;
  8261. }
  8262. #u51883 {
  8263. border-width:0px;
  8264. position:absolute;
  8265. left:1881px;
  8266. top:789px;
  8267. width:375px;
  8268. height:50px;
  8269. display:flex;
  8270. }
  8271. #u51883 .text {
  8272. position:absolute;
  8273. align-self:center;
  8274. padding:2px 2px 2px 2px;
  8275. box-sizing:border-box;
  8276. width:100%;
  8277. }
  8278. #u51883_text {
  8279. border-width:0px;
  8280. word-wrap:break-word;
  8281. text-transform:none;
  8282. visibility:hidden;
  8283. }
  8284. #u51884 {
  8285. border-width:0px;
  8286. position:absolute;
  8287. left:0px;
  8288. top:0px;
  8289. width:0px;
  8290. height:0px;
  8291. }
  8292. #u51885_img {
  8293. border-width:0px;
  8294. position:absolute;
  8295. left:0px;
  8296. top:0px;
  8297. width:24px;
  8298. height:24px;
  8299. }
  8300. #u51885 {
  8301. border-width:0px;
  8302. position:absolute;
  8303. left:1921px;
  8304. top:793px;
  8305. width:24px;
  8306. height:24px;
  8307. display:flex;
  8308. font-size:8px;
  8309. }
  8310. #u51885 .text {
  8311. position:absolute;
  8312. align-self:center;
  8313. padding:2px 2px 2px 2px;
  8314. box-sizing:border-box;
  8315. width:100%;
  8316. }
  8317. #u51885_text {
  8318. border-width:0px;
  8319. word-wrap:break-word;
  8320. text-transform:none;
  8321. }
  8322. #u51886_div {
  8323. border-width:0px;
  8324. position:absolute;
  8325. left:0px;
  8326. top:0px;
  8327. width:25px;
  8328. height:17px;
  8329. background:inherit;
  8330. background-color:rgba(255, 255, 255, 0);
  8331. border:none;
  8332. border-radius:0px;
  8333. -moz-box-shadow:none;
  8334. -webkit-box-shadow:none;
  8335. box-shadow:none;
  8336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8337. font-weight:400;
  8338. font-style:normal;
  8339. font-size:12px;
  8340. }
  8341. #u51886 {
  8342. border-width:0px;
  8343. position:absolute;
  8344. left:1921px;
  8345. top:818px;
  8346. width:25px;
  8347. height:17px;
  8348. display:flex;
  8349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8350. font-weight:400;
  8351. font-style:normal;
  8352. font-size:12px;
  8353. }
  8354. #u51886 .text {
  8355. position:absolute;
  8356. align-self:flex-start;
  8357. padding:0px 0px 0px 0px;
  8358. box-sizing:border-box;
  8359. width:100%;
  8360. }
  8361. #u51886_text {
  8362. border-width:0px;
  8363. white-space:nowrap;
  8364. text-transform:none;
  8365. }
  8366. #u51887 {
  8367. border-width:0px;
  8368. position:absolute;
  8369. left:0px;
  8370. top:0px;
  8371. width:0px;
  8372. height:0px;
  8373. }
  8374. #u51888_img {
  8375. border-width:0px;
  8376. position:absolute;
  8377. left:0px;
  8378. top:0px;
  8379. width:24px;
  8380. height:24px;
  8381. }
  8382. #u51888 {
  8383. border-width:0px;
  8384. position:absolute;
  8385. left:2191px;
  8386. top:795px;
  8387. width:24px;
  8388. height:24px;
  8389. display:flex;
  8390. font-size:8px;
  8391. }
  8392. #u51888 .text {
  8393. position:absolute;
  8394. align-self:center;
  8395. padding:2px 2px 2px 2px;
  8396. box-sizing:border-box;
  8397. width:100%;
  8398. }
  8399. #u51888_text {
  8400. border-width:0px;
  8401. word-wrap:break-word;
  8402. text-transform:none;
  8403. }
  8404. #u51889_div {
  8405. border-width:0px;
  8406. position:absolute;
  8407. left:0px;
  8408. top:0px;
  8409. width:25px;
  8410. height:17px;
  8411. background:inherit;
  8412. background-color:rgba(255, 255, 255, 0);
  8413. border:none;
  8414. border-radius:0px;
  8415. -moz-box-shadow:none;
  8416. -webkit-box-shadow:none;
  8417. box-shadow:none;
  8418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8419. font-weight:400;
  8420. font-style:normal;
  8421. font-size:12px;
  8422. }
  8423. #u51889 {
  8424. border-width:0px;
  8425. position:absolute;
  8426. left:2191px;
  8427. top:820px;
  8428. width:25px;
  8429. height:17px;
  8430. display:flex;
  8431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8432. font-weight:400;
  8433. font-style:normal;
  8434. font-size:12px;
  8435. }
  8436. #u51889 .text {
  8437. position:absolute;
  8438. align-self:flex-start;
  8439. padding:0px 0px 0px 0px;
  8440. box-sizing:border-box;
  8441. width:100%;
  8442. }
  8443. #u51889_text {
  8444. border-width:0px;
  8445. white-space:nowrap;
  8446. text-transform:none;
  8447. }
  8448. #u51890_div {
  8449. border-width:0px;
  8450. position:absolute;
  8451. left:0px;
  8452. top:0px;
  8453. width:375px;
  8454. height:681px;
  8455. background:inherit;
  8456. background-color:rgba(242, 242, 242, 0.462745098039216);
  8457. border:none;
  8458. border-radius:0px;
  8459. -moz-box-shadow:none;
  8460. -webkit-box-shadow:none;
  8461. box-shadow:none;
  8462. }
  8463. #u51890 {
  8464. border-width:0px;
  8465. position:absolute;
  8466. left:1881px;
  8467. top:108px;
  8468. width:375px;
  8469. height:681px;
  8470. display:flex;
  8471. }
  8472. #u51890 .text {
  8473. position:absolute;
  8474. align-self:center;
  8475. padding:2px 2px 2px 2px;
  8476. box-sizing:border-box;
  8477. width:100%;
  8478. }
  8479. #u51890_text {
  8480. border-width:0px;
  8481. word-wrap:break-word;
  8482. text-transform:none;
  8483. visibility:hidden;
  8484. }
  8485. #u51891 {
  8486. border-width:0px;
  8487. position:absolute;
  8488. left:0px;
  8489. top:0px;
  8490. width:0px;
  8491. height:0px;
  8492. }
  8493. #u51892_img {
  8494. border-width:0px;
  8495. position:absolute;
  8496. left:0px;
  8497. top:0px;
  8498. width:24px;
  8499. height:24px;
  8500. }
  8501. #u51892 {
  8502. border-width:0px;
  8503. position:absolute;
  8504. left:2103px;
  8505. top:793px;
  8506. width:24px;
  8507. height:24px;
  8508. display:flex;
  8509. font-size:8px;
  8510. }
  8511. #u51892 .text {
  8512. position:absolute;
  8513. align-self:center;
  8514. padding:2px 2px 2px 2px;
  8515. box-sizing:border-box;
  8516. width:100%;
  8517. }
  8518. #u51892_text {
  8519. border-width:0px;
  8520. word-wrap:break-word;
  8521. text-transform:none;
  8522. }
  8523. #u51893_div {
  8524. border-width:0px;
  8525. position:absolute;
  8526. left:0px;
  8527. top:0px;
  8528. width:37px;
  8529. height:17px;
  8530. background:inherit;
  8531. background-color:rgba(255, 255, 255, 0);
  8532. border:none;
  8533. border-radius:0px;
  8534. -moz-box-shadow:none;
  8535. -webkit-box-shadow:none;
  8536. box-shadow:none;
  8537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8538. font-weight:400;
  8539. font-style:normal;
  8540. font-size:12px;
  8541. }
  8542. #u51893 {
  8543. border-width:0px;
  8544. position:absolute;
  8545. left:2097px;
  8546. top:818px;
  8547. width:37px;
  8548. height:17px;
  8549. display:flex;
  8550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8551. font-weight:400;
  8552. font-style:normal;
  8553. font-size:12px;
  8554. }
  8555. #u51893 .text {
  8556. position:absolute;
  8557. align-self:flex-start;
  8558. padding:0px 0px 0px 0px;
  8559. box-sizing:border-box;
  8560. width:100%;
  8561. }
  8562. #u51893_text {
  8563. border-width:0px;
  8564. white-space:nowrap;
  8565. text-transform:none;
  8566. }
  8567. #u51894 {
  8568. border-width:0px;
  8569. position:absolute;
  8570. left:0px;
  8571. top:0px;
  8572. width:0px;
  8573. height:0px;
  8574. }
  8575. #u51895_img {
  8576. border-width:0px;
  8577. position:absolute;
  8578. left:0px;
  8579. top:0px;
  8580. width:24px;
  8581. height:24px;
  8582. }
  8583. #u51895 {
  8584. border-width:0px;
  8585. position:absolute;
  8586. left:2009px;
  8587. top:793px;
  8588. width:24px;
  8589. height:24px;
  8590. display:flex;
  8591. font-size:8px;
  8592. }
  8593. #u51895 .text {
  8594. position:absolute;
  8595. align-self:center;
  8596. padding:2px 2px 2px 2px;
  8597. box-sizing:border-box;
  8598. width:100%;
  8599. }
  8600. #u51895_text {
  8601. border-width:0px;
  8602. word-wrap:break-word;
  8603. text-transform:none;
  8604. }
  8605. #u51896_div {
  8606. border-width:0px;
  8607. position:absolute;
  8608. left:0px;
  8609. top:0px;
  8610. width:37px;
  8611. height:17px;
  8612. background:inherit;
  8613. background-color:rgba(255, 255, 255, 0);
  8614. border:none;
  8615. border-radius:0px;
  8616. -moz-box-shadow:none;
  8617. -webkit-box-shadow:none;
  8618. box-shadow:none;
  8619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8620. font-weight:400;
  8621. font-style:normal;
  8622. font-size:12px;
  8623. }
  8624. #u51896 {
  8625. border-width:0px;
  8626. position:absolute;
  8627. left:2003px;
  8628. top:818px;
  8629. width:37px;
  8630. height:17px;
  8631. display:flex;
  8632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8633. font-weight:400;
  8634. font-style:normal;
  8635. font-size:12px;
  8636. }
  8637. #u51896 .text {
  8638. position:absolute;
  8639. align-self:flex-start;
  8640. padding:0px 0px 0px 0px;
  8641. box-sizing:border-box;
  8642. width:100%;
  8643. }
  8644. #u51896_text {
  8645. border-width:0px;
  8646. white-space:nowrap;
  8647. text-transform:none;
  8648. }
  8649. #u51897_div {
  8650. border-width:0px;
  8651. position:absolute;
  8652. left:0px;
  8653. top:0px;
  8654. width:375px;
  8655. height:775px;
  8656. background:inherit;
  8657. background-color:rgba(255, 255, 255, 1);
  8658. border:none;
  8659. border-top:0px;
  8660. border-radius:28px;
  8661. border-top-left-radius:0px;
  8662. border-top-right-radius:0px;
  8663. -moz-box-shadow:none;
  8664. -webkit-box-shadow:none;
  8665. box-shadow:none;
  8666. }
  8667. #u51897 {
  8668. border-width:0px;
  8669. position:absolute;
  8670. left:1881px;
  8671. top:66px;
  8672. width:375px;
  8673. height:775px;
  8674. display:flex;
  8675. }
  8676. #u51897 .text {
  8677. position:absolute;
  8678. align-self:center;
  8679. padding:2px 2px 2px 2px;
  8680. box-sizing:border-box;
  8681. width:100%;
  8682. }
  8683. #u51897_text {
  8684. border-width:0px;
  8685. word-wrap:break-word;
  8686. text-transform:none;
  8687. visibility:hidden;
  8688. }
  8689. #u51898_div {
  8690. border-width:0px;
  8691. position:absolute;
  8692. left:0px;
  8693. top:0px;
  8694. width:97px;
  8695. height:30px;
  8696. background:inherit;
  8697. background-color:rgba(255, 255, 255, 0);
  8698. border:none;
  8699. border-left:0px;
  8700. border-top:0px;
  8701. border-right:0px;
  8702. border-radius:0px;
  8703. border-bottom-right-radius:0px;
  8704. border-bottom-left-radius:0px;
  8705. -moz-box-shadow:none;
  8706. -webkit-box-shadow:none;
  8707. box-shadow:none;
  8708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8709. font-weight:400;
  8710. font-style:normal;
  8711. line-height:30px;
  8712. }
  8713. #u51898 {
  8714. border-width:0px;
  8715. position:absolute;
  8716. left:2020px;
  8717. top:227px;
  8718. width:97px;
  8719. height:30px;
  8720. display:flex;
  8721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8722. font-weight:400;
  8723. font-style:normal;
  8724. line-height:30px;
  8725. }
  8726. #u51898 .text {
  8727. position:absolute;
  8728. align-self:center;
  8729. padding:0px 0px 0px 0px;
  8730. box-sizing:border-box;
  8731. width:100%;
  8732. }
  8733. #u51898_text {
  8734. border-width:0px;
  8735. white-space:nowrap;
  8736. text-transform:none;
  8737. }
  8738. #u51899_div {
  8739. border-width:0px;
  8740. position:absolute;
  8741. left:0px;
  8742. top:0px;
  8743. width:126px;
  8744. height:40px;
  8745. background:inherit;
  8746. background-color:rgba(255, 255, 255, 1);
  8747. box-sizing:border-box;
  8748. border-width:1px;
  8749. border-style:solid;
  8750. border-color:rgba(121, 121, 121, 1);
  8751. border-radius:63px;
  8752. -moz-box-shadow:none;
  8753. -webkit-box-shadow:none;
  8754. box-shadow:none;
  8755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8756. font-weight:400;
  8757. font-style:normal;
  8758. font-size:14px;
  8759. }
  8760. #u51899 {
  8761. border-width:0px;
  8762. position:absolute;
  8763. left:2079px;
  8764. top:355px;
  8765. width:126px;
  8766. height:40px;
  8767. display:flex;
  8768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8769. font-weight:400;
  8770. font-style:normal;
  8771. font-size:14px;
  8772. }
  8773. #u51899 .text {
  8774. position:absolute;
  8775. align-self:center;
  8776. padding:2px 2px 2px 2px;
  8777. box-sizing:border-box;
  8778. width:100%;
  8779. }
  8780. #u51899_text {
  8781. border-width:0px;
  8782. word-wrap:break-word;
  8783. text-transform:none;
  8784. }
  8785. #u51900_img {
  8786. border-width:0px;
  8787. position:absolute;
  8788. left:0px;
  8789. top:0px;
  8790. width:83px;
  8791. height:83px;
  8792. }
  8793. #u51900 {
  8794. border-width:0px;
  8795. position:absolute;
  8796. left:2027px;
  8797. top:128px;
  8798. width:83px;
  8799. height:83px;
  8800. display:flex;
  8801. }
  8802. #u51900 .text {
  8803. position:absolute;
  8804. align-self:center;
  8805. padding:2px 2px 2px 2px;
  8806. box-sizing:border-box;
  8807. width:100%;
  8808. }
  8809. #u51900_text {
  8810. border-width:0px;
  8811. word-wrap:break-word;
  8812. text-transform:none;
  8813. visibility:hidden;
  8814. }
  8815. #u51901_div {
  8816. border-width:0px;
  8817. position:absolute;
  8818. left:0px;
  8819. top:0px;
  8820. width:126px;
  8821. height:40px;
  8822. background:inherit;
  8823. background-color:rgba(255, 255, 255, 1);
  8824. box-sizing:border-box;
  8825. border-width:1px;
  8826. border-style:solid;
  8827. border-color:rgba(121, 121, 121, 1);
  8828. border-radius:63px;
  8829. -moz-box-shadow:none;
  8830. -webkit-box-shadow:none;
  8831. box-shadow:none;
  8832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8833. font-weight:400;
  8834. font-style:normal;
  8835. font-size:14px;
  8836. }
  8837. #u51901 {
  8838. border-width:0px;
  8839. position:absolute;
  8840. left:1933px;
  8841. top:355px;
  8842. width:126px;
  8843. height:40px;
  8844. display:flex;
  8845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8846. font-weight:400;
  8847. font-style:normal;
  8848. font-size:14px;
  8849. }
  8850. #u51901 .text {
  8851. position:absolute;
  8852. align-self:center;
  8853. padding:2px 2px 2px 2px;
  8854. box-sizing:border-box;
  8855. width:100%;
  8856. }
  8857. #u51901_text {
  8858. border-width:0px;
  8859. word-wrap:break-word;
  8860. text-transform:none;
  8861. }
  8862. #u51902_div {
  8863. border-width:0px;
  8864. position:absolute;
  8865. left:0px;
  8866. top:0px;
  8867. width:30px;
  8868. height:30px;
  8869. background:inherit;
  8870. background-color:rgba(255, 255, 255, 0);
  8871. border:none;
  8872. border-left:0px;
  8873. border-top:0px;
  8874. border-right:0px;
  8875. border-radius:0px;
  8876. border-bottom-right-radius:0px;
  8877. border-bottom-left-radius:0px;
  8878. -moz-box-shadow:none;
  8879. -webkit-box-shadow:none;
  8880. box-shadow:none;
  8881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8882. font-weight:400;
  8883. font-style:normal;
  8884. font-size:18px;
  8885. text-align:center;
  8886. line-height:30px;
  8887. }
  8888. #u51902 {
  8889. border-width:0px;
  8890. position:absolute;
  8891. left:1891px;
  8892. top:76px;
  8893. width:30px;
  8894. height:30px;
  8895. display:flex;
  8896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8897. font-weight:400;
  8898. font-style:normal;
  8899. font-size:18px;
  8900. text-align:center;
  8901. line-height:30px;
  8902. }
  8903. #u51902 .text {
  8904. position:absolute;
  8905. align-self:center;
  8906. padding:0px 0px 0px 0px;
  8907. box-sizing:border-box;
  8908. width:100%;
  8909. }
  8910. #u51902_text {
  8911. border-width:0px;
  8912. word-wrap:break-word;
  8913. text-transform:none;
  8914. }
  8915. #u51903 {
  8916. border-width:0px;
  8917. position:absolute;
  8918. left:0px;
  8919. top:0px;
  8920. width:0px;
  8921. height:0px;
  8922. }
  8923. #u51904_img {
  8924. border-width:0px;
  8925. position:absolute;
  8926. left:0px;
  8927. top:0px;
  8928. width:350px;
  8929. height:40px;
  8930. }
  8931. #u51904 {
  8932. border-width:0px;
  8933. position:absolute;
  8934. left:1893px;
  8935. top:403px;
  8936. width:350px;
  8937. height:40px;
  8938. display:flex;
  8939. }
  8940. #u51904 .text {
  8941. position:absolute;
  8942. align-self:center;
  8943. padding:2px 2px 2px 2px;
  8944. box-sizing:border-box;
  8945. width:100%;
  8946. }
  8947. #u51904_text {
  8948. border-width:0px;
  8949. word-wrap:break-word;
  8950. text-transform:none;
  8951. visibility:hidden;
  8952. }
  8953. #u51905 {
  8954. border-width:0px;
  8955. position:absolute;
  8956. left:0px;
  8957. top:0px;
  8958. width:0px;
  8959. height:0px;
  8960. }
  8961. #u51906_div {
  8962. border-width:0px;
  8963. position:absolute;
  8964. left:0px;
  8965. top:0px;
  8966. width:221px;
  8967. height:30px;
  8968. background:inherit;
  8969. background-color:rgba(255, 255, 255, 0);
  8970. border:none;
  8971. border-left:0px;
  8972. border-top:0px;
  8973. border-right:0px;
  8974. border-radius:0px;
  8975. border-bottom-right-radius:0px;
  8976. border-bottom-left-radius:0px;
  8977. -moz-box-shadow:none;
  8978. -webkit-box-shadow:none;
  8979. box-shadow:none;
  8980. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8981. font-style:normal;
  8982. color:#FFFFFF;
  8983. text-align:center;
  8984. line-height:30px;
  8985. }
  8986. #u51906 {
  8987. border-width:0px;
  8988. position:absolute;
  8989. left:1973px;
  8990. top:408px;
  8991. width:221px;
  8992. height:30px;
  8993. display:flex;
  8994. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8995. font-style:normal;
  8996. color:#FFFFFF;
  8997. text-align:center;
  8998. line-height:30px;
  8999. }
  9000. #u51906 .text {
  9001. position:absolute;
  9002. align-self:center;
  9003. padding:0px 0px 0px 0px;
  9004. box-sizing:border-box;
  9005. width:100%;
  9006. }
  9007. #u51906_text {
  9008. border-width:0px;
  9009. white-space:nowrap;
  9010. text-transform:none;
  9011. }
  9012. #u51907_img {
  9013. border-width:0px;
  9014. position:absolute;
  9015. left:0px;
  9016. top:0px;
  9017. width:26px;
  9018. height:26px;
  9019. }
  9020. #u51907 {
  9021. border-width:0px;
  9022. position:absolute;
  9023. left:1943px;
  9024. top:410px;
  9025. width:26px;
  9026. height:26px;
  9027. display:flex;
  9028. }
  9029. #u51907 .text {
  9030. position:absolute;
  9031. align-self:center;
  9032. padding:2px 2px 2px 2px;
  9033. box-sizing:border-box;
  9034. width:100%;
  9035. }
  9036. #u51907_text {
  9037. border-width:0px;
  9038. word-wrap:break-word;
  9039. text-transform:none;
  9040. }
  9041. #u51908_div {
  9042. border-width:0px;
  9043. position:absolute;
  9044. left:0px;
  9045. top:0px;
  9046. width:267px;
  9047. height:30px;
  9048. background:inherit;
  9049. background-color:rgba(255, 255, 255, 0);
  9050. border:none;
  9051. border-left:0px;
  9052. border-top:0px;
  9053. border-right:0px;
  9054. border-radius:0px;
  9055. border-bottom-right-radius:0px;
  9056. border-bottom-left-radius:0px;
  9057. -moz-box-shadow:none;
  9058. -webkit-box-shadow:none;
  9059. box-shadow:none;
  9060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9061. font-weight:400;
  9062. font-style:normal;
  9063. font-size:14px;
  9064. text-align:center;
  9065. line-height:30px;
  9066. }
  9067. #u51908 {
  9068. border-width:0px;
  9069. position:absolute;
  9070. left:1934px;
  9071. top:285px;
  9072. width:267px;
  9073. height:30px;
  9074. display:flex;
  9075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9076. font-weight:400;
  9077. font-style:normal;
  9078. font-size:14px;
  9079. text-align:center;
  9080. line-height:30px;
  9081. }
  9082. #u51908 .text {
  9083. position:absolute;
  9084. align-self:center;
  9085. padding:0px 0px 0px 0px;
  9086. box-sizing:border-box;
  9087. width:100%;
  9088. }
  9089. #u51908_text {
  9090. border-width:0px;
  9091. white-space:nowrap;
  9092. text-transform:none;
  9093. }
  9094. #u51909_div {
  9095. border-width:0px;
  9096. position:absolute;
  9097. left:0px;
  9098. top:0px;
  9099. width:363px;
  9100. height:30px;
  9101. background:inherit;
  9102. background-color:rgba(255, 255, 255, 0);
  9103. border:none;
  9104. border-left:0px;
  9105. border-top:0px;
  9106. border-right:0px;
  9107. border-radius:0px;
  9108. border-bottom-right-radius:0px;
  9109. border-bottom-left-radius:0px;
  9110. -moz-box-shadow:none;
  9111. -webkit-box-shadow:none;
  9112. box-shadow:none;
  9113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9114. font-weight:400;
  9115. font-style:normal;
  9116. font-size:14px;
  9117. color:#D9001B;
  9118. line-height:30px;
  9119. }
  9120. #u51909 {
  9121. border-width:0px;
  9122. position:absolute;
  9123. left:1893px;
  9124. top:472px;
  9125. width:363px;
  9126. height:30px;
  9127. display:flex;
  9128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9129. font-weight:400;
  9130. font-style:normal;
  9131. font-size:14px;
  9132. color:#D9001B;
  9133. line-height:30px;
  9134. }
  9135. #u51909 .text {
  9136. position:absolute;
  9137. align-self:flex-start;
  9138. padding:0px 0px 0px 0px;
  9139. box-sizing:border-box;
  9140. width:100%;
  9141. }
  9142. #u51909_text {
  9143. border-width:0px;
  9144. word-wrap:break-word;
  9145. text-transform:none;
  9146. }
  9147. #u51910_div {
  9148. border-width:0px;
  9149. position:absolute;
  9150. left:0px;
  9151. top:0px;
  9152. width:463px;
  9153. height:25px;
  9154. background:inherit;
  9155. background-color:rgba(255, 255, 255, 0);
  9156. border:none;
  9157. border-left:0px;
  9158. border-top:0px;
  9159. border-right:0px;
  9160. border-radius:0px;
  9161. border-bottom-right-radius:0px;
  9162. border-bottom-left-radius:0px;
  9163. -moz-box-shadow:none;
  9164. -webkit-box-shadow:none;
  9165. box-shadow:none;
  9166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9167. font-weight:400;
  9168. font-style:normal;
  9169. font-size:12px;
  9170. color:#D9001B;
  9171. line-height:25px;
  9172. }
  9173. #u51910 {
  9174. border-width:0px;
  9175. position:absolute;
  9176. left:53px;
  9177. top:1038px;
  9178. width:463px;
  9179. height:25px;
  9180. display:flex;
  9181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9182. font-weight:400;
  9183. font-style:normal;
  9184. font-size:12px;
  9185. color:#D9001B;
  9186. line-height:25px;
  9187. }
  9188. #u51910 .text {
  9189. position:absolute;
  9190. align-self:flex-start;
  9191. padding:0px 0px 0px 0px;
  9192. box-sizing:border-box;
  9193. width:100%;
  9194. }
  9195. #u51910_text {
  9196. border-width:0px;
  9197. white-space:nowrap;
  9198. text-transform:none;
  9199. }
  9200. #u51911_div {
  9201. border-width:0px;
  9202. position:absolute;
  9203. left:0px;
  9204. top:0px;
  9205. width:369px;
  9206. height:50px;
  9207. background:inherit;
  9208. background-color:rgba(255, 255, 255, 0);
  9209. border:none;
  9210. border-left:0px;
  9211. border-top:0px;
  9212. border-right:0px;
  9213. border-radius:0px;
  9214. border-bottom-right-radius:0px;
  9215. border-bottom-left-radius:0px;
  9216. -moz-box-shadow:none;
  9217. -webkit-box-shadow:none;
  9218. box-shadow:none;
  9219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9220. font-weight:400;
  9221. font-style:normal;
  9222. font-size:12px;
  9223. color:#D9001B;
  9224. line-height:25px;
  9225. }
  9226. #u51911 {
  9227. border-width:0px;
  9228. position:absolute;
  9229. left:53px;
  9230. top:1305px;
  9231. width:369px;
  9232. height:50px;
  9233. display:flex;
  9234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9235. font-weight:400;
  9236. font-style:normal;
  9237. font-size:12px;
  9238. color:#D9001B;
  9239. line-height:25px;
  9240. }
  9241. #u51911 .text {
  9242. position:absolute;
  9243. align-self:flex-start;
  9244. padding:0px 0px 0px 0px;
  9245. box-sizing:border-box;
  9246. width:100%;
  9247. }
  9248. #u51911_text {
  9249. border-width:0px;
  9250. word-wrap:break-word;
  9251. text-transform:none;
  9252. }
  9253. #u51912 {
  9254. border-width:0px;
  9255. position:absolute;
  9256. left:0px;
  9257. top:0px;
  9258. width:0px;
  9259. height:0px;
  9260. }
  9261. #u51913_div {
  9262. border-width:0px;
  9263. position:absolute;
  9264. left:0px;
  9265. top:0px;
  9266. width:346px;
  9267. height:219px;
  9268. background:inherit;
  9269. background-color:rgba(255, 255, 255, 1);
  9270. border:none;
  9271. border-radius:9px;
  9272. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9273. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9274. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9275. }
  9276. #u51913 {
  9277. border-width:0px;
  9278. position:absolute;
  9279. left:433px;
  9280. top:1071px;
  9281. width:346px;
  9282. height:219px;
  9283. display:flex;
  9284. }
  9285. #u51913 .text {
  9286. position:absolute;
  9287. align-self:center;
  9288. padding:2px 2px 2px 2px;
  9289. box-sizing:border-box;
  9290. width:100%;
  9291. }
  9292. #u51913_text {
  9293. border-width:0px;
  9294. word-wrap:break-word;
  9295. text-transform:none;
  9296. visibility:hidden;
  9297. }
  9298. #u51914_div {
  9299. border-width:0px;
  9300. position:absolute;
  9301. left:0px;
  9302. top:0px;
  9303. width:49px;
  9304. height:33px;
  9305. background:inherit;
  9306. background-color:rgba(255, 255, 255, 0);
  9307. border:none;
  9308. border-radius:0px;
  9309. -moz-box-shadow:none;
  9310. -webkit-box-shadow:none;
  9311. box-shadow:none;
  9312. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9313. font-weight:650;
  9314. font-style:normal;
  9315. font-size:24px;
  9316. text-align:center;
  9317. }
  9318. #u51914 {
  9319. border-width:0px;
  9320. position:absolute;
  9321. left:582px;
  9322. top:1109px;
  9323. width:49px;
  9324. height:33px;
  9325. display:flex;
  9326. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9327. font-weight:650;
  9328. font-style:normal;
  9329. font-size:24px;
  9330. text-align:center;
  9331. }
  9332. #u51914 .text {
  9333. position:absolute;
  9334. align-self:center;
  9335. padding:0px 0px 0px 0px;
  9336. box-sizing:border-box;
  9337. width:100%;
  9338. }
  9339. #u51914_text {
  9340. border-width:0px;
  9341. white-space:nowrap;
  9342. text-transform:none;
  9343. }
  9344. #u51915_div {
  9345. border-width:0px;
  9346. position:absolute;
  9347. left:0px;
  9348. top:0px;
  9349. width:173px;
  9350. height:60px;
  9351. background:inherit;
  9352. background-color:rgba(255, 255, 255, 0);
  9353. box-sizing:border-box;
  9354. border-width:1px;
  9355. border-style:solid;
  9356. border-color:rgba(215, 215, 215, 1);
  9357. border-left:0px;
  9358. border-bottom:0px;
  9359. border-radius:0px;
  9360. border-top-left-radius:0px;
  9361. border-bottom-right-radius:0px;
  9362. -moz-box-shadow:none;
  9363. -webkit-box-shadow:none;
  9364. box-shadow:none;
  9365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9366. font-weight:400;
  9367. font-style:normal;
  9368. font-size:22px;
  9369. color:#0099FF;
  9370. text-align:center;
  9371. }
  9372. #u51915 {
  9373. border-width:0px;
  9374. position:absolute;
  9375. left:432px;
  9376. top:1230px;
  9377. width:173px;
  9378. height:60px;
  9379. display:flex;
  9380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9381. font-weight:400;
  9382. font-style:normal;
  9383. font-size:22px;
  9384. color:#0099FF;
  9385. text-align:center;
  9386. }
  9387. #u51915 .text {
  9388. position:absolute;
  9389. align-self:center;
  9390. padding:0px 0px 0px 0px;
  9391. box-sizing:border-box;
  9392. width:100%;
  9393. }
  9394. #u51915_text {
  9395. border-width:0px;
  9396. word-wrap:break-word;
  9397. text-transform:none;
  9398. }
  9399. #u51916_div {
  9400. border-width:0px;
  9401. position:absolute;
  9402. left:0px;
  9403. top:0px;
  9404. width:173px;
  9405. height:60px;
  9406. background:inherit;
  9407. background-color:rgba(255, 255, 255, 0);
  9408. box-sizing:border-box;
  9409. border-width:1px;
  9410. border-style:solid;
  9411. border-color:rgba(215, 215, 215, 1);
  9412. border-left:0px;
  9413. border-right:0px;
  9414. border-bottom:0px;
  9415. border-radius:0px;
  9416. border-top-left-radius:0px;
  9417. border-top-right-radius:0px;
  9418. -moz-box-shadow:none;
  9419. -webkit-box-shadow:none;
  9420. box-shadow:none;
  9421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9422. font-weight:400;
  9423. font-style:normal;
  9424. font-size:22px;
  9425. color:#0099FF;
  9426. text-align:center;
  9427. }
  9428. #u51916 {
  9429. border-width:0px;
  9430. position:absolute;
  9431. left:605px;
  9432. top:1230px;
  9433. width:173px;
  9434. height:60px;
  9435. display:flex;
  9436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9437. font-weight:400;
  9438. font-style:normal;
  9439. font-size:22px;
  9440. color:#0099FF;
  9441. text-align:center;
  9442. }
  9443. #u51916 .text {
  9444. position:absolute;
  9445. align-self:center;
  9446. padding:0px 0px 0px 0px;
  9447. box-sizing:border-box;
  9448. width:100%;
  9449. }
  9450. #u51916_text {
  9451. border-width:0px;
  9452. word-wrap:break-word;
  9453. text-transform:none;
  9454. }
  9455. #u51917_div {
  9456. border-width:0px;
  9457. position:absolute;
  9458. left:0px;
  9459. top:0px;
  9460. width:287px;
  9461. height:40px;
  9462. background:inherit;
  9463. background-color:rgba(255, 255, 255, 0);
  9464. border:none;
  9465. border-radius:0px;
  9466. -moz-box-shadow:none;
  9467. -webkit-box-shadow:none;
  9468. box-shadow:none;
  9469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9470. font-weight:400;
  9471. font-style:normal;
  9472. font-size:14px;
  9473. text-align:center;
  9474. }
  9475. #u51917 {
  9476. border-width:0px;
  9477. position:absolute;
  9478. left:465px;
  9479. top:1164px;
  9480. width:287px;
  9481. height:40px;
  9482. display:flex;
  9483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9484. font-weight:400;
  9485. font-style:normal;
  9486. font-size:14px;
  9487. text-align:center;
  9488. }
  9489. #u51917 .text {
  9490. position:absolute;
  9491. align-self:center;
  9492. padding:0px 0px 0px 0px;
  9493. box-sizing:border-box;
  9494. width:100%;
  9495. }
  9496. #u51917_text {
  9497. border-width:0px;
  9498. word-wrap:break-word;
  9499. text-transform:none;
  9500. }
  9501. #u51918 {
  9502. border-width:0px;
  9503. position:absolute;
  9504. left:0px;
  9505. top:0px;
  9506. width:0px;
  9507. height:0px;
  9508. }
  9509. #u51919_div {
  9510. border-width:0px;
  9511. position:absolute;
  9512. left:0px;
  9513. top:0px;
  9514. width:346px;
  9515. height:219px;
  9516. background:inherit;
  9517. background-color:rgba(255, 255, 255, 1);
  9518. border:none;
  9519. border-radius:9px;
  9520. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9521. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9522. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9523. }
  9524. #u51919 {
  9525. border-width:0px;
  9526. position:absolute;
  9527. left:54px;
  9528. top:1071px;
  9529. width:346px;
  9530. height:219px;
  9531. display:flex;
  9532. }
  9533. #u51919 .text {
  9534. position:absolute;
  9535. align-self:center;
  9536. padding:2px 2px 2px 2px;
  9537. box-sizing:border-box;
  9538. width:100%;
  9539. }
  9540. #u51919_text {
  9541. border-width:0px;
  9542. word-wrap:break-word;
  9543. text-transform:none;
  9544. visibility:hidden;
  9545. }
  9546. #u51920_div {
  9547. border-width:0px;
  9548. position:absolute;
  9549. left:0px;
  9550. top:0px;
  9551. width:49px;
  9552. height:33px;
  9553. background:inherit;
  9554. background-color:rgba(255, 255, 255, 0);
  9555. border:none;
  9556. border-radius:0px;
  9557. -moz-box-shadow:none;
  9558. -webkit-box-shadow:none;
  9559. box-shadow:none;
  9560. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9561. font-weight:650;
  9562. font-style:normal;
  9563. font-size:24px;
  9564. text-align:center;
  9565. }
  9566. #u51920 {
  9567. border-width:0px;
  9568. position:absolute;
  9569. left:203px;
  9570. top:1109px;
  9571. width:49px;
  9572. height:33px;
  9573. display:flex;
  9574. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9575. font-weight:650;
  9576. font-style:normal;
  9577. font-size:24px;
  9578. text-align:center;
  9579. }
  9580. #u51920 .text {
  9581. position:absolute;
  9582. align-self:center;
  9583. padding:0px 0px 0px 0px;
  9584. box-sizing:border-box;
  9585. width:100%;
  9586. }
  9587. #u51920_text {
  9588. border-width:0px;
  9589. white-space:nowrap;
  9590. text-transform:none;
  9591. }
  9592. #u51921_div {
  9593. border-width:0px;
  9594. position:absolute;
  9595. left:0px;
  9596. top:0px;
  9597. width:173px;
  9598. height:60px;
  9599. background:inherit;
  9600. background-color:rgba(255, 255, 255, 0);
  9601. box-sizing:border-box;
  9602. border-width:1px;
  9603. border-style:solid;
  9604. border-color:rgba(215, 215, 215, 1);
  9605. border-left:0px;
  9606. border-bottom:0px;
  9607. border-radius:0px;
  9608. border-top-left-radius:0px;
  9609. border-bottom-right-radius:0px;
  9610. -moz-box-shadow:none;
  9611. -webkit-box-shadow:none;
  9612. box-shadow:none;
  9613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9614. font-weight:400;
  9615. font-style:normal;
  9616. font-size:22px;
  9617. color:#0099FF;
  9618. text-align:center;
  9619. }
  9620. #u51921 {
  9621. border-width:0px;
  9622. position:absolute;
  9623. left:53px;
  9624. top:1230px;
  9625. width:173px;
  9626. height:60px;
  9627. display:flex;
  9628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9629. font-weight:400;
  9630. font-style:normal;
  9631. font-size:22px;
  9632. color:#0099FF;
  9633. text-align:center;
  9634. }
  9635. #u51921 .text {
  9636. position:absolute;
  9637. align-self:center;
  9638. padding:0px 0px 0px 0px;
  9639. box-sizing:border-box;
  9640. width:100%;
  9641. }
  9642. #u51921_text {
  9643. border-width:0px;
  9644. word-wrap:break-word;
  9645. text-transform:none;
  9646. }
  9647. #u51922_div {
  9648. border-width:0px;
  9649. position:absolute;
  9650. left:0px;
  9651. top:0px;
  9652. width:173px;
  9653. height:60px;
  9654. background:inherit;
  9655. background-color:rgba(255, 255, 255, 0);
  9656. box-sizing:border-box;
  9657. border-width:1px;
  9658. border-style:solid;
  9659. border-color:rgba(215, 215, 215, 1);
  9660. border-left:0px;
  9661. border-right:0px;
  9662. border-bottom:0px;
  9663. border-radius:0px;
  9664. border-top-left-radius:0px;
  9665. border-top-right-radius:0px;
  9666. -moz-box-shadow:none;
  9667. -webkit-box-shadow:none;
  9668. box-shadow:none;
  9669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9670. font-weight:400;
  9671. font-style:normal;
  9672. font-size:22px;
  9673. color:#0099FF;
  9674. text-align:center;
  9675. }
  9676. #u51922 {
  9677. border-width:0px;
  9678. position:absolute;
  9679. left:226px;
  9680. top:1230px;
  9681. width:173px;
  9682. height:60px;
  9683. display:flex;
  9684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9685. font-weight:400;
  9686. font-style:normal;
  9687. font-size:22px;
  9688. color:#0099FF;
  9689. text-align:center;
  9690. }
  9691. #u51922 .text {
  9692. position:absolute;
  9693. align-self:center;
  9694. padding:0px 0px 0px 0px;
  9695. box-sizing:border-box;
  9696. width:100%;
  9697. }
  9698. #u51922_text {
  9699. border-width:0px;
  9700. word-wrap:break-word;
  9701. text-transform:none;
  9702. }
  9703. #u51923_div {
  9704. border-width:0px;
  9705. position:absolute;
  9706. left:0px;
  9707. top:0px;
  9708. width:287px;
  9709. height:40px;
  9710. background:inherit;
  9711. background-color:rgba(255, 255, 255, 0);
  9712. border:none;
  9713. border-radius:0px;
  9714. -moz-box-shadow:none;
  9715. -webkit-box-shadow:none;
  9716. box-shadow:none;
  9717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9718. font-weight:400;
  9719. font-style:normal;
  9720. font-size:14px;
  9721. text-align:center;
  9722. }
  9723. #u51923 {
  9724. border-width:0px;
  9725. position:absolute;
  9726. left:86px;
  9727. top:1164px;
  9728. width:287px;
  9729. height:40px;
  9730. display:flex;
  9731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9732. font-weight:400;
  9733. font-style:normal;
  9734. font-size:14px;
  9735. text-align:center;
  9736. }
  9737. #u51923 .text {
  9738. position:absolute;
  9739. align-self:center;
  9740. padding:0px 0px 0px 0px;
  9741. box-sizing:border-box;
  9742. width:100%;
  9743. }
  9744. #u51923_text {
  9745. border-width:0px;
  9746. word-wrap:break-word;
  9747. text-transform:none;
  9748. }
  9749. #u51924_div {
  9750. border-width:0px;
  9751. position:absolute;
  9752. left:0px;
  9753. top:0px;
  9754. width:329px;
  9755. height:25px;
  9756. background:inherit;
  9757. background-color:rgba(255, 255, 255, 0);
  9758. border:none;
  9759. border-left:0px;
  9760. border-top:0px;
  9761. border-right:0px;
  9762. border-radius:0px;
  9763. border-bottom-right-radius:0px;
  9764. border-bottom-left-radius:0px;
  9765. -moz-box-shadow:none;
  9766. -webkit-box-shadow:none;
  9767. box-shadow:none;
  9768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9769. font-weight:400;
  9770. font-style:normal;
  9771. font-size:12px;
  9772. color:#D9001B;
  9773. line-height:25px;
  9774. }
  9775. #u51924 {
  9776. border-width:0px;
  9777. position:absolute;
  9778. left:450px;
  9779. top:1311px;
  9780. width:329px;
  9781. height:25px;
  9782. display:flex;
  9783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9784. font-weight:400;
  9785. font-style:normal;
  9786. font-size:12px;
  9787. color:#D9001B;
  9788. line-height:25px;
  9789. }
  9790. #u51924 .text {
  9791. position:absolute;
  9792. align-self:flex-start;
  9793. padding:0px 0px 0px 0px;
  9794. box-sizing:border-box;
  9795. width:100%;
  9796. }
  9797. #u51924_text {
  9798. border-width:0px;
  9799. word-wrap:break-word;
  9800. text-transform:none;
  9801. }