styles.css 200 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:2243px;
  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. #u55345 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u55346 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. transition:none;
  36. }
  37. #u55346 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u55346_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u55346_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u55347_div {
  59. border-width:0px;
  60. position:absolute;
  61. left:0px;
  62. top:0px;
  63. width:375px;
  64. height:40px;
  65. background:inherit;
  66. background-color:rgba(255, 255, 255, 1);
  67. box-sizing:border-box;
  68. border-width:1px;
  69. border-style:solid;
  70. border-color:rgba(215, 215, 215, 1);
  71. border-left:0px;
  72. border-top:0px;
  73. border-right:0px;
  74. border-radius:0px;
  75. border-bottom-right-radius:0px;
  76. border-bottom-left-radius:0px;
  77. filter:drop-shadow(none);
  78. transition:none;
  79. }
  80. #u55347 {
  81. border-width:0px;
  82. position:absolute;
  83. left:29px;
  84. top:67px;
  85. width:375px;
  86. height:40px;
  87. display:flex;
  88. transition:none;
  89. transform-origin:50% 50%;
  90. }
  91. #u55347 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u55347_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u55348 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u55349_div {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:88px;
  118. height:32px;
  119. background:inherit;
  120. background-color:rgba(255, 255, 255, 1);
  121. box-sizing:border-box;
  122. border-width:1px;
  123. border-style:solid;
  124. border-color:rgba(242, 242, 242, 1);
  125. border-radius:33px;
  126. filter:drop-shadow(none);
  127. transition:none;
  128. }
  129. #u55349 {
  130. border-width:0px;
  131. position:absolute;
  132. left:309px;
  133. top:71px;
  134. width:88px;
  135. height:32px;
  136. display:flex;
  137. transition:none;
  138. transform-origin:50% 50%;
  139. }
  140. #u55349 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u55349_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u55350 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u55351 {
  162. border-width:0px;
  163. position:absolute;
  164. left:372px;
  165. top:78px;
  166. width:18px;
  167. height:18px;
  168. display:flex;
  169. transition:none;
  170. }
  171. #u55351 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u55351_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u55351_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u55352 {
  193. border-width:0px;
  194. position:absolute;
  195. left:378px;
  196. top:84px;
  197. width:6px;
  198. height:6px;
  199. display:flex;
  200. transition:none;
  201. }
  202. #u55352 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u55352_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u55352_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u55353 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u55354 {
  232. border-width:0px;
  233. position:absolute;
  234. left:323px;
  235. top:85px;
  236. width:5px;
  237. height:5px;
  238. display:flex;
  239. transition:none;
  240. }
  241. #u55354 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u55354_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u55354_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u55355 {
  263. border-width:0px;
  264. position:absolute;
  265. left:339px;
  266. top:85px;
  267. width:5px;
  268. height:5px;
  269. display:flex;
  270. transition:none;
  271. }
  272. #u55355 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u55355_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u55355_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u55356 {
  294. border-width:0px;
  295. position:absolute;
  296. left:330px;
  297. top:84px;
  298. width:7px;
  299. height:7px;
  300. display:flex;
  301. transition:none;
  302. }
  303. #u55356 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u55356_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u55356_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u55357 {
  325. border-width:0px;
  326. position:absolute;
  327. left:347px;
  328. top:87px;
  329. width:18px;
  330. height:1px;
  331. display:flex;
  332. -webkit-transform:rotate(90deg);
  333. -moz-transform:rotate(90deg);
  334. -ms-transform:rotate(90deg);
  335. transform:rotate(90deg);
  336. transition:none;
  337. }
  338. #u55357 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u55357_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u55357_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u55358 {
  360. border-width:0px;
  361. position:absolute;
  362. left:29px;
  363. top:24px;
  364. width:375px;
  365. height:44px;
  366. display:flex;
  367. transition:none;
  368. }
  369. #u55358 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u55358_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u55358_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u55359_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:375px;
  396. height:50px;
  397. background:inherit;
  398. background-color:rgba(255, 255, 255, 1);
  399. box-sizing:border-box;
  400. border-width:1px;
  401. border-style:solid;
  402. border-color:rgba(242, 242, 242, 1);
  403. border-radius:26px;
  404. border-top-left-radius:0px;
  405. border-top-right-radius:0px;
  406. filter:drop-shadow(none);
  407. transition:none;
  408. }
  409. #u55359 {
  410. border-width:0px;
  411. position:absolute;
  412. left:29px;
  413. top:788px;
  414. width:375px;
  415. height:50px;
  416. display:flex;
  417. transition:none;
  418. transform-origin:50% 50%;
  419. }
  420. #u55359 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u55359_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u55360 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u55361 {
  442. border-width:0px;
  443. position:absolute;
  444. left:69px;
  445. top:792px;
  446. width:24px;
  447. height:24px;
  448. display:flex;
  449. transition:none;
  450. font-size:8px;
  451. }
  452. #u55361 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u55361_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u55361_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u55362_div {
  473. border-width:0px;
  474. position:absolute;
  475. left:0px;
  476. top:0px;
  477. width:25px;
  478. height:17px;
  479. background:inherit;
  480. background-color:rgba(255, 255, 255, 0);
  481. border-radius:0px;
  482. filter:drop-shadow(none);
  483. transition:none;
  484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  485. font-weight:400;
  486. font-style:normal;
  487. font-size:12px;
  488. }
  489. #u55362 {
  490. border-width:0px;
  491. position:absolute;
  492. left:69px;
  493. top:817px;
  494. width:25px;
  495. height:17px;
  496. display:flex;
  497. transition:none;
  498. transform-origin:50% 50%;
  499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  500. font-weight:400;
  501. font-style:normal;
  502. font-size:12px;
  503. }
  504. #u55362 .text {
  505. position:absolute;
  506. align-self:flex-start;
  507. padding:0px 0px 0px 0px;
  508. box-sizing:border-box;
  509. width:100%;
  510. }
  511. #u55362_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u55363 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u55364 {
  525. border-width:0px;
  526. position:absolute;
  527. left:339px;
  528. top:794px;
  529. width:24px;
  530. height:24px;
  531. display:flex;
  532. transition:none;
  533. font-size:8px;
  534. }
  535. #u55364 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u55364_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u55364_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u55365_div {
  556. border-width:0px;
  557. position:absolute;
  558. left:0px;
  559. top:0px;
  560. width:25px;
  561. height:17px;
  562. background:inherit;
  563. background-color:rgba(255, 255, 255, 0);
  564. border-radius:0px;
  565. filter:drop-shadow(none);
  566. transition:none;
  567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  568. font-weight:400;
  569. font-style:normal;
  570. font-size:12px;
  571. }
  572. #u55365 {
  573. border-width:0px;
  574. position:absolute;
  575. left:339px;
  576. top:819px;
  577. width:25px;
  578. height:17px;
  579. display:flex;
  580. transition:none;
  581. transform-origin:50% 50%;
  582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  583. font-weight:400;
  584. font-style:normal;
  585. font-size:12px;
  586. }
  587. #u55365 .text {
  588. position:absolute;
  589. align-self:flex-start;
  590. padding:0px 0px 0px 0px;
  591. box-sizing:border-box;
  592. width:100%;
  593. }
  594. #u55365_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u55366_div {
  600. border-width:0px;
  601. position:absolute;
  602. left:0px;
  603. top:0px;
  604. width:375px;
  605. height:681px;
  606. background:inherit;
  607. background-color:rgba(242, 242, 242, 0.4627450980392157);
  608. border-radius:0px;
  609. filter:drop-shadow(none);
  610. transition:none;
  611. }
  612. #u55366 {
  613. border-width:0px;
  614. position:absolute;
  615. left:29px;
  616. top:107px;
  617. width:375px;
  618. height:681px;
  619. display:flex;
  620. transition:none;
  621. transform-origin:50% 50%;
  622. }
  623. #u55366 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u55366_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u55367 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u55368 {
  645. border-width:0px;
  646. position:absolute;
  647. left:251px;
  648. top:792px;
  649. width:24px;
  650. height:24px;
  651. display:flex;
  652. transition:none;
  653. font-size:8px;
  654. }
  655. #u55368 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u55368_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u55368_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u55369_div {
  676. border-width:0px;
  677. position:absolute;
  678. left:0px;
  679. top:0px;
  680. width:37px;
  681. height:17px;
  682. background:inherit;
  683. background-color:rgba(255, 255, 255, 0);
  684. border-radius:0px;
  685. filter:drop-shadow(none);
  686. transition:none;
  687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  688. font-weight:400;
  689. font-style:normal;
  690. font-size:12px;
  691. }
  692. #u55369 {
  693. border-width:0px;
  694. position:absolute;
  695. left:245px;
  696. top:817px;
  697. width:37px;
  698. height:17px;
  699. display:flex;
  700. transition:none;
  701. transform-origin:50% 50%;
  702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  703. font-weight:400;
  704. font-style:normal;
  705. font-size:12px;
  706. }
  707. #u55369 .text {
  708. position:absolute;
  709. align-self:flex-start;
  710. padding:0px 0px 0px 0px;
  711. box-sizing:border-box;
  712. width:100%;
  713. }
  714. #u55369_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u55370 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u55371 {
  728. border-width:0px;
  729. position:absolute;
  730. left:157px;
  731. top:792px;
  732. width:24px;
  733. height:24px;
  734. display:flex;
  735. transition:none;
  736. font-size:8px;
  737. }
  738. #u55371 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u55371_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u55371_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u55372_div {
  759. border-width:0px;
  760. position:absolute;
  761. left:0px;
  762. top:0px;
  763. width:37px;
  764. height:17px;
  765. background:inherit;
  766. background-color:rgba(255, 255, 255, 0);
  767. border-radius:0px;
  768. filter:drop-shadow(none);
  769. transition:none;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:12px;
  774. }
  775. #u55372 {
  776. border-width:0px;
  777. position:absolute;
  778. left:151px;
  779. top:817px;
  780. width:37px;
  781. height:17px;
  782. display:flex;
  783. transition:none;
  784. transform-origin:50% 50%;
  785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  786. font-weight:400;
  787. font-style:normal;
  788. font-size:12px;
  789. }
  790. #u55372 .text {
  791. position:absolute;
  792. align-self:flex-start;
  793. padding:0px 0px 0px 0px;
  794. box-sizing:border-box;
  795. width:100%;
  796. }
  797. #u55372_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u55373_div {
  803. border-width:0px;
  804. position:absolute;
  805. left:0px;
  806. top:0px;
  807. width:375px;
  808. height:971px;
  809. background:inherit;
  810. background-color:rgba(242, 242, 242, 1);
  811. border-top:0px;
  812. border-radius:25px;
  813. border-top-left-radius:0px;
  814. border-top-right-radius:0px;
  815. filter:drop-shadow(none);
  816. transition:none;
  817. }
  818. #u55373 {
  819. border-width:0px;
  820. position:absolute;
  821. left:29px;
  822. top:105px;
  823. width:375px;
  824. height:971px;
  825. display:flex;
  826. transition:none;
  827. transform-origin:50% 50%;
  828. }
  829. #u55373 .text {
  830. position:absolute;
  831. align-self:center;
  832. padding:2px 2px 2px 2px;
  833. box-sizing:border-box;
  834. width:100%;
  835. }
  836. #u55373_text {
  837. border-width:0px;
  838. word-wrap:break-word;
  839. text-transform:none;
  840. visibility:hidden;
  841. }
  842. #u55374_div {
  843. border-width:0px;
  844. position:absolute;
  845. left:0px;
  846. top:0px;
  847. width:375px;
  848. height:156px;
  849. background:inherit;
  850. background-color:rgba(255, 255, 255, 1);
  851. border-top:0px;
  852. border-radius:0px;
  853. border-top-left-radius:0px;
  854. border-top-right-radius:0px;
  855. filter:drop-shadow(none);
  856. transition:none;
  857. }
  858. #u55374 {
  859. border-width:0px;
  860. position:absolute;
  861. left:29px;
  862. top:106px;
  863. width:375px;
  864. height:156px;
  865. display:flex;
  866. transition:none;
  867. transform-origin:50% 50%;
  868. }
  869. #u55374 .text {
  870. position:absolute;
  871. align-self:center;
  872. padding:2px 2px 2px 2px;
  873. box-sizing:border-box;
  874. width:100%;
  875. }
  876. #u55374_text {
  877. border-width:0px;
  878. word-wrap:break-word;
  879. text-transform:none;
  880. visibility:hidden;
  881. }
  882. #u55375 {
  883. border-width:0px;
  884. position:absolute;
  885. left:42px;
  886. top:79px;
  887. width:11px;
  888. height:18px;
  889. display:flex;
  890. transition:none;
  891. }
  892. #u55375 .text {
  893. position:absolute;
  894. align-self:center;
  895. padding:2px 2px 2px 2px;
  896. box-sizing:border-box;
  897. width:100%;
  898. }
  899. #u55375_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:11px;
  905. height:18px;
  906. }
  907. #u55375_text {
  908. border-width:0px;
  909. word-wrap:break-word;
  910. text-transform:none;
  911. visibility:hidden;
  912. }
  913. #u55376_div {
  914. border-width:0px;
  915. position:absolute;
  916. left:0px;
  917. top:0px;
  918. width:73px;
  919. height:30px;
  920. background:inherit;
  921. background-color:rgba(255, 255, 255, 0);
  922. border-left:0px;
  923. border-top:0px;
  924. border-right:0px;
  925. border-radius:0px;
  926. border-bottom-right-radius:0px;
  927. border-bottom-left-radius:0px;
  928. filter:drop-shadow(none);
  929. transition:none;
  930. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  931. font-weight:500;
  932. font-style:normal;
  933. font-size:18px;
  934. line-height:30px;
  935. }
  936. #u55376 {
  937. border-width:0px;
  938. position:absolute;
  939. left:48px;
  940. top:120px;
  941. width:73px;
  942. height:30px;
  943. display:flex;
  944. transition:none;
  945. transform-origin:50% 50%;
  946. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  947. font-weight:500;
  948. font-style:normal;
  949. font-size:18px;
  950. line-height:30px;
  951. }
  952. #u55376 .text {
  953. position:absolute;
  954. align-self:flex-start;
  955. padding:0px 0px 0px 0px;
  956. box-sizing:border-box;
  957. width:100%;
  958. }
  959. #u55376_text {
  960. border-width:0px;
  961. white-space:nowrap;
  962. text-transform:none;
  963. }
  964. #u55377 {
  965. border-width:0px;
  966. position:absolute;
  967. left:0px;
  968. top:0px;
  969. width:0px;
  970. height:0px;
  971. }
  972. #u55378_div {
  973. border-width:0px;
  974. position:absolute;
  975. left:0px;
  976. top:0px;
  977. width:375px;
  978. height:50px;
  979. background:inherit;
  980. background-color:rgba(255, 255, 255, 1);
  981. box-sizing:border-box;
  982. border-width:1px;
  983. border-style:solid;
  984. border-color:rgba(215, 215, 215, 0.4980392156862745);
  985. border-left:0px;
  986. border-right:0px;
  987. border-radius:0px;
  988. border-top-left-radius:0px;
  989. border-top-right-radius:0px;
  990. border-bottom-right-radius:0px;
  991. border-bottom-left-radius:0px;
  992. filter:drop-shadow(none);
  993. transition:none;
  994. }
  995. #u55378 {
  996. border-width:0px;
  997. position:absolute;
  998. left:29px;
  999. top:162px;
  1000. width:375px;
  1001. height:50px;
  1002. display:flex;
  1003. transition:none;
  1004. transform-origin:50% 50%;
  1005. }
  1006. #u55378 .text {
  1007. position:absolute;
  1008. align-self:center;
  1009. padding:2px 2px 2px 2px;
  1010. box-sizing:border-box;
  1011. width:100%;
  1012. }
  1013. #u55378_text {
  1014. border-width:0px;
  1015. word-wrap:break-word;
  1016. text-transform:none;
  1017. visibility:hidden;
  1018. }
  1019. #u55379_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:64px;
  1025. height:30px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 0);
  1028. border-left:0px;
  1029. border-top:0px;
  1030. border-right:0px;
  1031. border-radius:0px;
  1032. border-bottom-right-radius:0px;
  1033. border-bottom-left-radius:0px;
  1034. filter:drop-shadow(none);
  1035. transition:none;
  1036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1037. font-weight:400;
  1038. font-style:normal;
  1039. font-size:14px;
  1040. line-height:30px;
  1041. }
  1042. #u55379 {
  1043. border-width:0px;
  1044. position:absolute;
  1045. left:53px;
  1046. top:172px;
  1047. width:64px;
  1048. height:30px;
  1049. display:flex;
  1050. transition:none;
  1051. transform-origin:50% 50%;
  1052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1053. font-weight:400;
  1054. font-style:normal;
  1055. font-size:14px;
  1056. line-height:30px;
  1057. }
  1058. #u55379 .text {
  1059. position:absolute;
  1060. align-self:flex-start;
  1061. padding:0px 0px 0px 0px;
  1062. box-sizing:border-box;
  1063. width:100%;
  1064. }
  1065. #u55379_text {
  1066. border-width:0px;
  1067. white-space:nowrap;
  1068. text-transform:none;
  1069. }
  1070. #u55380 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:380px;
  1074. top:179px;
  1075. width:8px;
  1076. height:13px;
  1077. display:flex;
  1078. -webkit-transform:rotate(180deg);
  1079. -moz-transform:rotate(180deg);
  1080. -ms-transform:rotate(180deg);
  1081. transform:rotate(180deg);
  1082. transition:none;
  1083. }
  1084. #u55380 .text {
  1085. position:absolute;
  1086. align-self:center;
  1087. padding:2px 2px 2px 2px;
  1088. box-sizing:border-box;
  1089. width:100%;
  1090. }
  1091. #u55380_img {
  1092. border-width:0px;
  1093. position:absolute;
  1094. left:0px;
  1095. top:0px;
  1096. width:8px;
  1097. height:13px;
  1098. }
  1099. #u55380_text {
  1100. border-width:0px;
  1101. word-wrap:break-word;
  1102. text-transform:none;
  1103. visibility:hidden;
  1104. }
  1105. #u55381_div {
  1106. border-width:0px;
  1107. position:absolute;
  1108. left:0px;
  1109. top:0px;
  1110. width:161px;
  1111. height:30px;
  1112. background:inherit;
  1113. background-color:rgba(255, 255, 255, 0);
  1114. border-left:0px;
  1115. border-top:0px;
  1116. border-right:0px;
  1117. border-radius:0px;
  1118. border-bottom-right-radius:0px;
  1119. border-bottom-left-radius:0px;
  1120. filter:drop-shadow(none);
  1121. transition:none;
  1122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1123. font-weight:400;
  1124. font-style:normal;
  1125. font-size:14px;
  1126. text-align:right;
  1127. line-height:30px;
  1128. }
  1129. #u55381 {
  1130. border-width:0px;
  1131. position:absolute;
  1132. left:211px;
  1133. top:172px;
  1134. width:161px;
  1135. height:30px;
  1136. display:flex;
  1137. transition:none;
  1138. transform-origin:50% 50%;
  1139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1140. font-weight:400;
  1141. font-style:normal;
  1142. font-size:14px;
  1143. text-align:right;
  1144. line-height:30px;
  1145. }
  1146. #u55381 .text {
  1147. position:absolute;
  1148. align-self:flex-start;
  1149. padding:0px 0px 0px 0px;
  1150. box-sizing:border-box;
  1151. width:100%;
  1152. }
  1153. #u55381_text {
  1154. border-width:0px;
  1155. white-space:nowrap;
  1156. text-transform:none;
  1157. }
  1158. #u55382 {
  1159. border-width:0px;
  1160. position:absolute;
  1161. left:0px;
  1162. top:0px;
  1163. width:0px;
  1164. height:0px;
  1165. }
  1166. #u55383_div {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:0px;
  1170. top:0px;
  1171. width:375px;
  1172. height:50px;
  1173. background:inherit;
  1174. background-color:rgba(255, 255, 255, 1);
  1175. border-left:0px;
  1176. border-right:0px;
  1177. border-radius:0px;
  1178. border-top-left-radius:0px;
  1179. border-top-right-radius:0px;
  1180. border-bottom-right-radius:0px;
  1181. border-bottom-left-radius:0px;
  1182. filter:drop-shadow(none);
  1183. transition:none;
  1184. }
  1185. #u55383 {
  1186. border-width:0px;
  1187. position:absolute;
  1188. left:29px;
  1189. top:212px;
  1190. width:375px;
  1191. height:50px;
  1192. display:flex;
  1193. transition:none;
  1194. transform-origin:50% 50%;
  1195. }
  1196. #u55383 .text {
  1197. position:absolute;
  1198. align-self:center;
  1199. padding:2px 2px 2px 2px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u55383_text {
  1204. border-width:0px;
  1205. word-wrap:break-word;
  1206. text-transform:none;
  1207. visibility:hidden;
  1208. }
  1209. #u55384_div {
  1210. border-width:0px;
  1211. position:absolute;
  1212. left:0px;
  1213. top:0px;
  1214. width:64px;
  1215. height:30px;
  1216. background:inherit;
  1217. background-color:rgba(255, 255, 255, 0);
  1218. border-left:0px;
  1219. border-top:0px;
  1220. border-right:0px;
  1221. border-radius:0px;
  1222. border-bottom-right-radius:0px;
  1223. border-bottom-left-radius:0px;
  1224. filter:drop-shadow(none);
  1225. transition:none;
  1226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1227. font-weight:400;
  1228. font-style:normal;
  1229. font-size:14px;
  1230. line-height:30px;
  1231. }
  1232. #u55384 {
  1233. border-width:0px;
  1234. position:absolute;
  1235. left:53px;
  1236. top:222px;
  1237. width:64px;
  1238. height:30px;
  1239. display:flex;
  1240. transition:none;
  1241. transform-origin:50% 50%;
  1242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1243. font-weight:400;
  1244. font-style:normal;
  1245. font-size:14px;
  1246. line-height:30px;
  1247. }
  1248. #u55384 .text {
  1249. position:absolute;
  1250. align-self:flex-start;
  1251. padding:0px 0px 0px 0px;
  1252. box-sizing:border-box;
  1253. width:100%;
  1254. }
  1255. #u55384_text {
  1256. border-width:0px;
  1257. white-space:nowrap;
  1258. text-transform:none;
  1259. }
  1260. #u55385 {
  1261. border-width:0px;
  1262. position:absolute;
  1263. left:380px;
  1264. top:231px;
  1265. width:8px;
  1266. height:13px;
  1267. display:flex;
  1268. -webkit-transform:rotate(180deg);
  1269. -moz-transform:rotate(180deg);
  1270. -ms-transform:rotate(180deg);
  1271. transform:rotate(180deg);
  1272. transition:none;
  1273. }
  1274. #u55385 .text {
  1275. position:absolute;
  1276. align-self:center;
  1277. padding:2px 2px 2px 2px;
  1278. box-sizing:border-box;
  1279. width:100%;
  1280. }
  1281. #u55385_img {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:0px;
  1285. top:0px;
  1286. width:8px;
  1287. height:13px;
  1288. }
  1289. #u55385_text {
  1290. border-width:0px;
  1291. word-wrap:break-word;
  1292. text-transform:none;
  1293. visibility:hidden;
  1294. }
  1295. #u55386_div {
  1296. border-width:0px;
  1297. position:absolute;
  1298. left:0px;
  1299. top:0px;
  1300. width:29px;
  1301. height:30px;
  1302. background:inherit;
  1303. background-color:rgba(255, 255, 255, 0);
  1304. border-left:0px;
  1305. border-top:0px;
  1306. border-right:0px;
  1307. border-radius:0px;
  1308. border-bottom-right-radius:0px;
  1309. border-bottom-left-radius:0px;
  1310. filter:drop-shadow(none);
  1311. transition:none;
  1312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1313. font-weight:400;
  1314. font-style:normal;
  1315. font-size:14px;
  1316. text-align:right;
  1317. line-height:30px;
  1318. }
  1319. #u55386 {
  1320. border-width:0px;
  1321. position:absolute;
  1322. left:343px;
  1323. top:222px;
  1324. width:29px;
  1325. height:30px;
  1326. display:flex;
  1327. transition:none;
  1328. transform-origin:50% 50%;
  1329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1330. font-weight:400;
  1331. font-style:normal;
  1332. font-size:14px;
  1333. text-align:right;
  1334. line-height:30px;
  1335. }
  1336. #u55386 .text {
  1337. position:absolute;
  1338. align-self:flex-start;
  1339. padding:0px 0px 0px 0px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u55386_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u55387 {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:0px;
  1354. height:0px;
  1355. }
  1356. #u55388 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:906px;
  1360. top:0px;
  1361. width:433px;
  1362. height:865px;
  1363. }
  1364. #u55389 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:0px;
  1368. top:0px;
  1369. width:433px;
  1370. height:865px;
  1371. display:flex;
  1372. transition:none;
  1373. }
  1374. #u55389 .text {
  1375. position:absolute;
  1376. align-self:center;
  1377. padding:2px 2px 2px 2px;
  1378. box-sizing:border-box;
  1379. width:100%;
  1380. }
  1381. #u55389_img {
  1382. border-width:0px;
  1383. position:absolute;
  1384. left:0px;
  1385. top:0px;
  1386. width:433px;
  1387. height:865px;
  1388. }
  1389. #u55389_text {
  1390. border-width:0px;
  1391. word-wrap:break-word;
  1392. text-transform:none;
  1393. visibility:hidden;
  1394. }
  1395. #u55390_div {
  1396. border-width:0px;
  1397. position:absolute;
  1398. left:0px;
  1399. top:0px;
  1400. width:375px;
  1401. height:40px;
  1402. background:inherit;
  1403. background-color:rgba(255, 255, 255, 1);
  1404. box-sizing:border-box;
  1405. border-width:1px;
  1406. border-style:solid;
  1407. border-color:rgba(215, 215, 215, 1);
  1408. border-left:0px;
  1409. border-top:0px;
  1410. border-right:0px;
  1411. border-radius:0px;
  1412. border-bottom-right-radius:0px;
  1413. border-bottom-left-radius:0px;
  1414. filter:drop-shadow(none);
  1415. transition:none;
  1416. }
  1417. #u55390 {
  1418. border-width:0px;
  1419. position:absolute;
  1420. left:29px;
  1421. top:67px;
  1422. width:375px;
  1423. height:40px;
  1424. display:flex;
  1425. transition:none;
  1426. transform-origin:50% 50%;
  1427. }
  1428. #u55390 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:2px 2px 2px 2px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u55390_text {
  1436. border-width:0px;
  1437. word-wrap:break-word;
  1438. text-transform:none;
  1439. visibility:hidden;
  1440. }
  1441. #u55391 {
  1442. border-width:0px;
  1443. position:absolute;
  1444. left:0px;
  1445. top:0px;
  1446. width:0px;
  1447. height:0px;
  1448. }
  1449. #u55392_div {
  1450. border-width:0px;
  1451. position:absolute;
  1452. left:0px;
  1453. top:0px;
  1454. width:88px;
  1455. height:32px;
  1456. background:inherit;
  1457. background-color:rgba(255, 255, 255, 1);
  1458. box-sizing:border-box;
  1459. border-width:1px;
  1460. border-style:solid;
  1461. border-color:rgba(242, 242, 242, 1);
  1462. border-radius:33px;
  1463. filter:drop-shadow(none);
  1464. transition:none;
  1465. }
  1466. #u55392 {
  1467. border-width:0px;
  1468. position:absolute;
  1469. left:309px;
  1470. top:71px;
  1471. width:88px;
  1472. height:32px;
  1473. display:flex;
  1474. transition:none;
  1475. transform-origin:50% 50%;
  1476. }
  1477. #u55392 .text {
  1478. position:absolute;
  1479. align-self:center;
  1480. padding:2px 2px 2px 2px;
  1481. box-sizing:border-box;
  1482. width:100%;
  1483. }
  1484. #u55392_text {
  1485. border-width:0px;
  1486. word-wrap:break-word;
  1487. text-transform:none;
  1488. visibility:hidden;
  1489. }
  1490. #u55393 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:0px;
  1494. top:0px;
  1495. width:0px;
  1496. height:0px;
  1497. }
  1498. #u55394 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:372px;
  1502. top:78px;
  1503. width:18px;
  1504. height:18px;
  1505. display:flex;
  1506. transition:none;
  1507. }
  1508. #u55394 .text {
  1509. position:absolute;
  1510. align-self:center;
  1511. padding:2px 2px 2px 2px;
  1512. box-sizing:border-box;
  1513. width:100%;
  1514. }
  1515. #u55394_img {
  1516. border-width:0px;
  1517. position:absolute;
  1518. left:0px;
  1519. top:0px;
  1520. width:18px;
  1521. height:18px;
  1522. }
  1523. #u55394_text {
  1524. border-width:0px;
  1525. word-wrap:break-word;
  1526. text-transform:none;
  1527. visibility:hidden;
  1528. }
  1529. #u55395 {
  1530. border-width:0px;
  1531. position:absolute;
  1532. left:378px;
  1533. top:84px;
  1534. width:6px;
  1535. height:6px;
  1536. display:flex;
  1537. transition:none;
  1538. }
  1539. #u55395 .text {
  1540. position:absolute;
  1541. align-self:center;
  1542. padding:2px 2px 2px 2px;
  1543. box-sizing:border-box;
  1544. width:100%;
  1545. }
  1546. #u55395_img {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:6px;
  1552. height:6px;
  1553. }
  1554. #u55395_text {
  1555. border-width:0px;
  1556. word-wrap:break-word;
  1557. text-transform:none;
  1558. visibility:hidden;
  1559. }
  1560. #u55396 {
  1561. border-width:0px;
  1562. position:absolute;
  1563. left:0px;
  1564. top:0px;
  1565. width:0px;
  1566. height:0px;
  1567. }
  1568. #u55397 {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:323px;
  1572. top:85px;
  1573. width:5px;
  1574. height:5px;
  1575. display:flex;
  1576. transition:none;
  1577. }
  1578. #u55397 .text {
  1579. position:absolute;
  1580. align-self:center;
  1581. padding:2px 2px 2px 2px;
  1582. box-sizing:border-box;
  1583. width:100%;
  1584. }
  1585. #u55397_img {
  1586. border-width:0px;
  1587. position:absolute;
  1588. left:0px;
  1589. top:0px;
  1590. width:5px;
  1591. height:5px;
  1592. }
  1593. #u55397_text {
  1594. border-width:0px;
  1595. word-wrap:break-word;
  1596. text-transform:none;
  1597. visibility:hidden;
  1598. }
  1599. #u55398 {
  1600. border-width:0px;
  1601. position:absolute;
  1602. left:339px;
  1603. top:85px;
  1604. width:5px;
  1605. height:5px;
  1606. display:flex;
  1607. transition:none;
  1608. }
  1609. #u55398 .text {
  1610. position:absolute;
  1611. align-self:center;
  1612. padding:2px 2px 2px 2px;
  1613. box-sizing:border-box;
  1614. width:100%;
  1615. }
  1616. #u55398_img {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:0px;
  1620. top:0px;
  1621. width:5px;
  1622. height:5px;
  1623. }
  1624. #u55398_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u55399 {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:330px;
  1634. top:84px;
  1635. width:7px;
  1636. height:7px;
  1637. display:flex;
  1638. transition:none;
  1639. }
  1640. #u55399 .text {
  1641. position:absolute;
  1642. align-self:center;
  1643. padding:2px 2px 2px 2px;
  1644. box-sizing:border-box;
  1645. width:100%;
  1646. }
  1647. #u55399_img {
  1648. border-width:0px;
  1649. position:absolute;
  1650. left:0px;
  1651. top:0px;
  1652. width:7px;
  1653. height:7px;
  1654. }
  1655. #u55399_text {
  1656. border-width:0px;
  1657. word-wrap:break-word;
  1658. text-transform:none;
  1659. visibility:hidden;
  1660. }
  1661. #u55400 {
  1662. border-width:0px;
  1663. position:absolute;
  1664. left:347px;
  1665. top:87px;
  1666. width:18px;
  1667. height:1px;
  1668. display:flex;
  1669. -webkit-transform:rotate(90deg);
  1670. -moz-transform:rotate(90deg);
  1671. -ms-transform:rotate(90deg);
  1672. transform:rotate(90deg);
  1673. transition:none;
  1674. }
  1675. #u55400 .text {
  1676. position:absolute;
  1677. align-self:center;
  1678. padding:2px 2px 2px 2px;
  1679. box-sizing:border-box;
  1680. width:100%;
  1681. }
  1682. #u55400_img {
  1683. border-width:0px;
  1684. position:absolute;
  1685. left:0px;
  1686. top:0px;
  1687. width:19px;
  1688. height:2px;
  1689. }
  1690. #u55400_text {
  1691. border-width:0px;
  1692. word-wrap:break-word;
  1693. text-transform:none;
  1694. visibility:hidden;
  1695. }
  1696. #u55401 {
  1697. border-width:0px;
  1698. position:absolute;
  1699. left:29px;
  1700. top:24px;
  1701. width:375px;
  1702. height:44px;
  1703. display:flex;
  1704. transition:none;
  1705. }
  1706. #u55401 .text {
  1707. position:absolute;
  1708. align-self:center;
  1709. padding:2px 2px 2px 2px;
  1710. box-sizing:border-box;
  1711. width:100%;
  1712. }
  1713. #u55401_img {
  1714. border-width:0px;
  1715. position:absolute;
  1716. left:0px;
  1717. top:0px;
  1718. width:375px;
  1719. height:44px;
  1720. }
  1721. #u55401_text {
  1722. border-width:0px;
  1723. word-wrap:break-word;
  1724. text-transform:none;
  1725. visibility:hidden;
  1726. }
  1727. #u55402_div {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:0px;
  1731. top:0px;
  1732. width:375px;
  1733. height:50px;
  1734. background:inherit;
  1735. background-color:rgba(255, 255, 255, 1);
  1736. box-sizing:border-box;
  1737. border-width:1px;
  1738. border-style:solid;
  1739. border-color:rgba(242, 242, 242, 1);
  1740. border-radius:26px;
  1741. border-top-left-radius:0px;
  1742. border-top-right-radius:0px;
  1743. filter:drop-shadow(none);
  1744. transition:none;
  1745. }
  1746. #u55402 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:29px;
  1750. top:788px;
  1751. width:375px;
  1752. height:50px;
  1753. display:flex;
  1754. transition:none;
  1755. transform-origin:50% 50%;
  1756. }
  1757. #u55402 .text {
  1758. position:absolute;
  1759. align-self:center;
  1760. padding:2px 2px 2px 2px;
  1761. box-sizing:border-box;
  1762. width:100%;
  1763. }
  1764. #u55402_text {
  1765. border-width:0px;
  1766. word-wrap:break-word;
  1767. text-transform:none;
  1768. visibility:hidden;
  1769. }
  1770. #u55403 {
  1771. border-width:0px;
  1772. position:absolute;
  1773. left:0px;
  1774. top:0px;
  1775. width:0px;
  1776. height:0px;
  1777. }
  1778. #u55404 {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:69px;
  1782. top:792px;
  1783. width:24px;
  1784. height:24px;
  1785. display:flex;
  1786. transition:none;
  1787. font-size:8px;
  1788. }
  1789. #u55404 .text {
  1790. position:absolute;
  1791. align-self:center;
  1792. padding:2px 2px 2px 2px;
  1793. box-sizing:border-box;
  1794. width:100%;
  1795. }
  1796. #u55404_img {
  1797. border-width:0px;
  1798. position:absolute;
  1799. left:0px;
  1800. top:0px;
  1801. width:24px;
  1802. height:24px;
  1803. }
  1804. #u55404_text {
  1805. border-width:0px;
  1806. word-wrap:break-word;
  1807. text-transform:none;
  1808. }
  1809. #u55405_div {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:0px;
  1813. top:0px;
  1814. width:25px;
  1815. height:17px;
  1816. background:inherit;
  1817. background-color:rgba(255, 255, 255, 0);
  1818. border-radius:0px;
  1819. filter:drop-shadow(none);
  1820. transition:none;
  1821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1822. font-weight:400;
  1823. font-style:normal;
  1824. font-size:12px;
  1825. }
  1826. #u55405 {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:69px;
  1830. top:817px;
  1831. width:25px;
  1832. height:17px;
  1833. display:flex;
  1834. transition:none;
  1835. transform-origin:50% 50%;
  1836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1837. font-weight:400;
  1838. font-style:normal;
  1839. font-size:12px;
  1840. }
  1841. #u55405 .text {
  1842. position:absolute;
  1843. align-self:flex-start;
  1844. padding:0px 0px 0px 0px;
  1845. box-sizing:border-box;
  1846. width:100%;
  1847. }
  1848. #u55405_text {
  1849. border-width:0px;
  1850. white-space:nowrap;
  1851. text-transform:none;
  1852. }
  1853. #u55406 {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:0px;
  1857. top:0px;
  1858. width:0px;
  1859. height:0px;
  1860. }
  1861. #u55407 {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:339px;
  1865. top:794px;
  1866. width:24px;
  1867. height:24px;
  1868. display:flex;
  1869. transition:none;
  1870. font-size:8px;
  1871. }
  1872. #u55407 .text {
  1873. position:absolute;
  1874. align-self:center;
  1875. padding:2px 2px 2px 2px;
  1876. box-sizing:border-box;
  1877. width:100%;
  1878. }
  1879. #u55407_img {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:0px;
  1883. top:0px;
  1884. width:24px;
  1885. height:24px;
  1886. }
  1887. #u55407_text {
  1888. border-width:0px;
  1889. word-wrap:break-word;
  1890. text-transform:none;
  1891. }
  1892. #u55408_div {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:0px;
  1896. top:0px;
  1897. width:25px;
  1898. height:17px;
  1899. background:inherit;
  1900. background-color:rgba(255, 255, 255, 0);
  1901. border-radius:0px;
  1902. filter:drop-shadow(none);
  1903. transition:none;
  1904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1905. font-weight:400;
  1906. font-style:normal;
  1907. font-size:12px;
  1908. }
  1909. #u55408 {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:339px;
  1913. top:819px;
  1914. width:25px;
  1915. height:17px;
  1916. display:flex;
  1917. transition:none;
  1918. transform-origin:50% 50%;
  1919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1920. font-weight:400;
  1921. font-style:normal;
  1922. font-size:12px;
  1923. }
  1924. #u55408 .text {
  1925. position:absolute;
  1926. align-self:flex-start;
  1927. padding:0px 0px 0px 0px;
  1928. box-sizing:border-box;
  1929. width:100%;
  1930. }
  1931. #u55408_text {
  1932. border-width:0px;
  1933. white-space:nowrap;
  1934. text-transform:none;
  1935. }
  1936. #u55409_div {
  1937. border-width:0px;
  1938. position:absolute;
  1939. left:0px;
  1940. top:0px;
  1941. width:375px;
  1942. height:681px;
  1943. background:inherit;
  1944. background-color:rgba(242, 242, 242, 0.4627450980392157);
  1945. border-radius:0px;
  1946. filter:drop-shadow(none);
  1947. transition:none;
  1948. }
  1949. #u55409 {
  1950. border-width:0px;
  1951. position:absolute;
  1952. left:29px;
  1953. top:107px;
  1954. width:375px;
  1955. height:681px;
  1956. display:flex;
  1957. transition:none;
  1958. transform-origin:50% 50%;
  1959. }
  1960. #u55409 .text {
  1961. position:absolute;
  1962. align-self:center;
  1963. padding:2px 2px 2px 2px;
  1964. box-sizing:border-box;
  1965. width:100%;
  1966. }
  1967. #u55409_text {
  1968. border-width:0px;
  1969. word-wrap:break-word;
  1970. text-transform:none;
  1971. visibility:hidden;
  1972. }
  1973. #u55410 {
  1974. border-width:0px;
  1975. position:absolute;
  1976. left:0px;
  1977. top:0px;
  1978. width:0px;
  1979. height:0px;
  1980. }
  1981. #u55411 {
  1982. border-width:0px;
  1983. position:absolute;
  1984. left:251px;
  1985. top:792px;
  1986. width:24px;
  1987. height:24px;
  1988. display:flex;
  1989. transition:none;
  1990. font-size:8px;
  1991. }
  1992. #u55411 .text {
  1993. position:absolute;
  1994. align-self:center;
  1995. padding:2px 2px 2px 2px;
  1996. box-sizing:border-box;
  1997. width:100%;
  1998. }
  1999. #u55411_img {
  2000. border-width:0px;
  2001. position:absolute;
  2002. left:0px;
  2003. top:0px;
  2004. width:24px;
  2005. height:24px;
  2006. }
  2007. #u55411_text {
  2008. border-width:0px;
  2009. word-wrap:break-word;
  2010. text-transform:none;
  2011. }
  2012. #u55412_div {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:0px;
  2016. top:0px;
  2017. width:37px;
  2018. height:17px;
  2019. background:inherit;
  2020. background-color:rgba(255, 255, 255, 0);
  2021. border-radius:0px;
  2022. filter:drop-shadow(none);
  2023. transition:none;
  2024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2025. font-weight:400;
  2026. font-style:normal;
  2027. font-size:12px;
  2028. }
  2029. #u55412 {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:245px;
  2033. top:817px;
  2034. width:37px;
  2035. height:17px;
  2036. display:flex;
  2037. transition:none;
  2038. transform-origin:50% 50%;
  2039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2040. font-weight:400;
  2041. font-style:normal;
  2042. font-size:12px;
  2043. }
  2044. #u55412 .text {
  2045. position:absolute;
  2046. align-self:flex-start;
  2047. padding:0px 0px 0px 0px;
  2048. box-sizing:border-box;
  2049. width:100%;
  2050. }
  2051. #u55412_text {
  2052. border-width:0px;
  2053. white-space:nowrap;
  2054. text-transform:none;
  2055. }
  2056. #u55413 {
  2057. border-width:0px;
  2058. position:absolute;
  2059. left:0px;
  2060. top:0px;
  2061. width:0px;
  2062. height:0px;
  2063. }
  2064. #u55414 {
  2065. border-width:0px;
  2066. position:absolute;
  2067. left:157px;
  2068. top:792px;
  2069. width:24px;
  2070. height:24px;
  2071. display:flex;
  2072. transition:none;
  2073. font-size:8px;
  2074. }
  2075. #u55414 .text {
  2076. position:absolute;
  2077. align-self:center;
  2078. padding:2px 2px 2px 2px;
  2079. box-sizing:border-box;
  2080. width:100%;
  2081. }
  2082. #u55414_img {
  2083. border-width:0px;
  2084. position:absolute;
  2085. left:0px;
  2086. top:0px;
  2087. width:24px;
  2088. height:24px;
  2089. }
  2090. #u55414_text {
  2091. border-width:0px;
  2092. word-wrap:break-word;
  2093. text-transform:none;
  2094. }
  2095. #u55415_div {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:0px;
  2099. top:0px;
  2100. width:37px;
  2101. height:17px;
  2102. background:inherit;
  2103. background-color:rgba(255, 255, 255, 0);
  2104. border-radius:0px;
  2105. filter:drop-shadow(none);
  2106. transition:none;
  2107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2108. font-weight:400;
  2109. font-style:normal;
  2110. font-size:12px;
  2111. }
  2112. #u55415 {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:151px;
  2116. top:817px;
  2117. width:37px;
  2118. height:17px;
  2119. display:flex;
  2120. transition:none;
  2121. transform-origin:50% 50%;
  2122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2123. font-weight:400;
  2124. font-style:normal;
  2125. font-size:12px;
  2126. }
  2127. #u55415 .text {
  2128. position:absolute;
  2129. align-self:flex-start;
  2130. padding:0px 0px 0px 0px;
  2131. box-sizing:border-box;
  2132. width:100%;
  2133. }
  2134. #u55415_text {
  2135. border-width:0px;
  2136. white-space:nowrap;
  2137. text-transform:none;
  2138. }
  2139. #u55416_div {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:0px;
  2143. top:0px;
  2144. width:375px;
  2145. height:735px;
  2146. background:inherit;
  2147. background-color:rgba(242, 242, 242, 1);
  2148. border-top:0px;
  2149. border-radius:25px;
  2150. border-top-left-radius:0px;
  2151. border-top-right-radius:0px;
  2152. filter:drop-shadow(none);
  2153. transition:none;
  2154. }
  2155. #u55416 {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:935px;
  2159. top:105px;
  2160. width:375px;
  2161. height:735px;
  2162. display:flex;
  2163. transition:none;
  2164. transform-origin:50% 50%;
  2165. }
  2166. #u55416 .text {
  2167. position:absolute;
  2168. align-self:center;
  2169. padding:2px 2px 2px 2px;
  2170. box-sizing:border-box;
  2171. width:100%;
  2172. }
  2173. #u55416_text {
  2174. border-width:0px;
  2175. word-wrap:break-word;
  2176. text-transform:none;
  2177. visibility:hidden;
  2178. }
  2179. #u55417_div {
  2180. border-width:0px;
  2181. position:absolute;
  2182. left:0px;
  2183. top:0px;
  2184. width:375px;
  2185. height:735px;
  2186. background:inherit;
  2187. background-color:rgba(255, 255, 255, 1);
  2188. border-top:0px;
  2189. border-radius:22px;
  2190. border-top-left-radius:0px;
  2191. border-top-right-radius:0px;
  2192. filter:drop-shadow(none);
  2193. transition:none;
  2194. }
  2195. #u55417 {
  2196. border-width:0px;
  2197. position:absolute;
  2198. left:935px;
  2199. top:105px;
  2200. width:375px;
  2201. height:735px;
  2202. display:flex;
  2203. transition:none;
  2204. transform-origin:50% 50%;
  2205. }
  2206. #u55417 .text {
  2207. position:absolute;
  2208. align-self:center;
  2209. padding:2px 2px 2px 2px;
  2210. box-sizing:border-box;
  2211. width:100%;
  2212. }
  2213. #u55417_text {
  2214. border-width:0px;
  2215. word-wrap:break-word;
  2216. text-transform:none;
  2217. visibility:hidden;
  2218. }
  2219. #u55418 {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:948px;
  2223. top:79px;
  2224. width:11px;
  2225. height:18px;
  2226. display:flex;
  2227. transition:none;
  2228. }
  2229. #u55418 .text {
  2230. position:absolute;
  2231. align-self:center;
  2232. padding:2px 2px 2px 2px;
  2233. box-sizing:border-box;
  2234. width:100%;
  2235. }
  2236. #u55418_img {
  2237. border-width:0px;
  2238. position:absolute;
  2239. left:0px;
  2240. top:0px;
  2241. width:11px;
  2242. height:18px;
  2243. }
  2244. #u55418_text {
  2245. border-width:0px;
  2246. word-wrap:break-word;
  2247. text-transform:none;
  2248. visibility:hidden;
  2249. }
  2250. #u55419_div {
  2251. border-width:0px;
  2252. position:absolute;
  2253. left:0px;
  2254. top:0px;
  2255. width:73px;
  2256. height:30px;
  2257. background:inherit;
  2258. background-color:rgba(255, 255, 255, 0);
  2259. border-left:0px;
  2260. border-top:0px;
  2261. border-right:0px;
  2262. border-radius:0px;
  2263. border-bottom-right-radius:0px;
  2264. border-bottom-left-radius:0px;
  2265. filter:drop-shadow(none);
  2266. transition:none;
  2267. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2268. font-weight:500;
  2269. font-style:normal;
  2270. font-size:18px;
  2271. line-height:30px;
  2272. }
  2273. #u55419 {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:954px;
  2277. top:120px;
  2278. width:73px;
  2279. height:30px;
  2280. display:flex;
  2281. transition:none;
  2282. transform-origin:50% 50%;
  2283. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2284. font-weight:500;
  2285. font-style:normal;
  2286. font-size:18px;
  2287. line-height:30px;
  2288. }
  2289. #u55419 .text {
  2290. position:absolute;
  2291. align-self:flex-start;
  2292. padding:0px 0px 0px 0px;
  2293. box-sizing:border-box;
  2294. width:100%;
  2295. }
  2296. #u55419_text {
  2297. border-width:0px;
  2298. white-space:nowrap;
  2299. text-transform:none;
  2300. }
  2301. #u55420_div {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:0px;
  2305. top:0px;
  2306. width:335px;
  2307. height:40px;
  2308. background:inherit;
  2309. background-color:rgba(24, 144, 255, 1);
  2310. box-sizing:border-box;
  2311. border-width:1px;
  2312. border-style:solid;
  2313. border-color:rgba(24, 144, 255, 1);
  2314. border-radius:19px;
  2315. filter:drop-shadow(none);
  2316. transition:none;
  2317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2318. font-weight:400;
  2319. font-style:normal;
  2320. font-size:14px;
  2321. color:#FFFFFF;
  2322. text-align:center;
  2323. line-height:30px;
  2324. }
  2325. #u55420 {
  2326. border-width:0px;
  2327. position:absolute;
  2328. left:955px;
  2329. top:729px;
  2330. width:335px;
  2331. height:40px;
  2332. display:flex;
  2333. transition:none;
  2334. transform-origin:50% 50%;
  2335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2336. font-weight:400;
  2337. font-style:normal;
  2338. font-size:14px;
  2339. color:#FFFFFF;
  2340. text-align:center;
  2341. line-height:30px;
  2342. }
  2343. #u55420 .text {
  2344. position:absolute;
  2345. align-self:center;
  2346. padding:0px 0px 0px 0px;
  2347. box-sizing:border-box;
  2348. width:100%;
  2349. }
  2350. #u55420_text {
  2351. border-width:0px;
  2352. word-wrap:break-word;
  2353. text-transform:none;
  2354. }
  2355. #u55421 {
  2356. border-width:0px;
  2357. position:absolute;
  2358. left:0px;
  2359. top:0px;
  2360. width:0px;
  2361. height:0px;
  2362. }
  2363. #u55422_div {
  2364. border-width:0px;
  2365. position:absolute;
  2366. left:0px;
  2367. top:0px;
  2368. width:375px;
  2369. height:50px;
  2370. background:inherit;
  2371. background-color:rgba(255, 255, 255, 1);
  2372. box-sizing:border-box;
  2373. border-width:1px;
  2374. border-style:solid;
  2375. border-color:rgba(215, 215, 215, 0.4980392156862745);
  2376. border-left:0px;
  2377. border-right:0px;
  2378. border-radius:0px;
  2379. border-top-left-radius:0px;
  2380. border-top-right-radius:0px;
  2381. border-bottom-right-radius:0px;
  2382. border-bottom-left-radius:0px;
  2383. filter:drop-shadow(none);
  2384. transition:none;
  2385. }
  2386. #u55422 {
  2387. border-width:0px;
  2388. position:absolute;
  2389. left:935px;
  2390. top:162px;
  2391. width:375px;
  2392. height:50px;
  2393. display:flex;
  2394. transition:none;
  2395. transform-origin:50% 50%;
  2396. }
  2397. #u55422 .text {
  2398. position:absolute;
  2399. align-self:center;
  2400. padding:2px 2px 2px 2px;
  2401. box-sizing:border-box;
  2402. width:100%;
  2403. }
  2404. #u55422_text {
  2405. border-width:0px;
  2406. word-wrap:break-word;
  2407. text-transform:none;
  2408. visibility:hidden;
  2409. }
  2410. #u55423_div {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:0px;
  2414. top:0px;
  2415. width:57px;
  2416. height:30px;
  2417. background:inherit;
  2418. background-color:rgba(255, 255, 255, 0);
  2419. border-left:0px;
  2420. border-top:0px;
  2421. border-right:0px;
  2422. border-radius:0px;
  2423. border-bottom-right-radius:0px;
  2424. border-bottom-left-radius:0px;
  2425. filter:drop-shadow(none);
  2426. transition:none;
  2427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2428. font-weight:400;
  2429. font-style:normal;
  2430. font-size:14px;
  2431. line-height:30px;
  2432. }
  2433. #u55423 {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:959px;
  2437. top:172px;
  2438. width:57px;
  2439. height:30px;
  2440. display:flex;
  2441. transition:none;
  2442. transform-origin:50% 50%;
  2443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2444. font-weight:400;
  2445. font-style:normal;
  2446. font-size:14px;
  2447. line-height:30px;
  2448. }
  2449. #u55423 .text {
  2450. position:absolute;
  2451. align-self:flex-start;
  2452. padding:0px 0px 0px 0px;
  2453. box-sizing:border-box;
  2454. width:100%;
  2455. }
  2456. #u55423_text {
  2457. border-width:0px;
  2458. white-space:nowrap;
  2459. text-transform:none;
  2460. }
  2461. #u55424 {
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:1286px;
  2465. top:179px;
  2466. width:8px;
  2467. height:13px;
  2468. display:flex;
  2469. -webkit-transform:rotate(180deg);
  2470. -moz-transform:rotate(180deg);
  2471. -ms-transform:rotate(180deg);
  2472. transform:rotate(180deg);
  2473. transition:none;
  2474. }
  2475. #u55424 .text {
  2476. position:absolute;
  2477. align-self:center;
  2478. padding:2px 2px 2px 2px;
  2479. box-sizing:border-box;
  2480. width:100%;
  2481. }
  2482. #u55424_img {
  2483. border-width:0px;
  2484. position:absolute;
  2485. left:0px;
  2486. top:0px;
  2487. width:8px;
  2488. height:13px;
  2489. }
  2490. #u55424_text {
  2491. border-width:0px;
  2492. word-wrap:break-word;
  2493. text-transform:none;
  2494. visibility:hidden;
  2495. }
  2496. #u55425_div {
  2497. border-width:0px;
  2498. position:absolute;
  2499. left:0px;
  2500. top:0px;
  2501. width:29px;
  2502. height:30px;
  2503. background:inherit;
  2504. background-color:rgba(255, 255, 255, 0);
  2505. border-left:0px;
  2506. border-top:0px;
  2507. border-right:0px;
  2508. border-radius:0px;
  2509. border-bottom-right-radius:0px;
  2510. border-bottom-left-radius:0px;
  2511. filter:drop-shadow(none);
  2512. transition:none;
  2513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2514. font-weight:400;
  2515. font-style:normal;
  2516. font-size:14px;
  2517. text-align:right;
  2518. line-height:30px;
  2519. }
  2520. #u55425 {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:1249px;
  2524. top:172px;
  2525. width:29px;
  2526. height:30px;
  2527. display:flex;
  2528. transition:none;
  2529. transform-origin:50% 50%;
  2530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2531. font-weight:400;
  2532. font-style:normal;
  2533. font-size:14px;
  2534. text-align:right;
  2535. line-height:30px;
  2536. }
  2537. #u55425 .text {
  2538. position:absolute;
  2539. align-self:flex-start;
  2540. padding:0px 0px 0px 0px;
  2541. box-sizing:border-box;
  2542. width:100%;
  2543. }
  2544. #u55425_text {
  2545. border-width:0px;
  2546. white-space:nowrap;
  2547. text-transform:none;
  2548. }
  2549. #u55426 {
  2550. border-width:0px;
  2551. position:absolute;
  2552. left:0px;
  2553. top:0px;
  2554. width:0px;
  2555. height:0px;
  2556. }
  2557. #u55427_div {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:0px;
  2561. top:0px;
  2562. width:375px;
  2563. height:50px;
  2564. background:inherit;
  2565. background-color:rgba(255, 255, 255, 1);
  2566. box-sizing:border-box;
  2567. border-width:1px;
  2568. border-style:solid;
  2569. border-color:rgba(215, 215, 215, 0.4980392156862745);
  2570. border-left:0px;
  2571. border-right:0px;
  2572. border-radius:0px;
  2573. border-top-left-radius:0px;
  2574. border-top-right-radius:0px;
  2575. border-bottom-right-radius:0px;
  2576. border-bottom-left-radius:0px;
  2577. filter:drop-shadow(none);
  2578. transition:none;
  2579. }
  2580. #u55427 {
  2581. border-width:0px;
  2582. position:absolute;
  2583. left:935px;
  2584. top:212px;
  2585. width:375px;
  2586. height:50px;
  2587. display:flex;
  2588. transition:none;
  2589. transform-origin:50% 50%;
  2590. }
  2591. #u55427 .text {
  2592. position:absolute;
  2593. align-self:center;
  2594. padding:2px 2px 2px 2px;
  2595. box-sizing:border-box;
  2596. width:100%;
  2597. }
  2598. #u55427_text {
  2599. border-width:0px;
  2600. word-wrap:break-word;
  2601. text-transform:none;
  2602. visibility:hidden;
  2603. }
  2604. #u55428_div {
  2605. border-width:0px;
  2606. position:absolute;
  2607. left:0px;
  2608. top:0px;
  2609. width:71px;
  2610. height:30px;
  2611. background:inherit;
  2612. background-color:rgba(255, 255, 255, 0);
  2613. border-left:0px;
  2614. border-top:0px;
  2615. border-right:0px;
  2616. border-radius:0px;
  2617. border-bottom-right-radius:0px;
  2618. border-bottom-left-radius:0px;
  2619. filter:drop-shadow(none);
  2620. transition:none;
  2621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2622. font-weight:400;
  2623. font-style:normal;
  2624. font-size:14px;
  2625. line-height:30px;
  2626. }
  2627. #u55428 {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:959px;
  2631. top:222px;
  2632. width:71px;
  2633. height:30px;
  2634. display:flex;
  2635. transition:none;
  2636. transform-origin:50% 50%;
  2637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2638. font-weight:400;
  2639. font-style:normal;
  2640. font-size:14px;
  2641. line-height:30px;
  2642. }
  2643. #u55428 .text {
  2644. position:absolute;
  2645. align-self:flex-start;
  2646. padding:0px 0px 0px 0px;
  2647. box-sizing:border-box;
  2648. width:100%;
  2649. }
  2650. #u55428_text {
  2651. border-width:0px;
  2652. white-space:nowrap;
  2653. text-transform:none;
  2654. }
  2655. #u55429_div {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:0px;
  2659. top:0px;
  2660. width:83px;
  2661. height:30px;
  2662. background:inherit;
  2663. background-color:rgba(255, 255, 255, 0);
  2664. border-left:0px;
  2665. border-top:0px;
  2666. border-right:0px;
  2667. border-radius:0px;
  2668. border-bottom-right-radius:0px;
  2669. border-bottom-left-radius:0px;
  2670. filter:drop-shadow(none);
  2671. transition:none;
  2672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2673. font-weight:400;
  2674. font-style:normal;
  2675. font-size:14px;
  2676. text-align:right;
  2677. line-height:30px;
  2678. }
  2679. #u55429 {
  2680. border-width:0px;
  2681. position:absolute;
  2682. left:1195px;
  2683. top:222px;
  2684. width:83px;
  2685. height:30px;
  2686. display:flex;
  2687. transition:none;
  2688. transform-origin:50% 50%;
  2689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2690. font-weight:400;
  2691. font-style:normal;
  2692. font-size:14px;
  2693. text-align:right;
  2694. line-height:30px;
  2695. }
  2696. #u55429 .text {
  2697. position:absolute;
  2698. align-self:flex-start;
  2699. padding:0px 0px 0px 0px;
  2700. box-sizing:border-box;
  2701. width:100%;
  2702. }
  2703. #u55429_text {
  2704. border-width:0px;
  2705. white-space:nowrap;
  2706. text-transform:none;
  2707. }
  2708. #u55430_div {
  2709. border-width:0px;
  2710. position:absolute;
  2711. left:0px;
  2712. top:0px;
  2713. width:335px;
  2714. height:40px;
  2715. background:inherit;
  2716. background-color:rgba(255, 255, 255, 1);
  2717. box-sizing:border-box;
  2718. border-width:1px;
  2719. border-style:solid;
  2720. border-color:rgba(215, 215, 215, 1);
  2721. border-radius:19px;
  2722. filter:drop-shadow(none);
  2723. transition:none;
  2724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2725. font-weight:400;
  2726. font-style:normal;
  2727. font-size:14px;
  2728. color:#7F7F7F;
  2729. text-align:center;
  2730. line-height:30px;
  2731. }
  2732. #u55430 {
  2733. border-width:0px;
  2734. position:absolute;
  2735. left:955px;
  2736. top:782px;
  2737. width:335px;
  2738. height:40px;
  2739. display:flex;
  2740. transition:none;
  2741. transform-origin:50% 50%;
  2742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2743. font-weight:400;
  2744. font-style:normal;
  2745. font-size:14px;
  2746. color:#7F7F7F;
  2747. text-align:center;
  2748. line-height:30px;
  2749. }
  2750. #u55430 .text {
  2751. position:absolute;
  2752. align-self:center;
  2753. padding:0px 0px 0px 0px;
  2754. box-sizing:border-box;
  2755. width:100%;
  2756. }
  2757. #u55430_text {
  2758. border-width:0px;
  2759. word-wrap:break-word;
  2760. text-transform:none;
  2761. }
  2762. #u55431 {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:0px;
  2766. top:0px;
  2767. width:0px;
  2768. height:0px;
  2769. }
  2770. #u55432_div {
  2771. border-width:0px;
  2772. position:absolute;
  2773. left:0px;
  2774. top:0px;
  2775. width:341px;
  2776. height:17px;
  2777. background:inherit;
  2778. background-color:rgba(255, 255, 255, 0);
  2779. border-left:0px;
  2780. border-top:0px;
  2781. border-right:0px;
  2782. border-radius:0px;
  2783. border-bottom-right-radius:0px;
  2784. border-bottom-left-radius:0px;
  2785. filter:drop-shadow(none);
  2786. transition:none;
  2787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2788. font-weight:400;
  2789. font-style:normal;
  2790. font-size:12px;
  2791. color:#F59A23;
  2792. }
  2793. #u55432 {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:963px;
  2797. top:271px;
  2798. width:341px;
  2799. height:17px;
  2800. display:flex;
  2801. transition:none;
  2802. transform-origin:50% 50%;
  2803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2804. font-weight:400;
  2805. font-style:normal;
  2806. font-size:12px;
  2807. color:#F59A23;
  2808. }
  2809. #u55432 .text {
  2810. position:absolute;
  2811. align-self:flex-start;
  2812. padding:0px 0px 0px 0px;
  2813. box-sizing:border-box;
  2814. width:100%;
  2815. }
  2816. #u55432_text {
  2817. border-width:0px;
  2818. word-wrap:break-word;
  2819. text-transform:none;
  2820. }
  2821. #u55433 {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:948px;
  2825. top:274px;
  2826. width:11px;
  2827. height:11px;
  2828. display:flex;
  2829. transition:none;
  2830. }
  2831. #u55433 .text {
  2832. position:absolute;
  2833. align-self:center;
  2834. padding:2px 2px 2px 2px;
  2835. box-sizing:border-box;
  2836. width:100%;
  2837. }
  2838. #u55433_img {
  2839. border-width:0px;
  2840. position:absolute;
  2841. left:0px;
  2842. top:0px;
  2843. width:11px;
  2844. height:11px;
  2845. }
  2846. #u55433_text {
  2847. border-width:0px;
  2848. word-wrap:break-word;
  2849. text-transform:none;
  2850. visibility:hidden;
  2851. }
  2852. #u55434_div {
  2853. border-width:0px;
  2854. position:absolute;
  2855. left:0px;
  2856. top:0px;
  2857. width:335px;
  2858. height:225px;
  2859. background:inherit;
  2860. background-color:rgba(255, 255, 255, 0);
  2861. border-left:0px;
  2862. border-top:0px;
  2863. border-right:0px;
  2864. border-radius:0px;
  2865. border-bottom-right-radius:0px;
  2866. border-bottom-left-radius:0px;
  2867. filter:drop-shadow(none);
  2868. transition:none;
  2869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2870. font-weight:400;
  2871. font-style:normal;
  2872. font-size:12px;
  2873. color:#D9001B;
  2874. line-height:25px;
  2875. }
  2876. #u55434 {
  2877. border-width:0px;
  2878. position:absolute;
  2879. left:959px;
  2880. top:323px;
  2881. width:335px;
  2882. height:225px;
  2883. display:flex;
  2884. transition:none;
  2885. transform-origin:50% 50%;
  2886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2887. font-weight:400;
  2888. font-style:normal;
  2889. font-size:12px;
  2890. color:#D9001B;
  2891. line-height:25px;
  2892. }
  2893. #u55434 .text {
  2894. position:absolute;
  2895. align-self:flex-start;
  2896. padding:0px 0px 0px 0px;
  2897. box-sizing:border-box;
  2898. width:100%;
  2899. }
  2900. #u55434_text {
  2901. border-width:0px;
  2902. word-wrap:break-word;
  2903. text-transform:none;
  2904. }
  2905. #u55435_div {
  2906. border-width:0px;
  2907. position:absolute;
  2908. left:0px;
  2909. top:0px;
  2910. width:375px;
  2911. height:733px;
  2912. background:inherit;
  2913. background-color:rgba(255, 255, 255, 1);
  2914. border-left:0px;
  2915. border-right:0px;
  2916. border-radius:0px;
  2917. border-top-left-radius:0px;
  2918. border-top-right-radius:0px;
  2919. border-bottom-right-radius:0px;
  2920. border-bottom-left-radius:0px;
  2921. filter:drop-shadow(none);
  2922. transition:none;
  2923. }
  2924. #u55435 {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:29px;
  2928. top:273px;
  2929. width:375px;
  2930. height:733px;
  2931. display:flex;
  2932. transition:none;
  2933. transform-origin:50% 50%;
  2934. }
  2935. #u55435 .text {
  2936. position:absolute;
  2937. align-self:center;
  2938. padding:2px 2px 2px 2px;
  2939. box-sizing:border-box;
  2940. width:100%;
  2941. }
  2942. #u55435_text {
  2943. border-width:0px;
  2944. word-wrap:break-word;
  2945. text-transform:none;
  2946. visibility:hidden;
  2947. }
  2948. #u55436_div {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:0px;
  2952. top:0px;
  2953. width:73px;
  2954. height:30px;
  2955. background:inherit;
  2956. background-color:rgba(255, 255, 255, 0);
  2957. border-left:0px;
  2958. border-top:0px;
  2959. border-right:0px;
  2960. border-radius:0px;
  2961. border-bottom-right-radius:0px;
  2962. border-bottom-left-radius:0px;
  2963. filter:drop-shadow(none);
  2964. transition:none;
  2965. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2966. font-weight:500;
  2967. font-style:normal;
  2968. font-size:18px;
  2969. line-height:30px;
  2970. }
  2971. #u55436 {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:51px;
  2975. top:288px;
  2976. width:73px;
  2977. height:30px;
  2978. display:flex;
  2979. transition:none;
  2980. transform-origin:50% 50%;
  2981. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2982. font-weight:500;
  2983. font-style:normal;
  2984. font-size:18px;
  2985. line-height:30px;
  2986. }
  2987. #u55436 .text {
  2988. position:absolute;
  2989. align-self:flex-start;
  2990. padding:0px 0px 0px 0px;
  2991. box-sizing:border-box;
  2992. width:100%;
  2993. }
  2994. #u55436_text {
  2995. border-width:0px;
  2996. white-space:nowrap;
  2997. text-transform:none;
  2998. }
  2999. #u55437 {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:0px;
  3003. top:0px;
  3004. width:0px;
  3005. height:0px;
  3006. }
  3007. #u55438_div {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:0px;
  3011. top:0px;
  3012. width:342px;
  3013. height:160px;
  3014. background:inherit;
  3015. background-color:rgba(255, 255, 255, 1);
  3016. box-sizing:border-box;
  3017. border-width:1px;
  3018. border-style:solid;
  3019. border-color:rgba(215, 215, 215, 0.4980392156862745);
  3020. border-left:0px;
  3021. border-top:0px;
  3022. border-right:0px;
  3023. border-radius:0px;
  3024. border-bottom-right-radius:0px;
  3025. border-bottom-left-radius:0px;
  3026. filter:drop-shadow(none);
  3027. transition:none;
  3028. }
  3029. #u55438 {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:51px;
  3033. top:533px;
  3034. width:342px;
  3035. height:160px;
  3036. display:flex;
  3037. transition:none;
  3038. transform-origin:50% 50%;
  3039. }
  3040. #u55438 .text {
  3041. position:absolute;
  3042. align-self:center;
  3043. padding:2px 2px 2px 2px;
  3044. box-sizing:border-box;
  3045. width:100%;
  3046. }
  3047. #u55438_text {
  3048. border-width:0px;
  3049. word-wrap:break-word;
  3050. text-transform:none;
  3051. visibility:hidden;
  3052. }
  3053. #u55439_div {
  3054. border-width:0px;
  3055. position:absolute;
  3056. left:0px;
  3057. top:0px;
  3058. width:64px;
  3059. height:30px;
  3060. background:inherit;
  3061. background-color:rgba(255, 255, 255, 0);
  3062. border-left:0px;
  3063. border-top:0px;
  3064. border-right:0px;
  3065. border-radius:0px;
  3066. border-bottom-right-radius:0px;
  3067. border-bottom-left-radius:0px;
  3068. filter:drop-shadow(none);
  3069. transition: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. #u55439 {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:51px;
  3080. top:543px;
  3081. width:64px;
  3082. height:30px;
  3083. display:flex;
  3084. transition:none;
  3085. transform-origin:50% 50%;
  3086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3087. font-weight:400;
  3088. font-style:normal;
  3089. font-size:14px;
  3090. line-height:30px;
  3091. }
  3092. #u55439 .text {
  3093. position:absolute;
  3094. align-self:flex-start;
  3095. padding:0px 0px 0px 0px;
  3096. box-sizing:border-box;
  3097. width:100%;
  3098. }
  3099. #u55439_text {
  3100. border-width:0px;
  3101. white-space:nowrap;
  3102. text-transform:none;
  3103. }
  3104. #u55440 {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:51px;
  3108. top:573px;
  3109. width:331px;
  3110. height:110px;
  3111. display:flex;
  3112. transition:none;
  3113. }
  3114. #u55440 .text {
  3115. position:absolute;
  3116. align-self:center;
  3117. padding:2px 2px 2px 2px;
  3118. box-sizing:border-box;
  3119. width:100%;
  3120. }
  3121. #u55440_img {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:0px;
  3125. top:0px;
  3126. width:331px;
  3127. height:110px;
  3128. }
  3129. #u55440_text {
  3130. border-width:0px;
  3131. word-wrap:break-word;
  3132. text-transform:none;
  3133. visibility:hidden;
  3134. }
  3135. #u55441 {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:0px;
  3139. top:0px;
  3140. width:0px;
  3141. height:0px;
  3142. }
  3143. #u55442_div {
  3144. border-width:0px;
  3145. position:absolute;
  3146. left:0px;
  3147. top:0px;
  3148. width:342px;
  3149. height:50px;
  3150. background:inherit;
  3151. background-color:rgba(255, 255, 255, 1);
  3152. box-sizing:border-box;
  3153. border-width:1px;
  3154. border-style:solid;
  3155. border-color:rgba(215, 215, 215, 0.4980392156862745);
  3156. border-left:0px;
  3157. border-top:0px;
  3158. border-right:0px;
  3159. border-radius:0px;
  3160. border-bottom-right-radius:0px;
  3161. border-bottom-left-radius:0px;
  3162. filter:drop-shadow(none);
  3163. transition:none;
  3164. }
  3165. #u55442 {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:51px;
  3169. top:428px;
  3170. width:342px;
  3171. height:50px;
  3172. display:flex;
  3173. transition:none;
  3174. transform-origin:50% 50%;
  3175. }
  3176. #u55442 .text {
  3177. position:absolute;
  3178. align-self:center;
  3179. padding:2px 2px 2px 2px;
  3180. box-sizing:border-box;
  3181. width:100%;
  3182. }
  3183. #u55442_text {
  3184. border-width:0px;
  3185. word-wrap:break-word;
  3186. text-transform:none;
  3187. visibility:hidden;
  3188. }
  3189. #u55443_div {
  3190. border-width:0px;
  3191. position:absolute;
  3192. left:0px;
  3193. top:0px;
  3194. width:78px;
  3195. height:30px;
  3196. background:inherit;
  3197. background-color:rgba(255, 255, 255, 0);
  3198. border-left:0px;
  3199. border-top:0px;
  3200. border-right:0px;
  3201. border-radius:0px;
  3202. border-bottom-right-radius:0px;
  3203. border-bottom-left-radius:0px;
  3204. filter:drop-shadow(none);
  3205. transition:none;
  3206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3207. font-weight:400;
  3208. font-style:normal;
  3209. font-size:14px;
  3210. line-height:30px;
  3211. }
  3212. #u55443 {
  3213. border-width:0px;
  3214. position:absolute;
  3215. left:51px;
  3216. top:438px;
  3217. width:78px;
  3218. height:30px;
  3219. display:flex;
  3220. transition:none;
  3221. transform-origin:50% 50%;
  3222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3223. font-weight:400;
  3224. font-style:normal;
  3225. font-size:14px;
  3226. line-height:30px;
  3227. }
  3228. #u55443 .text {
  3229. position:absolute;
  3230. align-self:flex-start;
  3231. padding:0px 0px 0px 0px;
  3232. box-sizing:border-box;
  3233. width:100%;
  3234. }
  3235. #u55443_text {
  3236. border-width:0px;
  3237. white-space:nowrap;
  3238. text-transform:none;
  3239. }
  3240. #u55444_input {
  3241. position:absolute;
  3242. left:0px;
  3243. top:0px;
  3244. width:240px;
  3245. height:33px;
  3246. padding:2px 2px 2px 2px;
  3247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3248. font-weight:400;
  3249. font-style:normal;
  3250. font-size:14px;
  3251. letter-spacing:normal;
  3252. color:#000000;
  3253. vertical-align:none;
  3254. text-align:right;
  3255. text-transform:none;
  3256. background-color:transparent;
  3257. border-color:transparent;
  3258. }
  3259. #u55444_input.hint {
  3260. position:absolute;
  3261. left:0px;
  3262. top:0px;
  3263. width:240px;
  3264. height:33px;
  3265. padding:2px 2px 2px 2px;
  3266. font-family:"Microsoft YaHei", sans-serif;
  3267. font-weight:400;
  3268. font-style:normal;
  3269. font-size:14px;
  3270. letter-spacing:normal;
  3271. color:#BCBCBC;
  3272. vertical-align:none;
  3273. text-align:right;
  3274. text-transform:none;
  3275. background-color:transparent;
  3276. border-color:transparent;
  3277. }
  3278. #u55444_input.disabled {
  3279. position:absolute;
  3280. left:0px;
  3281. top:0px;
  3282. width:240px;
  3283. height:33px;
  3284. padding:2px 2px 2px 2px;
  3285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3286. font-weight:400;
  3287. font-style:normal;
  3288. font-size:14px;
  3289. letter-spacing:normal;
  3290. color:#000000;
  3291. vertical-align:none;
  3292. text-align:right;
  3293. text-transform:none;
  3294. background-color:transparent;
  3295. border-color:transparent;
  3296. }
  3297. #u55444_input.hint.disabled {
  3298. position:absolute;
  3299. left:0px;
  3300. top:0px;
  3301. width:240px;
  3302. height:33px;
  3303. padding:2px 2px 2px 2px;
  3304. font-family:"Microsoft YaHei", sans-serif;
  3305. font-weight:400;
  3306. font-style:normal;
  3307. font-size:14px;
  3308. letter-spacing:normal;
  3309. color:#BCBCBC;
  3310. vertical-align:none;
  3311. text-align:right;
  3312. text-transform:none;
  3313. background-color:transparent;
  3314. border-color:transparent;
  3315. }
  3316. #u55444_div {
  3317. border-width:0px;
  3318. position:absolute;
  3319. left:0px;
  3320. top:0px;
  3321. width:240px;
  3322. height:33px;
  3323. background:inherit;
  3324. background-color:rgba(255, 255, 255, 1);
  3325. border-radius:0px;
  3326. filter:drop-shadow(none);
  3327. transition:none;
  3328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3329. font-weight:400;
  3330. font-style:normal;
  3331. font-size:14px;
  3332. text-align:right;
  3333. }
  3334. #u55444 {
  3335. border-width:0px;
  3336. position:absolute;
  3337. left:126px;
  3338. top:437px;
  3339. width:240px;
  3340. height:33px;
  3341. display:flex;
  3342. transition:none;
  3343. transform-origin:50% 50%;
  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. #u55444 .text {
  3351. position:absolute;
  3352. align-self:center;
  3353. padding:2px 2px 2px 2px;
  3354. box-sizing:border-box;
  3355. width:100%;
  3356. }
  3357. #u55444_div.hint {
  3358. border-width:0px;
  3359. position:absolute;
  3360. left:0px;
  3361. top:0px;
  3362. width:240px;
  3363. height:33px;
  3364. background:inherit;
  3365. background-color:rgba(255, 255, 255, 1);
  3366. border-radius:0px;
  3367. filter:drop-shadow(none);
  3368. transition:none;
  3369. font-family:"Microsoft YaHei", sans-serif;
  3370. font-weight:400;
  3371. font-style:normal;
  3372. font-size:14px;
  3373. text-align:right;
  3374. }
  3375. #u55444.hint {
  3376. }
  3377. #u55444_div.disabled {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:0px;
  3381. top:0px;
  3382. width:240px;
  3383. height:33px;
  3384. background:inherit;
  3385. background-color:rgba(240, 240, 240, 1);
  3386. border-radius:0px;
  3387. filter:drop-shadow(none);
  3388. transition:none;
  3389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3390. font-weight:400;
  3391. font-style:normal;
  3392. font-size:14px;
  3393. text-align:right;
  3394. }
  3395. #u55444.disabled {
  3396. }
  3397. #u55444_div.hint.disabled {
  3398. border-width:0px;
  3399. position:absolute;
  3400. left:0px;
  3401. top:0px;
  3402. width:240px;
  3403. height:33px;
  3404. background:inherit;
  3405. background-color:rgba(240, 240, 240, 1);
  3406. border-radius:0px;
  3407. filter:drop-shadow(none);
  3408. transition:none;
  3409. font-family:"Microsoft YaHei", sans-serif;
  3410. font-weight:400;
  3411. font-style:normal;
  3412. font-size:14px;
  3413. text-align:right;
  3414. }
  3415. #u55444.hint.disabled {
  3416. }
  3417. #u55445 {
  3418. border-width:0px;
  3419. position:absolute;
  3420. left:0px;
  3421. top:0px;
  3422. width:0px;
  3423. height:0px;
  3424. }
  3425. #u55446_div {
  3426. border-width:0px;
  3427. position:absolute;
  3428. left:0px;
  3429. top:0px;
  3430. width:342px;
  3431. height:50px;
  3432. background:inherit;
  3433. background-color:rgba(255, 255, 255, 1);
  3434. box-sizing:border-box;
  3435. border-width:1px;
  3436. border-style:solid;
  3437. border-color:rgba(215, 215, 215, 0.4980392156862745);
  3438. border-left:0px;
  3439. border-top:0px;
  3440. border-right:0px;
  3441. border-radius:0px;
  3442. border-bottom-right-radius:0px;
  3443. border-bottom-left-radius:0px;
  3444. filter:drop-shadow(none);
  3445. transition:none;
  3446. }
  3447. #u55446 {
  3448. border-width:0px;
  3449. position:absolute;
  3450. left:51px;
  3451. top:478px;
  3452. width:342px;
  3453. height:50px;
  3454. display:flex;
  3455. transition:none;
  3456. transform-origin:50% 50%;
  3457. }
  3458. #u55446 .text {
  3459. position:absolute;
  3460. align-self:center;
  3461. padding:2px 2px 2px 2px;
  3462. box-sizing:border-box;
  3463. width:100%;
  3464. }
  3465. #u55446_text {
  3466. border-width:0px;
  3467. word-wrap:break-word;
  3468. text-transform:none;
  3469. visibility:hidden;
  3470. }
  3471. #u55447_div {
  3472. border-width:0px;
  3473. position:absolute;
  3474. left:0px;
  3475. top:0px;
  3476. width:78px;
  3477. height:30px;
  3478. background:inherit;
  3479. background-color:rgba(255, 255, 255, 0);
  3480. border-left:0px;
  3481. border-top:0px;
  3482. border-right:0px;
  3483. border-radius:0px;
  3484. border-bottom-right-radius:0px;
  3485. border-bottom-left-radius:0px;
  3486. filter:drop-shadow(none);
  3487. transition:none;
  3488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3489. font-weight:400;
  3490. font-style:normal;
  3491. font-size:14px;
  3492. line-height:30px;
  3493. }
  3494. #u55447 {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:51px;
  3498. top:488px;
  3499. width:78px;
  3500. height:30px;
  3501. display:flex;
  3502. transition:none;
  3503. transform-origin:50% 50%;
  3504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3505. font-weight:400;
  3506. font-style:normal;
  3507. font-size:14px;
  3508. line-height:30px;
  3509. }
  3510. #u55447 .text {
  3511. position:absolute;
  3512. align-self:flex-start;
  3513. padding:0px 0px 0px 0px;
  3514. box-sizing:border-box;
  3515. width:100%;
  3516. }
  3517. #u55447_text {
  3518. border-width:0px;
  3519. white-space:nowrap;
  3520. text-transform:none;
  3521. }
  3522. #u55448_input {
  3523. position:absolute;
  3524. left:0px;
  3525. top:0px;
  3526. width:240px;
  3527. height:33px;
  3528. padding:2px 2px 2px 2px;
  3529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3530. font-weight:400;
  3531. font-style:normal;
  3532. font-size:14px;
  3533. letter-spacing:normal;
  3534. color:#000000;
  3535. vertical-align:none;
  3536. text-align:right;
  3537. text-transform:none;
  3538. background-color:transparent;
  3539. border-color:transparent;
  3540. }
  3541. #u55448_input.hint {
  3542. position:absolute;
  3543. left:0px;
  3544. top:0px;
  3545. width:240px;
  3546. height:33px;
  3547. padding:2px 2px 2px 2px;
  3548. font-family:"Microsoft YaHei", sans-serif;
  3549. font-weight:400;
  3550. font-style:normal;
  3551. font-size:14px;
  3552. letter-spacing:normal;
  3553. color:#BCBCBC;
  3554. vertical-align:none;
  3555. text-align:right;
  3556. text-transform:none;
  3557. background-color:transparent;
  3558. border-color:transparent;
  3559. }
  3560. #u55448_input.disabled {
  3561. position:absolute;
  3562. left:0px;
  3563. top:0px;
  3564. width:240px;
  3565. height:33px;
  3566. padding:2px 2px 2px 2px;
  3567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3568. font-weight:400;
  3569. font-style:normal;
  3570. font-size:14px;
  3571. letter-spacing:normal;
  3572. color:#000000;
  3573. vertical-align:none;
  3574. text-align:right;
  3575. text-transform:none;
  3576. background-color:transparent;
  3577. border-color:transparent;
  3578. }
  3579. #u55448_input.hint.disabled {
  3580. position:absolute;
  3581. left:0px;
  3582. top:0px;
  3583. width:240px;
  3584. height:33px;
  3585. padding:2px 2px 2px 2px;
  3586. font-family:"Microsoft YaHei", sans-serif;
  3587. font-weight:400;
  3588. font-style:normal;
  3589. font-size:14px;
  3590. letter-spacing:normal;
  3591. color:#BCBCBC;
  3592. vertical-align:none;
  3593. text-align:right;
  3594. text-transform:none;
  3595. background-color:transparent;
  3596. border-color:transparent;
  3597. }
  3598. #u55448_div {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:0px;
  3602. top:0px;
  3603. width:240px;
  3604. height:33px;
  3605. background:inherit;
  3606. background-color:rgba(255, 255, 255, 1);
  3607. border-radius:0px;
  3608. filter:drop-shadow(none);
  3609. transition:none;
  3610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3611. font-weight:400;
  3612. font-style:normal;
  3613. font-size:14px;
  3614. text-align:right;
  3615. }
  3616. #u55448 {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:126px;
  3620. top:487px;
  3621. width:240px;
  3622. height:33px;
  3623. display:flex;
  3624. transition:none;
  3625. transform-origin:50% 50%;
  3626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3627. font-weight:400;
  3628. font-style:normal;
  3629. font-size:14px;
  3630. text-align:right;
  3631. }
  3632. #u55448 .text {
  3633. position:absolute;
  3634. align-self:center;
  3635. padding:2px 2px 2px 2px;
  3636. box-sizing:border-box;
  3637. width:100%;
  3638. }
  3639. #u55448_div.hint {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:0px;
  3643. top:0px;
  3644. width:240px;
  3645. height:33px;
  3646. background:inherit;
  3647. background-color:rgba(255, 255, 255, 1);
  3648. border-radius:0px;
  3649. filter:drop-shadow(none);
  3650. transition:none;
  3651. font-family:"Microsoft YaHei", sans-serif;
  3652. font-weight:400;
  3653. font-style:normal;
  3654. font-size:14px;
  3655. text-align:right;
  3656. }
  3657. #u55448.hint {
  3658. }
  3659. #u55448_div.disabled {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:0px;
  3663. top:0px;
  3664. width:240px;
  3665. height:33px;
  3666. background:inherit;
  3667. background-color:rgba(240, 240, 240, 1);
  3668. border-radius:0px;
  3669. filter:drop-shadow(none);
  3670. transition:none;
  3671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3672. font-weight:400;
  3673. font-style:normal;
  3674. font-size:14px;
  3675. text-align:right;
  3676. }
  3677. #u55448.disabled {
  3678. }
  3679. #u55448_div.hint.disabled {
  3680. border-width:0px;
  3681. position:absolute;
  3682. left:0px;
  3683. top:0px;
  3684. width:240px;
  3685. height:33px;
  3686. background:inherit;
  3687. background-color:rgba(240, 240, 240, 1);
  3688. border-radius:0px;
  3689. filter:drop-shadow(none);
  3690. transition:none;
  3691. font-family:"Microsoft YaHei", sans-serif;
  3692. font-weight:400;
  3693. font-style:normal;
  3694. font-size:14px;
  3695. text-align:right;
  3696. }
  3697. #u55448.hint.disabled {
  3698. }
  3699. #u55449 {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:0px;
  3703. top:0px;
  3704. width:0px;
  3705. height:0px;
  3706. }
  3707. #u55450_div {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:0px;
  3711. top:0px;
  3712. width:342px;
  3713. height:50px;
  3714. background:inherit;
  3715. background-color:rgba(255, 255, 255, 1);
  3716. box-sizing:border-box;
  3717. border-width:1px;
  3718. border-style:solid;
  3719. border-color:rgba(215, 215, 215, 0.4980392156862745);
  3720. border-left:0px;
  3721. border-top:0px;
  3722. border-right:0px;
  3723. border-radius:0px;
  3724. border-bottom-right-radius:0px;
  3725. border-bottom-left-radius:0px;
  3726. filter:drop-shadow(none);
  3727. transition:none;
  3728. }
  3729. #u55450 {
  3730. border-width:0px;
  3731. position:absolute;
  3732. left:51px;
  3733. top:378px;
  3734. width:342px;
  3735. height:50px;
  3736. display:flex;
  3737. transition:none;
  3738. transform-origin:50% 50%;
  3739. }
  3740. #u55450 .text {
  3741. position:absolute;
  3742. align-self:center;
  3743. padding:2px 2px 2px 2px;
  3744. box-sizing:border-box;
  3745. width:100%;
  3746. }
  3747. #u55450_text {
  3748. border-width:0px;
  3749. word-wrap:break-word;
  3750. text-transform:none;
  3751. visibility:hidden;
  3752. }
  3753. #u55451_div {
  3754. border-width:0px;
  3755. position:absolute;
  3756. left:0px;
  3757. top:0px;
  3758. width:78px;
  3759. height:30px;
  3760. background:inherit;
  3761. background-color:rgba(255, 255, 255, 0);
  3762. border-left:0px;
  3763. border-top:0px;
  3764. border-right:0px;
  3765. border-radius:0px;
  3766. border-bottom-right-radius:0px;
  3767. border-bottom-left-radius:0px;
  3768. filter:drop-shadow(none);
  3769. transition:none;
  3770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3771. font-weight:400;
  3772. font-style:normal;
  3773. font-size:14px;
  3774. line-height:30px;
  3775. }
  3776. #u55451 {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:51px;
  3780. top:388px;
  3781. width:78px;
  3782. height:30px;
  3783. display:flex;
  3784. transition:none;
  3785. transform-origin:50% 50%;
  3786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3787. font-weight:400;
  3788. font-style:normal;
  3789. font-size:14px;
  3790. line-height:30px;
  3791. }
  3792. #u55451 .text {
  3793. position:absolute;
  3794. align-self:flex-start;
  3795. padding:0px 0px 0px 0px;
  3796. box-sizing:border-box;
  3797. width:100%;
  3798. }
  3799. #u55451_text {
  3800. border-width:0px;
  3801. white-space:nowrap;
  3802. text-transform:none;
  3803. }
  3804. #u55452_input {
  3805. position:absolute;
  3806. left:0px;
  3807. top:0px;
  3808. width:240px;
  3809. height:33px;
  3810. padding:2px 2px 2px 2px;
  3811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3812. font-weight:400;
  3813. font-style:normal;
  3814. font-size:14px;
  3815. letter-spacing:normal;
  3816. color:#000000;
  3817. vertical-align:none;
  3818. text-align:right;
  3819. text-transform:none;
  3820. background-color:transparent;
  3821. border-color:transparent;
  3822. }
  3823. #u55452_input.hint {
  3824. position:absolute;
  3825. left:0px;
  3826. top:0px;
  3827. width:240px;
  3828. height:33px;
  3829. padding:2px 2px 2px 2px;
  3830. font-family:"Microsoft YaHei", sans-serif;
  3831. font-weight:400;
  3832. font-style:normal;
  3833. font-size:14px;
  3834. letter-spacing:normal;
  3835. color:#BCBCBC;
  3836. vertical-align:none;
  3837. text-align:right;
  3838. text-transform:none;
  3839. background-color:transparent;
  3840. border-color:transparent;
  3841. }
  3842. #u55452_input.disabled {
  3843. position:absolute;
  3844. left:0px;
  3845. top:0px;
  3846. width:240px;
  3847. height:33px;
  3848. padding:2px 2px 2px 2px;
  3849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3850. font-weight:400;
  3851. font-style:normal;
  3852. font-size:14px;
  3853. letter-spacing:normal;
  3854. color:#000000;
  3855. vertical-align:none;
  3856. text-align:right;
  3857. text-transform:none;
  3858. background-color:transparent;
  3859. border-color:transparent;
  3860. }
  3861. #u55452_input.hint.disabled {
  3862. position:absolute;
  3863. left:0px;
  3864. top:0px;
  3865. width:240px;
  3866. height:33px;
  3867. padding:2px 2px 2px 2px;
  3868. font-family:"Microsoft YaHei", sans-serif;
  3869. font-weight:400;
  3870. font-style:normal;
  3871. font-size:14px;
  3872. letter-spacing:normal;
  3873. color:#BCBCBC;
  3874. vertical-align:none;
  3875. text-align:right;
  3876. text-transform:none;
  3877. background-color:transparent;
  3878. border-color:transparent;
  3879. }
  3880. #u55452_div {
  3881. border-width:0px;
  3882. position:absolute;
  3883. left:0px;
  3884. top:0px;
  3885. width:240px;
  3886. height:33px;
  3887. background:inherit;
  3888. background-color:rgba(255, 255, 255, 1);
  3889. border-radius:0px;
  3890. filter:drop-shadow(none);
  3891. transition:none;
  3892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3893. font-weight:400;
  3894. font-style:normal;
  3895. font-size:14px;
  3896. text-align:right;
  3897. }
  3898. #u55452 {
  3899. border-width:0px;
  3900. position:absolute;
  3901. left:126px;
  3902. top:387px;
  3903. width:240px;
  3904. height:33px;
  3905. display:flex;
  3906. transition:none;
  3907. transform-origin:50% 50%;
  3908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3909. font-weight:400;
  3910. font-style:normal;
  3911. font-size:14px;
  3912. text-align:right;
  3913. }
  3914. #u55452 .text {
  3915. position:absolute;
  3916. align-self:center;
  3917. padding:2px 2px 2px 2px;
  3918. box-sizing:border-box;
  3919. width:100%;
  3920. }
  3921. #u55452_div.hint {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:0px;
  3925. top:0px;
  3926. width:240px;
  3927. height:33px;
  3928. background:inherit;
  3929. background-color:rgba(255, 255, 255, 1);
  3930. border-radius:0px;
  3931. filter:drop-shadow(none);
  3932. transition:none;
  3933. font-family:"Microsoft YaHei", sans-serif;
  3934. font-weight:400;
  3935. font-style:normal;
  3936. font-size:14px;
  3937. text-align:right;
  3938. }
  3939. #u55452.hint {
  3940. }
  3941. #u55452_div.disabled {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:0px;
  3945. top:0px;
  3946. width:240px;
  3947. height:33px;
  3948. background:inherit;
  3949. background-color:rgba(240, 240, 240, 1);
  3950. border-radius:0px;
  3951. filter:drop-shadow(none);
  3952. transition:none;
  3953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3954. font-weight:400;
  3955. font-style:normal;
  3956. font-size:14px;
  3957. text-align:right;
  3958. }
  3959. #u55452.disabled {
  3960. }
  3961. #u55452_div.hint.disabled {
  3962. border-width:0px;
  3963. position:absolute;
  3964. left:0px;
  3965. top:0px;
  3966. width:240px;
  3967. height:33px;
  3968. background:inherit;
  3969. background-color:rgba(240, 240, 240, 1);
  3970. border-radius:0px;
  3971. filter:drop-shadow(none);
  3972. transition:none;
  3973. font-family:"Microsoft YaHei", sans-serif;
  3974. font-weight:400;
  3975. font-style:normal;
  3976. font-size:14px;
  3977. text-align:right;
  3978. }
  3979. #u55452.hint.disabled {
  3980. }
  3981. #u55453 {
  3982. border-width:0px;
  3983. position:absolute;
  3984. left:0px;
  3985. top:0px;
  3986. width:0px;
  3987. height:0px;
  3988. }
  3989. #u55454_div {
  3990. border-width:0px;
  3991. position:absolute;
  3992. left:0px;
  3993. top:0px;
  3994. width:342px;
  3995. height:200px;
  3996. background:inherit;
  3997. background-color:rgba(255, 255, 255, 1);
  3998. border-left:0px;
  3999. border-top:0px;
  4000. border-right:0px;
  4001. border-radius:0px;
  4002. border-bottom-right-radius:0px;
  4003. border-bottom-left-radius:0px;
  4004. filter:drop-shadow(none);
  4005. transition:none;
  4006. }
  4007. #u55454 {
  4008. border-width:0px;
  4009. position:absolute;
  4010. left:51px;
  4011. top:693px;
  4012. width:342px;
  4013. height:200px;
  4014. display:flex;
  4015. transition:none;
  4016. transform-origin:50% 50%;
  4017. }
  4018. #u55454 .text {
  4019. position:absolute;
  4020. align-self:center;
  4021. padding:2px 2px 2px 2px;
  4022. box-sizing:border-box;
  4023. width:100%;
  4024. }
  4025. #u55454_text {
  4026. border-width:0px;
  4027. word-wrap:break-word;
  4028. text-transform:none;
  4029. visibility:hidden;
  4030. }
  4031. #u55455_div {
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:0px;
  4035. top:0px;
  4036. width:57px;
  4037. height:30px;
  4038. background:inherit;
  4039. background-color:rgba(255, 255, 255, 0);
  4040. border-left:0px;
  4041. border-top:0px;
  4042. border-right:0px;
  4043. border-radius:0px;
  4044. border-bottom-right-radius:0px;
  4045. border-bottom-left-radius:0px;
  4046. filter:drop-shadow(none);
  4047. transition:none;
  4048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4049. font-weight:400;
  4050. font-style:normal;
  4051. font-size:14px;
  4052. line-height:30px;
  4053. }
  4054. #u55455 {
  4055. border-width:0px;
  4056. position:absolute;
  4057. left:51px;
  4058. top:703px;
  4059. width:57px;
  4060. height:30px;
  4061. display:flex;
  4062. transition:none;
  4063. transform-origin:50% 50%;
  4064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4065. font-weight:400;
  4066. font-style:normal;
  4067. font-size:14px;
  4068. line-height:30px;
  4069. }
  4070. #u55455 .text {
  4071. position:absolute;
  4072. align-self:flex-start;
  4073. padding:0px 0px 0px 0px;
  4074. box-sizing:border-box;
  4075. width:100%;
  4076. }
  4077. #u55455_text {
  4078. border-width:0px;
  4079. white-space:nowrap;
  4080. text-transform:none;
  4081. }
  4082. #u55456_div {
  4083. border-width:0px;
  4084. position:absolute;
  4085. left:0px;
  4086. top:0px;
  4087. width:342px;
  4088. height:31px;
  4089. background:inherit;
  4090. background-color:rgba(255, 255, 255, 0);
  4091. border-radius:0px;
  4092. filter:drop-shadow(none);
  4093. transition:none;
  4094. font-size:12px;
  4095. color:#AAAAAA;
  4096. }
  4097. #u55456 {
  4098. border-width:0px;
  4099. position:absolute;
  4100. left:51px;
  4101. top:729px;
  4102. width:342px;
  4103. height:31px;
  4104. display:flex;
  4105. transition:none;
  4106. transform-origin:50% 50%;
  4107. font-size:12px;
  4108. color:#AAAAAA;
  4109. }
  4110. #u55456 .text {
  4111. position:absolute;
  4112. align-self:flex-start;
  4113. padding:0px 0px 0px 0px;
  4114. box-sizing:border-box;
  4115. width:100%;
  4116. }
  4117. #u55456_text {
  4118. border-width:0px;
  4119. word-wrap:break-word;
  4120. text-transform:none;
  4121. }
  4122. #u55457 {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:51px;
  4126. top:760px;
  4127. width:95px;
  4128. height:94px;
  4129. display:flex;
  4130. transition:none;
  4131. font-size:28px;
  4132. }
  4133. #u55457 .text {
  4134. position:absolute;
  4135. align-self:center;
  4136. padding:2px 2px 2px 2px;
  4137. box-sizing:border-box;
  4138. width:100%;
  4139. }
  4140. #u55457_img {
  4141. border-width:0px;
  4142. position:absolute;
  4143. left:0px;
  4144. top:0px;
  4145. width:95px;
  4146. height:94px;
  4147. }
  4148. #u55457_text {
  4149. border-width:0px;
  4150. word-wrap:break-word;
  4151. text-transform:none;
  4152. }
  4153. #u55458 {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:0px;
  4157. top:0px;
  4158. width:0px;
  4159. height:0px;
  4160. }
  4161. #u55459_div {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:0px;
  4165. top:0px;
  4166. width:376px;
  4167. height:60px;
  4168. background:inherit;
  4169. background-color:rgba(255, 255, 255, 1);
  4170. border-top:0px;
  4171. border-radius:22px;
  4172. border-top-left-radius:0px;
  4173. border-top-right-radius:0px;
  4174. filter:drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.34901960784313724));
  4175. transition:none;
  4176. }
  4177. #u55459 {
  4178. border-width:0px;
  4179. position:absolute;
  4180. left:29px;
  4181. top:1016px;
  4182. width:376px;
  4183. height:60px;
  4184. display:flex;
  4185. transition:none;
  4186. transform-origin:50% 50%;
  4187. }
  4188. #u55459 .text {
  4189. position:absolute;
  4190. align-self:center;
  4191. padding:2px 2px 2px 2px;
  4192. box-sizing:border-box;
  4193. width:100%;
  4194. }
  4195. #u55459_text {
  4196. border-width:0px;
  4197. word-wrap:break-word;
  4198. text-transform:none;
  4199. visibility:hidden;
  4200. }
  4201. #u55460_div {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:0px;
  4205. top:0px;
  4206. width:334px;
  4207. height:40px;
  4208. background:inherit;
  4209. background-color:rgba(215, 215, 215, 1);
  4210. border-radius:45px;
  4211. filter:drop-shadow(none);
  4212. transition:none;
  4213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4214. font-weight:400;
  4215. font-style:normal;
  4216. font-size:14px;
  4217. color:#FFFFFF;
  4218. }
  4219. #u55460 {
  4220. border-width:0px;
  4221. position:absolute;
  4222. left:50px;
  4223. top:1026px;
  4224. width:334px;
  4225. height:40px;
  4226. display:flex;
  4227. transition:none;
  4228. transform-origin:50% 50%;
  4229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4230. font-weight:400;
  4231. font-style:normal;
  4232. font-size:14px;
  4233. color:#FFFFFF;
  4234. }
  4235. #u55460 .text {
  4236. position:absolute;
  4237. align-self:center;
  4238. padding:2px 2px 2px 2px;
  4239. box-sizing:border-box;
  4240. width:100%;
  4241. }
  4242. #u55460_text {
  4243. border-width:0px;
  4244. word-wrap:break-word;
  4245. text-transform:none;
  4246. }
  4247. #u55461 {
  4248. border-width:0px;
  4249. position:absolute;
  4250. left:0px;
  4251. top:0px;
  4252. width:0px;
  4253. height:0px;
  4254. }
  4255. #u55462_div {
  4256. border-width:0px;
  4257. position:absolute;
  4258. left:0px;
  4259. top:0px;
  4260. width:342px;
  4261. height:50px;
  4262. background:inherit;
  4263. background-color:rgba(255, 255, 255, 1);
  4264. box-sizing:border-box;
  4265. border-width:1px;
  4266. border-style:solid;
  4267. border-color:rgba(215, 215, 215, 0.4980392156862745);
  4268. border-left:0px;
  4269. border-top:0px;
  4270. border-right:0px;
  4271. border-radius:0px;
  4272. border-bottom-right-radius:0px;
  4273. border-bottom-left-radius:0px;
  4274. filter:drop-shadow(none);
  4275. transition:none;
  4276. }
  4277. #u55462 {
  4278. border-width:0px;
  4279. position:absolute;
  4280. left:51px;
  4281. top:328px;
  4282. width:342px;
  4283. height:50px;
  4284. display:flex;
  4285. transition:none;
  4286. transform-origin:50% 50%;
  4287. }
  4288. #u55462 .text {
  4289. position:absolute;
  4290. align-self:center;
  4291. padding:2px 2px 2px 2px;
  4292. box-sizing:border-box;
  4293. width:100%;
  4294. }
  4295. #u55462_text {
  4296. border-width:0px;
  4297. word-wrap:break-word;
  4298. text-transform:none;
  4299. visibility:hidden;
  4300. }
  4301. #u55463_div {
  4302. border-width:0px;
  4303. position:absolute;
  4304. left:0px;
  4305. top:0px;
  4306. width:78px;
  4307. height:30px;
  4308. background:inherit;
  4309. background-color:rgba(255, 255, 255, 0);
  4310. border-left:0px;
  4311. border-top:0px;
  4312. border-right:0px;
  4313. border-radius:0px;
  4314. border-bottom-right-radius:0px;
  4315. border-bottom-left-radius:0px;
  4316. filter:drop-shadow(none);
  4317. transition:none;
  4318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4319. font-weight:400;
  4320. font-style:normal;
  4321. font-size:14px;
  4322. line-height:30px;
  4323. }
  4324. #u55463 {
  4325. border-width:0px;
  4326. position:absolute;
  4327. left:51px;
  4328. top:338px;
  4329. width:78px;
  4330. height:30px;
  4331. display:flex;
  4332. transition:none;
  4333. transform-origin:50% 50%;
  4334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4335. font-weight:400;
  4336. font-style:normal;
  4337. font-size:14px;
  4338. line-height:30px;
  4339. }
  4340. #u55463 .text {
  4341. position:absolute;
  4342. align-self:flex-start;
  4343. padding:0px 0px 0px 0px;
  4344. box-sizing:border-box;
  4345. width:100%;
  4346. }
  4347. #u55463_text {
  4348. border-width:0px;
  4349. white-space:nowrap;
  4350. text-transform:none;
  4351. }
  4352. #u55464_input {
  4353. position:absolute;
  4354. left:0px;
  4355. top:0px;
  4356. width:240px;
  4357. height:33px;
  4358. padding:2px 2px 2px 2px;
  4359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4360. font-weight:400;
  4361. font-style:normal;
  4362. font-size:14px;
  4363. letter-spacing:normal;
  4364. color:#000000;
  4365. vertical-align:none;
  4366. text-align:right;
  4367. text-transform:none;
  4368. background-color:transparent;
  4369. border-color:transparent;
  4370. }
  4371. #u55464_input.hint {
  4372. position:absolute;
  4373. left:0px;
  4374. top:0px;
  4375. width:240px;
  4376. height:33px;
  4377. padding:2px 2px 2px 2px;
  4378. font-family:"Microsoft YaHei", sans-serif;
  4379. font-weight:400;
  4380. font-style:normal;
  4381. font-size:14px;
  4382. letter-spacing:normal;
  4383. color:#BCBCBC;
  4384. vertical-align:none;
  4385. text-align:right;
  4386. text-transform:none;
  4387. background-color:transparent;
  4388. border-color:transparent;
  4389. }
  4390. #u55464_input.disabled {
  4391. position:absolute;
  4392. left:0px;
  4393. top:0px;
  4394. width:240px;
  4395. height:33px;
  4396. padding:2px 2px 2px 2px;
  4397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4398. font-weight:400;
  4399. font-style:normal;
  4400. font-size:14px;
  4401. letter-spacing:normal;
  4402. color:#000000;
  4403. vertical-align:none;
  4404. text-align:right;
  4405. text-transform:none;
  4406. background-color:transparent;
  4407. border-color:transparent;
  4408. }
  4409. #u55464_input.hint.disabled {
  4410. position:absolute;
  4411. left:0px;
  4412. top:0px;
  4413. width:240px;
  4414. height:33px;
  4415. padding:2px 2px 2px 2px;
  4416. font-family:"Microsoft YaHei", sans-serif;
  4417. font-weight:400;
  4418. font-style:normal;
  4419. font-size:14px;
  4420. letter-spacing:normal;
  4421. color:#BCBCBC;
  4422. vertical-align:none;
  4423. text-align:right;
  4424. text-transform:none;
  4425. background-color:transparent;
  4426. border-color:transparent;
  4427. }
  4428. #u55464_div {
  4429. border-width:0px;
  4430. position:absolute;
  4431. left:0px;
  4432. top:0px;
  4433. width:240px;
  4434. height:33px;
  4435. background:inherit;
  4436. background-color:rgba(255, 255, 255, 1);
  4437. border-radius:0px;
  4438. filter:drop-shadow(none);
  4439. transition:none;
  4440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4441. font-weight:400;
  4442. font-style:normal;
  4443. font-size:14px;
  4444. text-align:right;
  4445. }
  4446. #u55464 {
  4447. border-width:0px;
  4448. position:absolute;
  4449. left:126px;
  4450. top:337px;
  4451. width:240px;
  4452. height:33px;
  4453. display:flex;
  4454. transition:none;
  4455. transform-origin:50% 50%;
  4456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4457. font-weight:400;
  4458. font-style:normal;
  4459. font-size:14px;
  4460. text-align:right;
  4461. }
  4462. #u55464 .text {
  4463. position:absolute;
  4464. align-self:center;
  4465. padding:2px 2px 2px 2px;
  4466. box-sizing:border-box;
  4467. width:100%;
  4468. }
  4469. #u55464_div.hint {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:0px;
  4473. top:0px;
  4474. width:240px;
  4475. height:33px;
  4476. background:inherit;
  4477. background-color:rgba(255, 255, 255, 1);
  4478. border-radius:0px;
  4479. filter:drop-shadow(none);
  4480. transition:none;
  4481. font-family:"Microsoft YaHei", sans-serif;
  4482. font-weight:400;
  4483. font-style:normal;
  4484. font-size:14px;
  4485. text-align:right;
  4486. }
  4487. #u55464.hint {
  4488. }
  4489. #u55464_div.disabled {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:0px;
  4493. top:0px;
  4494. width:240px;
  4495. height:33px;
  4496. background:inherit;
  4497. background-color:rgba(240, 240, 240, 1);
  4498. border-radius:0px;
  4499. filter:drop-shadow(none);
  4500. transition:none;
  4501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4502. font-weight:400;
  4503. font-style:normal;
  4504. font-size:14px;
  4505. text-align:right;
  4506. }
  4507. #u55464.disabled {
  4508. }
  4509. #u55464_div.hint.disabled {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:0px;
  4513. top:0px;
  4514. width:240px;
  4515. height:33px;
  4516. background:inherit;
  4517. background-color:rgba(240, 240, 240, 1);
  4518. border-radius:0px;
  4519. filter:drop-shadow(none);
  4520. transition:none;
  4521. font-family:"Microsoft YaHei", sans-serif;
  4522. font-weight:400;
  4523. font-style:normal;
  4524. font-size:14px;
  4525. text-align:right;
  4526. }
  4527. #u55464.hint.disabled {
  4528. }
  4529. #u55465 {
  4530. border-width:0px;
  4531. position:absolute;
  4532. left:453px;
  4533. top:0px;
  4534. width:433px;
  4535. height:865px;
  4536. }
  4537. #u55466 {
  4538. border-width:0px;
  4539. position:absolute;
  4540. left:0px;
  4541. top:0px;
  4542. width:433px;
  4543. height:865px;
  4544. display:flex;
  4545. transition:none;
  4546. }
  4547. #u55466 .text {
  4548. position:absolute;
  4549. align-self:center;
  4550. padding:2px 2px 2px 2px;
  4551. box-sizing:border-box;
  4552. width:100%;
  4553. }
  4554. #u55466_img {
  4555. border-width:0px;
  4556. position:absolute;
  4557. left:0px;
  4558. top:0px;
  4559. width:433px;
  4560. height:865px;
  4561. }
  4562. #u55466_text {
  4563. border-width:0px;
  4564. word-wrap:break-word;
  4565. text-transform:none;
  4566. visibility:hidden;
  4567. }
  4568. #u55467_div {
  4569. border-width:0px;
  4570. position:absolute;
  4571. left:0px;
  4572. top:0px;
  4573. width:375px;
  4574. height:40px;
  4575. background:inherit;
  4576. background-color:rgba(255, 255, 255, 1);
  4577. box-sizing:border-box;
  4578. border-width:1px;
  4579. border-style:solid;
  4580. border-color:rgba(215, 215, 215, 1);
  4581. border-left:0px;
  4582. border-top:0px;
  4583. border-right:0px;
  4584. border-radius:0px;
  4585. border-bottom-right-radius:0px;
  4586. border-bottom-left-radius:0px;
  4587. filter:drop-shadow(none);
  4588. transition:none;
  4589. }
  4590. #u55467 {
  4591. border-width:0px;
  4592. position:absolute;
  4593. left:29px;
  4594. top:67px;
  4595. width:375px;
  4596. height:40px;
  4597. display:flex;
  4598. transition:none;
  4599. transform-origin:50% 50%;
  4600. }
  4601. #u55467 .text {
  4602. position:absolute;
  4603. align-self:center;
  4604. padding:2px 2px 2px 2px;
  4605. box-sizing:border-box;
  4606. width:100%;
  4607. }
  4608. #u55467_text {
  4609. border-width:0px;
  4610. word-wrap:break-word;
  4611. text-transform:none;
  4612. visibility:hidden;
  4613. }
  4614. #u55468 {
  4615. border-width:0px;
  4616. position:absolute;
  4617. left:0px;
  4618. top:0px;
  4619. width:0px;
  4620. height:0px;
  4621. }
  4622. #u55469_div {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:0px;
  4626. top:0px;
  4627. width:88px;
  4628. height:32px;
  4629. background:inherit;
  4630. background-color:rgba(255, 255, 255, 1);
  4631. box-sizing:border-box;
  4632. border-width:1px;
  4633. border-style:solid;
  4634. border-color:rgba(242, 242, 242, 1);
  4635. border-radius:33px;
  4636. filter:drop-shadow(none);
  4637. transition:none;
  4638. }
  4639. #u55469 {
  4640. border-width:0px;
  4641. position:absolute;
  4642. left:309px;
  4643. top:71px;
  4644. width:88px;
  4645. height:32px;
  4646. display:flex;
  4647. transition:none;
  4648. transform-origin:50% 50%;
  4649. }
  4650. #u55469 .text {
  4651. position:absolute;
  4652. align-self:center;
  4653. padding:2px 2px 2px 2px;
  4654. box-sizing:border-box;
  4655. width:100%;
  4656. }
  4657. #u55469_text {
  4658. border-width:0px;
  4659. word-wrap:break-word;
  4660. text-transform:none;
  4661. visibility:hidden;
  4662. }
  4663. #u55470 {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:0px;
  4667. top:0px;
  4668. width:0px;
  4669. height:0px;
  4670. }
  4671. #u55471 {
  4672. border-width:0px;
  4673. position:absolute;
  4674. left:372px;
  4675. top:78px;
  4676. width:18px;
  4677. height:18px;
  4678. display:flex;
  4679. transition:none;
  4680. }
  4681. #u55471 .text {
  4682. position:absolute;
  4683. align-self:center;
  4684. padding:2px 2px 2px 2px;
  4685. box-sizing:border-box;
  4686. width:100%;
  4687. }
  4688. #u55471_img {
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:0px;
  4692. top:0px;
  4693. width:18px;
  4694. height:18px;
  4695. }
  4696. #u55471_text {
  4697. border-width:0px;
  4698. word-wrap:break-word;
  4699. text-transform:none;
  4700. visibility:hidden;
  4701. }
  4702. #u55472 {
  4703. border-width:0px;
  4704. position:absolute;
  4705. left:378px;
  4706. top:84px;
  4707. width:6px;
  4708. height:6px;
  4709. display:flex;
  4710. transition:none;
  4711. }
  4712. #u55472 .text {
  4713. position:absolute;
  4714. align-self:center;
  4715. padding:2px 2px 2px 2px;
  4716. box-sizing:border-box;
  4717. width:100%;
  4718. }
  4719. #u55472_img {
  4720. border-width:0px;
  4721. position:absolute;
  4722. left:0px;
  4723. top:0px;
  4724. width:6px;
  4725. height:6px;
  4726. }
  4727. #u55472_text {
  4728. border-width:0px;
  4729. word-wrap:break-word;
  4730. text-transform:none;
  4731. visibility:hidden;
  4732. }
  4733. #u55473 {
  4734. border-width:0px;
  4735. position:absolute;
  4736. left:0px;
  4737. top:0px;
  4738. width:0px;
  4739. height:0px;
  4740. }
  4741. #u55474 {
  4742. border-width:0px;
  4743. position:absolute;
  4744. left:323px;
  4745. top:85px;
  4746. width:5px;
  4747. height:5px;
  4748. display:flex;
  4749. transition:none;
  4750. }
  4751. #u55474 .text {
  4752. position:absolute;
  4753. align-self:center;
  4754. padding:2px 2px 2px 2px;
  4755. box-sizing:border-box;
  4756. width:100%;
  4757. }
  4758. #u55474_img {
  4759. border-width:0px;
  4760. position:absolute;
  4761. left:0px;
  4762. top:0px;
  4763. width:5px;
  4764. height:5px;
  4765. }
  4766. #u55474_text {
  4767. border-width:0px;
  4768. word-wrap:break-word;
  4769. text-transform:none;
  4770. visibility:hidden;
  4771. }
  4772. #u55475 {
  4773. border-width:0px;
  4774. position:absolute;
  4775. left:339px;
  4776. top:85px;
  4777. width:5px;
  4778. height:5px;
  4779. display:flex;
  4780. transition:none;
  4781. }
  4782. #u55475 .text {
  4783. position:absolute;
  4784. align-self:center;
  4785. padding:2px 2px 2px 2px;
  4786. box-sizing:border-box;
  4787. width:100%;
  4788. }
  4789. #u55475_img {
  4790. border-width:0px;
  4791. position:absolute;
  4792. left:0px;
  4793. top:0px;
  4794. width:5px;
  4795. height:5px;
  4796. }
  4797. #u55475_text {
  4798. border-width:0px;
  4799. word-wrap:break-word;
  4800. text-transform:none;
  4801. visibility:hidden;
  4802. }
  4803. #u55476 {
  4804. border-width:0px;
  4805. position:absolute;
  4806. left:330px;
  4807. top:84px;
  4808. width:7px;
  4809. height:7px;
  4810. display:flex;
  4811. transition:none;
  4812. }
  4813. #u55476 .text {
  4814. position:absolute;
  4815. align-self:center;
  4816. padding:2px 2px 2px 2px;
  4817. box-sizing:border-box;
  4818. width:100%;
  4819. }
  4820. #u55476_img {
  4821. border-width:0px;
  4822. position:absolute;
  4823. left:0px;
  4824. top:0px;
  4825. width:7px;
  4826. height:7px;
  4827. }
  4828. #u55476_text {
  4829. border-width:0px;
  4830. word-wrap:break-word;
  4831. text-transform:none;
  4832. visibility:hidden;
  4833. }
  4834. #u55477 {
  4835. border-width:0px;
  4836. position:absolute;
  4837. left:347px;
  4838. top:87px;
  4839. width:18px;
  4840. height:1px;
  4841. display:flex;
  4842. -webkit-transform:rotate(90deg);
  4843. -moz-transform:rotate(90deg);
  4844. -ms-transform:rotate(90deg);
  4845. transform:rotate(90deg);
  4846. transition:none;
  4847. }
  4848. #u55477 .text {
  4849. position:absolute;
  4850. align-self:center;
  4851. padding:2px 2px 2px 2px;
  4852. box-sizing:border-box;
  4853. width:100%;
  4854. }
  4855. #u55477_img {
  4856. border-width:0px;
  4857. position:absolute;
  4858. left:0px;
  4859. top:0px;
  4860. width:19px;
  4861. height:2px;
  4862. }
  4863. #u55477_text {
  4864. border-width:0px;
  4865. word-wrap:break-word;
  4866. text-transform:none;
  4867. visibility:hidden;
  4868. }
  4869. #u55478 {
  4870. border-width:0px;
  4871. position:absolute;
  4872. left:29px;
  4873. top:24px;
  4874. width:375px;
  4875. height:44px;
  4876. display:flex;
  4877. transition:none;
  4878. }
  4879. #u55478 .text {
  4880. position:absolute;
  4881. align-self:center;
  4882. padding:2px 2px 2px 2px;
  4883. box-sizing:border-box;
  4884. width:100%;
  4885. }
  4886. #u55478_img {
  4887. border-width:0px;
  4888. position:absolute;
  4889. left:0px;
  4890. top:0px;
  4891. width:375px;
  4892. height:44px;
  4893. }
  4894. #u55478_text {
  4895. border-width:0px;
  4896. word-wrap:break-word;
  4897. text-transform:none;
  4898. visibility:hidden;
  4899. }
  4900. #u55479_div {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:0px;
  4904. top:0px;
  4905. width:375px;
  4906. height:50px;
  4907. background:inherit;
  4908. background-color:rgba(255, 255, 255, 1);
  4909. box-sizing:border-box;
  4910. border-width:1px;
  4911. border-style:solid;
  4912. border-color:rgba(242, 242, 242, 1);
  4913. border-radius:26px;
  4914. border-top-left-radius:0px;
  4915. border-top-right-radius:0px;
  4916. filter:drop-shadow(none);
  4917. transition:none;
  4918. }
  4919. #u55479 {
  4920. border-width:0px;
  4921. position:absolute;
  4922. left:29px;
  4923. top:788px;
  4924. width:375px;
  4925. height:50px;
  4926. display:flex;
  4927. transition:none;
  4928. transform-origin:50% 50%;
  4929. }
  4930. #u55479 .text {
  4931. position:absolute;
  4932. align-self:center;
  4933. padding:2px 2px 2px 2px;
  4934. box-sizing:border-box;
  4935. width:100%;
  4936. }
  4937. #u55479_text {
  4938. border-width:0px;
  4939. word-wrap:break-word;
  4940. text-transform:none;
  4941. visibility:hidden;
  4942. }
  4943. #u55480 {
  4944. border-width:0px;
  4945. position:absolute;
  4946. left:0px;
  4947. top:0px;
  4948. width:0px;
  4949. height:0px;
  4950. }
  4951. #u55481 {
  4952. border-width:0px;
  4953. position:absolute;
  4954. left:69px;
  4955. top:792px;
  4956. width:24px;
  4957. height:24px;
  4958. display:flex;
  4959. transition:none;
  4960. font-size:8px;
  4961. }
  4962. #u55481 .text {
  4963. position:absolute;
  4964. align-self:center;
  4965. padding:2px 2px 2px 2px;
  4966. box-sizing:border-box;
  4967. width:100%;
  4968. }
  4969. #u55481_img {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:0px;
  4973. top:0px;
  4974. width:24px;
  4975. height:24px;
  4976. }
  4977. #u55481_text {
  4978. border-width:0px;
  4979. word-wrap:break-word;
  4980. text-transform:none;
  4981. }
  4982. #u55482_div {
  4983. border-width:0px;
  4984. position:absolute;
  4985. left:0px;
  4986. top:0px;
  4987. width:25px;
  4988. height:17px;
  4989. background:inherit;
  4990. background-color:rgba(255, 255, 255, 0);
  4991. border-radius:0px;
  4992. filter:drop-shadow(none);
  4993. transition:none;
  4994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4995. font-weight:400;
  4996. font-style:normal;
  4997. font-size:12px;
  4998. }
  4999. #u55482 {
  5000. border-width:0px;
  5001. position:absolute;
  5002. left:69px;
  5003. top:817px;
  5004. width:25px;
  5005. height:17px;
  5006. display:flex;
  5007. transition:none;
  5008. transform-origin:50% 50%;
  5009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5010. font-weight:400;
  5011. font-style:normal;
  5012. font-size:12px;
  5013. }
  5014. #u55482 .text {
  5015. position:absolute;
  5016. align-self:flex-start;
  5017. padding:0px 0px 0px 0px;
  5018. box-sizing:border-box;
  5019. width:100%;
  5020. }
  5021. #u55482_text {
  5022. border-width:0px;
  5023. white-space:nowrap;
  5024. text-transform:none;
  5025. }
  5026. #u55483 {
  5027. border-width:0px;
  5028. position:absolute;
  5029. left:0px;
  5030. top:0px;
  5031. width:0px;
  5032. height:0px;
  5033. }
  5034. #u55484 {
  5035. border-width:0px;
  5036. position:absolute;
  5037. left:339px;
  5038. top:794px;
  5039. width:24px;
  5040. height:24px;
  5041. display:flex;
  5042. transition:none;
  5043. font-size:8px;
  5044. }
  5045. #u55484 .text {
  5046. position:absolute;
  5047. align-self:center;
  5048. padding:2px 2px 2px 2px;
  5049. box-sizing:border-box;
  5050. width:100%;
  5051. }
  5052. #u55484_img {
  5053. border-width:0px;
  5054. position:absolute;
  5055. left:0px;
  5056. top:0px;
  5057. width:24px;
  5058. height:24px;
  5059. }
  5060. #u55484_text {
  5061. border-width:0px;
  5062. word-wrap:break-word;
  5063. text-transform:none;
  5064. }
  5065. #u55485_div {
  5066. border-width:0px;
  5067. position:absolute;
  5068. left:0px;
  5069. top:0px;
  5070. width:25px;
  5071. height:17px;
  5072. background:inherit;
  5073. background-color:rgba(255, 255, 255, 0);
  5074. border-radius:0px;
  5075. filter:drop-shadow(none);
  5076. transition:none;
  5077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5078. font-weight:400;
  5079. font-style:normal;
  5080. font-size:12px;
  5081. }
  5082. #u55485 {
  5083. border-width:0px;
  5084. position:absolute;
  5085. left:339px;
  5086. top:819px;
  5087. width:25px;
  5088. height:17px;
  5089. display:flex;
  5090. transition:none;
  5091. transform-origin:50% 50%;
  5092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5093. font-weight:400;
  5094. font-style:normal;
  5095. font-size:12px;
  5096. }
  5097. #u55485 .text {
  5098. position:absolute;
  5099. align-self:flex-start;
  5100. padding:0px 0px 0px 0px;
  5101. box-sizing:border-box;
  5102. width:100%;
  5103. }
  5104. #u55485_text {
  5105. border-width:0px;
  5106. white-space:nowrap;
  5107. text-transform:none;
  5108. }
  5109. #u55486_div {
  5110. border-width:0px;
  5111. position:absolute;
  5112. left:0px;
  5113. top:0px;
  5114. width:375px;
  5115. height:681px;
  5116. background:inherit;
  5117. background-color:rgba(242, 242, 242, 0.4627450980392157);
  5118. border-radius:0px;
  5119. filter:drop-shadow(none);
  5120. transition:none;
  5121. }
  5122. #u55486 {
  5123. border-width:0px;
  5124. position:absolute;
  5125. left:29px;
  5126. top:107px;
  5127. width:375px;
  5128. height:681px;
  5129. display:flex;
  5130. transition:none;
  5131. transform-origin:50% 50%;
  5132. }
  5133. #u55486 .text {
  5134. position:absolute;
  5135. align-self:center;
  5136. padding:2px 2px 2px 2px;
  5137. box-sizing:border-box;
  5138. width:100%;
  5139. }
  5140. #u55486_text {
  5141. border-width:0px;
  5142. word-wrap:break-word;
  5143. text-transform:none;
  5144. visibility:hidden;
  5145. }
  5146. #u55487 {
  5147. border-width:0px;
  5148. position:absolute;
  5149. left:0px;
  5150. top:0px;
  5151. width:0px;
  5152. height:0px;
  5153. }
  5154. #u55488 {
  5155. border-width:0px;
  5156. position:absolute;
  5157. left:251px;
  5158. top:792px;
  5159. width:24px;
  5160. height:24px;
  5161. display:flex;
  5162. transition:none;
  5163. font-size:8px;
  5164. }
  5165. #u55488 .text {
  5166. position:absolute;
  5167. align-self:center;
  5168. padding:2px 2px 2px 2px;
  5169. box-sizing:border-box;
  5170. width:100%;
  5171. }
  5172. #u55488_img {
  5173. border-width:0px;
  5174. position:absolute;
  5175. left:0px;
  5176. top:0px;
  5177. width:24px;
  5178. height:24px;
  5179. }
  5180. #u55488_text {
  5181. border-width:0px;
  5182. word-wrap:break-word;
  5183. text-transform:none;
  5184. }
  5185. #u55489_div {
  5186. border-width:0px;
  5187. position:absolute;
  5188. left:0px;
  5189. top:0px;
  5190. width:37px;
  5191. height:17px;
  5192. background:inherit;
  5193. background-color:rgba(255, 255, 255, 0);
  5194. border-radius:0px;
  5195. filter:drop-shadow(none);
  5196. transition:none;
  5197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5198. font-weight:400;
  5199. font-style:normal;
  5200. font-size:12px;
  5201. }
  5202. #u55489 {
  5203. border-width:0px;
  5204. position:absolute;
  5205. left:245px;
  5206. top:817px;
  5207. width:37px;
  5208. height:17px;
  5209. display:flex;
  5210. transition:none;
  5211. transform-origin:50% 50%;
  5212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5213. font-weight:400;
  5214. font-style:normal;
  5215. font-size:12px;
  5216. }
  5217. #u55489 .text {
  5218. position:absolute;
  5219. align-self:flex-start;
  5220. padding:0px 0px 0px 0px;
  5221. box-sizing:border-box;
  5222. width:100%;
  5223. }
  5224. #u55489_text {
  5225. border-width:0px;
  5226. white-space:nowrap;
  5227. text-transform:none;
  5228. }
  5229. #u55490 {
  5230. border-width:0px;
  5231. position:absolute;
  5232. left:0px;
  5233. top:0px;
  5234. width:0px;
  5235. height:0px;
  5236. }
  5237. #u55491 {
  5238. border-width:0px;
  5239. position:absolute;
  5240. left:157px;
  5241. top:792px;
  5242. width:24px;
  5243. height:24px;
  5244. display:flex;
  5245. transition:none;
  5246. font-size:8px;
  5247. }
  5248. #u55491 .text {
  5249. position:absolute;
  5250. align-self:center;
  5251. padding:2px 2px 2px 2px;
  5252. box-sizing:border-box;
  5253. width:100%;
  5254. }
  5255. #u55491_img {
  5256. border-width:0px;
  5257. position:absolute;
  5258. left:0px;
  5259. top:0px;
  5260. width:24px;
  5261. height:24px;
  5262. }
  5263. #u55491_text {
  5264. border-width:0px;
  5265. word-wrap:break-word;
  5266. text-transform:none;
  5267. }
  5268. #u55492_div {
  5269. border-width:0px;
  5270. position:absolute;
  5271. left:0px;
  5272. top:0px;
  5273. width:37px;
  5274. height:17px;
  5275. background:inherit;
  5276. background-color:rgba(255, 255, 255, 0);
  5277. border-radius:0px;
  5278. filter:drop-shadow(none);
  5279. transition:none;
  5280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5281. font-weight:400;
  5282. font-style:normal;
  5283. font-size:12px;
  5284. }
  5285. #u55492 {
  5286. border-width:0px;
  5287. position:absolute;
  5288. left:151px;
  5289. top:817px;
  5290. width:37px;
  5291. height:17px;
  5292. display:flex;
  5293. transition:none;
  5294. transform-origin:50% 50%;
  5295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5296. font-weight:400;
  5297. font-style:normal;
  5298. font-size:12px;
  5299. }
  5300. #u55492 .text {
  5301. position:absolute;
  5302. align-self:flex-start;
  5303. padding:0px 0px 0px 0px;
  5304. box-sizing:border-box;
  5305. width:100%;
  5306. }
  5307. #u55492_text {
  5308. border-width:0px;
  5309. white-space:nowrap;
  5310. text-transform:none;
  5311. }
  5312. #u55493_div {
  5313. border-width:0px;
  5314. position:absolute;
  5315. left:0px;
  5316. top:0px;
  5317. width:375px;
  5318. height:971px;
  5319. background:inherit;
  5320. background-color:rgba(242, 242, 242, 1);
  5321. border-top:0px;
  5322. border-radius:25px;
  5323. border-top-left-radius:0px;
  5324. border-top-right-radius:0px;
  5325. filter:drop-shadow(none);
  5326. transition:none;
  5327. }
  5328. #u55493 {
  5329. border-width:0px;
  5330. position:absolute;
  5331. left:482px;
  5332. top:105px;
  5333. width:375px;
  5334. height:971px;
  5335. display:flex;
  5336. transition:none;
  5337. transform-origin:50% 50%;
  5338. }
  5339. #u55493 .text {
  5340. position:absolute;
  5341. align-self:center;
  5342. padding:2px 2px 2px 2px;
  5343. box-sizing:border-box;
  5344. width:100%;
  5345. }
  5346. #u55493_text {
  5347. border-width:0px;
  5348. word-wrap:break-word;
  5349. text-transform:none;
  5350. visibility:hidden;
  5351. }
  5352. #u55494_div {
  5353. border-width:0px;
  5354. position:absolute;
  5355. left:0px;
  5356. top:0px;
  5357. width:375px;
  5358. height:156px;
  5359. background:inherit;
  5360. background-color:rgba(255, 255, 255, 1);
  5361. border-top:0px;
  5362. border-radius:0px;
  5363. border-top-left-radius:0px;
  5364. border-top-right-radius:0px;
  5365. filter:drop-shadow(none);
  5366. transition:none;
  5367. }
  5368. #u55494 {
  5369. border-width:0px;
  5370. position:absolute;
  5371. left:482px;
  5372. top:106px;
  5373. width:375px;
  5374. height:156px;
  5375. display:flex;
  5376. transition:none;
  5377. transform-origin:50% 50%;
  5378. }
  5379. #u55494 .text {
  5380. position:absolute;
  5381. align-self:center;
  5382. padding:2px 2px 2px 2px;
  5383. box-sizing:border-box;
  5384. width:100%;
  5385. }
  5386. #u55494_text {
  5387. border-width:0px;
  5388. word-wrap:break-word;
  5389. text-transform:none;
  5390. visibility:hidden;
  5391. }
  5392. #u55495 {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:495px;
  5396. top:79px;
  5397. width:11px;
  5398. height:18px;
  5399. display:flex;
  5400. transition:none;
  5401. }
  5402. #u55495 .text {
  5403. position:absolute;
  5404. align-self:center;
  5405. padding:2px 2px 2px 2px;
  5406. box-sizing:border-box;
  5407. width:100%;
  5408. }
  5409. #u55495_img {
  5410. border-width:0px;
  5411. position:absolute;
  5412. left:0px;
  5413. top:0px;
  5414. width:11px;
  5415. height:18px;
  5416. }
  5417. #u55495_text {
  5418. border-width:0px;
  5419. word-wrap:break-word;
  5420. text-transform:none;
  5421. visibility:hidden;
  5422. }
  5423. #u55496_div {
  5424. border-width:0px;
  5425. position:absolute;
  5426. left:0px;
  5427. top:0px;
  5428. width:73px;
  5429. height:30px;
  5430. background:inherit;
  5431. background-color:rgba(255, 255, 255, 0);
  5432. border-left:0px;
  5433. border-top:0px;
  5434. border-right:0px;
  5435. border-radius:0px;
  5436. border-bottom-right-radius:0px;
  5437. border-bottom-left-radius:0px;
  5438. filter:drop-shadow(none);
  5439. transition:none;
  5440. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5441. font-weight:500;
  5442. font-style:normal;
  5443. font-size:18px;
  5444. line-height:30px;
  5445. }
  5446. #u55496 {
  5447. border-width:0px;
  5448. position:absolute;
  5449. left:501px;
  5450. top:120px;
  5451. width:73px;
  5452. height:30px;
  5453. display:flex;
  5454. transition:none;
  5455. transform-origin:50% 50%;
  5456. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5457. font-weight:500;
  5458. font-style:normal;
  5459. font-size:18px;
  5460. line-height:30px;
  5461. }
  5462. #u55496 .text {
  5463. position:absolute;
  5464. align-self:flex-start;
  5465. padding:0px 0px 0px 0px;
  5466. box-sizing:border-box;
  5467. width:100%;
  5468. }
  5469. #u55496_text {
  5470. border-width:0px;
  5471. white-space:nowrap;
  5472. text-transform:none;
  5473. }
  5474. #u55497 {
  5475. border-width:0px;
  5476. position:absolute;
  5477. left:0px;
  5478. top:0px;
  5479. width:0px;
  5480. height:0px;
  5481. }
  5482. #u55498_div {
  5483. border-width:0px;
  5484. position:absolute;
  5485. left:0px;
  5486. top:0px;
  5487. width:375px;
  5488. height:50px;
  5489. background:inherit;
  5490. background-color:rgba(255, 255, 255, 1);
  5491. box-sizing:border-box;
  5492. border-width:1px;
  5493. border-style:solid;
  5494. border-color:rgba(215, 215, 215, 0.4980392156862745);
  5495. border-left:0px;
  5496. border-right:0px;
  5497. border-radius:0px;
  5498. border-top-left-radius:0px;
  5499. border-top-right-radius:0px;
  5500. border-bottom-right-radius:0px;
  5501. border-bottom-left-radius:0px;
  5502. filter:drop-shadow(none);
  5503. transition:none;
  5504. }
  5505. #u55498 {
  5506. border-width:0px;
  5507. position:absolute;
  5508. left:482px;
  5509. top:162px;
  5510. width:375px;
  5511. height:50px;
  5512. display:flex;
  5513. transition:none;
  5514. transform-origin:50% 50%;
  5515. }
  5516. #u55498 .text {
  5517. position:absolute;
  5518. align-self:center;
  5519. padding:2px 2px 2px 2px;
  5520. box-sizing:border-box;
  5521. width:100%;
  5522. }
  5523. #u55498_text {
  5524. border-width:0px;
  5525. word-wrap:break-word;
  5526. text-transform:none;
  5527. visibility:hidden;
  5528. }
  5529. #u55499_div {
  5530. border-width:0px;
  5531. position:absolute;
  5532. left:0px;
  5533. top:0px;
  5534. width:64px;
  5535. height:30px;
  5536. background:inherit;
  5537. background-color:rgba(255, 255, 255, 0);
  5538. border-left:0px;
  5539. border-top:0px;
  5540. border-right:0px;
  5541. border-radius:0px;
  5542. border-bottom-right-radius:0px;
  5543. border-bottom-left-radius:0px;
  5544. filter:drop-shadow(none);
  5545. transition:none;
  5546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5547. font-weight:400;
  5548. font-style:normal;
  5549. font-size:14px;
  5550. line-height:30px;
  5551. }
  5552. #u55499 {
  5553. border-width:0px;
  5554. position:absolute;
  5555. left:506px;
  5556. top:172px;
  5557. width:64px;
  5558. height:30px;
  5559. display:flex;
  5560. transition:none;
  5561. transform-origin:50% 50%;
  5562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5563. font-weight:400;
  5564. font-style:normal;
  5565. font-size:14px;
  5566. line-height:30px;
  5567. }
  5568. #u55499 .text {
  5569. position:absolute;
  5570. align-self:flex-start;
  5571. padding:0px 0px 0px 0px;
  5572. box-sizing:border-box;
  5573. width:100%;
  5574. }
  5575. #u55499_text {
  5576. border-width:0px;
  5577. white-space:nowrap;
  5578. text-transform:none;
  5579. }
  5580. #u55500 {
  5581. border-width:0px;
  5582. position:absolute;
  5583. left:833px;
  5584. top:179px;
  5585. width:8px;
  5586. height:13px;
  5587. display:flex;
  5588. -webkit-transform:rotate(180deg);
  5589. -moz-transform:rotate(180deg);
  5590. -ms-transform:rotate(180deg);
  5591. transform:rotate(180deg);
  5592. transition:none;
  5593. }
  5594. #u55500 .text {
  5595. position:absolute;
  5596. align-self:center;
  5597. padding:2px 2px 2px 2px;
  5598. box-sizing:border-box;
  5599. width:100%;
  5600. }
  5601. #u55500_img {
  5602. border-width:0px;
  5603. position:absolute;
  5604. left:0px;
  5605. top:0px;
  5606. width:8px;
  5607. height:13px;
  5608. }
  5609. #u55500_text {
  5610. border-width:0px;
  5611. word-wrap:break-word;
  5612. text-transform:none;
  5613. visibility:hidden;
  5614. }
  5615. #u55501_div {
  5616. border-width:0px;
  5617. position:absolute;
  5618. left:0px;
  5619. top:0px;
  5620. width:161px;
  5621. height:30px;
  5622. background:inherit;
  5623. background-color:rgba(255, 255, 255, 0);
  5624. border-left:0px;
  5625. border-top:0px;
  5626. border-right:0px;
  5627. border-radius:0px;
  5628. border-bottom-right-radius:0px;
  5629. border-bottom-left-radius:0px;
  5630. filter:drop-shadow(none);
  5631. transition:none;
  5632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5633. font-weight:400;
  5634. font-style:normal;
  5635. font-size:14px;
  5636. text-align:right;
  5637. line-height:30px;
  5638. }
  5639. #u55501 {
  5640. border-width:0px;
  5641. position:absolute;
  5642. left:664px;
  5643. top:172px;
  5644. width:161px;
  5645. height:30px;
  5646. display:flex;
  5647. transition:none;
  5648. transform-origin:50% 50%;
  5649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5650. font-weight:400;
  5651. font-style:normal;
  5652. font-size:14px;
  5653. text-align:right;
  5654. line-height:30px;
  5655. }
  5656. #u55501 .text {
  5657. position:absolute;
  5658. align-self:flex-start;
  5659. padding:0px 0px 0px 0px;
  5660. box-sizing:border-box;
  5661. width:100%;
  5662. }
  5663. #u55501_text {
  5664. border-width:0px;
  5665. white-space:nowrap;
  5666. text-transform:none;
  5667. }
  5668. #u55502 {
  5669. border-width:0px;
  5670. position:absolute;
  5671. left:0px;
  5672. top:0px;
  5673. width:0px;
  5674. height:0px;
  5675. }
  5676. #u55503_div {
  5677. border-width:0px;
  5678. position:absolute;
  5679. left:0px;
  5680. top:0px;
  5681. width:375px;
  5682. height:50px;
  5683. background:inherit;
  5684. background-color:rgba(255, 255, 255, 1);
  5685. border-left:0px;
  5686. border-right:0px;
  5687. border-radius:0px;
  5688. border-top-left-radius:0px;
  5689. border-top-right-radius:0px;
  5690. border-bottom-right-radius:0px;
  5691. border-bottom-left-radius:0px;
  5692. filter:drop-shadow(none);
  5693. transition:none;
  5694. }
  5695. #u55503 {
  5696. border-width:0px;
  5697. position:absolute;
  5698. left:482px;
  5699. top:212px;
  5700. width:375px;
  5701. height:50px;
  5702. display:flex;
  5703. transition:none;
  5704. transform-origin:50% 50%;
  5705. }
  5706. #u55503 .text {
  5707. position:absolute;
  5708. align-self:center;
  5709. padding:2px 2px 2px 2px;
  5710. box-sizing:border-box;
  5711. width:100%;
  5712. }
  5713. #u55503_text {
  5714. border-width:0px;
  5715. word-wrap:break-word;
  5716. text-transform:none;
  5717. visibility:hidden;
  5718. }
  5719. #u55504_div {
  5720. border-width:0px;
  5721. position:absolute;
  5722. left:0px;
  5723. top:0px;
  5724. width:64px;
  5725. height:30px;
  5726. background:inherit;
  5727. background-color:rgba(255, 255, 255, 0);
  5728. border-left:0px;
  5729. border-top:0px;
  5730. border-right:0px;
  5731. border-radius:0px;
  5732. border-bottom-right-radius:0px;
  5733. border-bottom-left-radius:0px;
  5734. filter:drop-shadow(none);
  5735. transition:none;
  5736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5737. font-weight:400;
  5738. font-style:normal;
  5739. font-size:14px;
  5740. line-height:30px;
  5741. }
  5742. #u55504 {
  5743. border-width:0px;
  5744. position:absolute;
  5745. left:506px;
  5746. top:222px;
  5747. width:64px;
  5748. height:30px;
  5749. display:flex;
  5750. transition:none;
  5751. transform-origin:50% 50%;
  5752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5753. font-weight:400;
  5754. font-style:normal;
  5755. font-size:14px;
  5756. line-height:30px;
  5757. }
  5758. #u55504 .text {
  5759. position:absolute;
  5760. align-self:flex-start;
  5761. padding:0px 0px 0px 0px;
  5762. box-sizing:border-box;
  5763. width:100%;
  5764. }
  5765. #u55504_text {
  5766. border-width:0px;
  5767. white-space:nowrap;
  5768. text-transform:none;
  5769. }
  5770. #u55505 {
  5771. border-width:0px;
  5772. position:absolute;
  5773. left:833px;
  5774. top:231px;
  5775. width:8px;
  5776. height:13px;
  5777. display:flex;
  5778. -webkit-transform:rotate(180deg);
  5779. -moz-transform:rotate(180deg);
  5780. -ms-transform:rotate(180deg);
  5781. transform:rotate(180deg);
  5782. transition:none;
  5783. }
  5784. #u55505 .text {
  5785. position:absolute;
  5786. align-self:center;
  5787. padding:2px 2px 2px 2px;
  5788. box-sizing:border-box;
  5789. width:100%;
  5790. }
  5791. #u55505_img {
  5792. border-width:0px;
  5793. position:absolute;
  5794. left:0px;
  5795. top:0px;
  5796. width:8px;
  5797. height:13px;
  5798. }
  5799. #u55505_text {
  5800. border-width:0px;
  5801. word-wrap:break-word;
  5802. text-transform:none;
  5803. visibility:hidden;
  5804. }
  5805. #u55506_div {
  5806. border-width:0px;
  5807. position:absolute;
  5808. left:0px;
  5809. top:0px;
  5810. width:29px;
  5811. height:30px;
  5812. background:inherit;
  5813. background-color:rgba(255, 255, 255, 0);
  5814. border-left:0px;
  5815. border-top:0px;
  5816. border-right:0px;
  5817. border-radius:0px;
  5818. border-bottom-right-radius:0px;
  5819. border-bottom-left-radius:0px;
  5820. filter:drop-shadow(none);
  5821. transition:none;
  5822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5823. font-weight:400;
  5824. font-style:normal;
  5825. font-size:14px;
  5826. text-align:right;
  5827. line-height:30px;
  5828. }
  5829. #u55506 {
  5830. border-width:0px;
  5831. position:absolute;
  5832. left:796px;
  5833. top:222px;
  5834. width:29px;
  5835. height:30px;
  5836. display:flex;
  5837. transition:none;
  5838. transform-origin:50% 50%;
  5839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5840. font-weight:400;
  5841. font-style:normal;
  5842. font-size:14px;
  5843. text-align:right;
  5844. line-height:30px;
  5845. }
  5846. #u55506 .text {
  5847. position:absolute;
  5848. align-self:flex-start;
  5849. padding:0px 0px 0px 0px;
  5850. box-sizing:border-box;
  5851. width:100%;
  5852. }
  5853. #u55506_text {
  5854. border-width:0px;
  5855. white-space:nowrap;
  5856. text-transform:none;
  5857. }
  5858. #u55507_div {
  5859. border-width:0px;
  5860. position:absolute;
  5861. left:0px;
  5862. top:0px;
  5863. width:375px;
  5864. height:733px;
  5865. background:inherit;
  5866. background-color:rgba(255, 255, 255, 1);
  5867. border-left:0px;
  5868. border-right:0px;
  5869. border-radius:0px;
  5870. border-top-left-radius:0px;
  5871. border-top-right-radius:0px;
  5872. border-bottom-right-radius:0px;
  5873. border-bottom-left-radius:0px;
  5874. filter:drop-shadow(none);
  5875. transition:none;
  5876. }
  5877. #u55507 {
  5878. border-width:0px;
  5879. position:absolute;
  5880. left:482px;
  5881. top:273px;
  5882. width:375px;
  5883. height:733px;
  5884. display:flex;
  5885. transition:none;
  5886. transform-origin:50% 50%;
  5887. }
  5888. #u55507 .text {
  5889. position:absolute;
  5890. align-self:center;
  5891. padding:2px 2px 2px 2px;
  5892. box-sizing:border-box;
  5893. width:100%;
  5894. }
  5895. #u55507_text {
  5896. border-width:0px;
  5897. word-wrap:break-word;
  5898. text-transform:none;
  5899. visibility:hidden;
  5900. }
  5901. #u55508_div {
  5902. border-width:0px;
  5903. position:absolute;
  5904. left:0px;
  5905. top:0px;
  5906. width:73px;
  5907. height:30px;
  5908. background:inherit;
  5909. background-color:rgba(255, 255, 255, 0);
  5910. border-left:0px;
  5911. border-top:0px;
  5912. border-right:0px;
  5913. border-radius:0px;
  5914. border-bottom-right-radius:0px;
  5915. border-bottom-left-radius:0px;
  5916. filter:drop-shadow(none);
  5917. transition:none;
  5918. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5919. font-weight:500;
  5920. font-style:normal;
  5921. font-size:18px;
  5922. line-height:30px;
  5923. }
  5924. #u55508 {
  5925. border-width:0px;
  5926. position:absolute;
  5927. left:504px;
  5928. top:288px;
  5929. width:73px;
  5930. height:30px;
  5931. display:flex;
  5932. transition:none;
  5933. transform-origin:50% 50%;
  5934. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5935. font-weight:500;
  5936. font-style:normal;
  5937. font-size:18px;
  5938. line-height:30px;
  5939. }
  5940. #u55508 .text {
  5941. position:absolute;
  5942. align-self:flex-start;
  5943. padding:0px 0px 0px 0px;
  5944. box-sizing:border-box;
  5945. width:100%;
  5946. }
  5947. #u55508_text {
  5948. border-width:0px;
  5949. white-space:nowrap;
  5950. text-transform:none;
  5951. }
  5952. #u55509 {
  5953. border-width:0px;
  5954. position:absolute;
  5955. left:0px;
  5956. top:0px;
  5957. width:0px;
  5958. height:0px;
  5959. }
  5960. #u55510_div {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:0px;
  5964. top:0px;
  5965. width:342px;
  5966. height:160px;
  5967. background:inherit;
  5968. background-color:rgba(255, 255, 255, 1);
  5969. box-sizing:border-box;
  5970. border-width:1px;
  5971. border-style:solid;
  5972. border-color:rgba(215, 215, 215, 0.4980392156862745);
  5973. border-left:0px;
  5974. border-top:0px;
  5975. border-right:0px;
  5976. border-radius:0px;
  5977. border-bottom-right-radius:0px;
  5978. border-bottom-left-radius:0px;
  5979. filter:drop-shadow(none);
  5980. transition:none;
  5981. }
  5982. #u55510 {
  5983. border-width:0px;
  5984. position:absolute;
  5985. left:504px;
  5986. top:323px;
  5987. width:342px;
  5988. height:160px;
  5989. display:flex;
  5990. transition:none;
  5991. transform-origin:50% 50%;
  5992. }
  5993. #u55510 .text {
  5994. position:absolute;
  5995. align-self:center;
  5996. padding:2px 2px 2px 2px;
  5997. box-sizing:border-box;
  5998. width:100%;
  5999. }
  6000. #u55510_text {
  6001. border-width:0px;
  6002. word-wrap:break-word;
  6003. text-transform:none;
  6004. visibility:hidden;
  6005. }
  6006. #u55511_div {
  6007. border-width:0px;
  6008. position:absolute;
  6009. left:0px;
  6010. top:0px;
  6011. width:64px;
  6012. height:30px;
  6013. background:inherit;
  6014. background-color:rgba(255, 255, 255, 0);
  6015. border-left:0px;
  6016. border-top:0px;
  6017. border-right:0px;
  6018. border-radius:0px;
  6019. border-bottom-right-radius:0px;
  6020. border-bottom-left-radius:0px;
  6021. filter:drop-shadow(none);
  6022. transition:none;
  6023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6024. font-weight:400;
  6025. font-style:normal;
  6026. font-size:14px;
  6027. line-height:30px;
  6028. }
  6029. #u55511 {
  6030. border-width:0px;
  6031. position:absolute;
  6032. left:504px;
  6033. top:333px;
  6034. width:64px;
  6035. height:30px;
  6036. display:flex;
  6037. transition:none;
  6038. transform-origin:50% 50%;
  6039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6040. font-weight:400;
  6041. font-style:normal;
  6042. font-size:14px;
  6043. line-height:30px;
  6044. }
  6045. #u55511 .text {
  6046. position:absolute;
  6047. align-self:flex-start;
  6048. padding:0px 0px 0px 0px;
  6049. box-sizing:border-box;
  6050. width:100%;
  6051. }
  6052. #u55511_text {
  6053. border-width:0px;
  6054. white-space:nowrap;
  6055. text-transform:none;
  6056. }
  6057. #u55512 {
  6058. border-width:0px;
  6059. position:absolute;
  6060. left:504px;
  6061. top:363px;
  6062. width:331px;
  6063. height:110px;
  6064. display:flex;
  6065. transition:none;
  6066. }
  6067. #u55512 .text {
  6068. position:absolute;
  6069. align-self:center;
  6070. padding:2px 2px 2px 2px;
  6071. box-sizing:border-box;
  6072. width:100%;
  6073. }
  6074. #u55512_img {
  6075. border-width:0px;
  6076. position:absolute;
  6077. left:0px;
  6078. top:0px;
  6079. width:331px;
  6080. height:110px;
  6081. }
  6082. #u55512_text {
  6083. border-width:0px;
  6084. word-wrap:break-word;
  6085. text-transform:none;
  6086. visibility:hidden;
  6087. }
  6088. #u55513 {
  6089. border-width:0px;
  6090. position:absolute;
  6091. left:0px;
  6092. top:0px;
  6093. width:0px;
  6094. height:0px;
  6095. }
  6096. #u55514_div {
  6097. border-width:0px;
  6098. position:absolute;
  6099. left:0px;
  6100. top:0px;
  6101. width:342px;
  6102. height:50px;
  6103. background:inherit;
  6104. background-color:rgba(255, 255, 255, 1);
  6105. box-sizing:border-box;
  6106. border-width:1px;
  6107. border-style:solid;
  6108. border-color:rgba(215, 215, 215, 0.4980392156862745);
  6109. border-left:0px;
  6110. border-top:0px;
  6111. border-right:0px;
  6112. border-radius:0px;
  6113. border-bottom-right-radius:0px;
  6114. border-bottom-left-radius:0px;
  6115. filter:drop-shadow(none);
  6116. transition:none;
  6117. }
  6118. #u55514 {
  6119. border-width:0px;
  6120. position:absolute;
  6121. left:504px;
  6122. top:533px;
  6123. width:342px;
  6124. height:50px;
  6125. display:flex;
  6126. transition:none;
  6127. transform-origin:50% 50%;
  6128. }
  6129. #u55514 .text {
  6130. position:absolute;
  6131. align-self:center;
  6132. padding:2px 2px 2px 2px;
  6133. box-sizing:border-box;
  6134. width:100%;
  6135. }
  6136. #u55514_text {
  6137. border-width:0px;
  6138. word-wrap:break-word;
  6139. text-transform:none;
  6140. visibility:hidden;
  6141. }
  6142. #u55515_div {
  6143. border-width:0px;
  6144. position:absolute;
  6145. left:0px;
  6146. top:0px;
  6147. width:78px;
  6148. height:30px;
  6149. background:inherit;
  6150. background-color:rgba(255, 255, 255, 0);
  6151. border-left:0px;
  6152. border-top:0px;
  6153. border-right:0px;
  6154. border-radius:0px;
  6155. border-bottom-right-radius:0px;
  6156. border-bottom-left-radius:0px;
  6157. filter:drop-shadow(none);
  6158. transition:none;
  6159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6160. font-weight:400;
  6161. font-style:normal;
  6162. font-size:14px;
  6163. line-height:30px;
  6164. }
  6165. #u55515 {
  6166. border-width:0px;
  6167. position:absolute;
  6168. left:504px;
  6169. top:543px;
  6170. width:78px;
  6171. height:30px;
  6172. display:flex;
  6173. transition:none;
  6174. transform-origin:50% 50%;
  6175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6176. font-weight:400;
  6177. font-style:normal;
  6178. font-size:14px;
  6179. line-height:30px;
  6180. }
  6181. #u55515 .text {
  6182. position:absolute;
  6183. align-self:flex-start;
  6184. padding:0px 0px 0px 0px;
  6185. box-sizing:border-box;
  6186. width:100%;
  6187. }
  6188. #u55515_text {
  6189. border-width:0px;
  6190. white-space:nowrap;
  6191. text-transform:none;
  6192. }
  6193. #u55516_input {
  6194. position:absolute;
  6195. left:0px;
  6196. top:0px;
  6197. width:240px;
  6198. height:33px;
  6199. padding:2px 2px 2px 2px;
  6200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6201. font-weight:400;
  6202. font-style:normal;
  6203. font-size:14px;
  6204. letter-spacing:normal;
  6205. color:#000000;
  6206. vertical-align:none;
  6207. text-align:right;
  6208. text-transform:none;
  6209. background-color:transparent;
  6210. border-color:transparent;
  6211. }
  6212. #u55516_input.hint {
  6213. position:absolute;
  6214. left:0px;
  6215. top:0px;
  6216. width:240px;
  6217. height:33px;
  6218. padding:2px 2px 2px 2px;
  6219. font-family:"Microsoft YaHei", sans-serif;
  6220. font-weight:400;
  6221. font-style:normal;
  6222. font-size:14px;
  6223. letter-spacing:normal;
  6224. color:#BCBCBC;
  6225. vertical-align:none;
  6226. text-align:right;
  6227. text-transform:none;
  6228. background-color:transparent;
  6229. border-color:transparent;
  6230. }
  6231. #u55516_input.disabled {
  6232. position:absolute;
  6233. left:0px;
  6234. top:0px;
  6235. width:240px;
  6236. height:33px;
  6237. padding:2px 2px 2px 2px;
  6238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6239. font-weight:400;
  6240. font-style:normal;
  6241. font-size:14px;
  6242. letter-spacing:normal;
  6243. color:#000000;
  6244. vertical-align:none;
  6245. text-align:right;
  6246. text-transform:none;
  6247. background-color:transparent;
  6248. border-color:transparent;
  6249. }
  6250. #u55516_input.hint.disabled {
  6251. position:absolute;
  6252. left:0px;
  6253. top:0px;
  6254. width:240px;
  6255. height:33px;
  6256. padding:2px 2px 2px 2px;
  6257. font-family:"Microsoft YaHei", sans-serif;
  6258. font-weight:400;
  6259. font-style:normal;
  6260. font-size:14px;
  6261. letter-spacing:normal;
  6262. color:#BCBCBC;
  6263. vertical-align:none;
  6264. text-align:right;
  6265. text-transform:none;
  6266. background-color:transparent;
  6267. border-color:transparent;
  6268. }
  6269. #u55516_div {
  6270. border-width:0px;
  6271. position:absolute;
  6272. left:0px;
  6273. top:0px;
  6274. width:240px;
  6275. height:33px;
  6276. background:inherit;
  6277. background-color:rgba(255, 255, 255, 1);
  6278. border-radius:0px;
  6279. filter:drop-shadow(none);
  6280. transition:none;
  6281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6282. font-weight:400;
  6283. font-style:normal;
  6284. font-size:14px;
  6285. text-align:right;
  6286. }
  6287. #u55516 {
  6288. border-width:0px;
  6289. position:absolute;
  6290. left:579px;
  6291. top:542px;
  6292. width:240px;
  6293. height:33px;
  6294. display:flex;
  6295. transition:none;
  6296. transform-origin:50% 50%;
  6297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6298. font-weight:400;
  6299. font-style:normal;
  6300. font-size:14px;
  6301. text-align:right;
  6302. }
  6303. #u55516 .text {
  6304. position:absolute;
  6305. align-self:center;
  6306. padding:2px 2px 2px 2px;
  6307. box-sizing:border-box;
  6308. width:100%;
  6309. }
  6310. #u55516_div.hint {
  6311. border-width:0px;
  6312. position:absolute;
  6313. left:0px;
  6314. top:0px;
  6315. width:240px;
  6316. height:33px;
  6317. background:inherit;
  6318. background-color:rgba(255, 255, 255, 1);
  6319. border-radius:0px;
  6320. filter:drop-shadow(none);
  6321. transition:none;
  6322. font-family:"Microsoft YaHei", sans-serif;
  6323. font-weight:400;
  6324. font-style:normal;
  6325. font-size:14px;
  6326. text-align:right;
  6327. }
  6328. #u55516.hint {
  6329. }
  6330. #u55516_div.disabled {
  6331. border-width:0px;
  6332. position:absolute;
  6333. left:0px;
  6334. top:0px;
  6335. width:240px;
  6336. height:33px;
  6337. background:inherit;
  6338. background-color:rgba(240, 240, 240, 1);
  6339. border-radius:0px;
  6340. filter:drop-shadow(none);
  6341. transition:none;
  6342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6343. font-weight:400;
  6344. font-style:normal;
  6345. font-size:14px;
  6346. text-align:right;
  6347. }
  6348. #u55516.disabled {
  6349. }
  6350. #u55516_div.hint.disabled {
  6351. border-width:0px;
  6352. position:absolute;
  6353. left:0px;
  6354. top:0px;
  6355. width:240px;
  6356. height:33px;
  6357. background:inherit;
  6358. background-color:rgba(240, 240, 240, 1);
  6359. border-radius:0px;
  6360. filter:drop-shadow(none);
  6361. transition:none;
  6362. font-family:"Microsoft YaHei", sans-serif;
  6363. font-weight:400;
  6364. font-style:normal;
  6365. font-size:14px;
  6366. text-align:right;
  6367. }
  6368. #u55516.hint.disabled {
  6369. }
  6370. #u55517 {
  6371. border-width:0px;
  6372. position:absolute;
  6373. left:0px;
  6374. top:0px;
  6375. width:0px;
  6376. height:0px;
  6377. }
  6378. #u55518_div {
  6379. border-width:0px;
  6380. position:absolute;
  6381. left:0px;
  6382. top:0px;
  6383. width:342px;
  6384. height:50px;
  6385. background:inherit;
  6386. background-color:rgba(255, 255, 255, 1);
  6387. box-sizing:border-box;
  6388. border-width:1px;
  6389. border-style:solid;
  6390. border-color:rgba(215, 215, 215, 0.4980392156862745);
  6391. border-left:0px;
  6392. border-top:0px;
  6393. border-right:0px;
  6394. border-radius:0px;
  6395. border-bottom-right-radius:0px;
  6396. border-bottom-left-radius:0px;
  6397. filter:drop-shadow(none);
  6398. transition:none;
  6399. }
  6400. #u55518 {
  6401. border-width:0px;
  6402. position:absolute;
  6403. left:504px;
  6404. top:583px;
  6405. width:342px;
  6406. height:50px;
  6407. display:flex;
  6408. transition:none;
  6409. transform-origin:50% 50%;
  6410. }
  6411. #u55518 .text {
  6412. position:absolute;
  6413. align-self:center;
  6414. padding:2px 2px 2px 2px;
  6415. box-sizing:border-box;
  6416. width:100%;
  6417. }
  6418. #u55518_text {
  6419. border-width:0px;
  6420. word-wrap:break-word;
  6421. text-transform:none;
  6422. visibility:hidden;
  6423. }
  6424. #u55519_div {
  6425. border-width:0px;
  6426. position:absolute;
  6427. left:0px;
  6428. top:0px;
  6429. width:78px;
  6430. height:30px;
  6431. background:inherit;
  6432. background-color:rgba(255, 255, 255, 0);
  6433. border-left:0px;
  6434. border-top:0px;
  6435. border-right:0px;
  6436. border-radius:0px;
  6437. border-bottom-right-radius:0px;
  6438. border-bottom-left-radius:0px;
  6439. filter:drop-shadow(none);
  6440. transition:none;
  6441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6442. font-weight:400;
  6443. font-style:normal;
  6444. font-size:14px;
  6445. line-height:30px;
  6446. }
  6447. #u55519 {
  6448. border-width:0px;
  6449. position:absolute;
  6450. left:504px;
  6451. top:593px;
  6452. width:78px;
  6453. height:30px;
  6454. display:flex;
  6455. transition:none;
  6456. transform-origin:50% 50%;
  6457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6458. font-weight:400;
  6459. font-style:normal;
  6460. font-size:14px;
  6461. line-height:30px;
  6462. }
  6463. #u55519 .text {
  6464. position:absolute;
  6465. align-self:flex-start;
  6466. padding:0px 0px 0px 0px;
  6467. box-sizing:border-box;
  6468. width:100%;
  6469. }
  6470. #u55519_text {
  6471. border-width:0px;
  6472. white-space:nowrap;
  6473. text-transform:none;
  6474. }
  6475. #u55520_input {
  6476. position:absolute;
  6477. left:0px;
  6478. top:0px;
  6479. width:240px;
  6480. height:33px;
  6481. padding:2px 2px 2px 2px;
  6482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6483. font-weight:400;
  6484. font-style:normal;
  6485. font-size:14px;
  6486. letter-spacing:normal;
  6487. color:#000000;
  6488. vertical-align:none;
  6489. text-align:right;
  6490. text-transform:none;
  6491. background-color:transparent;
  6492. border-color:transparent;
  6493. }
  6494. #u55520_input.hint {
  6495. position:absolute;
  6496. left:0px;
  6497. top:0px;
  6498. width:240px;
  6499. height:33px;
  6500. padding:2px 2px 2px 2px;
  6501. font-family:"Microsoft YaHei", sans-serif;
  6502. font-weight:400;
  6503. font-style:normal;
  6504. font-size:14px;
  6505. letter-spacing:normal;
  6506. color:#BCBCBC;
  6507. vertical-align:none;
  6508. text-align:right;
  6509. text-transform:none;
  6510. background-color:transparent;
  6511. border-color:transparent;
  6512. }
  6513. #u55520_input.disabled {
  6514. position:absolute;
  6515. left:0px;
  6516. top:0px;
  6517. width:240px;
  6518. height:33px;
  6519. padding:2px 2px 2px 2px;
  6520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6521. font-weight:400;
  6522. font-style:normal;
  6523. font-size:14px;
  6524. letter-spacing:normal;
  6525. color:#000000;
  6526. vertical-align:none;
  6527. text-align:right;
  6528. text-transform:none;
  6529. background-color:transparent;
  6530. border-color:transparent;
  6531. }
  6532. #u55520_input.hint.disabled {
  6533. position:absolute;
  6534. left:0px;
  6535. top:0px;
  6536. width:240px;
  6537. height:33px;
  6538. padding:2px 2px 2px 2px;
  6539. font-family:"Microsoft YaHei", sans-serif;
  6540. font-weight:400;
  6541. font-style:normal;
  6542. font-size:14px;
  6543. letter-spacing:normal;
  6544. color:#BCBCBC;
  6545. vertical-align:none;
  6546. text-align:right;
  6547. text-transform:none;
  6548. background-color:transparent;
  6549. border-color:transparent;
  6550. }
  6551. #u55520_div {
  6552. border-width:0px;
  6553. position:absolute;
  6554. left:0px;
  6555. top:0px;
  6556. width:240px;
  6557. height:33px;
  6558. background:inherit;
  6559. background-color:rgba(255, 255, 255, 1);
  6560. border-radius:0px;
  6561. filter:drop-shadow(none);
  6562. transition:none;
  6563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6564. font-weight:400;
  6565. font-style:normal;
  6566. font-size:14px;
  6567. text-align:right;
  6568. }
  6569. #u55520 {
  6570. border-width:0px;
  6571. position:absolute;
  6572. left:579px;
  6573. top:592px;
  6574. width:240px;
  6575. height:33px;
  6576. display:flex;
  6577. transition:none;
  6578. transform-origin:50% 50%;
  6579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6580. font-weight:400;
  6581. font-style:normal;
  6582. font-size:14px;
  6583. text-align:right;
  6584. }
  6585. #u55520 .text {
  6586. position:absolute;
  6587. align-self:center;
  6588. padding:2px 2px 2px 2px;
  6589. box-sizing:border-box;
  6590. width:100%;
  6591. }
  6592. #u55520_div.hint {
  6593. border-width:0px;
  6594. position:absolute;
  6595. left:0px;
  6596. top:0px;
  6597. width:240px;
  6598. height:33px;
  6599. background:inherit;
  6600. background-color:rgba(255, 255, 255, 1);
  6601. border-radius:0px;
  6602. filter:drop-shadow(none);
  6603. transition:none;
  6604. font-family:"Microsoft YaHei", sans-serif;
  6605. font-weight:400;
  6606. font-style:normal;
  6607. font-size:14px;
  6608. text-align:right;
  6609. }
  6610. #u55520.hint {
  6611. }
  6612. #u55520_div.disabled {
  6613. border-width:0px;
  6614. position:absolute;
  6615. left:0px;
  6616. top:0px;
  6617. width:240px;
  6618. height:33px;
  6619. background:inherit;
  6620. background-color:rgba(240, 240, 240, 1);
  6621. border-radius:0px;
  6622. filter:drop-shadow(none);
  6623. transition:none;
  6624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6625. font-weight:400;
  6626. font-style:normal;
  6627. font-size:14px;
  6628. text-align:right;
  6629. }
  6630. #u55520.disabled {
  6631. }
  6632. #u55520_div.hint.disabled {
  6633. border-width:0px;
  6634. position:absolute;
  6635. left:0px;
  6636. top:0px;
  6637. width:240px;
  6638. height:33px;
  6639. background:inherit;
  6640. background-color:rgba(240, 240, 240, 1);
  6641. border-radius:0px;
  6642. filter:drop-shadow(none);
  6643. transition:none;
  6644. font-family:"Microsoft YaHei", sans-serif;
  6645. font-weight:400;
  6646. font-style:normal;
  6647. font-size:14px;
  6648. text-align:right;
  6649. }
  6650. #u55520.hint.disabled {
  6651. }
  6652. #u55521 {
  6653. border-width:0px;
  6654. position:absolute;
  6655. left:0px;
  6656. top:0px;
  6657. width:0px;
  6658. height:0px;
  6659. }
  6660. #u55522_div {
  6661. border-width:0px;
  6662. position:absolute;
  6663. left:0px;
  6664. top:0px;
  6665. width:342px;
  6666. height:50px;
  6667. background:inherit;
  6668. background-color:rgba(255, 255, 255, 1);
  6669. box-sizing:border-box;
  6670. border-width:1px;
  6671. border-style:solid;
  6672. border-color:rgba(215, 215, 215, 0.4980392156862745);
  6673. border-left:0px;
  6674. border-top:0px;
  6675. border-right:0px;
  6676. border-radius:0px;
  6677. border-bottom-right-radius:0px;
  6678. border-bottom-left-radius:0px;
  6679. filter:drop-shadow(none);
  6680. transition:none;
  6681. }
  6682. #u55522 {
  6683. border-width:0px;
  6684. position:absolute;
  6685. left:504px;
  6686. top:633px;
  6687. width:342px;
  6688. height:50px;
  6689. display:flex;
  6690. transition:none;
  6691. transform-origin:50% 50%;
  6692. }
  6693. #u55522 .text {
  6694. position:absolute;
  6695. align-self:center;
  6696. padding:2px 2px 2px 2px;
  6697. box-sizing:border-box;
  6698. width:100%;
  6699. }
  6700. #u55522_text {
  6701. border-width:0px;
  6702. word-wrap:break-word;
  6703. text-transform:none;
  6704. visibility:hidden;
  6705. }
  6706. #u55523_div {
  6707. border-width:0px;
  6708. position:absolute;
  6709. left:0px;
  6710. top:0px;
  6711. width:78px;
  6712. height:30px;
  6713. background:inherit;
  6714. background-color:rgba(255, 255, 255, 0);
  6715. border-left:0px;
  6716. border-top:0px;
  6717. border-right:0px;
  6718. border-radius:0px;
  6719. border-bottom-right-radius:0px;
  6720. border-bottom-left-radius:0px;
  6721. filter:drop-shadow(none);
  6722. transition:none;
  6723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6724. font-weight:400;
  6725. font-style:normal;
  6726. font-size:14px;
  6727. line-height:30px;
  6728. }
  6729. #u55523 {
  6730. border-width:0px;
  6731. position:absolute;
  6732. left:504px;
  6733. top:643px;
  6734. width:78px;
  6735. height:30px;
  6736. display:flex;
  6737. transition:none;
  6738. transform-origin:50% 50%;
  6739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6740. font-weight:400;
  6741. font-style:normal;
  6742. font-size:14px;
  6743. line-height:30px;
  6744. }
  6745. #u55523 .text {
  6746. position:absolute;
  6747. align-self:flex-start;
  6748. padding:0px 0px 0px 0px;
  6749. box-sizing:border-box;
  6750. width:100%;
  6751. }
  6752. #u55523_text {
  6753. border-width:0px;
  6754. white-space:nowrap;
  6755. text-transform:none;
  6756. }
  6757. #u55524_input {
  6758. position:absolute;
  6759. left:0px;
  6760. top:0px;
  6761. width:240px;
  6762. height:33px;
  6763. padding:2px 2px 2px 2px;
  6764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6765. font-weight:400;
  6766. font-style:normal;
  6767. font-size:14px;
  6768. letter-spacing:normal;
  6769. color:#000000;
  6770. vertical-align:none;
  6771. text-align:right;
  6772. text-transform:none;
  6773. background-color:transparent;
  6774. border-color:transparent;
  6775. }
  6776. #u55524_input.hint {
  6777. position:absolute;
  6778. left:0px;
  6779. top:0px;
  6780. width:240px;
  6781. height:33px;
  6782. padding:2px 2px 2px 2px;
  6783. font-family:"Microsoft YaHei", sans-serif;
  6784. font-weight:400;
  6785. font-style:normal;
  6786. font-size:14px;
  6787. letter-spacing:normal;
  6788. color:#BCBCBC;
  6789. vertical-align:none;
  6790. text-align:right;
  6791. text-transform:none;
  6792. background-color:transparent;
  6793. border-color:transparent;
  6794. }
  6795. #u55524_input.disabled {
  6796. position:absolute;
  6797. left:0px;
  6798. top:0px;
  6799. width:240px;
  6800. height:33px;
  6801. padding:2px 2px 2px 2px;
  6802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6803. font-weight:400;
  6804. font-style:normal;
  6805. font-size:14px;
  6806. letter-spacing:normal;
  6807. color:#000000;
  6808. vertical-align:none;
  6809. text-align:right;
  6810. text-transform:none;
  6811. background-color:transparent;
  6812. border-color:transparent;
  6813. }
  6814. #u55524_input.hint.disabled {
  6815. position:absolute;
  6816. left:0px;
  6817. top:0px;
  6818. width:240px;
  6819. height:33px;
  6820. padding:2px 2px 2px 2px;
  6821. font-family:"Microsoft YaHei", sans-serif;
  6822. font-weight:400;
  6823. font-style:normal;
  6824. font-size:14px;
  6825. letter-spacing:normal;
  6826. color:#BCBCBC;
  6827. vertical-align:none;
  6828. text-align:right;
  6829. text-transform:none;
  6830. background-color:transparent;
  6831. border-color:transparent;
  6832. }
  6833. #u55524_div {
  6834. border-width:0px;
  6835. position:absolute;
  6836. left:0px;
  6837. top:0px;
  6838. width:240px;
  6839. height:33px;
  6840. background:inherit;
  6841. background-color:rgba(255, 255, 255, 1);
  6842. border-radius:0px;
  6843. filter:drop-shadow(none);
  6844. transition:none;
  6845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6846. font-weight:400;
  6847. font-style:normal;
  6848. font-size:14px;
  6849. text-align:right;
  6850. }
  6851. #u55524 {
  6852. border-width:0px;
  6853. position:absolute;
  6854. left:579px;
  6855. top:642px;
  6856. width:240px;
  6857. height:33px;
  6858. display:flex;
  6859. transition:none;
  6860. transform-origin:50% 50%;
  6861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6862. font-weight:400;
  6863. font-style:normal;
  6864. font-size:14px;
  6865. text-align:right;
  6866. }
  6867. #u55524 .text {
  6868. position:absolute;
  6869. align-self:center;
  6870. padding:2px 2px 2px 2px;
  6871. box-sizing:border-box;
  6872. width:100%;
  6873. }
  6874. #u55524_div.hint {
  6875. border-width:0px;
  6876. position:absolute;
  6877. left:0px;
  6878. top:0px;
  6879. width:240px;
  6880. height:33px;
  6881. background:inherit;
  6882. background-color:rgba(255, 255, 255, 1);
  6883. border-radius:0px;
  6884. filter:drop-shadow(none);
  6885. transition:none;
  6886. font-family:"Microsoft YaHei", sans-serif;
  6887. font-weight:400;
  6888. font-style:normal;
  6889. font-size:14px;
  6890. text-align:right;
  6891. }
  6892. #u55524.hint {
  6893. }
  6894. #u55524_div.disabled {
  6895. border-width:0px;
  6896. position:absolute;
  6897. left:0px;
  6898. top:0px;
  6899. width:240px;
  6900. height:33px;
  6901. background:inherit;
  6902. background-color:rgba(240, 240, 240, 1);
  6903. border-radius:0px;
  6904. filter:drop-shadow(none);
  6905. transition:none;
  6906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6907. font-weight:400;
  6908. font-style:normal;
  6909. font-size:14px;
  6910. text-align:right;
  6911. }
  6912. #u55524.disabled {
  6913. }
  6914. #u55524_div.hint.disabled {
  6915. border-width:0px;
  6916. position:absolute;
  6917. left:0px;
  6918. top:0px;
  6919. width:240px;
  6920. height:33px;
  6921. background:inherit;
  6922. background-color:rgba(240, 240, 240, 1);
  6923. border-radius:0px;
  6924. filter:drop-shadow(none);
  6925. transition:none;
  6926. font-family:"Microsoft YaHei", sans-serif;
  6927. font-weight:400;
  6928. font-style:normal;
  6929. font-size:14px;
  6930. text-align:right;
  6931. }
  6932. #u55524.hint.disabled {
  6933. }
  6934. #u55525 {
  6935. border-width:0px;
  6936. position:absolute;
  6937. left:0px;
  6938. top:0px;
  6939. width:0px;
  6940. height:0px;
  6941. }
  6942. #u55526_div {
  6943. border-width:0px;
  6944. position:absolute;
  6945. left:0px;
  6946. top:0px;
  6947. width:342px;
  6948. height:200px;
  6949. background:inherit;
  6950. background-color:rgba(255, 255, 255, 1);
  6951. border-left:0px;
  6952. border-top:0px;
  6953. border-right:0px;
  6954. border-radius:0px;
  6955. border-bottom-right-radius:0px;
  6956. border-bottom-left-radius:0px;
  6957. filter:drop-shadow(none);
  6958. transition:none;
  6959. }
  6960. #u55526 {
  6961. border-width:0px;
  6962. position:absolute;
  6963. left:504px;
  6964. top:683px;
  6965. width:342px;
  6966. height:200px;
  6967. display:flex;
  6968. transition:none;
  6969. transform-origin:50% 50%;
  6970. }
  6971. #u55526 .text {
  6972. position:absolute;
  6973. align-self:center;
  6974. padding:2px 2px 2px 2px;
  6975. box-sizing:border-box;
  6976. width:100%;
  6977. }
  6978. #u55526_text {
  6979. border-width:0px;
  6980. word-wrap:break-word;
  6981. text-transform:none;
  6982. visibility:hidden;
  6983. }
  6984. #u55527_div {
  6985. border-width:0px;
  6986. position:absolute;
  6987. left:0px;
  6988. top:0px;
  6989. width:57px;
  6990. height:30px;
  6991. background:inherit;
  6992. background-color:rgba(255, 255, 255, 0);
  6993. border-left:0px;
  6994. border-top:0px;
  6995. border-right:0px;
  6996. border-radius:0px;
  6997. border-bottom-right-radius:0px;
  6998. border-bottom-left-radius:0px;
  6999. filter:drop-shadow(none);
  7000. transition:none;
  7001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7002. font-weight:400;
  7003. font-style:normal;
  7004. font-size:14px;
  7005. line-height:30px;
  7006. }
  7007. #u55527 {
  7008. border-width:0px;
  7009. position:absolute;
  7010. left:504px;
  7011. top:693px;
  7012. width:57px;
  7013. height:30px;
  7014. display:flex;
  7015. transition:none;
  7016. transform-origin:50% 50%;
  7017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7018. font-weight:400;
  7019. font-style:normal;
  7020. font-size:14px;
  7021. line-height:30px;
  7022. }
  7023. #u55527 .text {
  7024. position:absolute;
  7025. align-self:flex-start;
  7026. padding:0px 0px 0px 0px;
  7027. box-sizing:border-box;
  7028. width:100%;
  7029. }
  7030. #u55527_text {
  7031. border-width:0px;
  7032. white-space:nowrap;
  7033. text-transform:none;
  7034. }
  7035. #u55528_div {
  7036. border-width:0px;
  7037. position:absolute;
  7038. left:0px;
  7039. top:0px;
  7040. width:342px;
  7041. height:31px;
  7042. background:inherit;
  7043. background-color:rgba(255, 255, 255, 0);
  7044. border-radius:0px;
  7045. filter:drop-shadow(none);
  7046. transition:none;
  7047. font-size:12px;
  7048. color:#AAAAAA;
  7049. }
  7050. #u55528 {
  7051. border-width:0px;
  7052. position:absolute;
  7053. left:504px;
  7054. top:719px;
  7055. width:342px;
  7056. height:31px;
  7057. display:flex;
  7058. transition:none;
  7059. transform-origin:50% 50%;
  7060. font-size:12px;
  7061. color:#AAAAAA;
  7062. }
  7063. #u55528 .text {
  7064. position:absolute;
  7065. align-self:flex-start;
  7066. padding:0px 0px 0px 0px;
  7067. box-sizing:border-box;
  7068. width:100%;
  7069. }
  7070. #u55528_text {
  7071. border-width:0px;
  7072. word-wrap:break-word;
  7073. text-transform:none;
  7074. }
  7075. #u55529 {
  7076. border-width:0px;
  7077. position:absolute;
  7078. left:504px;
  7079. top:750px;
  7080. width:95px;
  7081. height:94px;
  7082. display:flex;
  7083. transition:none;
  7084. font-size:28px;
  7085. }
  7086. #u55529 .text {
  7087. position:absolute;
  7088. align-self:center;
  7089. padding:2px 2px 2px 2px;
  7090. box-sizing:border-box;
  7091. width:100%;
  7092. }
  7093. #u55529_img {
  7094. border-width:0px;
  7095. position:absolute;
  7096. left:0px;
  7097. top:0px;
  7098. width:95px;
  7099. height:94px;
  7100. }
  7101. #u55529_text {
  7102. border-width:0px;
  7103. word-wrap:break-word;
  7104. text-transform:none;
  7105. }
  7106. #u55530 {
  7107. border-width:0px;
  7108. position:absolute;
  7109. left:0px;
  7110. top:0px;
  7111. width:0px;
  7112. height:0px;
  7113. }
  7114. #u55531_div {
  7115. border-width:0px;
  7116. position:absolute;
  7117. left:0px;
  7118. top:0px;
  7119. width:376px;
  7120. height:60px;
  7121. background:inherit;
  7122. background-color:rgba(255, 255, 255, 1);
  7123. border-top:0px;
  7124. border-radius:22px;
  7125. border-top-left-radius:0px;
  7126. border-top-right-radius:0px;
  7127. filter:drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.34901960784313724));
  7128. transition:none;
  7129. }
  7130. #u55531 {
  7131. border-width:0px;
  7132. position:absolute;
  7133. left:482px;
  7134. top:1016px;
  7135. width:376px;
  7136. height:60px;
  7137. display:flex;
  7138. transition:none;
  7139. transform-origin:50% 50%;
  7140. }
  7141. #u55531 .text {
  7142. position:absolute;
  7143. align-self:center;
  7144. padding:2px 2px 2px 2px;
  7145. box-sizing:border-box;
  7146. width:100%;
  7147. }
  7148. #u55531_text {
  7149. border-width:0px;
  7150. word-wrap:break-word;
  7151. text-transform:none;
  7152. visibility:hidden;
  7153. }
  7154. #u55532_div {
  7155. border-width:0px;
  7156. position:absolute;
  7157. left:0px;
  7158. top:0px;
  7159. width:334px;
  7160. height:40px;
  7161. background:inherit;
  7162. background-color:rgba(215, 215, 215, 1);
  7163. border-radius:45px;
  7164. filter:drop-shadow(none);
  7165. transition:none;
  7166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7167. font-weight:400;
  7168. font-style:normal;
  7169. font-size:14px;
  7170. color:#FFFFFF;
  7171. }
  7172. #u55532 {
  7173. border-width:0px;
  7174. position:absolute;
  7175. left:503px;
  7176. top:1026px;
  7177. width:334px;
  7178. height:40px;
  7179. display:flex;
  7180. transition:none;
  7181. transform-origin:50% 50%;
  7182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7183. font-weight:400;
  7184. font-style:normal;
  7185. font-size:14px;
  7186. color:#FFFFFF;
  7187. }
  7188. #u55532 .text {
  7189. position:absolute;
  7190. align-self:center;
  7191. padding:2px 2px 2px 2px;
  7192. box-sizing:border-box;
  7193. width:100%;
  7194. }
  7195. #u55532_text {
  7196. border-width:0px;
  7197. word-wrap:break-word;
  7198. text-transform:none;
  7199. }
  7200. #u55533 {
  7201. border-width:0px;
  7202. position:absolute;
  7203. left:0px;
  7204. top:0px;
  7205. width:0px;
  7206. height:0px;
  7207. }
  7208. #u55534_div {
  7209. border-width:0px;
  7210. position:absolute;
  7211. left:0px;
  7212. top:0px;
  7213. width:342px;
  7214. height:50px;
  7215. background:inherit;
  7216. background-color:rgba(255, 255, 255, 1);
  7217. box-sizing:border-box;
  7218. border-width:1px;
  7219. border-style:solid;
  7220. border-color:rgba(215, 215, 215, 0.4980392156862745);
  7221. border-left:0px;
  7222. border-top:0px;
  7223. border-right:0px;
  7224. border-radius:0px;
  7225. border-bottom-right-radius:0px;
  7226. border-bottom-left-radius:0px;
  7227. filter:drop-shadow(none);
  7228. transition:none;
  7229. }
  7230. #u55534 {
  7231. border-width:0px;
  7232. position:absolute;
  7233. left:504px;
  7234. top:483px;
  7235. width:342px;
  7236. height:50px;
  7237. display:flex;
  7238. transition:none;
  7239. transform-origin:50% 50%;
  7240. }
  7241. #u55534 .text {
  7242. position:absolute;
  7243. align-self:center;
  7244. padding:2px 2px 2px 2px;
  7245. box-sizing:border-box;
  7246. width:100%;
  7247. }
  7248. #u55534_text {
  7249. border-width:0px;
  7250. word-wrap:break-word;
  7251. text-transform:none;
  7252. visibility:hidden;
  7253. }
  7254. #u55535_div {
  7255. border-width:0px;
  7256. position:absolute;
  7257. left:0px;
  7258. top:0px;
  7259. width:78px;
  7260. height:30px;
  7261. background:inherit;
  7262. background-color:rgba(255, 255, 255, 0);
  7263. border-left:0px;
  7264. border-top:0px;
  7265. border-right:0px;
  7266. border-radius:0px;
  7267. border-bottom-right-radius:0px;
  7268. border-bottom-left-radius:0px;
  7269. filter:drop-shadow(none);
  7270. transition:none;
  7271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7272. font-weight:400;
  7273. font-style:normal;
  7274. font-size:14px;
  7275. line-height:30px;
  7276. }
  7277. #u55535 {
  7278. border-width:0px;
  7279. position:absolute;
  7280. left:504px;
  7281. top:493px;
  7282. width:78px;
  7283. height:30px;
  7284. display:flex;
  7285. transition:none;
  7286. transform-origin:50% 50%;
  7287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7288. font-weight:400;
  7289. font-style:normal;
  7290. font-size:14px;
  7291. line-height:30px;
  7292. }
  7293. #u55535 .text {
  7294. position:absolute;
  7295. align-self:flex-start;
  7296. padding:0px 0px 0px 0px;
  7297. box-sizing:border-box;
  7298. width:100%;
  7299. }
  7300. #u55535_text {
  7301. border-width:0px;
  7302. white-space:nowrap;
  7303. text-transform:none;
  7304. }
  7305. #u55536_input {
  7306. position:absolute;
  7307. left:0px;
  7308. top:0px;
  7309. width:240px;
  7310. height:33px;
  7311. padding:2px 2px 2px 2px;
  7312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7313. font-weight:400;
  7314. font-style:normal;
  7315. font-size:14px;
  7316. letter-spacing:normal;
  7317. color:#000000;
  7318. vertical-align:none;
  7319. text-align:right;
  7320. text-transform:none;
  7321. background-color:transparent;
  7322. border-color:transparent;
  7323. }
  7324. #u55536_input.hint {
  7325. position:absolute;
  7326. left:0px;
  7327. top:0px;
  7328. width:240px;
  7329. height:33px;
  7330. padding:2px 2px 2px 2px;
  7331. font-family:"Microsoft YaHei", sans-serif;
  7332. font-weight:400;
  7333. font-style:normal;
  7334. font-size:14px;
  7335. letter-spacing:normal;
  7336. color:#BCBCBC;
  7337. vertical-align:none;
  7338. text-align:right;
  7339. text-transform:none;
  7340. background-color:transparent;
  7341. border-color:transparent;
  7342. }
  7343. #u55536_input.disabled {
  7344. position:absolute;
  7345. left:0px;
  7346. top:0px;
  7347. width:240px;
  7348. height:33px;
  7349. padding:2px 2px 2px 2px;
  7350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7351. font-weight:400;
  7352. font-style:normal;
  7353. font-size:14px;
  7354. letter-spacing:normal;
  7355. color:#000000;
  7356. vertical-align:none;
  7357. text-align:right;
  7358. text-transform:none;
  7359. background-color:transparent;
  7360. border-color:transparent;
  7361. }
  7362. #u55536_input.hint.disabled {
  7363. position:absolute;
  7364. left:0px;
  7365. top:0px;
  7366. width:240px;
  7367. height:33px;
  7368. padding:2px 2px 2px 2px;
  7369. font-family:"Microsoft YaHei", sans-serif;
  7370. font-weight:400;
  7371. font-style:normal;
  7372. font-size:14px;
  7373. letter-spacing:normal;
  7374. color:#BCBCBC;
  7375. vertical-align:none;
  7376. text-align:right;
  7377. text-transform:none;
  7378. background-color:transparent;
  7379. border-color:transparent;
  7380. }
  7381. #u55536_div {
  7382. border-width:0px;
  7383. position:absolute;
  7384. left:0px;
  7385. top:0px;
  7386. width:240px;
  7387. height:33px;
  7388. background:inherit;
  7389. background-color:rgba(255, 255, 255, 1);
  7390. border-radius:0px;
  7391. filter:drop-shadow(none);
  7392. transition:none;
  7393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7394. font-weight:400;
  7395. font-style:normal;
  7396. font-size:14px;
  7397. text-align:right;
  7398. }
  7399. #u55536 {
  7400. border-width:0px;
  7401. position:absolute;
  7402. left:579px;
  7403. top:492px;
  7404. width:240px;
  7405. height:33px;
  7406. display:flex;
  7407. transition:none;
  7408. transform-origin:50% 50%;
  7409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7410. font-weight:400;
  7411. font-style:normal;
  7412. font-size:14px;
  7413. text-align:right;
  7414. }
  7415. #u55536 .text {
  7416. position:absolute;
  7417. align-self:center;
  7418. padding:2px 2px 2px 2px;
  7419. box-sizing:border-box;
  7420. width:100%;
  7421. }
  7422. #u55536_div.hint {
  7423. border-width:0px;
  7424. position:absolute;
  7425. left:0px;
  7426. top:0px;
  7427. width:240px;
  7428. height:33px;
  7429. background:inherit;
  7430. background-color:rgba(255, 255, 255, 1);
  7431. border-radius:0px;
  7432. filter:drop-shadow(none);
  7433. transition:none;
  7434. font-family:"Microsoft YaHei", sans-serif;
  7435. font-weight:400;
  7436. font-style:normal;
  7437. font-size:14px;
  7438. text-align:right;
  7439. }
  7440. #u55536.hint {
  7441. }
  7442. #u55536_div.disabled {
  7443. border-width:0px;
  7444. position:absolute;
  7445. left:0px;
  7446. top:0px;
  7447. width:240px;
  7448. height:33px;
  7449. background:inherit;
  7450. background-color:rgba(240, 240, 240, 1);
  7451. border-radius:0px;
  7452. filter:drop-shadow(none);
  7453. transition:none;
  7454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7455. font-weight:400;
  7456. font-style:normal;
  7457. font-size:14px;
  7458. text-align:right;
  7459. }
  7460. #u55536.disabled {
  7461. }
  7462. #u55536_div.hint.disabled {
  7463. border-width:0px;
  7464. position:absolute;
  7465. left:0px;
  7466. top:0px;
  7467. width:240px;
  7468. height:33px;
  7469. background:inherit;
  7470. background-color:rgba(240, 240, 240, 1);
  7471. border-radius:0px;
  7472. filter:drop-shadow(none);
  7473. transition:none;
  7474. font-family:"Microsoft YaHei", sans-serif;
  7475. font-weight:400;
  7476. font-style:normal;
  7477. font-size:14px;
  7478. text-align:right;
  7479. }
  7480. #u55536.hint.disabled {
  7481. }
  7482. #u55537 {
  7483. border-width:0px;
  7484. position:absolute;
  7485. left:0px;
  7486. top:0px;
  7487. width:0px;
  7488. height:0px;
  7489. }
  7490. #u55538 {
  7491. border-width:0px;
  7492. position:absolute;
  7493. left:1357px;
  7494. top:1px;
  7495. width:433px;
  7496. height:865px;
  7497. }
  7498. #u55539 {
  7499. border-width:0px;
  7500. position:absolute;
  7501. left:0px;
  7502. top:0px;
  7503. width:433px;
  7504. height:865px;
  7505. display:flex;
  7506. transition:none;
  7507. }
  7508. #u55539 .text {
  7509. position:absolute;
  7510. align-self:center;
  7511. padding:2px 2px 2px 2px;
  7512. box-sizing:border-box;
  7513. width:100%;
  7514. }
  7515. #u55539_img {
  7516. border-width:0px;
  7517. position:absolute;
  7518. left:0px;
  7519. top:0px;
  7520. width:433px;
  7521. height:865px;
  7522. }
  7523. #u55539_text {
  7524. border-width:0px;
  7525. word-wrap:break-word;
  7526. text-transform:none;
  7527. visibility:hidden;
  7528. }
  7529. #u55540_div {
  7530. border-width:0px;
  7531. position:absolute;
  7532. left:0px;
  7533. top:0px;
  7534. width:375px;
  7535. height:40px;
  7536. background:inherit;
  7537. background-color:rgba(255, 255, 255, 1);
  7538. box-sizing:border-box;
  7539. border-width:1px;
  7540. border-style:solid;
  7541. border-color:rgba(215, 215, 215, 1);
  7542. border-left:0px;
  7543. border-top:0px;
  7544. border-right:0px;
  7545. border-radius:0px;
  7546. border-bottom-right-radius:0px;
  7547. border-bottom-left-radius:0px;
  7548. filter:drop-shadow(none);
  7549. transition:none;
  7550. }
  7551. #u55540 {
  7552. border-width:0px;
  7553. position:absolute;
  7554. left:29px;
  7555. top:67px;
  7556. width:375px;
  7557. height:40px;
  7558. display:flex;
  7559. transition:none;
  7560. transform-origin:50% 50%;
  7561. }
  7562. #u55540 .text {
  7563. position:absolute;
  7564. align-self:center;
  7565. padding:2px 2px 2px 2px;
  7566. box-sizing:border-box;
  7567. width:100%;
  7568. }
  7569. #u55540_text {
  7570. border-width:0px;
  7571. word-wrap:break-word;
  7572. text-transform:none;
  7573. visibility:hidden;
  7574. }
  7575. #u55541 {
  7576. border-width:0px;
  7577. position:absolute;
  7578. left:0px;
  7579. top:0px;
  7580. width:0px;
  7581. height:0px;
  7582. }
  7583. #u55542_div {
  7584. border-width:0px;
  7585. position:absolute;
  7586. left:0px;
  7587. top:0px;
  7588. width:88px;
  7589. height:32px;
  7590. background:inherit;
  7591. background-color:rgba(255, 255, 255, 1);
  7592. box-sizing:border-box;
  7593. border-width:1px;
  7594. border-style:solid;
  7595. border-color:rgba(242, 242, 242, 1);
  7596. border-radius:33px;
  7597. filter:drop-shadow(none);
  7598. transition:none;
  7599. }
  7600. #u55542 {
  7601. border-width:0px;
  7602. position:absolute;
  7603. left:309px;
  7604. top:71px;
  7605. width:88px;
  7606. height:32px;
  7607. display:flex;
  7608. transition:none;
  7609. transform-origin:50% 50%;
  7610. }
  7611. #u55542 .text {
  7612. position:absolute;
  7613. align-self:center;
  7614. padding:2px 2px 2px 2px;
  7615. box-sizing:border-box;
  7616. width:100%;
  7617. }
  7618. #u55542_text {
  7619. border-width:0px;
  7620. word-wrap:break-word;
  7621. text-transform:none;
  7622. visibility:hidden;
  7623. }
  7624. #u55543 {
  7625. border-width:0px;
  7626. position:absolute;
  7627. left:0px;
  7628. top:0px;
  7629. width:0px;
  7630. height:0px;
  7631. }
  7632. #u55544 {
  7633. border-width:0px;
  7634. position:absolute;
  7635. left:372px;
  7636. top:78px;
  7637. width:18px;
  7638. height:18px;
  7639. display:flex;
  7640. transition:none;
  7641. }
  7642. #u55544 .text {
  7643. position:absolute;
  7644. align-self:center;
  7645. padding:2px 2px 2px 2px;
  7646. box-sizing:border-box;
  7647. width:100%;
  7648. }
  7649. #u55544_img {
  7650. border-width:0px;
  7651. position:absolute;
  7652. left:0px;
  7653. top:0px;
  7654. width:18px;
  7655. height:18px;
  7656. }
  7657. #u55544_text {
  7658. border-width:0px;
  7659. word-wrap:break-word;
  7660. text-transform:none;
  7661. visibility:hidden;
  7662. }
  7663. #u55545 {
  7664. border-width:0px;
  7665. position:absolute;
  7666. left:378px;
  7667. top:84px;
  7668. width:6px;
  7669. height:6px;
  7670. display:flex;
  7671. transition:none;
  7672. }
  7673. #u55545 .text {
  7674. position:absolute;
  7675. align-self:center;
  7676. padding:2px 2px 2px 2px;
  7677. box-sizing:border-box;
  7678. width:100%;
  7679. }
  7680. #u55545_img {
  7681. border-width:0px;
  7682. position:absolute;
  7683. left:0px;
  7684. top:0px;
  7685. width:6px;
  7686. height:6px;
  7687. }
  7688. #u55545_text {
  7689. border-width:0px;
  7690. word-wrap:break-word;
  7691. text-transform:none;
  7692. visibility:hidden;
  7693. }
  7694. #u55546 {
  7695. border-width:0px;
  7696. position:absolute;
  7697. left:0px;
  7698. top:0px;
  7699. width:0px;
  7700. height:0px;
  7701. }
  7702. #u55547 {
  7703. border-width:0px;
  7704. position:absolute;
  7705. left:323px;
  7706. top:85px;
  7707. width:5px;
  7708. height:5px;
  7709. display:flex;
  7710. transition:none;
  7711. }
  7712. #u55547 .text {
  7713. position:absolute;
  7714. align-self:center;
  7715. padding:2px 2px 2px 2px;
  7716. box-sizing:border-box;
  7717. width:100%;
  7718. }
  7719. #u55547_img {
  7720. border-width:0px;
  7721. position:absolute;
  7722. left:0px;
  7723. top:0px;
  7724. width:5px;
  7725. height:5px;
  7726. }
  7727. #u55547_text {
  7728. border-width:0px;
  7729. word-wrap:break-word;
  7730. text-transform:none;
  7731. visibility:hidden;
  7732. }
  7733. #u55548 {
  7734. border-width:0px;
  7735. position:absolute;
  7736. left:339px;
  7737. top:85px;
  7738. width:5px;
  7739. height:5px;
  7740. display:flex;
  7741. transition:none;
  7742. }
  7743. #u55548 .text {
  7744. position:absolute;
  7745. align-self:center;
  7746. padding:2px 2px 2px 2px;
  7747. box-sizing:border-box;
  7748. width:100%;
  7749. }
  7750. #u55548_img {
  7751. border-width:0px;
  7752. position:absolute;
  7753. left:0px;
  7754. top:0px;
  7755. width:5px;
  7756. height:5px;
  7757. }
  7758. #u55548_text {
  7759. border-width:0px;
  7760. word-wrap:break-word;
  7761. text-transform:none;
  7762. visibility:hidden;
  7763. }
  7764. #u55549 {
  7765. border-width:0px;
  7766. position:absolute;
  7767. left:330px;
  7768. top:84px;
  7769. width:7px;
  7770. height:7px;
  7771. display:flex;
  7772. transition:none;
  7773. }
  7774. #u55549 .text {
  7775. position:absolute;
  7776. align-self:center;
  7777. padding:2px 2px 2px 2px;
  7778. box-sizing:border-box;
  7779. width:100%;
  7780. }
  7781. #u55549_img {
  7782. border-width:0px;
  7783. position:absolute;
  7784. left:0px;
  7785. top:0px;
  7786. width:7px;
  7787. height:7px;
  7788. }
  7789. #u55549_text {
  7790. border-width:0px;
  7791. word-wrap:break-word;
  7792. text-transform:none;
  7793. visibility:hidden;
  7794. }
  7795. #u55550 {
  7796. border-width:0px;
  7797. position:absolute;
  7798. left:347px;
  7799. top:87px;
  7800. width:18px;
  7801. height:1px;
  7802. display:flex;
  7803. -webkit-transform:rotate(90deg);
  7804. -moz-transform:rotate(90deg);
  7805. -ms-transform:rotate(90deg);
  7806. transform:rotate(90deg);
  7807. transition:none;
  7808. }
  7809. #u55550 .text {
  7810. position:absolute;
  7811. align-self:center;
  7812. padding:2px 2px 2px 2px;
  7813. box-sizing:border-box;
  7814. width:100%;
  7815. }
  7816. #u55550_img {
  7817. border-width:0px;
  7818. position:absolute;
  7819. left:0px;
  7820. top:0px;
  7821. width:19px;
  7822. height:2px;
  7823. }
  7824. #u55550_text {
  7825. border-width:0px;
  7826. word-wrap:break-word;
  7827. text-transform:none;
  7828. visibility:hidden;
  7829. }
  7830. #u55551 {
  7831. border-width:0px;
  7832. position:absolute;
  7833. left:29px;
  7834. top:24px;
  7835. width:375px;
  7836. height:44px;
  7837. display:flex;
  7838. transition:none;
  7839. }
  7840. #u55551 .text {
  7841. position:absolute;
  7842. align-self:center;
  7843. padding:2px 2px 2px 2px;
  7844. box-sizing:border-box;
  7845. width:100%;
  7846. }
  7847. #u55551_img {
  7848. border-width:0px;
  7849. position:absolute;
  7850. left:0px;
  7851. top:0px;
  7852. width:375px;
  7853. height:44px;
  7854. }
  7855. #u55551_text {
  7856. border-width:0px;
  7857. word-wrap:break-word;
  7858. text-transform:none;
  7859. visibility:hidden;
  7860. }
  7861. #u55552_div {
  7862. border-width:0px;
  7863. position:absolute;
  7864. left:0px;
  7865. top:0px;
  7866. width:375px;
  7867. height:50px;
  7868. background:inherit;
  7869. background-color:rgba(255, 255, 255, 1);
  7870. box-sizing:border-box;
  7871. border-width:1px;
  7872. border-style:solid;
  7873. border-color:rgba(242, 242, 242, 1);
  7874. border-radius:26px;
  7875. border-top-left-radius:0px;
  7876. border-top-right-radius:0px;
  7877. filter:drop-shadow(none);
  7878. transition:none;
  7879. }
  7880. #u55552 {
  7881. border-width:0px;
  7882. position:absolute;
  7883. left:29px;
  7884. top:788px;
  7885. width:375px;
  7886. height:50px;
  7887. display:flex;
  7888. transition:none;
  7889. transform-origin:50% 50%;
  7890. }
  7891. #u55552 .text {
  7892. position:absolute;
  7893. align-self:center;
  7894. padding:2px 2px 2px 2px;
  7895. box-sizing:border-box;
  7896. width:100%;
  7897. }
  7898. #u55552_text {
  7899. border-width:0px;
  7900. word-wrap:break-word;
  7901. text-transform:none;
  7902. visibility:hidden;
  7903. }
  7904. #u55553 {
  7905. border-width:0px;
  7906. position:absolute;
  7907. left:0px;
  7908. top:0px;
  7909. width:0px;
  7910. height:0px;
  7911. }
  7912. #u55554 {
  7913. border-width:0px;
  7914. position:absolute;
  7915. left:69px;
  7916. top:792px;
  7917. width:24px;
  7918. height:24px;
  7919. display:flex;
  7920. transition:none;
  7921. font-size:8px;
  7922. }
  7923. #u55554 .text {
  7924. position:absolute;
  7925. align-self:center;
  7926. padding:2px 2px 2px 2px;
  7927. box-sizing:border-box;
  7928. width:100%;
  7929. }
  7930. #u55554_img {
  7931. border-width:0px;
  7932. position:absolute;
  7933. left:0px;
  7934. top:0px;
  7935. width:24px;
  7936. height:24px;
  7937. }
  7938. #u55554_text {
  7939. border-width:0px;
  7940. word-wrap:break-word;
  7941. text-transform:none;
  7942. }
  7943. #u55555_div {
  7944. border-width:0px;
  7945. position:absolute;
  7946. left:0px;
  7947. top:0px;
  7948. width:25px;
  7949. height:17px;
  7950. background:inherit;
  7951. background-color:rgba(255, 255, 255, 0);
  7952. border-radius:0px;
  7953. filter:drop-shadow(none);
  7954. transition:none;
  7955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7956. font-weight:400;
  7957. font-style:normal;
  7958. font-size:12px;
  7959. }
  7960. #u55555 {
  7961. border-width:0px;
  7962. position:absolute;
  7963. left:69px;
  7964. top:817px;
  7965. width:25px;
  7966. height:17px;
  7967. display:flex;
  7968. transition:none;
  7969. transform-origin:50% 50%;
  7970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7971. font-weight:400;
  7972. font-style:normal;
  7973. font-size:12px;
  7974. }
  7975. #u55555 .text {
  7976. position:absolute;
  7977. align-self:flex-start;
  7978. padding:0px 0px 0px 0px;
  7979. box-sizing:border-box;
  7980. width:100%;
  7981. }
  7982. #u55555_text {
  7983. border-width:0px;
  7984. white-space:nowrap;
  7985. text-transform:none;
  7986. }
  7987. #u55556 {
  7988. border-width:0px;
  7989. position:absolute;
  7990. left:0px;
  7991. top:0px;
  7992. width:0px;
  7993. height:0px;
  7994. }
  7995. #u55557 {
  7996. border-width:0px;
  7997. position:absolute;
  7998. left:339px;
  7999. top:794px;
  8000. width:24px;
  8001. height:24px;
  8002. display:flex;
  8003. transition:none;
  8004. font-size:8px;
  8005. }
  8006. #u55557 .text {
  8007. position:absolute;
  8008. align-self:center;
  8009. padding:2px 2px 2px 2px;
  8010. box-sizing:border-box;
  8011. width:100%;
  8012. }
  8013. #u55557_img {
  8014. border-width:0px;
  8015. position:absolute;
  8016. left:0px;
  8017. top:0px;
  8018. width:24px;
  8019. height:24px;
  8020. }
  8021. #u55557_text {
  8022. border-width:0px;
  8023. word-wrap:break-word;
  8024. text-transform:none;
  8025. }
  8026. #u55558_div {
  8027. border-width:0px;
  8028. position:absolute;
  8029. left:0px;
  8030. top:0px;
  8031. width:25px;
  8032. height:17px;
  8033. background:inherit;
  8034. background-color:rgba(255, 255, 255, 0);
  8035. border-radius:0px;
  8036. filter:drop-shadow(none);
  8037. transition:none;
  8038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8039. font-weight:400;
  8040. font-style:normal;
  8041. font-size:12px;
  8042. }
  8043. #u55558 {
  8044. border-width:0px;
  8045. position:absolute;
  8046. left:339px;
  8047. top:819px;
  8048. width:25px;
  8049. height:17px;
  8050. display:flex;
  8051. transition:none;
  8052. transform-origin:50% 50%;
  8053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8054. font-weight:400;
  8055. font-style:normal;
  8056. font-size:12px;
  8057. }
  8058. #u55558 .text {
  8059. position:absolute;
  8060. align-self:flex-start;
  8061. padding:0px 0px 0px 0px;
  8062. box-sizing:border-box;
  8063. width:100%;
  8064. }
  8065. #u55558_text {
  8066. border-width:0px;
  8067. white-space:nowrap;
  8068. text-transform:none;
  8069. }
  8070. #u55559_div {
  8071. border-width:0px;
  8072. position:absolute;
  8073. left:0px;
  8074. top:0px;
  8075. width:375px;
  8076. height:681px;
  8077. background:inherit;
  8078. background-color:rgba(242, 242, 242, 0.4627450980392157);
  8079. border-radius:0px;
  8080. filter:drop-shadow(none);
  8081. transition:none;
  8082. }
  8083. #u55559 {
  8084. border-width:0px;
  8085. position:absolute;
  8086. left:29px;
  8087. top:107px;
  8088. width:375px;
  8089. height:681px;
  8090. display:flex;
  8091. transition:none;
  8092. transform-origin:50% 50%;
  8093. }
  8094. #u55559 .text {
  8095. position:absolute;
  8096. align-self:center;
  8097. padding:2px 2px 2px 2px;
  8098. box-sizing:border-box;
  8099. width:100%;
  8100. }
  8101. #u55559_text {
  8102. border-width:0px;
  8103. word-wrap:break-word;
  8104. text-transform:none;
  8105. visibility:hidden;
  8106. }
  8107. #u55560 {
  8108. border-width:0px;
  8109. position:absolute;
  8110. left:0px;
  8111. top:0px;
  8112. width:0px;
  8113. height:0px;
  8114. }
  8115. #u55561 {
  8116. border-width:0px;
  8117. position:absolute;
  8118. left:251px;
  8119. top:792px;
  8120. width:24px;
  8121. height:24px;
  8122. display:flex;
  8123. transition:none;
  8124. font-size:8px;
  8125. }
  8126. #u55561 .text {
  8127. position:absolute;
  8128. align-self:center;
  8129. padding:2px 2px 2px 2px;
  8130. box-sizing:border-box;
  8131. width:100%;
  8132. }
  8133. #u55561_img {
  8134. border-width:0px;
  8135. position:absolute;
  8136. left:0px;
  8137. top:0px;
  8138. width:24px;
  8139. height:24px;
  8140. }
  8141. #u55561_text {
  8142. border-width:0px;
  8143. word-wrap:break-word;
  8144. text-transform:none;
  8145. }
  8146. #u55562_div {
  8147. border-width:0px;
  8148. position:absolute;
  8149. left:0px;
  8150. top:0px;
  8151. width:37px;
  8152. height:17px;
  8153. background:inherit;
  8154. background-color:rgba(255, 255, 255, 0);
  8155. border-radius:0px;
  8156. filter:drop-shadow(none);
  8157. transition:none;
  8158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8159. font-weight:400;
  8160. font-style:normal;
  8161. font-size:12px;
  8162. }
  8163. #u55562 {
  8164. border-width:0px;
  8165. position:absolute;
  8166. left:245px;
  8167. top:817px;
  8168. width:37px;
  8169. height:17px;
  8170. display:flex;
  8171. transition:none;
  8172. transform-origin:50% 50%;
  8173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8174. font-weight:400;
  8175. font-style:normal;
  8176. font-size:12px;
  8177. }
  8178. #u55562 .text {
  8179. position:absolute;
  8180. align-self:flex-start;
  8181. padding:0px 0px 0px 0px;
  8182. box-sizing:border-box;
  8183. width:100%;
  8184. }
  8185. #u55562_text {
  8186. border-width:0px;
  8187. white-space:nowrap;
  8188. text-transform:none;
  8189. }
  8190. #u55563 {
  8191. border-width:0px;
  8192. position:absolute;
  8193. left:0px;
  8194. top:0px;
  8195. width:0px;
  8196. height:0px;
  8197. }
  8198. #u55564 {
  8199. border-width:0px;
  8200. position:absolute;
  8201. left:157px;
  8202. top:792px;
  8203. width:24px;
  8204. height:24px;
  8205. display:flex;
  8206. transition:none;
  8207. font-size:8px;
  8208. }
  8209. #u55564 .text {
  8210. position:absolute;
  8211. align-self:center;
  8212. padding:2px 2px 2px 2px;
  8213. box-sizing:border-box;
  8214. width:100%;
  8215. }
  8216. #u55564_img {
  8217. border-width:0px;
  8218. position:absolute;
  8219. left:0px;
  8220. top:0px;
  8221. width:24px;
  8222. height:24px;
  8223. }
  8224. #u55564_text {
  8225. border-width:0px;
  8226. word-wrap:break-word;
  8227. text-transform:none;
  8228. }
  8229. #u55565_div {
  8230. border-width:0px;
  8231. position:absolute;
  8232. left:0px;
  8233. top:0px;
  8234. width:37px;
  8235. height:17px;
  8236. background:inherit;
  8237. background-color:rgba(255, 255, 255, 0);
  8238. border-radius:0px;
  8239. filter:drop-shadow(none);
  8240. transition:none;
  8241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8242. font-weight:400;
  8243. font-style:normal;
  8244. font-size:12px;
  8245. }
  8246. #u55565 {
  8247. border-width:0px;
  8248. position:absolute;
  8249. left:151px;
  8250. top:817px;
  8251. width:37px;
  8252. height:17px;
  8253. display:flex;
  8254. transition:none;
  8255. transform-origin:50% 50%;
  8256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8257. font-weight:400;
  8258. font-style:normal;
  8259. font-size:12px;
  8260. }
  8261. #u55565 .text {
  8262. position:absolute;
  8263. align-self:flex-start;
  8264. padding:0px 0px 0px 0px;
  8265. box-sizing:border-box;
  8266. width:100%;
  8267. }
  8268. #u55565_text {
  8269. border-width:0px;
  8270. white-space:nowrap;
  8271. text-transform:none;
  8272. }
  8273. #u55566_div {
  8274. border-width:0px;
  8275. position:absolute;
  8276. left:0px;
  8277. top:0px;
  8278. width:375px;
  8279. height:775px;
  8280. background:inherit;
  8281. background-color:rgba(255, 255, 255, 1);
  8282. border-top:0px;
  8283. border-radius:28px;
  8284. border-top-left-radius:0px;
  8285. border-top-right-radius:0px;
  8286. filter:drop-shadow(none);
  8287. transition:none;
  8288. }
  8289. #u55566 {
  8290. border-width:0px;
  8291. position:absolute;
  8292. left:1386px;
  8293. top:66px;
  8294. width:375px;
  8295. height:775px;
  8296. display:flex;
  8297. transition:none;
  8298. transform-origin:50% 50%;
  8299. }
  8300. #u55566 .text {
  8301. position:absolute;
  8302. align-self:center;
  8303. padding:2px 2px 2px 2px;
  8304. box-sizing:border-box;
  8305. width:100%;
  8306. }
  8307. #u55566_text {
  8308. border-width:0px;
  8309. word-wrap:break-word;
  8310. text-transform:none;
  8311. visibility:hidden;
  8312. }
  8313. #u55567_div {
  8314. border-width:0px;
  8315. position:absolute;
  8316. left:0px;
  8317. top:0px;
  8318. width:97px;
  8319. height:30px;
  8320. background:inherit;
  8321. background-color:rgba(255, 255, 255, 0);
  8322. border-left:0px;
  8323. border-top:0px;
  8324. border-right:0px;
  8325. border-radius:0px;
  8326. border-bottom-right-radius:0px;
  8327. border-bottom-left-radius:0px;
  8328. filter:drop-shadow(none);
  8329. transition:none;
  8330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8331. font-weight:400;
  8332. font-style:normal;
  8333. line-height:30px;
  8334. }
  8335. #u55567 {
  8336. border-width:0px;
  8337. position:absolute;
  8338. left:1525px;
  8339. top:227px;
  8340. width:97px;
  8341. height:30px;
  8342. display:flex;
  8343. transition:none;
  8344. transform-origin:50% 50%;
  8345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8346. font-weight:400;
  8347. font-style:normal;
  8348. line-height:30px;
  8349. }
  8350. #u55567 .text {
  8351. position:absolute;
  8352. align-self:center;
  8353. padding:0px 0px 0px 0px;
  8354. box-sizing:border-box;
  8355. width:100%;
  8356. }
  8357. #u55567_text {
  8358. border-width:0px;
  8359. white-space:nowrap;
  8360. text-transform:none;
  8361. }
  8362. #u55568_div {
  8363. border-width:0px;
  8364. position:absolute;
  8365. left:0px;
  8366. top:0px;
  8367. width:126px;
  8368. height:40px;
  8369. background:inherit;
  8370. background-color:rgba(255, 255, 255, 1);
  8371. box-sizing:border-box;
  8372. border-width:1px;
  8373. border-style:solid;
  8374. border-color:rgba(121, 121, 121, 1);
  8375. border-radius:63px;
  8376. filter:drop-shadow(none);
  8377. transition:none;
  8378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8379. font-weight:400;
  8380. font-style:normal;
  8381. font-size:14px;
  8382. }
  8383. #u55568 {
  8384. border-width:0px;
  8385. position:absolute;
  8386. left:1584px;
  8387. top:355px;
  8388. width:126px;
  8389. height:40px;
  8390. display:flex;
  8391. transition:none;
  8392. transform-origin:50% 50%;
  8393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8394. font-weight:400;
  8395. font-style:normal;
  8396. font-size:14px;
  8397. }
  8398. #u55568 .text {
  8399. position:absolute;
  8400. align-self:center;
  8401. padding:2px 2px 2px 2px;
  8402. box-sizing:border-box;
  8403. width:100%;
  8404. }
  8405. #u55568_text {
  8406. border-width:0px;
  8407. word-wrap:break-word;
  8408. text-transform:none;
  8409. }
  8410. #u55569 {
  8411. border-width:0px;
  8412. position:absolute;
  8413. left:1532px;
  8414. top:128px;
  8415. width:83px;
  8416. height:83px;
  8417. display:flex;
  8418. transition:none;
  8419. }
  8420. #u55569 .text {
  8421. position:absolute;
  8422. align-self:center;
  8423. padding:2px 2px 2px 2px;
  8424. box-sizing:border-box;
  8425. width:100%;
  8426. }
  8427. #u55569_img {
  8428. border-width:0px;
  8429. position:absolute;
  8430. left:0px;
  8431. top:0px;
  8432. width:83px;
  8433. height:83px;
  8434. }
  8435. #u55569_text {
  8436. border-width:0px;
  8437. word-wrap:break-word;
  8438. text-transform:none;
  8439. visibility:hidden;
  8440. }
  8441. #u55570_div {
  8442. border-width:0px;
  8443. position:absolute;
  8444. left:0px;
  8445. top:0px;
  8446. width:126px;
  8447. height:40px;
  8448. background:inherit;
  8449. background-color:rgba(255, 255, 255, 1);
  8450. box-sizing:border-box;
  8451. border-width:1px;
  8452. border-style:solid;
  8453. border-color:rgba(121, 121, 121, 1);
  8454. border-radius:63px;
  8455. filter:drop-shadow(none);
  8456. transition:none;
  8457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8458. font-weight:400;
  8459. font-style:normal;
  8460. font-size:14px;
  8461. }
  8462. #u55570 {
  8463. border-width:0px;
  8464. position:absolute;
  8465. left:1438px;
  8466. top:355px;
  8467. width:126px;
  8468. height:40px;
  8469. display:flex;
  8470. transition:none;
  8471. transform-origin:50% 50%;
  8472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8473. font-weight:400;
  8474. font-style:normal;
  8475. font-size:14px;
  8476. }
  8477. #u55570 .text {
  8478. position:absolute;
  8479. align-self:center;
  8480. padding:2px 2px 2px 2px;
  8481. box-sizing:border-box;
  8482. width:100%;
  8483. }
  8484. #u55570_text {
  8485. border-width:0px;
  8486. word-wrap:break-word;
  8487. text-transform:none;
  8488. }
  8489. #u55571_div {
  8490. border-width:0px;
  8491. position:absolute;
  8492. left:0px;
  8493. top:0px;
  8494. width:30px;
  8495. height:30px;
  8496. background:inherit;
  8497. background-color:rgba(255, 255, 255, 0);
  8498. border-left:0px;
  8499. border-top:0px;
  8500. border-right:0px;
  8501. border-radius:0px;
  8502. border-bottom-right-radius:0px;
  8503. border-bottom-left-radius:0px;
  8504. filter:drop-shadow(none);
  8505. transition:none;
  8506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8507. font-weight:400;
  8508. font-style:normal;
  8509. font-size:18px;
  8510. text-align:center;
  8511. line-height:30px;
  8512. }
  8513. #u55571 {
  8514. border-width:0px;
  8515. position:absolute;
  8516. left:1396px;
  8517. top:76px;
  8518. width:30px;
  8519. height:30px;
  8520. display:flex;
  8521. transition:none;
  8522. transform-origin:50% 50%;
  8523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8524. font-weight:400;
  8525. font-style:normal;
  8526. font-size:18px;
  8527. text-align:center;
  8528. line-height:30px;
  8529. }
  8530. #u55571 .text {
  8531. position:absolute;
  8532. align-self:center;
  8533. padding:0px 0px 0px 0px;
  8534. box-sizing:border-box;
  8535. width:100%;
  8536. }
  8537. #u55571_text {
  8538. border-width:0px;
  8539. word-wrap:break-word;
  8540. text-transform:none;
  8541. }
  8542. #u55572 {
  8543. border-width:0px;
  8544. position:absolute;
  8545. left:0px;
  8546. top:0px;
  8547. width:0px;
  8548. height:0px;
  8549. }
  8550. #u55573 {
  8551. border-width:0px;
  8552. position:absolute;
  8553. left:1398px;
  8554. top:403px;
  8555. width:350px;
  8556. height:40px;
  8557. display:flex;
  8558. transition:none;
  8559. }
  8560. #u55573 .text {
  8561. position:absolute;
  8562. align-self:center;
  8563. padding:2px 2px 2px 2px;
  8564. box-sizing:border-box;
  8565. width:100%;
  8566. }
  8567. #u55573_img {
  8568. border-width:0px;
  8569. position:absolute;
  8570. left:0px;
  8571. top:0px;
  8572. width:350px;
  8573. height:40px;
  8574. }
  8575. #u55573_text {
  8576. border-width:0px;
  8577. word-wrap:break-word;
  8578. text-transform:none;
  8579. visibility:hidden;
  8580. }
  8581. #u55574 {
  8582. border-width:0px;
  8583. position:absolute;
  8584. left:0px;
  8585. top:0px;
  8586. width:0px;
  8587. height:0px;
  8588. }
  8589. #u55575_div {
  8590. border-width:0px;
  8591. position:absolute;
  8592. left:0px;
  8593. top:0px;
  8594. width:221px;
  8595. height:30px;
  8596. background:inherit;
  8597. background-color:rgba(255, 255, 255, 0);
  8598. border-left:0px;
  8599. border-top:0px;
  8600. border-right:0px;
  8601. border-radius:0px;
  8602. border-bottom-right-radius:0px;
  8603. border-bottom-left-radius:0px;
  8604. filter:drop-shadow(none);
  8605. transition:none;
  8606. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8607. font-style:normal;
  8608. color:#FFFFFF;
  8609. text-align:center;
  8610. line-height:30px;
  8611. }
  8612. #u55575 {
  8613. border-width:0px;
  8614. position:absolute;
  8615. left:1478px;
  8616. top:408px;
  8617. width:221px;
  8618. height:30px;
  8619. display:flex;
  8620. transition:none;
  8621. transform-origin:50% 50%;
  8622. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8623. font-style:normal;
  8624. color:#FFFFFF;
  8625. text-align:center;
  8626. line-height:30px;
  8627. }
  8628. #u55575 .text {
  8629. position:absolute;
  8630. align-self:center;
  8631. padding:0px 0px 0px 0px;
  8632. box-sizing:border-box;
  8633. width:100%;
  8634. }
  8635. #u55575_text {
  8636. border-width:0px;
  8637. white-space:nowrap;
  8638. text-transform:none;
  8639. }
  8640. #u55576 {
  8641. border-width:0px;
  8642. position:absolute;
  8643. left:1448px;
  8644. top:410px;
  8645. width:26px;
  8646. height:26px;
  8647. display:flex;
  8648. transition:none;
  8649. }
  8650. #u55576 .text {
  8651. position:absolute;
  8652. align-self:center;
  8653. padding:2px 2px 2px 2px;
  8654. box-sizing:border-box;
  8655. width:100%;
  8656. }
  8657. #u55576_img {
  8658. border-width:0px;
  8659. position:absolute;
  8660. left:0px;
  8661. top:0px;
  8662. width:26px;
  8663. height:26px;
  8664. }
  8665. #u55576_text {
  8666. border-width:0px;
  8667. word-wrap:break-word;
  8668. text-transform:none;
  8669. }
  8670. #u55577_div {
  8671. border-width:0px;
  8672. position:absolute;
  8673. left:0px;
  8674. top:0px;
  8675. width:295px;
  8676. height:30px;
  8677. background:inherit;
  8678. background-color:rgba(255, 255, 255, 0);
  8679. border-left:0px;
  8680. border-top:0px;
  8681. border-right:0px;
  8682. border-radius:0px;
  8683. border-bottom-right-radius:0px;
  8684. border-bottom-left-radius:0px;
  8685. filter:drop-shadow(none);
  8686. transition:none;
  8687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8688. font-weight:400;
  8689. font-style:normal;
  8690. font-size:14px;
  8691. text-align:center;
  8692. line-height:30px;
  8693. }
  8694. #u55577 {
  8695. border-width:0px;
  8696. position:absolute;
  8697. left:1425px;
  8698. top:285px;
  8699. width:295px;
  8700. height:30px;
  8701. display:flex;
  8702. transition:none;
  8703. transform-origin:50% 50%;
  8704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8705. font-weight:400;
  8706. font-style:normal;
  8707. font-size:14px;
  8708. text-align:center;
  8709. line-height:30px;
  8710. }
  8711. #u55577 .text {
  8712. position:absolute;
  8713. align-self:center;
  8714. padding:0px 0px 0px 0px;
  8715. box-sizing:border-box;
  8716. width:100%;
  8717. }
  8718. #u55577_text {
  8719. border-width:0px;
  8720. white-space:nowrap;
  8721. text-transform:none;
  8722. }
  8723. #u55578_div {
  8724. border-width:0px;
  8725. position:absolute;
  8726. left:0px;
  8727. top:0px;
  8728. width:363px;
  8729. height:30px;
  8730. background:inherit;
  8731. background-color:rgba(255, 255, 255, 0);
  8732. border-left:0px;
  8733. border-top:0px;
  8734. border-right:0px;
  8735. border-radius:0px;
  8736. border-bottom-right-radius:0px;
  8737. border-bottom-left-radius:0px;
  8738. filter:drop-shadow(none);
  8739. transition:none;
  8740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8741. font-weight:400;
  8742. font-style:normal;
  8743. font-size:14px;
  8744. color:#D9001B;
  8745. line-height:30px;
  8746. }
  8747. #u55578 {
  8748. border-width:0px;
  8749. position:absolute;
  8750. left:1398px;
  8751. top:472px;
  8752. width:363px;
  8753. height:30px;
  8754. display:flex;
  8755. transition:none;
  8756. transform-origin:50% 50%;
  8757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8758. font-weight:400;
  8759. font-style:normal;
  8760. font-size:14px;
  8761. color:#D9001B;
  8762. line-height:30px;
  8763. }
  8764. #u55578 .text {
  8765. position:absolute;
  8766. align-self:flex-start;
  8767. padding:0px 0px 0px 0px;
  8768. box-sizing:border-box;
  8769. width:100%;
  8770. }
  8771. #u55578_text {
  8772. border-width:0px;
  8773. word-wrap:break-word;
  8774. text-transform:none;
  8775. }
  8776. #u55579 {
  8777. border-width:0px;
  8778. position:absolute;
  8779. left:0px;
  8780. top:0px;
  8781. width:0px;
  8782. height:0px;
  8783. }
  8784. #u55580 {
  8785. border-width:0px;
  8786. position:absolute;
  8787. left:1810px;
  8788. top:1px;
  8789. width:433px;
  8790. height:865px;
  8791. }
  8792. #u55581 {
  8793. border-width:0px;
  8794. position:absolute;
  8795. left:0px;
  8796. top:0px;
  8797. width:433px;
  8798. height:865px;
  8799. display:flex;
  8800. transition:none;
  8801. }
  8802. #u55581 .text {
  8803. position:absolute;
  8804. align-self:center;
  8805. padding:2px 2px 2px 2px;
  8806. box-sizing:border-box;
  8807. width:100%;
  8808. }
  8809. #u55581_img {
  8810. border-width:0px;
  8811. position:absolute;
  8812. left:0px;
  8813. top:0px;
  8814. width:433px;
  8815. height:865px;
  8816. }
  8817. #u55581_text {
  8818. border-width:0px;
  8819. word-wrap:break-word;
  8820. text-transform:none;
  8821. visibility:hidden;
  8822. }
  8823. #u55582_div {
  8824. border-width:0px;
  8825. position:absolute;
  8826. left:0px;
  8827. top:0px;
  8828. width:375px;
  8829. height:40px;
  8830. background:inherit;
  8831. background-color:rgba(255, 255, 255, 1);
  8832. box-sizing:border-box;
  8833. border-width:1px;
  8834. border-style:solid;
  8835. border-color:rgba(215, 215, 215, 1);
  8836. border-left:0px;
  8837. border-top:0px;
  8838. border-right:0px;
  8839. border-radius:0px;
  8840. border-bottom-right-radius:0px;
  8841. border-bottom-left-radius:0px;
  8842. filter:drop-shadow(none);
  8843. transition:none;
  8844. }
  8845. #u55582 {
  8846. border-width:0px;
  8847. position:absolute;
  8848. left:29px;
  8849. top:67px;
  8850. width:375px;
  8851. height:40px;
  8852. display:flex;
  8853. transition:none;
  8854. transform-origin:50% 50%;
  8855. }
  8856. #u55582 .text {
  8857. position:absolute;
  8858. align-self:center;
  8859. padding:2px 2px 2px 2px;
  8860. box-sizing:border-box;
  8861. width:100%;
  8862. }
  8863. #u55582_text {
  8864. border-width:0px;
  8865. word-wrap:break-word;
  8866. text-transform:none;
  8867. visibility:hidden;
  8868. }
  8869. #u55583 {
  8870. border-width:0px;
  8871. position:absolute;
  8872. left:0px;
  8873. top:0px;
  8874. width:0px;
  8875. height:0px;
  8876. }
  8877. #u55584_div {
  8878. border-width:0px;
  8879. position:absolute;
  8880. left:0px;
  8881. top:0px;
  8882. width:88px;
  8883. height:32px;
  8884. background:inherit;
  8885. background-color:rgba(255, 255, 255, 1);
  8886. box-sizing:border-box;
  8887. border-width:1px;
  8888. border-style:solid;
  8889. border-color:rgba(242, 242, 242, 1);
  8890. border-radius:33px;
  8891. filter:drop-shadow(none);
  8892. transition:none;
  8893. }
  8894. #u55584 {
  8895. border-width:0px;
  8896. position:absolute;
  8897. left:309px;
  8898. top:71px;
  8899. width:88px;
  8900. height:32px;
  8901. display:flex;
  8902. transition:none;
  8903. transform-origin:50% 50%;
  8904. }
  8905. #u55584 .text {
  8906. position:absolute;
  8907. align-self:center;
  8908. padding:2px 2px 2px 2px;
  8909. box-sizing:border-box;
  8910. width:100%;
  8911. }
  8912. #u55584_text {
  8913. border-width:0px;
  8914. word-wrap:break-word;
  8915. text-transform:none;
  8916. visibility:hidden;
  8917. }
  8918. #u55585 {
  8919. border-width:0px;
  8920. position:absolute;
  8921. left:0px;
  8922. top:0px;
  8923. width:0px;
  8924. height:0px;
  8925. }
  8926. #u55586 {
  8927. border-width:0px;
  8928. position:absolute;
  8929. left:372px;
  8930. top:78px;
  8931. width:18px;
  8932. height:18px;
  8933. display:flex;
  8934. transition:none;
  8935. }
  8936. #u55586 .text {
  8937. position:absolute;
  8938. align-self:center;
  8939. padding:2px 2px 2px 2px;
  8940. box-sizing:border-box;
  8941. width:100%;
  8942. }
  8943. #u55586_img {
  8944. border-width:0px;
  8945. position:absolute;
  8946. left:0px;
  8947. top:0px;
  8948. width:18px;
  8949. height:18px;
  8950. }
  8951. #u55586_text {
  8952. border-width:0px;
  8953. word-wrap:break-word;
  8954. text-transform:none;
  8955. visibility:hidden;
  8956. }
  8957. #u55587 {
  8958. border-width:0px;
  8959. position:absolute;
  8960. left:378px;
  8961. top:84px;
  8962. width:6px;
  8963. height:6px;
  8964. display:flex;
  8965. transition:none;
  8966. }
  8967. #u55587 .text {
  8968. position:absolute;
  8969. align-self:center;
  8970. padding:2px 2px 2px 2px;
  8971. box-sizing:border-box;
  8972. width:100%;
  8973. }
  8974. #u55587_img {
  8975. border-width:0px;
  8976. position:absolute;
  8977. left:0px;
  8978. top:0px;
  8979. width:6px;
  8980. height:6px;
  8981. }
  8982. #u55587_text {
  8983. border-width:0px;
  8984. word-wrap:break-word;
  8985. text-transform:none;
  8986. visibility:hidden;
  8987. }
  8988. #u55588 {
  8989. border-width:0px;
  8990. position:absolute;
  8991. left:0px;
  8992. top:0px;
  8993. width:0px;
  8994. height:0px;
  8995. }
  8996. #u55589 {
  8997. border-width:0px;
  8998. position:absolute;
  8999. left:323px;
  9000. top:85px;
  9001. width:5px;
  9002. height:5px;
  9003. display:flex;
  9004. transition:none;
  9005. }
  9006. #u55589 .text {
  9007. position:absolute;
  9008. align-self:center;
  9009. padding:2px 2px 2px 2px;
  9010. box-sizing:border-box;
  9011. width:100%;
  9012. }
  9013. #u55589_img {
  9014. border-width:0px;
  9015. position:absolute;
  9016. left:0px;
  9017. top:0px;
  9018. width:5px;
  9019. height:5px;
  9020. }
  9021. #u55589_text {
  9022. border-width:0px;
  9023. word-wrap:break-word;
  9024. text-transform:none;
  9025. visibility:hidden;
  9026. }
  9027. #u55590 {
  9028. border-width:0px;
  9029. position:absolute;
  9030. left:339px;
  9031. top:85px;
  9032. width:5px;
  9033. height:5px;
  9034. display:flex;
  9035. transition:none;
  9036. }
  9037. #u55590 .text {
  9038. position:absolute;
  9039. align-self:center;
  9040. padding:2px 2px 2px 2px;
  9041. box-sizing:border-box;
  9042. width:100%;
  9043. }
  9044. #u55590_img {
  9045. border-width:0px;
  9046. position:absolute;
  9047. left:0px;
  9048. top:0px;
  9049. width:5px;
  9050. height:5px;
  9051. }
  9052. #u55590_text {
  9053. border-width:0px;
  9054. word-wrap:break-word;
  9055. text-transform:none;
  9056. visibility:hidden;
  9057. }
  9058. #u55591 {
  9059. border-width:0px;
  9060. position:absolute;
  9061. left:330px;
  9062. top:84px;
  9063. width:7px;
  9064. height:7px;
  9065. display:flex;
  9066. transition:none;
  9067. }
  9068. #u55591 .text {
  9069. position:absolute;
  9070. align-self:center;
  9071. padding:2px 2px 2px 2px;
  9072. box-sizing:border-box;
  9073. width:100%;
  9074. }
  9075. #u55591_img {
  9076. border-width:0px;
  9077. position:absolute;
  9078. left:0px;
  9079. top:0px;
  9080. width:7px;
  9081. height:7px;
  9082. }
  9083. #u55591_text {
  9084. border-width:0px;
  9085. word-wrap:break-word;
  9086. text-transform:none;
  9087. visibility:hidden;
  9088. }
  9089. #u55592 {
  9090. border-width:0px;
  9091. position:absolute;
  9092. left:347px;
  9093. top:87px;
  9094. width:18px;
  9095. height:1px;
  9096. display:flex;
  9097. -webkit-transform:rotate(90deg);
  9098. -moz-transform:rotate(90deg);
  9099. -ms-transform:rotate(90deg);
  9100. transform:rotate(90deg);
  9101. transition:none;
  9102. }
  9103. #u55592 .text {
  9104. position:absolute;
  9105. align-self:center;
  9106. padding:2px 2px 2px 2px;
  9107. box-sizing:border-box;
  9108. width:100%;
  9109. }
  9110. #u55592_img {
  9111. border-width:0px;
  9112. position:absolute;
  9113. left:0px;
  9114. top:0px;
  9115. width:19px;
  9116. height:2px;
  9117. }
  9118. #u55592_text {
  9119. border-width:0px;
  9120. word-wrap:break-word;
  9121. text-transform:none;
  9122. visibility:hidden;
  9123. }
  9124. #u55593 {
  9125. border-width:0px;
  9126. position:absolute;
  9127. left:29px;
  9128. top:24px;
  9129. width:375px;
  9130. height:44px;
  9131. display:flex;
  9132. transition:none;
  9133. }
  9134. #u55593 .text {
  9135. position:absolute;
  9136. align-self:center;
  9137. padding:2px 2px 2px 2px;
  9138. box-sizing:border-box;
  9139. width:100%;
  9140. }
  9141. #u55593_img {
  9142. border-width:0px;
  9143. position:absolute;
  9144. left:0px;
  9145. top:0px;
  9146. width:375px;
  9147. height:44px;
  9148. }
  9149. #u55593_text {
  9150. border-width:0px;
  9151. word-wrap:break-word;
  9152. text-transform:none;
  9153. visibility:hidden;
  9154. }
  9155. #u55594_div {
  9156. border-width:0px;
  9157. position:absolute;
  9158. left:0px;
  9159. top:0px;
  9160. width:375px;
  9161. height:50px;
  9162. background:inherit;
  9163. background-color:rgba(255, 255, 255, 1);
  9164. box-sizing:border-box;
  9165. border-width:1px;
  9166. border-style:solid;
  9167. border-color:rgba(242, 242, 242, 1);
  9168. border-radius:26px;
  9169. border-top-left-radius:0px;
  9170. border-top-right-radius:0px;
  9171. filter:drop-shadow(none);
  9172. transition:none;
  9173. }
  9174. #u55594 {
  9175. border-width:0px;
  9176. position:absolute;
  9177. left:29px;
  9178. top:788px;
  9179. width:375px;
  9180. height:50px;
  9181. display:flex;
  9182. transition:none;
  9183. transform-origin:50% 50%;
  9184. }
  9185. #u55594 .text {
  9186. position:absolute;
  9187. align-self:center;
  9188. padding:2px 2px 2px 2px;
  9189. box-sizing:border-box;
  9190. width:100%;
  9191. }
  9192. #u55594_text {
  9193. border-width:0px;
  9194. word-wrap:break-word;
  9195. text-transform:none;
  9196. visibility:hidden;
  9197. }
  9198. #u55595 {
  9199. border-width:0px;
  9200. position:absolute;
  9201. left:0px;
  9202. top:0px;
  9203. width:0px;
  9204. height:0px;
  9205. }
  9206. #u55596 {
  9207. border-width:0px;
  9208. position:absolute;
  9209. left:69px;
  9210. top:792px;
  9211. width:24px;
  9212. height:24px;
  9213. display:flex;
  9214. transition:none;
  9215. font-size:8px;
  9216. }
  9217. #u55596 .text {
  9218. position:absolute;
  9219. align-self:center;
  9220. padding:2px 2px 2px 2px;
  9221. box-sizing:border-box;
  9222. width:100%;
  9223. }
  9224. #u55596_img {
  9225. border-width:0px;
  9226. position:absolute;
  9227. left:0px;
  9228. top:0px;
  9229. width:24px;
  9230. height:24px;
  9231. }
  9232. #u55596_text {
  9233. border-width:0px;
  9234. word-wrap:break-word;
  9235. text-transform:none;
  9236. }
  9237. #u55597_div {
  9238. border-width:0px;
  9239. position:absolute;
  9240. left:0px;
  9241. top:0px;
  9242. width:25px;
  9243. height:17px;
  9244. background:inherit;
  9245. background-color:rgba(255, 255, 255, 0);
  9246. border-radius:0px;
  9247. filter:drop-shadow(none);
  9248. transition:none;
  9249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9250. font-weight:400;
  9251. font-style:normal;
  9252. font-size:12px;
  9253. }
  9254. #u55597 {
  9255. border-width:0px;
  9256. position:absolute;
  9257. left:69px;
  9258. top:817px;
  9259. width:25px;
  9260. height:17px;
  9261. display:flex;
  9262. transition:none;
  9263. transform-origin:50% 50%;
  9264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9265. font-weight:400;
  9266. font-style:normal;
  9267. font-size:12px;
  9268. }
  9269. #u55597 .text {
  9270. position:absolute;
  9271. align-self:flex-start;
  9272. padding:0px 0px 0px 0px;
  9273. box-sizing:border-box;
  9274. width:100%;
  9275. }
  9276. #u55597_text {
  9277. border-width:0px;
  9278. white-space:nowrap;
  9279. text-transform:none;
  9280. }
  9281. #u55598 {
  9282. border-width:0px;
  9283. position:absolute;
  9284. left:0px;
  9285. top:0px;
  9286. width:0px;
  9287. height:0px;
  9288. }
  9289. #u55599 {
  9290. border-width:0px;
  9291. position:absolute;
  9292. left:339px;
  9293. top:794px;
  9294. width:24px;
  9295. height:24px;
  9296. display:flex;
  9297. transition:none;
  9298. font-size:8px;
  9299. }
  9300. #u55599 .text {
  9301. position:absolute;
  9302. align-self:center;
  9303. padding:2px 2px 2px 2px;
  9304. box-sizing:border-box;
  9305. width:100%;
  9306. }
  9307. #u55599_img {
  9308. border-width:0px;
  9309. position:absolute;
  9310. left:0px;
  9311. top:0px;
  9312. width:24px;
  9313. height:24px;
  9314. }
  9315. #u55599_text {
  9316. border-width:0px;
  9317. word-wrap:break-word;
  9318. text-transform:none;
  9319. }
  9320. #u55600_div {
  9321. border-width:0px;
  9322. position:absolute;
  9323. left:0px;
  9324. top:0px;
  9325. width:25px;
  9326. height:17px;
  9327. background:inherit;
  9328. background-color:rgba(255, 255, 255, 0);
  9329. border-radius:0px;
  9330. filter:drop-shadow(none);
  9331. transition:none;
  9332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9333. font-weight:400;
  9334. font-style:normal;
  9335. font-size:12px;
  9336. }
  9337. #u55600 {
  9338. border-width:0px;
  9339. position:absolute;
  9340. left:339px;
  9341. top:819px;
  9342. width:25px;
  9343. height:17px;
  9344. display:flex;
  9345. transition:none;
  9346. transform-origin:50% 50%;
  9347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9348. font-weight:400;
  9349. font-style:normal;
  9350. font-size:12px;
  9351. }
  9352. #u55600 .text {
  9353. position:absolute;
  9354. align-self:flex-start;
  9355. padding:0px 0px 0px 0px;
  9356. box-sizing:border-box;
  9357. width:100%;
  9358. }
  9359. #u55600_text {
  9360. border-width:0px;
  9361. white-space:nowrap;
  9362. text-transform:none;
  9363. }
  9364. #u55601_div {
  9365. border-width:0px;
  9366. position:absolute;
  9367. left:0px;
  9368. top:0px;
  9369. width:375px;
  9370. height:681px;
  9371. background:inherit;
  9372. background-color:rgba(242, 242, 242, 0.4627450980392157);
  9373. border-radius:0px;
  9374. filter:drop-shadow(none);
  9375. transition:none;
  9376. }
  9377. #u55601 {
  9378. border-width:0px;
  9379. position:absolute;
  9380. left:29px;
  9381. top:107px;
  9382. width:375px;
  9383. height:681px;
  9384. display:flex;
  9385. transition:none;
  9386. transform-origin:50% 50%;
  9387. }
  9388. #u55601 .text {
  9389. position:absolute;
  9390. align-self:center;
  9391. padding:2px 2px 2px 2px;
  9392. box-sizing:border-box;
  9393. width:100%;
  9394. }
  9395. #u55601_text {
  9396. border-width:0px;
  9397. word-wrap:break-word;
  9398. text-transform:none;
  9399. visibility:hidden;
  9400. }
  9401. #u55602 {
  9402. border-width:0px;
  9403. position:absolute;
  9404. left:0px;
  9405. top:0px;
  9406. width:0px;
  9407. height:0px;
  9408. }
  9409. #u55603 {
  9410. border-width:0px;
  9411. position:absolute;
  9412. left:251px;
  9413. top:792px;
  9414. width:24px;
  9415. height:24px;
  9416. display:flex;
  9417. transition:none;
  9418. font-size:8px;
  9419. }
  9420. #u55603 .text {
  9421. position:absolute;
  9422. align-self:center;
  9423. padding:2px 2px 2px 2px;
  9424. box-sizing:border-box;
  9425. width:100%;
  9426. }
  9427. #u55603_img {
  9428. border-width:0px;
  9429. position:absolute;
  9430. left:0px;
  9431. top:0px;
  9432. width:24px;
  9433. height:24px;
  9434. }
  9435. #u55603_text {
  9436. border-width:0px;
  9437. word-wrap:break-word;
  9438. text-transform:none;
  9439. }
  9440. #u55604_div {
  9441. border-width:0px;
  9442. position:absolute;
  9443. left:0px;
  9444. top:0px;
  9445. width:37px;
  9446. height:17px;
  9447. background:inherit;
  9448. background-color:rgba(255, 255, 255, 0);
  9449. border-radius:0px;
  9450. filter:drop-shadow(none);
  9451. transition:none;
  9452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9453. font-weight:400;
  9454. font-style:normal;
  9455. font-size:12px;
  9456. }
  9457. #u55604 {
  9458. border-width:0px;
  9459. position:absolute;
  9460. left:245px;
  9461. top:817px;
  9462. width:37px;
  9463. height:17px;
  9464. display:flex;
  9465. transition:none;
  9466. transform-origin:50% 50%;
  9467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9468. font-weight:400;
  9469. font-style:normal;
  9470. font-size:12px;
  9471. }
  9472. #u55604 .text {
  9473. position:absolute;
  9474. align-self:flex-start;
  9475. padding:0px 0px 0px 0px;
  9476. box-sizing:border-box;
  9477. width:100%;
  9478. }
  9479. #u55604_text {
  9480. border-width:0px;
  9481. white-space:nowrap;
  9482. text-transform:none;
  9483. }
  9484. #u55605 {
  9485. border-width:0px;
  9486. position:absolute;
  9487. left:0px;
  9488. top:0px;
  9489. width:0px;
  9490. height:0px;
  9491. }
  9492. #u55606 {
  9493. border-width:0px;
  9494. position:absolute;
  9495. left:157px;
  9496. top:792px;
  9497. width:24px;
  9498. height:24px;
  9499. display:flex;
  9500. transition:none;
  9501. font-size:8px;
  9502. }
  9503. #u55606 .text {
  9504. position:absolute;
  9505. align-self:center;
  9506. padding:2px 2px 2px 2px;
  9507. box-sizing:border-box;
  9508. width:100%;
  9509. }
  9510. #u55606_img {
  9511. border-width:0px;
  9512. position:absolute;
  9513. left:0px;
  9514. top:0px;
  9515. width:24px;
  9516. height:24px;
  9517. }
  9518. #u55606_text {
  9519. border-width:0px;
  9520. word-wrap:break-word;
  9521. text-transform:none;
  9522. }
  9523. #u55607_div {
  9524. border-width:0px;
  9525. position:absolute;
  9526. left:0px;
  9527. top:0px;
  9528. width:37px;
  9529. height:17px;
  9530. background:inherit;
  9531. background-color:rgba(255, 255, 255, 0);
  9532. border-radius:0px;
  9533. filter:drop-shadow(none);
  9534. transition:none;
  9535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9536. font-weight:400;
  9537. font-style:normal;
  9538. font-size:12px;
  9539. }
  9540. #u55607 {
  9541. border-width:0px;
  9542. position:absolute;
  9543. left:151px;
  9544. top:817px;
  9545. width:37px;
  9546. height:17px;
  9547. display:flex;
  9548. transition:none;
  9549. transform-origin:50% 50%;
  9550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9551. font-weight:400;
  9552. font-style:normal;
  9553. font-size:12px;
  9554. }
  9555. #u55607 .text {
  9556. position:absolute;
  9557. align-self:flex-start;
  9558. padding:0px 0px 0px 0px;
  9559. box-sizing:border-box;
  9560. width:100%;
  9561. }
  9562. #u55607_text {
  9563. border-width:0px;
  9564. white-space:nowrap;
  9565. text-transform:none;
  9566. }
  9567. #u55608_div {
  9568. border-width:0px;
  9569. position:absolute;
  9570. left:0px;
  9571. top:0px;
  9572. width:375px;
  9573. height:775px;
  9574. background:inherit;
  9575. background-color:rgba(255, 255, 255, 1);
  9576. border-top:0px;
  9577. border-radius:28px;
  9578. border-top-left-radius:0px;
  9579. border-top-right-radius:0px;
  9580. filter:drop-shadow(none);
  9581. transition:none;
  9582. }
  9583. #u55608 {
  9584. border-width:0px;
  9585. position:absolute;
  9586. left:1839px;
  9587. top:66px;
  9588. width:375px;
  9589. height:775px;
  9590. display:flex;
  9591. transition:none;
  9592. transform-origin:50% 50%;
  9593. }
  9594. #u55608 .text {
  9595. position:absolute;
  9596. align-self:center;
  9597. padding:2px 2px 2px 2px;
  9598. box-sizing:border-box;
  9599. width:100%;
  9600. }
  9601. #u55608_text {
  9602. border-width:0px;
  9603. word-wrap:break-word;
  9604. text-transform:none;
  9605. visibility:hidden;
  9606. }
  9607. #u55609_div {
  9608. border-width:0px;
  9609. position:absolute;
  9610. left:0px;
  9611. top:0px;
  9612. width:97px;
  9613. height:30px;
  9614. background:inherit;
  9615. background-color:rgba(255, 255, 255, 0);
  9616. border-left:0px;
  9617. border-top:0px;
  9618. border-right:0px;
  9619. border-radius:0px;
  9620. border-bottom-right-radius:0px;
  9621. border-bottom-left-radius:0px;
  9622. filter:drop-shadow(none);
  9623. transition:none;
  9624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9625. font-weight:400;
  9626. font-style:normal;
  9627. line-height:30px;
  9628. }
  9629. #u55609 {
  9630. border-width:0px;
  9631. position:absolute;
  9632. left:1978px;
  9633. top:227px;
  9634. width:97px;
  9635. height:30px;
  9636. display:flex;
  9637. transition:none;
  9638. transform-origin:50% 50%;
  9639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9640. font-weight:400;
  9641. font-style:normal;
  9642. line-height:30px;
  9643. }
  9644. #u55609 .text {
  9645. position:absolute;
  9646. align-self:center;
  9647. padding:0px 0px 0px 0px;
  9648. box-sizing:border-box;
  9649. width:100%;
  9650. }
  9651. #u55609_text {
  9652. border-width:0px;
  9653. white-space:nowrap;
  9654. text-transform:none;
  9655. }
  9656. #u55610_div {
  9657. border-width:0px;
  9658. position:absolute;
  9659. left:0px;
  9660. top:0px;
  9661. width:126px;
  9662. height:40px;
  9663. background:inherit;
  9664. background-color:rgba(255, 255, 255, 1);
  9665. box-sizing:border-box;
  9666. border-width:1px;
  9667. border-style:solid;
  9668. border-color:rgba(121, 121, 121, 1);
  9669. border-radius:63px;
  9670. filter:drop-shadow(none);
  9671. transition:none;
  9672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9673. font-weight:400;
  9674. font-style:normal;
  9675. font-size:14px;
  9676. }
  9677. #u55610 {
  9678. border-width:0px;
  9679. position:absolute;
  9680. left:2037px;
  9681. top:355px;
  9682. width:126px;
  9683. height:40px;
  9684. display:flex;
  9685. transition:none;
  9686. transform-origin:50% 50%;
  9687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9688. font-weight:400;
  9689. font-style:normal;
  9690. font-size:14px;
  9691. }
  9692. #u55610 .text {
  9693. position:absolute;
  9694. align-self:center;
  9695. padding:2px 2px 2px 2px;
  9696. box-sizing:border-box;
  9697. width:100%;
  9698. }
  9699. #u55610_text {
  9700. border-width:0px;
  9701. word-wrap:break-word;
  9702. text-transform:none;
  9703. }
  9704. #u55611 {
  9705. border-width:0px;
  9706. position:absolute;
  9707. left:1985px;
  9708. top:128px;
  9709. width:83px;
  9710. height:83px;
  9711. display:flex;
  9712. transition:none;
  9713. }
  9714. #u55611 .text {
  9715. position:absolute;
  9716. align-self:center;
  9717. padding:2px 2px 2px 2px;
  9718. box-sizing:border-box;
  9719. width:100%;
  9720. }
  9721. #u55611_img {
  9722. border-width:0px;
  9723. position:absolute;
  9724. left:0px;
  9725. top:0px;
  9726. width:83px;
  9727. height:83px;
  9728. }
  9729. #u55611_text {
  9730. border-width:0px;
  9731. word-wrap:break-word;
  9732. text-transform:none;
  9733. visibility:hidden;
  9734. }
  9735. #u55612_div {
  9736. border-width:0px;
  9737. position:absolute;
  9738. left:0px;
  9739. top:0px;
  9740. width:126px;
  9741. height:40px;
  9742. background:inherit;
  9743. background-color:rgba(255, 255, 255, 1);
  9744. box-sizing:border-box;
  9745. border-width:1px;
  9746. border-style:solid;
  9747. border-color:rgba(121, 121, 121, 1);
  9748. border-radius:63px;
  9749. filter:drop-shadow(none);
  9750. transition:none;
  9751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9752. font-weight:400;
  9753. font-style:normal;
  9754. font-size:14px;
  9755. }
  9756. #u55612 {
  9757. border-width:0px;
  9758. position:absolute;
  9759. left:1891px;
  9760. top:355px;
  9761. width:126px;
  9762. height:40px;
  9763. display:flex;
  9764. transition:none;
  9765. transform-origin:50% 50%;
  9766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9767. font-weight:400;
  9768. font-style:normal;
  9769. font-size:14px;
  9770. }
  9771. #u55612 .text {
  9772. position:absolute;
  9773. align-self:center;
  9774. padding:2px 2px 2px 2px;
  9775. box-sizing:border-box;
  9776. width:100%;
  9777. }
  9778. #u55612_text {
  9779. border-width:0px;
  9780. word-wrap:break-word;
  9781. text-transform:none;
  9782. }
  9783. #u55613_div {
  9784. border-width:0px;
  9785. position:absolute;
  9786. left:0px;
  9787. top:0px;
  9788. width:30px;
  9789. height:30px;
  9790. background:inherit;
  9791. background-color:rgba(255, 255, 255, 0);
  9792. border-left:0px;
  9793. border-top:0px;
  9794. border-right:0px;
  9795. border-radius:0px;
  9796. border-bottom-right-radius:0px;
  9797. border-bottom-left-radius:0px;
  9798. filter:drop-shadow(none);
  9799. transition:none;
  9800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9801. font-weight:400;
  9802. font-style:normal;
  9803. font-size:18px;
  9804. text-align:center;
  9805. line-height:30px;
  9806. }
  9807. #u55613 {
  9808. border-width:0px;
  9809. position:absolute;
  9810. left:1849px;
  9811. top:76px;
  9812. width:30px;
  9813. height:30px;
  9814. display:flex;
  9815. transition:none;
  9816. transform-origin:50% 50%;
  9817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9818. font-weight:400;
  9819. font-style:normal;
  9820. font-size:18px;
  9821. text-align:center;
  9822. line-height:30px;
  9823. }
  9824. #u55613 .text {
  9825. position:absolute;
  9826. align-self:center;
  9827. padding:0px 0px 0px 0px;
  9828. box-sizing:border-box;
  9829. width:100%;
  9830. }
  9831. #u55613_text {
  9832. border-width:0px;
  9833. word-wrap:break-word;
  9834. text-transform:none;
  9835. }
  9836. #u55614 {
  9837. border-width:0px;
  9838. position:absolute;
  9839. left:0px;
  9840. top:0px;
  9841. width:0px;
  9842. height:0px;
  9843. }
  9844. #u55615 {
  9845. border-width:0px;
  9846. position:absolute;
  9847. left:1851px;
  9848. top:403px;
  9849. width:350px;
  9850. height:40px;
  9851. display:flex;
  9852. transition:none;
  9853. }
  9854. #u55615 .text {
  9855. position:absolute;
  9856. align-self:center;
  9857. padding:2px 2px 2px 2px;
  9858. box-sizing:border-box;
  9859. width:100%;
  9860. }
  9861. #u55615_img {
  9862. border-width:0px;
  9863. position:absolute;
  9864. left:0px;
  9865. top:0px;
  9866. width:350px;
  9867. height:40px;
  9868. }
  9869. #u55615_text {
  9870. border-width:0px;
  9871. word-wrap:break-word;
  9872. text-transform:none;
  9873. visibility:hidden;
  9874. }
  9875. #u55616 {
  9876. border-width:0px;
  9877. position:absolute;
  9878. left:0px;
  9879. top:0px;
  9880. width:0px;
  9881. height:0px;
  9882. }
  9883. #u55617_div {
  9884. border-width:0px;
  9885. position:absolute;
  9886. left:0px;
  9887. top:0px;
  9888. width:221px;
  9889. height:30px;
  9890. background:inherit;
  9891. background-color:rgba(255, 255, 255, 0);
  9892. border-left:0px;
  9893. border-top:0px;
  9894. border-right:0px;
  9895. border-radius:0px;
  9896. border-bottom-right-radius:0px;
  9897. border-bottom-left-radius:0px;
  9898. filter:drop-shadow(none);
  9899. transition:none;
  9900. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9901. font-style:normal;
  9902. color:#FFFFFF;
  9903. text-align:center;
  9904. line-height:30px;
  9905. }
  9906. #u55617 {
  9907. border-width:0px;
  9908. position:absolute;
  9909. left:1931px;
  9910. top:408px;
  9911. width:221px;
  9912. height:30px;
  9913. display:flex;
  9914. transition:none;
  9915. transform-origin:50% 50%;
  9916. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9917. font-style:normal;
  9918. color:#FFFFFF;
  9919. text-align:center;
  9920. line-height:30px;
  9921. }
  9922. #u55617 .text {
  9923. position:absolute;
  9924. align-self:center;
  9925. padding:0px 0px 0px 0px;
  9926. box-sizing:border-box;
  9927. width:100%;
  9928. }
  9929. #u55617_text {
  9930. border-width:0px;
  9931. white-space:nowrap;
  9932. text-transform:none;
  9933. }
  9934. #u55618 {
  9935. border-width:0px;
  9936. position:absolute;
  9937. left:1901px;
  9938. top:410px;
  9939. width:26px;
  9940. height:26px;
  9941. display:flex;
  9942. transition:none;
  9943. }
  9944. #u55618 .text {
  9945. position:absolute;
  9946. align-self:center;
  9947. padding:2px 2px 2px 2px;
  9948. box-sizing:border-box;
  9949. width:100%;
  9950. }
  9951. #u55618_img {
  9952. border-width:0px;
  9953. position:absolute;
  9954. left:0px;
  9955. top:0px;
  9956. width:26px;
  9957. height:26px;
  9958. }
  9959. #u55618_text {
  9960. border-width:0px;
  9961. word-wrap:break-word;
  9962. text-transform:none;
  9963. }
  9964. #u55619_div {
  9965. border-width:0px;
  9966. position:absolute;
  9967. left:0px;
  9968. top:0px;
  9969. width:267px;
  9970. height:30px;
  9971. background:inherit;
  9972. background-color:rgba(255, 255, 255, 0);
  9973. border-left:0px;
  9974. border-top:0px;
  9975. border-right:0px;
  9976. border-radius:0px;
  9977. border-bottom-right-radius:0px;
  9978. border-bottom-left-radius:0px;
  9979. filter:drop-shadow(none);
  9980. transition:none;
  9981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9982. font-weight:400;
  9983. font-style:normal;
  9984. font-size:14px;
  9985. text-align:center;
  9986. line-height:30px;
  9987. }
  9988. #u55619 {
  9989. border-width:0px;
  9990. position:absolute;
  9991. left:1892px;
  9992. top:285px;
  9993. width:267px;
  9994. height:30px;
  9995. display:flex;
  9996. transition:none;
  9997. transform-origin:50% 50%;
  9998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9999. font-weight:400;
  10000. font-style:normal;
  10001. font-size:14px;
  10002. text-align:center;
  10003. line-height:30px;
  10004. }
  10005. #u55619 .text {
  10006. position:absolute;
  10007. align-self:center;
  10008. padding:0px 0px 0px 0px;
  10009. box-sizing:border-box;
  10010. width:100%;
  10011. }
  10012. #u55619_text {
  10013. border-width:0px;
  10014. white-space:nowrap;
  10015. text-transform:none;
  10016. }
  10017. #u55620_div {
  10018. border-width:0px;
  10019. position:absolute;
  10020. left:0px;
  10021. top:0px;
  10022. width:363px;
  10023. height:30px;
  10024. background:inherit;
  10025. background-color:rgba(255, 255, 255, 0);
  10026. border-left:0px;
  10027. border-top:0px;
  10028. border-right:0px;
  10029. border-radius:0px;
  10030. border-bottom-right-radius:0px;
  10031. border-bottom-left-radius:0px;
  10032. filter:drop-shadow(none);
  10033. transition:none;
  10034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10035. font-weight:400;
  10036. font-style:normal;
  10037. font-size:14px;
  10038. color:#D9001B;
  10039. line-height:30px;
  10040. }
  10041. #u55620 {
  10042. border-width:0px;
  10043. position:absolute;
  10044. left:1851px;
  10045. top:472px;
  10046. width:363px;
  10047. height:30px;
  10048. display:flex;
  10049. transition:none;
  10050. transform-origin:50% 50%;
  10051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10052. font-weight:400;
  10053. font-style:normal;
  10054. font-size:14px;
  10055. color:#D9001B;
  10056. line-height:30px;
  10057. }
  10058. #u55620 .text {
  10059. position:absolute;
  10060. align-self:flex-start;
  10061. padding:0px 0px 0px 0px;
  10062. box-sizing:border-box;
  10063. width:100%;
  10064. }
  10065. #u55620_text {
  10066. border-width:0px;
  10067. word-wrap:break-word;
  10068. text-transform:none;
  10069. }
  10070. #u55621_div {
  10071. border-width:0px;
  10072. position:absolute;
  10073. left:0px;
  10074. top:0px;
  10075. width:463px;
  10076. height:25px;
  10077. background:inherit;
  10078. background-color:rgba(255, 255, 255, 0);
  10079. border-left:0px;
  10080. border-top:0px;
  10081. border-right:0px;
  10082. border-radius:0px;
  10083. border-bottom-right-radius:0px;
  10084. border-bottom-left-radius:0px;
  10085. filter:drop-shadow(none);
  10086. transition:none;
  10087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10088. font-weight:400;
  10089. font-style:normal;
  10090. font-size:12px;
  10091. color:#D9001B;
  10092. line-height:25px;
  10093. }
  10094. #u55621 {
  10095. border-width:0px;
  10096. position:absolute;
  10097. left:29px;
  10098. top:1106px;
  10099. width:463px;
  10100. height:25px;
  10101. display:flex;
  10102. transition:none;
  10103. transform-origin:50% 50%;
  10104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10105. font-weight:400;
  10106. font-style:normal;
  10107. font-size:12px;
  10108. color:#D9001B;
  10109. line-height:25px;
  10110. }
  10111. #u55621 .text {
  10112. position:absolute;
  10113. align-self:flex-start;
  10114. padding:0px 0px 0px 0px;
  10115. box-sizing:border-box;
  10116. width:100%;
  10117. }
  10118. #u55621_text {
  10119. border-width:0px;
  10120. white-space:nowrap;
  10121. text-transform:none;
  10122. }
  10123. #u55622_div {
  10124. border-width:0px;
  10125. position:absolute;
  10126. left:0px;
  10127. top:0px;
  10128. width:369px;
  10129. height:50px;
  10130. background:inherit;
  10131. background-color:rgba(255, 255, 255, 0);
  10132. border-left:0px;
  10133. border-top:0px;
  10134. border-right:0px;
  10135. border-radius:0px;
  10136. border-bottom-right-radius:0px;
  10137. border-bottom-left-radius:0px;
  10138. filter:drop-shadow(none);
  10139. transition:none;
  10140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10141. font-weight:400;
  10142. font-style:normal;
  10143. font-size:12px;
  10144. color:#D9001B;
  10145. line-height:25px;
  10146. }
  10147. #u55622 {
  10148. border-width:0px;
  10149. position:absolute;
  10150. left:29px;
  10151. top:1373px;
  10152. width:369px;
  10153. height:50px;
  10154. display:flex;
  10155. transition:none;
  10156. transform-origin:50% 50%;
  10157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10158. font-weight:400;
  10159. font-style:normal;
  10160. font-size:12px;
  10161. color:#D9001B;
  10162. line-height:25px;
  10163. }
  10164. #u55622 .text {
  10165. position:absolute;
  10166. align-self:flex-start;
  10167. padding:0px 0px 0px 0px;
  10168. box-sizing:border-box;
  10169. width:100%;
  10170. }
  10171. #u55622_text {
  10172. border-width:0px;
  10173. word-wrap:break-word;
  10174. text-transform:none;
  10175. }
  10176. #u55623 {
  10177. border-width:0px;
  10178. position:absolute;
  10179. left:0px;
  10180. top:0px;
  10181. width:0px;
  10182. height:0px;
  10183. }
  10184. #u55624_div {
  10185. border-width:0px;
  10186. position:absolute;
  10187. left:0px;
  10188. top:0px;
  10189. width:346px;
  10190. height:219px;
  10191. background:inherit;
  10192. background-color:rgba(255, 255, 255, 1);
  10193. border-radius:9px;
  10194. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  10195. transition:none;
  10196. }
  10197. #u55624 {
  10198. border-width:0px;
  10199. position:absolute;
  10200. left:409px;
  10201. top:1139px;
  10202. width:346px;
  10203. height:219px;
  10204. display:flex;
  10205. transition:none;
  10206. transform-origin:50% 50%;
  10207. }
  10208. #u55624 .text {
  10209. position:absolute;
  10210. align-self:center;
  10211. padding:2px 2px 2px 2px;
  10212. box-sizing:border-box;
  10213. width:100%;
  10214. }
  10215. #u55624_text {
  10216. border-width:0px;
  10217. word-wrap:break-word;
  10218. text-transform:none;
  10219. visibility:hidden;
  10220. }
  10221. #u55625_div {
  10222. border-width:0px;
  10223. position:absolute;
  10224. left:0px;
  10225. top:0px;
  10226. width:49px;
  10227. height:33px;
  10228. background:inherit;
  10229. background-color:rgba(255, 255, 255, 0);
  10230. border-radius:0px;
  10231. filter:drop-shadow(none);
  10232. transition:none;
  10233. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  10234. font-weight:650;
  10235. font-style:normal;
  10236. font-size:24px;
  10237. text-align:center;
  10238. }
  10239. #u55625 {
  10240. border-width:0px;
  10241. position:absolute;
  10242. left:558px;
  10243. top:1177px;
  10244. width:49px;
  10245. height:33px;
  10246. display:flex;
  10247. transition:none;
  10248. transform-origin:50% 50%;
  10249. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  10250. font-weight:650;
  10251. font-style:normal;
  10252. font-size:24px;
  10253. text-align:center;
  10254. }
  10255. #u55625 .text {
  10256. position:absolute;
  10257. align-self:center;
  10258. padding:0px 0px 0px 0px;
  10259. box-sizing:border-box;
  10260. width:100%;
  10261. }
  10262. #u55625_text {
  10263. border-width:0px;
  10264. white-space:nowrap;
  10265. text-transform:none;
  10266. }
  10267. #u55626_div {
  10268. border-width:0px;
  10269. position:absolute;
  10270. left:0px;
  10271. top:0px;
  10272. width:173px;
  10273. height:60px;
  10274. background:inherit;
  10275. background-color:rgba(255, 255, 255, 0);
  10276. box-sizing:border-box;
  10277. border-width:1px;
  10278. border-style:solid;
  10279. border-color:rgba(215, 215, 215, 1);
  10280. border-left:0px;
  10281. border-bottom:0px;
  10282. border-radius:0px;
  10283. border-top-left-radius:0px;
  10284. border-bottom-right-radius:0px;
  10285. filter:drop-shadow(none);
  10286. transition:none;
  10287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10288. font-weight:400;
  10289. font-style:normal;
  10290. font-size:22px;
  10291. color:#0099FF;
  10292. text-align:center;
  10293. }
  10294. #u55626 {
  10295. border-width:0px;
  10296. position:absolute;
  10297. left:408px;
  10298. top:1298px;
  10299. width:173px;
  10300. height:60px;
  10301. display:flex;
  10302. transition:none;
  10303. transform-origin:50% 50%;
  10304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10305. font-weight:400;
  10306. font-style:normal;
  10307. font-size:22px;
  10308. color:#0099FF;
  10309. text-align:center;
  10310. }
  10311. #u55626 .text {
  10312. position:absolute;
  10313. align-self:center;
  10314. padding:0px 0px 0px 0px;
  10315. box-sizing:border-box;
  10316. width:100%;
  10317. }
  10318. #u55626_text {
  10319. border-width:0px;
  10320. word-wrap:break-word;
  10321. text-transform:none;
  10322. }
  10323. #u55627_div {
  10324. border-width:0px;
  10325. position:absolute;
  10326. left:0px;
  10327. top:0px;
  10328. width:173px;
  10329. height:60px;
  10330. background:inherit;
  10331. background-color:rgba(255, 255, 255, 0);
  10332. box-sizing:border-box;
  10333. border-width:1px;
  10334. border-style:solid;
  10335. border-color:rgba(215, 215, 215, 1);
  10336. border-left:0px;
  10337. border-right:0px;
  10338. border-bottom:0px;
  10339. border-radius:0px;
  10340. border-top-left-radius:0px;
  10341. border-top-right-radius:0px;
  10342. filter:drop-shadow(none);
  10343. transition:none;
  10344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10345. font-weight:400;
  10346. font-style:normal;
  10347. font-size:22px;
  10348. color:#0099FF;
  10349. text-align:center;
  10350. }
  10351. #u55627 {
  10352. border-width:0px;
  10353. position:absolute;
  10354. left:581px;
  10355. top:1298px;
  10356. width:173px;
  10357. height:60px;
  10358. display:flex;
  10359. transition:none;
  10360. transform-origin:50% 50%;
  10361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10362. font-weight:400;
  10363. font-style:normal;
  10364. font-size:22px;
  10365. color:#0099FF;
  10366. text-align:center;
  10367. }
  10368. #u55627 .text {
  10369. position:absolute;
  10370. align-self:center;
  10371. padding:0px 0px 0px 0px;
  10372. box-sizing:border-box;
  10373. width:100%;
  10374. }
  10375. #u55627_text {
  10376. border-width:0px;
  10377. word-wrap:break-word;
  10378. text-transform:none;
  10379. }
  10380. #u55628_div {
  10381. border-width:0px;
  10382. position:absolute;
  10383. left:0px;
  10384. top:0px;
  10385. width:287px;
  10386. height:40px;
  10387. background:inherit;
  10388. background-color:rgba(255, 255, 255, 0);
  10389. border-radius:0px;
  10390. filter:drop-shadow(none);
  10391. transition:none;
  10392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10393. font-weight:400;
  10394. font-style:normal;
  10395. font-size:14px;
  10396. text-align:center;
  10397. }
  10398. #u55628 {
  10399. border-width:0px;
  10400. position:absolute;
  10401. left:441px;
  10402. top:1232px;
  10403. width:287px;
  10404. height:40px;
  10405. display:flex;
  10406. transition:none;
  10407. transform-origin:50% 50%;
  10408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10409. font-weight:400;
  10410. font-style:normal;
  10411. font-size:14px;
  10412. text-align:center;
  10413. }
  10414. #u55628 .text {
  10415. position:absolute;
  10416. align-self:center;
  10417. padding:0px 0px 0px 0px;
  10418. box-sizing:border-box;
  10419. width:100%;
  10420. }
  10421. #u55628_text {
  10422. border-width:0px;
  10423. word-wrap:break-word;
  10424. text-transform:none;
  10425. }
  10426. #u55629 {
  10427. border-width:0px;
  10428. position:absolute;
  10429. left:0px;
  10430. top:0px;
  10431. width:0px;
  10432. height:0px;
  10433. }
  10434. #u55630_div {
  10435. border-width:0px;
  10436. position:absolute;
  10437. left:0px;
  10438. top:0px;
  10439. width:346px;
  10440. height:219px;
  10441. background:inherit;
  10442. background-color:rgba(255, 255, 255, 1);
  10443. border-radius:9px;
  10444. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  10445. transition:none;
  10446. }
  10447. #u55630 {
  10448. border-width:0px;
  10449. position:absolute;
  10450. left:30px;
  10451. top:1139px;
  10452. width:346px;
  10453. height:219px;
  10454. display:flex;
  10455. transition:none;
  10456. transform-origin:50% 50%;
  10457. }
  10458. #u55630 .text {
  10459. position:absolute;
  10460. align-self:center;
  10461. padding:2px 2px 2px 2px;
  10462. box-sizing:border-box;
  10463. width:100%;
  10464. }
  10465. #u55630_text {
  10466. border-width:0px;
  10467. word-wrap:break-word;
  10468. text-transform:none;
  10469. visibility:hidden;
  10470. }
  10471. #u55631_div {
  10472. border-width:0px;
  10473. position:absolute;
  10474. left:0px;
  10475. top:0px;
  10476. width:49px;
  10477. height:33px;
  10478. background:inherit;
  10479. background-color:rgba(255, 255, 255, 0);
  10480. border-radius:0px;
  10481. filter:drop-shadow(none);
  10482. transition:none;
  10483. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  10484. font-weight:650;
  10485. font-style:normal;
  10486. font-size:24px;
  10487. text-align:center;
  10488. }
  10489. #u55631 {
  10490. border-width:0px;
  10491. position:absolute;
  10492. left:179px;
  10493. top:1177px;
  10494. width:49px;
  10495. height:33px;
  10496. display:flex;
  10497. transition:none;
  10498. transform-origin:50% 50%;
  10499. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  10500. font-weight:650;
  10501. font-style:normal;
  10502. font-size:24px;
  10503. text-align:center;
  10504. }
  10505. #u55631 .text {
  10506. position:absolute;
  10507. align-self:center;
  10508. padding:0px 0px 0px 0px;
  10509. box-sizing:border-box;
  10510. width:100%;
  10511. }
  10512. #u55631_text {
  10513. border-width:0px;
  10514. white-space:nowrap;
  10515. text-transform:none;
  10516. }
  10517. #u55632_div {
  10518. border-width:0px;
  10519. position:absolute;
  10520. left:0px;
  10521. top:0px;
  10522. width:173px;
  10523. height:60px;
  10524. background:inherit;
  10525. background-color:rgba(255, 255, 255, 0);
  10526. box-sizing:border-box;
  10527. border-width:1px;
  10528. border-style:solid;
  10529. border-color:rgba(215, 215, 215, 1);
  10530. border-left:0px;
  10531. border-bottom:0px;
  10532. border-radius:0px;
  10533. border-top-left-radius:0px;
  10534. border-bottom-right-radius:0px;
  10535. filter:drop-shadow(none);
  10536. transition:none;
  10537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10538. font-weight:400;
  10539. font-style:normal;
  10540. font-size:22px;
  10541. color:#0099FF;
  10542. text-align:center;
  10543. }
  10544. #u55632 {
  10545. border-width:0px;
  10546. position:absolute;
  10547. left:29px;
  10548. top:1298px;
  10549. width:173px;
  10550. height:60px;
  10551. display:flex;
  10552. transition:none;
  10553. transform-origin:50% 50%;
  10554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10555. font-weight:400;
  10556. font-style:normal;
  10557. font-size:22px;
  10558. color:#0099FF;
  10559. text-align:center;
  10560. }
  10561. #u55632 .text {
  10562. position:absolute;
  10563. align-self:center;
  10564. padding:0px 0px 0px 0px;
  10565. box-sizing:border-box;
  10566. width:100%;
  10567. }
  10568. #u55632_text {
  10569. border-width:0px;
  10570. word-wrap:break-word;
  10571. text-transform:none;
  10572. }
  10573. #u55633_div {
  10574. border-width:0px;
  10575. position:absolute;
  10576. left:0px;
  10577. top:0px;
  10578. width:173px;
  10579. height:60px;
  10580. background:inherit;
  10581. background-color:rgba(255, 255, 255, 0);
  10582. box-sizing:border-box;
  10583. border-width:1px;
  10584. border-style:solid;
  10585. border-color:rgba(215, 215, 215, 1);
  10586. border-left:0px;
  10587. border-right:0px;
  10588. border-bottom:0px;
  10589. border-radius:0px;
  10590. border-top-left-radius:0px;
  10591. border-top-right-radius:0px;
  10592. filter:drop-shadow(none);
  10593. transition:none;
  10594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10595. font-weight:400;
  10596. font-style:normal;
  10597. font-size:22px;
  10598. color:#0099FF;
  10599. text-align:center;
  10600. }
  10601. #u55633 {
  10602. border-width:0px;
  10603. position:absolute;
  10604. left:202px;
  10605. top:1298px;
  10606. width:173px;
  10607. height:60px;
  10608. display:flex;
  10609. transition:none;
  10610. transform-origin:50% 50%;
  10611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10612. font-weight:400;
  10613. font-style:normal;
  10614. font-size:22px;
  10615. color:#0099FF;
  10616. text-align:center;
  10617. }
  10618. #u55633 .text {
  10619. position:absolute;
  10620. align-self:center;
  10621. padding:0px 0px 0px 0px;
  10622. box-sizing:border-box;
  10623. width:100%;
  10624. }
  10625. #u55633_text {
  10626. border-width:0px;
  10627. word-wrap:break-word;
  10628. text-transform:none;
  10629. }
  10630. #u55634_div {
  10631. border-width:0px;
  10632. position:absolute;
  10633. left:0px;
  10634. top:0px;
  10635. width:287px;
  10636. height:40px;
  10637. background:inherit;
  10638. background-color:rgba(255, 255, 255, 0);
  10639. border-radius:0px;
  10640. filter:drop-shadow(none);
  10641. transition:none;
  10642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10643. font-weight:400;
  10644. font-style:normal;
  10645. font-size:14px;
  10646. text-align:center;
  10647. }
  10648. #u55634 {
  10649. border-width:0px;
  10650. position:absolute;
  10651. left:62px;
  10652. top:1232px;
  10653. width:287px;
  10654. height:40px;
  10655. display:flex;
  10656. transition:none;
  10657. transform-origin:50% 50%;
  10658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10659. font-weight:400;
  10660. font-style:normal;
  10661. font-size:14px;
  10662. text-align:center;
  10663. }
  10664. #u55634 .text {
  10665. position:absolute;
  10666. align-self:center;
  10667. padding:0px 0px 0px 0px;
  10668. box-sizing:border-box;
  10669. width:100%;
  10670. }
  10671. #u55634_text {
  10672. border-width:0px;
  10673. word-wrap:break-word;
  10674. text-transform:none;
  10675. }
  10676. #u55635_div {
  10677. border-width:0px;
  10678. position:absolute;
  10679. left:0px;
  10680. top:0px;
  10681. width:329px;
  10682. height:25px;
  10683. background:inherit;
  10684. background-color:rgba(255, 255, 255, 0);
  10685. border-left:0px;
  10686. border-top:0px;
  10687. border-right:0px;
  10688. border-radius:0px;
  10689. border-bottom-right-radius:0px;
  10690. border-bottom-left-radius:0px;
  10691. filter:drop-shadow(none);
  10692. transition:none;
  10693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10694. font-weight:400;
  10695. font-style:normal;
  10696. font-size:12px;
  10697. color:#D9001B;
  10698. line-height:25px;
  10699. }
  10700. #u55635 {
  10701. border-width:0px;
  10702. position:absolute;
  10703. left:426px;
  10704. top:1379px;
  10705. width:329px;
  10706. height:25px;
  10707. display:flex;
  10708. transition:none;
  10709. transform-origin:50% 50%;
  10710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10711. font-weight:400;
  10712. font-style:normal;
  10713. font-size:12px;
  10714. color:#D9001B;
  10715. line-height:25px;
  10716. }
  10717. #u55635 .text {
  10718. position:absolute;
  10719. align-self:flex-start;
  10720. padding:0px 0px 0px 0px;
  10721. box-sizing:border-box;
  10722. width:100%;
  10723. }
  10724. #u55635_text {
  10725. border-width:0px;
  10726. word-wrap:break-word;
  10727. text-transform:none;
  10728. }
  10729. #u55636 {
  10730. border-width:0px;
  10731. position:absolute;
  10732. left:0px;
  10733. top:0px;
  10734. width:0px;
  10735. height:0px;
  10736. }
  10737. #u55637_div {
  10738. border-width:0px;
  10739. position:absolute;
  10740. left:0px;
  10741. top:0px;
  10742. width:57px;
  10743. height:40px;
  10744. background:inherit;
  10745. background-color:rgba(255, 255, 255, 0);
  10746. border-left:0px;
  10747. border-top:0px;
  10748. border-right:0px;
  10749. border-radius:0px;
  10750. border-bottom-right-radius:0px;
  10751. border-bottom-left-radius:0px;
  10752. filter:drop-shadow(none);
  10753. transition:none;
  10754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10755. font-weight:400;
  10756. font-style:normal;
  10757. font-size:14px;
  10758. line-height:40px;
  10759. }
  10760. #u55637 {
  10761. border-width:0px;
  10762. position:absolute;
  10763. left:51px;
  10764. top:854px;
  10765. width:57px;
  10766. height:40px;
  10767. display:flex;
  10768. transition:none;
  10769. transform-origin:50% 50%;
  10770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10771. font-weight:400;
  10772. font-style:normal;
  10773. font-size:14px;
  10774. line-height:40px;
  10775. }
  10776. #u55637 .text {
  10777. position:absolute;
  10778. align-self:flex-start;
  10779. padding:0px 0px 0px 0px;
  10780. box-sizing:border-box;
  10781. width:100%;
  10782. }
  10783. #u55637_text {
  10784. border-width:0px;
  10785. white-space:nowrap;
  10786. text-transform:none;
  10787. }
  10788. #u55638_div {
  10789. border-width:0px;
  10790. position:absolute;
  10791. left:0px;
  10792. top:0px;
  10793. width:229px;
  10794. height:34px;
  10795. background:inherit;
  10796. background-color:rgba(255, 255, 255, 0);
  10797. border-left:0px;
  10798. border-top:0px;
  10799. border-right:0px;
  10800. border-radius:0px;
  10801. border-bottom-right-radius:0px;
  10802. border-bottom-left-radius:0px;
  10803. filter:drop-shadow(none);
  10804. transition:none;
  10805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10806. font-weight:400;
  10807. font-style:normal;
  10808. font-size:12px;
  10809. color:#AAAAAA;
  10810. }
  10811. #u55638 {
  10812. border-width:0px;
  10813. position:absolute;
  10814. left:153px;
  10815. top:894px;
  10816. width:229px;
  10817. height:34px;
  10818. display:flex;
  10819. transition:none;
  10820. transform-origin:50% 50%;
  10821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10822. font-weight:400;
  10823. font-style:normal;
  10824. font-size:12px;
  10825. color:#AAAAAA;
  10826. }
  10827. #u55638 .text {
  10828. position:absolute;
  10829. align-self:flex-start;
  10830. padding:0px 0px 0px 0px;
  10831. box-sizing:border-box;
  10832. width:100%;
  10833. }
  10834. #u55638_text {
  10835. border-width:0px;
  10836. white-space:nowrap;
  10837. text-transform:none;
  10838. }
  10839. #u55639 {
  10840. border-width:0px;
  10841. position:absolute;
  10842. left:51px;
  10843. top:894px;
  10844. width:90px;
  10845. height:90px;
  10846. display:flex;
  10847. transition:none;
  10848. font-size:28px;
  10849. }
  10850. #u55639 .text {
  10851. position:absolute;
  10852. align-self:center;
  10853. padding:2px 2px 2px 2px;
  10854. box-sizing:border-box;
  10855. width:100%;
  10856. }
  10857. #u55639_img {
  10858. border-width:0px;
  10859. position:absolute;
  10860. left:0px;
  10861. top:0px;
  10862. width:90px;
  10863. height:90px;
  10864. }
  10865. #u55639_text {
  10866. border-width:0px;
  10867. word-wrap:break-word;
  10868. text-transform:none;
  10869. }
  10870. #u55640 {
  10871. border-width:0px;
  10872. position:absolute;
  10873. left:0px;
  10874. top:0px;
  10875. width:0px;
  10876. height:0px;
  10877. }
  10878. #u55641_div {
  10879. border-width:0px;
  10880. position:absolute;
  10881. left:0px;
  10882. top:0px;
  10883. width:57px;
  10884. height:40px;
  10885. background:inherit;
  10886. background-color:rgba(255, 255, 255, 0);
  10887. border-left:0px;
  10888. border-top:0px;
  10889. border-right:0px;
  10890. border-radius:0px;
  10891. border-bottom-right-radius:0px;
  10892. border-bottom-left-radius:0px;
  10893. filter:drop-shadow(none);
  10894. transition:none;
  10895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10896. font-weight:400;
  10897. font-style:normal;
  10898. font-size:14px;
  10899. line-height:40px;
  10900. }
  10901. #u55641 {
  10902. border-width:0px;
  10903. position:absolute;
  10904. left:504px;
  10905. top:854px;
  10906. width:57px;
  10907. height:40px;
  10908. display:flex;
  10909. transition:none;
  10910. transform-origin:50% 50%;
  10911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10912. font-weight:400;
  10913. font-style:normal;
  10914. font-size:14px;
  10915. line-height:40px;
  10916. }
  10917. #u55641 .text {
  10918. position:absolute;
  10919. align-self:flex-start;
  10920. padding:0px 0px 0px 0px;
  10921. box-sizing:border-box;
  10922. width:100%;
  10923. }
  10924. #u55641_text {
  10925. border-width:0px;
  10926. white-space:nowrap;
  10927. text-transform:none;
  10928. }
  10929. #u55642_div {
  10930. border-width:0px;
  10931. position:absolute;
  10932. left:0px;
  10933. top:0px;
  10934. width:229px;
  10935. height:34px;
  10936. background:inherit;
  10937. background-color:rgba(255, 255, 255, 0);
  10938. border-left:0px;
  10939. border-top:0px;
  10940. border-right:0px;
  10941. border-radius:0px;
  10942. border-bottom-right-radius:0px;
  10943. border-bottom-left-radius:0px;
  10944. filter:drop-shadow(none);
  10945. transition:none;
  10946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10947. font-weight:400;
  10948. font-style:normal;
  10949. font-size:12px;
  10950. color:#AAAAAA;
  10951. }
  10952. #u55642 {
  10953. border-width:0px;
  10954. position:absolute;
  10955. left:606px;
  10956. top:894px;
  10957. width:229px;
  10958. height:34px;
  10959. display:flex;
  10960. transition:none;
  10961. transform-origin:50% 50%;
  10962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10963. font-weight:400;
  10964. font-style:normal;
  10965. font-size:12px;
  10966. color:#AAAAAA;
  10967. }
  10968. #u55642 .text {
  10969. position:absolute;
  10970. align-self:flex-start;
  10971. padding:0px 0px 0px 0px;
  10972. box-sizing:border-box;
  10973. width:100%;
  10974. }
  10975. #u55642_text {
  10976. border-width:0px;
  10977. white-space:nowrap;
  10978. text-transform:none;
  10979. }
  10980. #u55643 {
  10981. border-width:0px;
  10982. position:absolute;
  10983. left:504px;
  10984. top:894px;
  10985. width:90px;
  10986. height:90px;
  10987. display:flex;
  10988. transition:none;
  10989. font-size:28px;
  10990. }
  10991. #u55643 .text {
  10992. position:absolute;
  10993. align-self:center;
  10994. padding:2px 2px 2px 2px;
  10995. box-sizing:border-box;
  10996. width:100%;
  10997. }
  10998. #u55643_img {
  10999. border-width:0px;
  11000. position:absolute;
  11001. left:0px;
  11002. top:0px;
  11003. width:90px;
  11004. height:90px;
  11005. }
  11006. #u55643_text {
  11007. border-width:0px;
  11008. word-wrap:break-word;
  11009. text-transform:none;
  11010. }