styles.css 227 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2905px;
  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. #u50278_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u50278 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u50278 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u50278_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u50279_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u50279 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u50279 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u50279_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u50280_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u50280 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u50280 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u50280_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u50281 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u50282_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u50282 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u50282 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u50282_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u50283_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u50283 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u50283 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u50283_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u50284_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u50284 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u50284 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u50284_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u50285 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u50286_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u50286_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u50286_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u50286 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u50286 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u50286_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u50286.disabled {
  356. }
  357. .u50286_input_option {
  358. font-size:14px;
  359. }
  360. #u50287_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u50287 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u50287 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u50287_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u50288_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u50288 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u50288 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u50288_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u50289_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u50289 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u50289 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u50289_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u50290 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u50291_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u50291 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u50291 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u50291_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u50292_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u50292 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u50292 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u50292_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u50293 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u50294_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u50294 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u50294 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u50294_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u50295_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u50295 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u50295 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u50295_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u50296 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u50297_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u50297 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u50297 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u50297_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u50298_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u50298 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u50298 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u50298_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u50299 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u50300_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u50300 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u50300 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u50300_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u50301_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u50301 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u50301 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u50301_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u50302 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u50303_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u50303 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u50303 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u50303_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u50304_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u50304 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u50304 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u50304_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u50305 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u50306_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u50306 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u50306 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u50306_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u50307_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u50307 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u50307 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u50307_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u50308 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u50309_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u50309 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u50309 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u50309_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u50310_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u50310 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u50310 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u50310_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u50311 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u50312_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u50312 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u50312 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u50312_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u50313_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u50313 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u50313 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u50313_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u50314 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u50315_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u50315 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u50315 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u50315_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u50316_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u50316 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u50316 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u50316_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u50317 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u50318_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u50318 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u50318 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u50318_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u50319_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u50319 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u50319 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u50319_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u50320_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u50320 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u50320 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u50320_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u50321_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u50321 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u50321 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u50321_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u50322_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u50322 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u50322 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u50322_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u50323_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u50323 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u50323 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u50323_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u50324 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u50325_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u50325 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u50325 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u50325_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u50326_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u50326 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u50326 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u50326_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u50327 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u50328_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u50328 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u50328 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u50328_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u50329_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u50329 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u50329 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u50329_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u50330 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u50331_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:1265px;
  1652. height:1193px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 1);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1658. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1659. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1660. color:#1890FF;
  1661. }
  1662. #u50331 {
  1663. border-width:0px;
  1664. position:absolute;
  1665. left:329px;
  1666. top:50px;
  1667. width:1265px;
  1668. height:1193px;
  1669. display:flex;
  1670. color:#1890FF;
  1671. }
  1672. #u50331 .text {
  1673. position:absolute;
  1674. align-self:center;
  1675. padding:2px 2px 2px 2px;
  1676. box-sizing:border-box;
  1677. width:100%;
  1678. }
  1679. #u50331_text {
  1680. border-width:0px;
  1681. word-wrap:break-word;
  1682. text-transform:none;
  1683. visibility:hidden;
  1684. }
  1685. #u50332_div {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:0px;
  1689. top:0px;
  1690. width:73px;
  1691. height:50px;
  1692. background:inherit;
  1693. background-color:rgba(255, 255, 255, 0);
  1694. border:none;
  1695. border-left:0px;
  1696. border-top:0px;
  1697. border-right:0px;
  1698. border-radius:0px;
  1699. border-bottom-right-radius:0px;
  1700. border-bottom-left-radius:0px;
  1701. -moz-box-shadow:none;
  1702. -webkit-box-shadow:none;
  1703. box-shadow:none;
  1704. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1705. font-weight:500;
  1706. font-style:normal;
  1707. font-size:18px;
  1708. color:#1890FF;
  1709. }
  1710. #u50332 {
  1711. border-width:0px;
  1712. position:absolute;
  1713. left:348px;
  1714. top:50px;
  1715. width:73px;
  1716. height:50px;
  1717. display:flex;
  1718. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1719. font-weight:500;
  1720. font-style:normal;
  1721. font-size:18px;
  1722. color:#1890FF;
  1723. }
  1724. #u50332 .text {
  1725. position:absolute;
  1726. align-self:center;
  1727. padding:0px 0px 0px 0px;
  1728. box-sizing:border-box;
  1729. width:100%;
  1730. }
  1731. #u50332_text {
  1732. border-width:0px;
  1733. white-space:nowrap;
  1734. text-transform:none;
  1735. }
  1736. #u50333 {
  1737. border-width:0px;
  1738. position:absolute;
  1739. left:0px;
  1740. top:0px;
  1741. width:0px;
  1742. height:0px;
  1743. }
  1744. #u50334_div {
  1745. border-width:0px;
  1746. position:absolute;
  1747. left:0px;
  1748. top:0px;
  1749. width:220px;
  1750. height:250px;
  1751. background:inherit;
  1752. background-color:rgba(255, 255, 255, 1);
  1753. box-sizing:border-box;
  1754. border-width:1px;
  1755. border-style:solid;
  1756. border-color:rgba(121, 121, 121, 1);
  1757. border-radius:0px;
  1758. -moz-box-shadow:none;
  1759. -webkit-box-shadow:none;
  1760. box-shadow:none;
  1761. }
  1762. #u50334 {
  1763. border-width:0px;
  1764. position:absolute;
  1765. left:349px;
  1766. top:160px;
  1767. width:220px;
  1768. height:250px;
  1769. display:flex;
  1770. }
  1771. #u50334 .text {
  1772. position:absolute;
  1773. align-self:center;
  1774. padding:2px 2px 2px 2px;
  1775. box-sizing:border-box;
  1776. width:100%;
  1777. }
  1778. #u50334_text {
  1779. border-width:0px;
  1780. word-wrap:break-word;
  1781. text-transform:none;
  1782. visibility:hidden;
  1783. }
  1784. #u50335_div {
  1785. border-width:0px;
  1786. position:absolute;
  1787. left:0px;
  1788. top:0px;
  1789. width:220px;
  1790. height:50px;
  1791. background:inherit;
  1792. background-color:rgba(170, 170, 170, 1);
  1793. box-sizing:border-box;
  1794. border-width:1px;
  1795. border-style:solid;
  1796. border-color:rgba(242, 242, 242, 1);
  1797. border-left:0px;
  1798. border-top:0px;
  1799. border-right:0px;
  1800. border-radius:0px;
  1801. border-bottom-right-radius:0px;
  1802. border-bottom-left-radius:0px;
  1803. -moz-box-shadow:none;
  1804. -webkit-box-shadow:none;
  1805. box-shadow:none;
  1806. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1807. font-weight:500;
  1808. font-style:normal;
  1809. font-size:18px;
  1810. }
  1811. #u50335 {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:349px;
  1815. top:160px;
  1816. width:220px;
  1817. height:50px;
  1818. display:flex;
  1819. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1820. font-weight:500;
  1821. font-style:normal;
  1822. font-size:18px;
  1823. }
  1824. #u50335 .text {
  1825. position:absolute;
  1826. align-self:center;
  1827. padding:0px 0px 0px 20px;
  1828. box-sizing:border-box;
  1829. width:100%;
  1830. }
  1831. #u50335_text {
  1832. border-width:0px;
  1833. word-wrap:break-word;
  1834. text-transform:none;
  1835. }
  1836. #u50336_div {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:0px;
  1840. top:0px;
  1841. width:75px;
  1842. height:75px;
  1843. background:inherit;
  1844. background-color:rgba(255, 255, 255, 0);
  1845. border:none;
  1846. border-left:0px;
  1847. border-top:0px;
  1848. border-right:0px;
  1849. border-radius:0px;
  1850. border-bottom-right-radius:0px;
  1851. border-bottom-left-radius:0px;
  1852. -moz-box-shadow:none;
  1853. -webkit-box-shadow:none;
  1854. box-shadow:none;
  1855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1856. font-weight:400;
  1857. font-style:normal;
  1858. font-size:12px;
  1859. line-height:25px;
  1860. }
  1861. #u50336 {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:465px;
  1865. top:225px;
  1866. width:75px;
  1867. height:75px;
  1868. display:flex;
  1869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1870. font-weight:400;
  1871. font-style:normal;
  1872. font-size:12px;
  1873. line-height:25px;
  1874. }
  1875. #u50336 .text {
  1876. position:absolute;
  1877. align-self:center;
  1878. padding:0px 0px 0px 0px;
  1879. box-sizing:border-box;
  1880. width:100%;
  1881. }
  1882. #u50336_text {
  1883. border-width:0px;
  1884. white-space:nowrap;
  1885. text-transform:none;
  1886. }
  1887. #u50337_div {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:0px;
  1891. top:0px;
  1892. width:85px;
  1893. height:25px;
  1894. background:inherit;
  1895. background-color:rgba(255, 255, 255, 0);
  1896. border:none;
  1897. border-left:0px;
  1898. border-top:0px;
  1899. border-right:0px;
  1900. border-radius:0px;
  1901. border-bottom-right-radius:0px;
  1902. border-bottom-left-radius:0px;
  1903. -moz-box-shadow:none;
  1904. -webkit-box-shadow:none;
  1905. box-shadow:none;
  1906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1907. font-weight:400;
  1908. font-style:normal;
  1909. font-size:12px;
  1910. line-height:25px;
  1911. }
  1912. #u50337 {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:360px;
  1916. top:314px;
  1917. width:85px;
  1918. height:25px;
  1919. display:flex;
  1920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1921. font-weight:400;
  1922. font-style:normal;
  1923. font-size:12px;
  1924. line-height:25px;
  1925. }
  1926. #u50337 .text {
  1927. position:absolute;
  1928. align-self:center;
  1929. padding:0px 0px 0px 0px;
  1930. box-sizing:border-box;
  1931. width:100%;
  1932. }
  1933. #u50337_text {
  1934. border-width:0px;
  1935. white-space:nowrap;
  1936. text-transform:none;
  1937. }
  1938. #u50338_div {
  1939. border-width:0px;
  1940. position:absolute;
  1941. left:0px;
  1942. top:0px;
  1943. width:85px;
  1944. height:25px;
  1945. background:inherit;
  1946. background-color:rgba(255, 255, 255, 0);
  1947. border:none;
  1948. border-left:0px;
  1949. border-top:0px;
  1950. border-right:0px;
  1951. border-radius:0px;
  1952. border-bottom-right-radius:0px;
  1953. border-bottom-left-radius:0px;
  1954. -moz-box-shadow:none;
  1955. -webkit-box-shadow:none;
  1956. box-shadow:none;
  1957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1958. font-weight:400;
  1959. font-style:normal;
  1960. font-size:12px;
  1961. line-height:25px;
  1962. }
  1963. #u50338 {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:465px;
  1967. top:314px;
  1968. width:85px;
  1969. height:25px;
  1970. display:flex;
  1971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1972. font-weight:400;
  1973. font-style:normal;
  1974. font-size:12px;
  1975. line-height:25px;
  1976. }
  1977. #u50338 .text {
  1978. position:absolute;
  1979. align-self:center;
  1980. padding:0px 0px 0px 0px;
  1981. box-sizing:border-box;
  1982. width:100%;
  1983. }
  1984. #u50338_text {
  1985. border-width:0px;
  1986. white-space:nowrap;
  1987. text-transform:none;
  1988. }
  1989. #u50339_div {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:0px;
  1993. top:0px;
  1994. width:85px;
  1995. height:25px;
  1996. background:inherit;
  1997. background-color:rgba(255, 255, 255, 0);
  1998. border:none;
  1999. border-left:0px;
  2000. border-top:0px;
  2001. border-right:0px;
  2002. border-radius:0px;
  2003. border-bottom-right-radius:0px;
  2004. border-bottom-left-radius:0px;
  2005. -moz-box-shadow:none;
  2006. -webkit-box-shadow:none;
  2007. box-shadow:none;
  2008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2009. font-weight:400;
  2010. font-style:normal;
  2011. font-size:12px;
  2012. line-height:25px;
  2013. }
  2014. #u50339 {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:360px;
  2018. top:339px;
  2019. width:85px;
  2020. height:25px;
  2021. display:flex;
  2022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2023. font-weight:400;
  2024. font-style:normal;
  2025. font-size:12px;
  2026. line-height:25px;
  2027. }
  2028. #u50339 .text {
  2029. position:absolute;
  2030. align-self:center;
  2031. padding:0px 0px 0px 0px;
  2032. box-sizing:border-box;
  2033. width:100%;
  2034. }
  2035. #u50339_text {
  2036. border-width:0px;
  2037. white-space:nowrap;
  2038. text-transform:none;
  2039. }
  2040. #u50340_div {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:0px;
  2044. top:0px;
  2045. width:85px;
  2046. height:25px;
  2047. background:inherit;
  2048. background-color:rgba(255, 255, 255, 0);
  2049. border:none;
  2050. border-left:0px;
  2051. border-top:0px;
  2052. border-right:0px;
  2053. border-radius:0px;
  2054. border-bottom-right-radius:0px;
  2055. border-bottom-left-radius:0px;
  2056. -moz-box-shadow:none;
  2057. -webkit-box-shadow:none;
  2058. box-shadow:none;
  2059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2060. font-weight:400;
  2061. font-style:normal;
  2062. font-size:12px;
  2063. line-height:25px;
  2064. }
  2065. #u50340 {
  2066. border-width:0px;
  2067. position:absolute;
  2068. left:465px;
  2069. top:339px;
  2070. width:85px;
  2071. height:25px;
  2072. display:flex;
  2073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2074. font-weight:400;
  2075. font-style:normal;
  2076. font-size:12px;
  2077. line-height:25px;
  2078. }
  2079. #u50340 .text {
  2080. position:absolute;
  2081. align-self:center;
  2082. padding:0px 0px 0px 0px;
  2083. box-sizing:border-box;
  2084. width:100%;
  2085. }
  2086. #u50340_text {
  2087. border-width:0px;
  2088. white-space:nowrap;
  2089. text-transform:none;
  2090. }
  2091. #u50341_img {
  2092. border-width:0px;
  2093. position:absolute;
  2094. left:0px;
  2095. top:0px;
  2096. width:75px;
  2097. height:90px;
  2098. }
  2099. #u50341 {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:360px;
  2103. top:218px;
  2104. width:75px;
  2105. height:90px;
  2106. display:flex;
  2107. }
  2108. #u50341 .text {
  2109. position:absolute;
  2110. align-self:center;
  2111. padding:2px 2px 2px 2px;
  2112. box-sizing:border-box;
  2113. width:100%;
  2114. }
  2115. #u50341_text {
  2116. border-width:0px;
  2117. word-wrap:break-word;
  2118. text-transform:none;
  2119. visibility:hidden;
  2120. }
  2121. #u50342_img {
  2122. border-width:0px;
  2123. position:absolute;
  2124. left:0px;
  2125. top:0px;
  2126. width:30px;
  2127. height:30px;
  2128. }
  2129. #u50342 {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:527px;
  2133. top:170px;
  2134. width:30px;
  2135. height:30px;
  2136. display:flex;
  2137. }
  2138. #u50342 .text {
  2139. position:absolute;
  2140. align-self:center;
  2141. padding:2px 2px 2px 2px;
  2142. box-sizing:border-box;
  2143. width:100%;
  2144. }
  2145. #u50342_text {
  2146. border-width:0px;
  2147. word-wrap:break-word;
  2148. text-transform:none;
  2149. visibility:hidden;
  2150. }
  2151. #u50343_div {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:0px;
  2155. top:0px;
  2156. width:220px;
  2157. height:250px;
  2158. background:inherit;
  2159. background-color:rgba(236, 128, 141, 0.0980392156862745);
  2160. box-sizing:border-box;
  2161. border-width:1px;
  2162. border-style:solid;
  2163. border-color:rgba(236, 128, 141, 1);
  2164. border-radius:0px;
  2165. -moz-box-shadow:none;
  2166. -webkit-box-shadow:none;
  2167. box-shadow:none;
  2168. }
  2169. #u50343 {
  2170. border-width:0px;
  2171. position:absolute;
  2172. left:595px;
  2173. top:160px;
  2174. width:220px;
  2175. height:250px;
  2176. display:flex;
  2177. }
  2178. #u50343 .text {
  2179. position:absolute;
  2180. align-self:center;
  2181. padding:2px 2px 2px 2px;
  2182. box-sizing:border-box;
  2183. width:100%;
  2184. }
  2185. #u50343_text {
  2186. border-width:0px;
  2187. word-wrap:break-word;
  2188. text-transform:none;
  2189. visibility:hidden;
  2190. }
  2191. #u50344_div {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:0px;
  2195. top:0px;
  2196. width:220px;
  2197. height:50px;
  2198. background:inherit;
  2199. background-color:rgba(236, 128, 141, 1);
  2200. box-sizing:border-box;
  2201. border-width:1px;
  2202. border-style:solid;
  2203. border-color:rgba(236, 128, 141, 1);
  2204. border-left:0px;
  2205. border-top:0px;
  2206. border-right:0px;
  2207. border-radius:0px;
  2208. border-bottom-right-radius:0px;
  2209. border-bottom-left-radius:0px;
  2210. -moz-box-shadow:none;
  2211. -webkit-box-shadow:none;
  2212. box-shadow:none;
  2213. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2214. font-weight:500;
  2215. font-style:normal;
  2216. font-size:18px;
  2217. }
  2218. #u50344 {
  2219. border-width:0px;
  2220. position:absolute;
  2221. left:595px;
  2222. top:160px;
  2223. width:220px;
  2224. height:50px;
  2225. display:flex;
  2226. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2227. font-weight:500;
  2228. font-style:normal;
  2229. font-size:18px;
  2230. }
  2231. #u50344 .text {
  2232. position:absolute;
  2233. align-self:center;
  2234. padding:0px 0px 0px 20px;
  2235. box-sizing:border-box;
  2236. width:100%;
  2237. }
  2238. #u50344_text {
  2239. border-width:0px;
  2240. word-wrap:break-word;
  2241. text-transform:none;
  2242. }
  2243. #u50345_div {
  2244. border-width:0px;
  2245. position:absolute;
  2246. left:0px;
  2247. top:0px;
  2248. width:75px;
  2249. height:75px;
  2250. background:inherit;
  2251. background-color:rgba(255, 255, 255, 0);
  2252. border:none;
  2253. border-left:0px;
  2254. border-top:0px;
  2255. border-right:0px;
  2256. border-radius:0px;
  2257. border-bottom-right-radius:0px;
  2258. border-bottom-left-radius:0px;
  2259. -moz-box-shadow:none;
  2260. -webkit-box-shadow:none;
  2261. box-shadow:none;
  2262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2263. font-weight:400;
  2264. font-style:normal;
  2265. font-size:12px;
  2266. line-height:25px;
  2267. }
  2268. #u50345 {
  2269. border-width:0px;
  2270. position:absolute;
  2271. left:711px;
  2272. top:225px;
  2273. width:75px;
  2274. height:75px;
  2275. display:flex;
  2276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2277. font-weight:400;
  2278. font-style:normal;
  2279. font-size:12px;
  2280. line-height:25px;
  2281. }
  2282. #u50345 .text {
  2283. position:absolute;
  2284. align-self:center;
  2285. padding:0px 0px 0px 0px;
  2286. box-sizing:border-box;
  2287. width:100%;
  2288. }
  2289. #u50345_text {
  2290. border-width:0px;
  2291. white-space:nowrap;
  2292. text-transform:none;
  2293. }
  2294. #u50346_div {
  2295. border-width:0px;
  2296. position:absolute;
  2297. left:0px;
  2298. top:0px;
  2299. width:85px;
  2300. height:25px;
  2301. background:inherit;
  2302. background-color:rgba(255, 255, 255, 0);
  2303. border:none;
  2304. border-left:0px;
  2305. border-top:0px;
  2306. border-right:0px;
  2307. border-radius:0px;
  2308. border-bottom-right-radius:0px;
  2309. border-bottom-left-radius:0px;
  2310. -moz-box-shadow:none;
  2311. -webkit-box-shadow:none;
  2312. box-shadow:none;
  2313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2314. font-weight:400;
  2315. font-style:normal;
  2316. font-size:12px;
  2317. line-height:25px;
  2318. }
  2319. #u50346 {
  2320. border-width:0px;
  2321. position:absolute;
  2322. left:606px;
  2323. top:314px;
  2324. width:85px;
  2325. height:25px;
  2326. display:flex;
  2327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2328. font-weight:400;
  2329. font-style:normal;
  2330. font-size:12px;
  2331. line-height:25px;
  2332. }
  2333. #u50346 .text {
  2334. position:absolute;
  2335. align-self:center;
  2336. padding:0px 0px 0px 0px;
  2337. box-sizing:border-box;
  2338. width:100%;
  2339. }
  2340. #u50346_text {
  2341. border-width:0px;
  2342. white-space:nowrap;
  2343. text-transform:none;
  2344. }
  2345. #u50347_div {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:0px;
  2349. top:0px;
  2350. width:85px;
  2351. height:25px;
  2352. background:inherit;
  2353. background-color:rgba(255, 255, 255, 0);
  2354. border:none;
  2355. border-left:0px;
  2356. border-top:0px;
  2357. border-right:0px;
  2358. border-radius:0px;
  2359. border-bottom-right-radius:0px;
  2360. border-bottom-left-radius:0px;
  2361. -moz-box-shadow:none;
  2362. -webkit-box-shadow:none;
  2363. box-shadow:none;
  2364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2365. font-weight:400;
  2366. font-style:normal;
  2367. font-size:12px;
  2368. line-height:25px;
  2369. }
  2370. #u50347 {
  2371. border-width:0px;
  2372. position:absolute;
  2373. left:711px;
  2374. top:314px;
  2375. width:85px;
  2376. height:25px;
  2377. display:flex;
  2378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2379. font-weight:400;
  2380. font-style:normal;
  2381. font-size:12px;
  2382. line-height:25px;
  2383. }
  2384. #u50347 .text {
  2385. position:absolute;
  2386. align-self:center;
  2387. padding:0px 0px 0px 0px;
  2388. box-sizing:border-box;
  2389. width:100%;
  2390. }
  2391. #u50347_text {
  2392. border-width:0px;
  2393. white-space:nowrap;
  2394. text-transform:none;
  2395. }
  2396. #u50348_div {
  2397. border-width:0px;
  2398. position:absolute;
  2399. left:0px;
  2400. top:0px;
  2401. width:85px;
  2402. height:25px;
  2403. background:inherit;
  2404. background-color:rgba(255, 255, 255, 0);
  2405. border:none;
  2406. border-left:0px;
  2407. border-top:0px;
  2408. border-right:0px;
  2409. border-radius:0px;
  2410. border-bottom-right-radius:0px;
  2411. border-bottom-left-radius:0px;
  2412. -moz-box-shadow:none;
  2413. -webkit-box-shadow:none;
  2414. box-shadow:none;
  2415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2416. font-weight:400;
  2417. font-style:normal;
  2418. font-size:12px;
  2419. line-height:25px;
  2420. }
  2421. #u50348 {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:606px;
  2425. top:339px;
  2426. width:85px;
  2427. height:25px;
  2428. display:flex;
  2429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2430. font-weight:400;
  2431. font-style:normal;
  2432. font-size:12px;
  2433. line-height:25px;
  2434. }
  2435. #u50348 .text {
  2436. position:absolute;
  2437. align-self:center;
  2438. padding:0px 0px 0px 0px;
  2439. box-sizing:border-box;
  2440. width:100%;
  2441. }
  2442. #u50348_text {
  2443. border-width:0px;
  2444. white-space:nowrap;
  2445. text-transform:none;
  2446. }
  2447. #u50349_div {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:0px;
  2451. top:0px;
  2452. width:85px;
  2453. height:25px;
  2454. background:inherit;
  2455. background-color:rgba(255, 255, 255, 0);
  2456. border:none;
  2457. border-left:0px;
  2458. border-top:0px;
  2459. border-right:0px;
  2460. border-radius:0px;
  2461. border-bottom-right-radius:0px;
  2462. border-bottom-left-radius:0px;
  2463. -moz-box-shadow:none;
  2464. -webkit-box-shadow:none;
  2465. box-shadow:none;
  2466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2467. font-weight:400;
  2468. font-style:normal;
  2469. font-size:12px;
  2470. line-height:25px;
  2471. }
  2472. #u50349 {
  2473. border-width:0px;
  2474. position:absolute;
  2475. left:711px;
  2476. top:339px;
  2477. width:85px;
  2478. height:25px;
  2479. display:flex;
  2480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2481. font-weight:400;
  2482. font-style:normal;
  2483. font-size:12px;
  2484. line-height:25px;
  2485. }
  2486. #u50349 .text {
  2487. position:absolute;
  2488. align-self:center;
  2489. padding:0px 0px 0px 0px;
  2490. box-sizing:border-box;
  2491. width:100%;
  2492. }
  2493. #u50349_text {
  2494. border-width:0px;
  2495. white-space:nowrap;
  2496. text-transform:none;
  2497. }
  2498. #u50350_img {
  2499. border-width:0px;
  2500. position:absolute;
  2501. left:0px;
  2502. top:0px;
  2503. width:75px;
  2504. height:90px;
  2505. }
  2506. #u50350 {
  2507. border-width:0px;
  2508. position:absolute;
  2509. left:606px;
  2510. top:218px;
  2511. width:75px;
  2512. height:90px;
  2513. display:flex;
  2514. }
  2515. #u50350 .text {
  2516. position:absolute;
  2517. align-self:center;
  2518. padding:2px 2px 2px 2px;
  2519. box-sizing:border-box;
  2520. width:100%;
  2521. }
  2522. #u50350_text {
  2523. border-width:0px;
  2524. word-wrap:break-word;
  2525. text-transform:none;
  2526. visibility:hidden;
  2527. }
  2528. #u50351_img {
  2529. border-width:0px;
  2530. position:absolute;
  2531. left:0px;
  2532. top:0px;
  2533. width:30px;
  2534. height:30px;
  2535. }
  2536. #u50351 {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:775px;
  2540. top:169px;
  2541. width:30px;
  2542. height:30px;
  2543. display:flex;
  2544. }
  2545. #u50351 .text {
  2546. position:absolute;
  2547. align-self:center;
  2548. padding:2px 2px 2px 2px;
  2549. box-sizing:border-box;
  2550. width:100%;
  2551. }
  2552. #u50351_text {
  2553. border-width:0px;
  2554. word-wrap:break-word;
  2555. text-transform:none;
  2556. visibility:hidden;
  2557. }
  2558. #u50352_div {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:0px;
  2562. top:0px;
  2563. width:220px;
  2564. height:250px;
  2565. background:inherit;
  2566. background-color:rgba(255, 255, 255, 1);
  2567. box-sizing:border-box;
  2568. border-width:1px;
  2569. border-style:solid;
  2570. border-color:rgba(121, 121, 121, 1);
  2571. border-radius:0px;
  2572. -moz-box-shadow:none;
  2573. -webkit-box-shadow:none;
  2574. box-shadow:none;
  2575. }
  2576. #u50352 {
  2577. border-width:0px;
  2578. position:absolute;
  2579. left:840px;
  2580. top:160px;
  2581. width:220px;
  2582. height:250px;
  2583. display:flex;
  2584. }
  2585. #u50352 .text {
  2586. position:absolute;
  2587. align-self:center;
  2588. padding:2px 2px 2px 2px;
  2589. box-sizing:border-box;
  2590. width:100%;
  2591. }
  2592. #u50352_text {
  2593. border-width:0px;
  2594. word-wrap:break-word;
  2595. text-transform:none;
  2596. visibility:hidden;
  2597. }
  2598. #u50353_div {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:0px;
  2602. top:0px;
  2603. width:220px;
  2604. height:50px;
  2605. background:inherit;
  2606. background-color:rgba(170, 170, 170, 1);
  2607. box-sizing:border-box;
  2608. border-width:1px;
  2609. border-style:solid;
  2610. border-color:rgba(242, 242, 242, 1);
  2611. border-left:0px;
  2612. border-top:0px;
  2613. border-right:0px;
  2614. border-radius:0px;
  2615. border-bottom-right-radius:0px;
  2616. border-bottom-left-radius:0px;
  2617. -moz-box-shadow:none;
  2618. -webkit-box-shadow:none;
  2619. box-shadow:none;
  2620. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2621. font-weight:500;
  2622. font-style:normal;
  2623. font-size:18px;
  2624. }
  2625. #u50353 {
  2626. border-width:0px;
  2627. position:absolute;
  2628. left:840px;
  2629. top:160px;
  2630. width:220px;
  2631. height:50px;
  2632. display:flex;
  2633. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2634. font-weight:500;
  2635. font-style:normal;
  2636. font-size:18px;
  2637. }
  2638. #u50353 .text {
  2639. position:absolute;
  2640. align-self:center;
  2641. padding:0px 0px 0px 20px;
  2642. box-sizing:border-box;
  2643. width:100%;
  2644. }
  2645. #u50353_text {
  2646. border-width:0px;
  2647. word-wrap:break-word;
  2648. text-transform:none;
  2649. }
  2650. #u50354_div {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:0px;
  2654. top:0px;
  2655. width:80px;
  2656. height:75px;
  2657. background:inherit;
  2658. background-color:rgba(255, 255, 255, 0);
  2659. border:none;
  2660. border-left:0px;
  2661. border-top:0px;
  2662. border-right:0px;
  2663. border-radius:0px;
  2664. border-bottom-right-radius:0px;
  2665. border-bottom-left-radius:0px;
  2666. -moz-box-shadow:none;
  2667. -webkit-box-shadow:none;
  2668. box-shadow:none;
  2669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2670. font-weight:400;
  2671. font-style:normal;
  2672. font-size:12px;
  2673. line-height:25px;
  2674. }
  2675. #u50354 {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:956px;
  2679. top:225px;
  2680. width:80px;
  2681. height:75px;
  2682. display:flex;
  2683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2684. font-weight:400;
  2685. font-style:normal;
  2686. font-size:12px;
  2687. line-height:25px;
  2688. }
  2689. #u50354 .text {
  2690. position:absolute;
  2691. align-self:center;
  2692. padding:0px 0px 0px 0px;
  2693. box-sizing:border-box;
  2694. width:100%;
  2695. }
  2696. #u50354_text {
  2697. border-width:0px;
  2698. white-space:nowrap;
  2699. text-transform:none;
  2700. }
  2701. #u50355_div {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:0px;
  2705. top:0px;
  2706. width:85px;
  2707. height:25px;
  2708. background:inherit;
  2709. background-color:rgba(255, 255, 255, 0);
  2710. border:none;
  2711. border-left:0px;
  2712. border-top:0px;
  2713. border-right:0px;
  2714. border-radius:0px;
  2715. border-bottom-right-radius:0px;
  2716. border-bottom-left-radius:0px;
  2717. -moz-box-shadow:none;
  2718. -webkit-box-shadow:none;
  2719. box-shadow:none;
  2720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2721. font-weight:400;
  2722. font-style:normal;
  2723. font-size:12px;
  2724. line-height:25px;
  2725. }
  2726. #u50355 {
  2727. border-width:0px;
  2728. position:absolute;
  2729. left:851px;
  2730. top:314px;
  2731. width:85px;
  2732. height:25px;
  2733. display:flex;
  2734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2735. font-weight:400;
  2736. font-style:normal;
  2737. font-size:12px;
  2738. line-height:25px;
  2739. }
  2740. #u50355 .text {
  2741. position:absolute;
  2742. align-self:center;
  2743. padding:0px 0px 0px 0px;
  2744. box-sizing:border-box;
  2745. width:100%;
  2746. }
  2747. #u50355_text {
  2748. border-width:0px;
  2749. white-space:nowrap;
  2750. text-transform:none;
  2751. }
  2752. #u50356_div {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:0px;
  2756. top:0px;
  2757. width:85px;
  2758. height:25px;
  2759. background:inherit;
  2760. background-color:rgba(255, 255, 255, 0);
  2761. border:none;
  2762. border-left:0px;
  2763. border-top:0px;
  2764. border-right:0px;
  2765. border-radius:0px;
  2766. border-bottom-right-radius:0px;
  2767. border-bottom-left-radius:0px;
  2768. -moz-box-shadow:none;
  2769. -webkit-box-shadow:none;
  2770. box-shadow:none;
  2771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2772. font-weight:400;
  2773. font-style:normal;
  2774. font-size:12px;
  2775. line-height:25px;
  2776. }
  2777. #u50356 {
  2778. border-width:0px;
  2779. position:absolute;
  2780. left:956px;
  2781. top:314px;
  2782. width:85px;
  2783. height:25px;
  2784. display:flex;
  2785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2786. font-weight:400;
  2787. font-style:normal;
  2788. font-size:12px;
  2789. line-height:25px;
  2790. }
  2791. #u50356 .text {
  2792. position:absolute;
  2793. align-self:center;
  2794. padding:0px 0px 0px 0px;
  2795. box-sizing:border-box;
  2796. width:100%;
  2797. }
  2798. #u50356_text {
  2799. border-width:0px;
  2800. white-space:nowrap;
  2801. text-transform:none;
  2802. }
  2803. #u50357_div {
  2804. border-width:0px;
  2805. position:absolute;
  2806. left:0px;
  2807. top:0px;
  2808. width:85px;
  2809. height:25px;
  2810. background:inherit;
  2811. background-color:rgba(255, 255, 255, 0);
  2812. border:none;
  2813. border-left:0px;
  2814. border-top:0px;
  2815. border-right:0px;
  2816. border-radius:0px;
  2817. border-bottom-right-radius:0px;
  2818. border-bottom-left-radius:0px;
  2819. -moz-box-shadow:none;
  2820. -webkit-box-shadow:none;
  2821. box-shadow:none;
  2822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2823. font-weight:400;
  2824. font-style:normal;
  2825. font-size:12px;
  2826. line-height:25px;
  2827. }
  2828. #u50357 {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:851px;
  2832. top:339px;
  2833. width:85px;
  2834. height:25px;
  2835. display:flex;
  2836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2837. font-weight:400;
  2838. font-style:normal;
  2839. font-size:12px;
  2840. line-height:25px;
  2841. }
  2842. #u50357 .text {
  2843. position:absolute;
  2844. align-self:center;
  2845. padding:0px 0px 0px 0px;
  2846. box-sizing:border-box;
  2847. width:100%;
  2848. }
  2849. #u50357_text {
  2850. border-width:0px;
  2851. white-space:nowrap;
  2852. text-transform:none;
  2853. }
  2854. #u50358_div {
  2855. border-width:0px;
  2856. position:absolute;
  2857. left:0px;
  2858. top:0px;
  2859. width:85px;
  2860. height:25px;
  2861. background:inherit;
  2862. background-color:rgba(255, 255, 255, 0);
  2863. border:none;
  2864. border-left:0px;
  2865. border-top:0px;
  2866. border-right:0px;
  2867. border-radius:0px;
  2868. border-bottom-right-radius:0px;
  2869. border-bottom-left-radius:0px;
  2870. -moz-box-shadow:none;
  2871. -webkit-box-shadow:none;
  2872. box-shadow:none;
  2873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2874. font-weight:400;
  2875. font-style:normal;
  2876. font-size:12px;
  2877. line-height:25px;
  2878. }
  2879. #u50358 {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:956px;
  2883. top:339px;
  2884. width:85px;
  2885. height:25px;
  2886. display:flex;
  2887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2888. font-weight:400;
  2889. font-style:normal;
  2890. font-size:12px;
  2891. line-height:25px;
  2892. }
  2893. #u50358 .text {
  2894. position:absolute;
  2895. align-self:center;
  2896. padding:0px 0px 0px 0px;
  2897. box-sizing:border-box;
  2898. width:100%;
  2899. }
  2900. #u50358_text {
  2901. border-width:0px;
  2902. white-space:nowrap;
  2903. text-transform:none;
  2904. }
  2905. #u50359_img {
  2906. border-width:0px;
  2907. position:absolute;
  2908. left:0px;
  2909. top:0px;
  2910. width:75px;
  2911. height:90px;
  2912. }
  2913. #u50359 {
  2914. border-width:0px;
  2915. position:absolute;
  2916. left:851px;
  2917. top:218px;
  2918. width:75px;
  2919. height:90px;
  2920. display:flex;
  2921. }
  2922. #u50359 .text {
  2923. position:absolute;
  2924. align-self:center;
  2925. padding:2px 2px 2px 2px;
  2926. box-sizing:border-box;
  2927. width:100%;
  2928. }
  2929. #u50359_text {
  2930. border-width:0px;
  2931. word-wrap:break-word;
  2932. text-transform:none;
  2933. visibility:hidden;
  2934. }
  2935. #u50360_img {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:0px;
  2939. top:0px;
  2940. width:30px;
  2941. height:30px;
  2942. }
  2943. #u50360 {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:1015px;
  2947. top:170px;
  2948. width:30px;
  2949. height:30px;
  2950. display:flex;
  2951. }
  2952. #u50360 .text {
  2953. position:absolute;
  2954. align-self:center;
  2955. padding:2px 2px 2px 2px;
  2956. box-sizing:border-box;
  2957. width:100%;
  2958. }
  2959. #u50360_text {
  2960. border-width:0px;
  2961. word-wrap:break-word;
  2962. text-transform:none;
  2963. visibility:hidden;
  2964. }
  2965. #u50361_div {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:0px;
  2969. top:0px;
  2970. width:220px;
  2971. height:250px;
  2972. background:inherit;
  2973. background-color:rgba(255, 255, 255, 1);
  2974. box-sizing:border-box;
  2975. border-width:1px;
  2976. border-style:solid;
  2977. border-color:rgba(121, 121, 121, 1);
  2978. border-radius:0px;
  2979. -moz-box-shadow:none;
  2980. -webkit-box-shadow:none;
  2981. box-shadow:none;
  2982. }
  2983. #u50361 {
  2984. border-width:0px;
  2985. position:absolute;
  2986. left:1086px;
  2987. top:160px;
  2988. width:220px;
  2989. height:250px;
  2990. display:flex;
  2991. }
  2992. #u50361 .text {
  2993. position:absolute;
  2994. align-self:center;
  2995. padding:2px 2px 2px 2px;
  2996. box-sizing:border-box;
  2997. width:100%;
  2998. }
  2999. #u50361_text {
  3000. border-width:0px;
  3001. word-wrap:break-word;
  3002. text-transform:none;
  3003. visibility:hidden;
  3004. }
  3005. #u50362_div {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:0px;
  3009. top:0px;
  3010. width:220px;
  3011. height:50px;
  3012. background:inherit;
  3013. background-color:rgba(170, 170, 170, 1);
  3014. box-sizing:border-box;
  3015. border-width:1px;
  3016. border-style:solid;
  3017. border-color:rgba(242, 242, 242, 1);
  3018. border-left:0px;
  3019. border-top:0px;
  3020. border-right:0px;
  3021. border-radius:0px;
  3022. border-bottom-right-radius:0px;
  3023. border-bottom-left-radius:0px;
  3024. -moz-box-shadow:none;
  3025. -webkit-box-shadow:none;
  3026. box-shadow:none;
  3027. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3028. font-weight:500;
  3029. font-style:normal;
  3030. font-size:18px;
  3031. }
  3032. #u50362 {
  3033. border-width:0px;
  3034. position:absolute;
  3035. left:1086px;
  3036. top:160px;
  3037. width:220px;
  3038. height:50px;
  3039. display:flex;
  3040. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3041. font-weight:500;
  3042. font-style:normal;
  3043. font-size:18px;
  3044. }
  3045. #u50362 .text {
  3046. position:absolute;
  3047. align-self:center;
  3048. padding:0px 0px 0px 20px;
  3049. box-sizing:border-box;
  3050. width:100%;
  3051. }
  3052. #u50362_text {
  3053. border-width:0px;
  3054. word-wrap:break-word;
  3055. text-transform:none;
  3056. }
  3057. #u50363_div {
  3058. border-width:0px;
  3059. position:absolute;
  3060. left:0px;
  3061. top:0px;
  3062. width:80px;
  3063. height:75px;
  3064. background:inherit;
  3065. background-color:rgba(255, 255, 255, 0);
  3066. border:none;
  3067. border-left:0px;
  3068. border-top:0px;
  3069. border-right:0px;
  3070. border-radius:0px;
  3071. border-bottom-right-radius:0px;
  3072. border-bottom-left-radius:0px;
  3073. -moz-box-shadow:none;
  3074. -webkit-box-shadow:none;
  3075. box-shadow:none;
  3076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3077. font-weight:400;
  3078. font-style:normal;
  3079. font-size:12px;
  3080. line-height:25px;
  3081. }
  3082. #u50363 {
  3083. border-width:0px;
  3084. position:absolute;
  3085. left:1202px;
  3086. top:225px;
  3087. width:80px;
  3088. height:75px;
  3089. display:flex;
  3090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3091. font-weight:400;
  3092. font-style:normal;
  3093. font-size:12px;
  3094. line-height:25px;
  3095. }
  3096. #u50363 .text {
  3097. position:absolute;
  3098. align-self:center;
  3099. padding:0px 0px 0px 0px;
  3100. box-sizing:border-box;
  3101. width:100%;
  3102. }
  3103. #u50363_text {
  3104. border-width:0px;
  3105. white-space:nowrap;
  3106. text-transform:none;
  3107. }
  3108. #u50364_div {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:0px;
  3112. top:0px;
  3113. width:85px;
  3114. height:25px;
  3115. background:inherit;
  3116. background-color:rgba(255, 255, 255, 0);
  3117. border:none;
  3118. border-left:0px;
  3119. border-top:0px;
  3120. border-right:0px;
  3121. border-radius:0px;
  3122. border-bottom-right-radius:0px;
  3123. border-bottom-left-radius:0px;
  3124. -moz-box-shadow:none;
  3125. -webkit-box-shadow:none;
  3126. box-shadow:none;
  3127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3128. font-weight:400;
  3129. font-style:normal;
  3130. font-size:12px;
  3131. line-height:25px;
  3132. }
  3133. #u50364 {
  3134. border-width:0px;
  3135. position:absolute;
  3136. left:1097px;
  3137. top:314px;
  3138. width:85px;
  3139. height:25px;
  3140. display:flex;
  3141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3142. font-weight:400;
  3143. font-style:normal;
  3144. font-size:12px;
  3145. line-height:25px;
  3146. }
  3147. #u50364 .text {
  3148. position:absolute;
  3149. align-self:center;
  3150. padding:0px 0px 0px 0px;
  3151. box-sizing:border-box;
  3152. width:100%;
  3153. }
  3154. #u50364_text {
  3155. border-width:0px;
  3156. white-space:nowrap;
  3157. text-transform:none;
  3158. }
  3159. #u50365_div {
  3160. border-width:0px;
  3161. position:absolute;
  3162. left:0px;
  3163. top:0px;
  3164. width:85px;
  3165. height:25px;
  3166. background:inherit;
  3167. background-color:rgba(255, 255, 255, 0);
  3168. border:none;
  3169. border-left:0px;
  3170. border-top:0px;
  3171. border-right:0px;
  3172. border-radius:0px;
  3173. border-bottom-right-radius:0px;
  3174. border-bottom-left-radius:0px;
  3175. -moz-box-shadow:none;
  3176. -webkit-box-shadow:none;
  3177. box-shadow:none;
  3178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3179. font-weight:400;
  3180. font-style:normal;
  3181. font-size:12px;
  3182. line-height:25px;
  3183. }
  3184. #u50365 {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:1202px;
  3188. top:314px;
  3189. width:85px;
  3190. height:25px;
  3191. display:flex;
  3192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3193. font-weight:400;
  3194. font-style:normal;
  3195. font-size:12px;
  3196. line-height:25px;
  3197. }
  3198. #u50365 .text {
  3199. position:absolute;
  3200. align-self:center;
  3201. padding:0px 0px 0px 0px;
  3202. box-sizing:border-box;
  3203. width:100%;
  3204. }
  3205. #u50365_text {
  3206. border-width:0px;
  3207. white-space:nowrap;
  3208. text-transform:none;
  3209. }
  3210. #u50366_div {
  3211. border-width:0px;
  3212. position:absolute;
  3213. left:0px;
  3214. top:0px;
  3215. width:85px;
  3216. height:25px;
  3217. background:inherit;
  3218. background-color:rgba(255, 255, 255, 0);
  3219. border:none;
  3220. border-left:0px;
  3221. border-top:0px;
  3222. border-right:0px;
  3223. border-radius:0px;
  3224. border-bottom-right-radius:0px;
  3225. border-bottom-left-radius:0px;
  3226. -moz-box-shadow:none;
  3227. -webkit-box-shadow:none;
  3228. box-shadow:none;
  3229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3230. font-weight:400;
  3231. font-style:normal;
  3232. font-size:12px;
  3233. line-height:25px;
  3234. }
  3235. #u50366 {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:1097px;
  3239. top:339px;
  3240. width:85px;
  3241. height:25px;
  3242. display:flex;
  3243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3244. font-weight:400;
  3245. font-style:normal;
  3246. font-size:12px;
  3247. line-height:25px;
  3248. }
  3249. #u50366 .text {
  3250. position:absolute;
  3251. align-self:center;
  3252. padding:0px 0px 0px 0px;
  3253. box-sizing:border-box;
  3254. width:100%;
  3255. }
  3256. #u50366_text {
  3257. border-width:0px;
  3258. white-space:nowrap;
  3259. text-transform:none;
  3260. }
  3261. #u50367_div {
  3262. border-width:0px;
  3263. position:absolute;
  3264. left:0px;
  3265. top:0px;
  3266. width:85px;
  3267. height:25px;
  3268. background:inherit;
  3269. background-color:rgba(255, 255, 255, 0);
  3270. border:none;
  3271. border-left:0px;
  3272. border-top:0px;
  3273. border-right:0px;
  3274. border-radius:0px;
  3275. border-bottom-right-radius:0px;
  3276. border-bottom-left-radius:0px;
  3277. -moz-box-shadow:none;
  3278. -webkit-box-shadow:none;
  3279. box-shadow:none;
  3280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3281. font-weight:400;
  3282. font-style:normal;
  3283. font-size:12px;
  3284. line-height:25px;
  3285. }
  3286. #u50367 {
  3287. border-width:0px;
  3288. position:absolute;
  3289. left:1202px;
  3290. top:339px;
  3291. width:85px;
  3292. height:25px;
  3293. display:flex;
  3294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3295. font-weight:400;
  3296. font-style:normal;
  3297. font-size:12px;
  3298. line-height:25px;
  3299. }
  3300. #u50367 .text {
  3301. position:absolute;
  3302. align-self:center;
  3303. padding:0px 0px 0px 0px;
  3304. box-sizing:border-box;
  3305. width:100%;
  3306. }
  3307. #u50367_text {
  3308. border-width:0px;
  3309. white-space:nowrap;
  3310. text-transform:none;
  3311. }
  3312. #u50368_img {
  3313. border-width:0px;
  3314. position:absolute;
  3315. left:0px;
  3316. top:0px;
  3317. width:75px;
  3318. height:90px;
  3319. }
  3320. #u50368 {
  3321. border-width:0px;
  3322. position:absolute;
  3323. left:1097px;
  3324. top:218px;
  3325. width:75px;
  3326. height:90px;
  3327. display:flex;
  3328. }
  3329. #u50368 .text {
  3330. position:absolute;
  3331. align-self:center;
  3332. padding:2px 2px 2px 2px;
  3333. box-sizing:border-box;
  3334. width:100%;
  3335. }
  3336. #u50368_text {
  3337. border-width:0px;
  3338. word-wrap:break-word;
  3339. text-transform:none;
  3340. visibility:hidden;
  3341. }
  3342. #u50369_img {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:0px;
  3346. top:0px;
  3347. width:30px;
  3348. height:30px;
  3349. }
  3350. #u50369 {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:1261px;
  3354. top:170px;
  3355. width:30px;
  3356. height:30px;
  3357. display:flex;
  3358. }
  3359. #u50369 .text {
  3360. position:absolute;
  3361. align-self:center;
  3362. padding:2px 2px 2px 2px;
  3363. box-sizing:border-box;
  3364. width:100%;
  3365. }
  3366. #u50369_text {
  3367. border-width:0px;
  3368. word-wrap:break-word;
  3369. text-transform:none;
  3370. visibility:hidden;
  3371. }
  3372. #u50370_div {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:0px;
  3376. top:0px;
  3377. width:220px;
  3378. height:250px;
  3379. background:inherit;
  3380. background-color:rgba(255, 255, 255, 1);
  3381. box-sizing:border-box;
  3382. border-width:1px;
  3383. border-style:solid;
  3384. border-color:rgba(121, 121, 121, 1);
  3385. border-radius:0px;
  3386. -moz-box-shadow:none;
  3387. -webkit-box-shadow:none;
  3388. box-shadow:none;
  3389. }
  3390. #u50370 {
  3391. border-width:0px;
  3392. position:absolute;
  3393. left:1331px;
  3394. top:160px;
  3395. width:220px;
  3396. height:250px;
  3397. display:flex;
  3398. }
  3399. #u50370 .text {
  3400. position:absolute;
  3401. align-self:center;
  3402. padding:2px 2px 2px 2px;
  3403. box-sizing:border-box;
  3404. width:100%;
  3405. }
  3406. #u50370_text {
  3407. border-width:0px;
  3408. word-wrap:break-word;
  3409. text-transform:none;
  3410. visibility:hidden;
  3411. }
  3412. #u50371_div {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:0px;
  3416. top:0px;
  3417. width:220px;
  3418. height:50px;
  3419. background:inherit;
  3420. background-color:rgba(170, 170, 170, 1);
  3421. box-sizing:border-box;
  3422. border-width:1px;
  3423. border-style:solid;
  3424. border-color:rgba(242, 242, 242, 1);
  3425. border-left:0px;
  3426. border-top:0px;
  3427. border-right:0px;
  3428. border-radius:0px;
  3429. border-bottom-right-radius:0px;
  3430. border-bottom-left-radius:0px;
  3431. -moz-box-shadow:none;
  3432. -webkit-box-shadow:none;
  3433. box-shadow:none;
  3434. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3435. font-weight:500;
  3436. font-style:normal;
  3437. font-size:18px;
  3438. }
  3439. #u50371 {
  3440. border-width:0px;
  3441. position:absolute;
  3442. left:1331px;
  3443. top:160px;
  3444. width:220px;
  3445. height:50px;
  3446. display:flex;
  3447. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3448. font-weight:500;
  3449. font-style:normal;
  3450. font-size:18px;
  3451. }
  3452. #u50371 .text {
  3453. position:absolute;
  3454. align-self:center;
  3455. padding:0px 0px 0px 20px;
  3456. box-sizing:border-box;
  3457. width:100%;
  3458. }
  3459. #u50371_text {
  3460. border-width:0px;
  3461. word-wrap:break-word;
  3462. text-transform:none;
  3463. }
  3464. #u50372_div {
  3465. border-width:0px;
  3466. position:absolute;
  3467. left:0px;
  3468. top:0px;
  3469. width:80px;
  3470. height:75px;
  3471. background:inherit;
  3472. background-color:rgba(255, 255, 255, 0);
  3473. border:none;
  3474. border-left:0px;
  3475. border-top:0px;
  3476. border-right:0px;
  3477. border-radius:0px;
  3478. border-bottom-right-radius:0px;
  3479. border-bottom-left-radius:0px;
  3480. -moz-box-shadow:none;
  3481. -webkit-box-shadow:none;
  3482. box-shadow:none;
  3483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3484. font-weight:400;
  3485. font-style:normal;
  3486. font-size:12px;
  3487. line-height:25px;
  3488. }
  3489. #u50372 {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:1447px;
  3493. top:225px;
  3494. width:80px;
  3495. height:75px;
  3496. display:flex;
  3497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3498. font-weight:400;
  3499. font-style:normal;
  3500. font-size:12px;
  3501. line-height:25px;
  3502. }
  3503. #u50372 .text {
  3504. position:absolute;
  3505. align-self:center;
  3506. padding:0px 0px 0px 0px;
  3507. box-sizing:border-box;
  3508. width:100%;
  3509. }
  3510. #u50372_text {
  3511. border-width:0px;
  3512. white-space:nowrap;
  3513. text-transform:none;
  3514. }
  3515. #u50373_div {
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:0px;
  3519. top:0px;
  3520. width:85px;
  3521. height:25px;
  3522. background:inherit;
  3523. background-color:rgba(255, 255, 255, 0);
  3524. border:none;
  3525. border-left:0px;
  3526. border-top:0px;
  3527. border-right:0px;
  3528. border-radius:0px;
  3529. border-bottom-right-radius:0px;
  3530. border-bottom-left-radius:0px;
  3531. -moz-box-shadow:none;
  3532. -webkit-box-shadow:none;
  3533. box-shadow:none;
  3534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3535. font-weight:400;
  3536. font-style:normal;
  3537. font-size:12px;
  3538. line-height:25px;
  3539. }
  3540. #u50373 {
  3541. border-width:0px;
  3542. position:absolute;
  3543. left:1342px;
  3544. top:314px;
  3545. width:85px;
  3546. height:25px;
  3547. display:flex;
  3548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3549. font-weight:400;
  3550. font-style:normal;
  3551. font-size:12px;
  3552. line-height:25px;
  3553. }
  3554. #u50373 .text {
  3555. position:absolute;
  3556. align-self:center;
  3557. padding:0px 0px 0px 0px;
  3558. box-sizing:border-box;
  3559. width:100%;
  3560. }
  3561. #u50373_text {
  3562. border-width:0px;
  3563. white-space:nowrap;
  3564. text-transform:none;
  3565. }
  3566. #u50374_div {
  3567. border-width:0px;
  3568. position:absolute;
  3569. left:0px;
  3570. top:0px;
  3571. width:85px;
  3572. height:25px;
  3573. background:inherit;
  3574. background-color:rgba(255, 255, 255, 0);
  3575. border:none;
  3576. border-left:0px;
  3577. border-top:0px;
  3578. border-right:0px;
  3579. border-radius:0px;
  3580. border-bottom-right-radius:0px;
  3581. border-bottom-left-radius:0px;
  3582. -moz-box-shadow:none;
  3583. -webkit-box-shadow:none;
  3584. box-shadow:none;
  3585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3586. font-weight:400;
  3587. font-style:normal;
  3588. font-size:12px;
  3589. line-height:25px;
  3590. }
  3591. #u50374 {
  3592. border-width:0px;
  3593. position:absolute;
  3594. left:1447px;
  3595. top:314px;
  3596. width:85px;
  3597. height:25px;
  3598. display:flex;
  3599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3600. font-weight:400;
  3601. font-style:normal;
  3602. font-size:12px;
  3603. line-height:25px;
  3604. }
  3605. #u50374 .text {
  3606. position:absolute;
  3607. align-self:center;
  3608. padding:0px 0px 0px 0px;
  3609. box-sizing:border-box;
  3610. width:100%;
  3611. }
  3612. #u50374_text {
  3613. border-width:0px;
  3614. white-space:nowrap;
  3615. text-transform:none;
  3616. }
  3617. #u50375_div {
  3618. border-width:0px;
  3619. position:absolute;
  3620. left:0px;
  3621. top:0px;
  3622. width:85px;
  3623. height:25px;
  3624. background:inherit;
  3625. background-color:rgba(255, 255, 255, 0);
  3626. border:none;
  3627. border-left:0px;
  3628. border-top:0px;
  3629. border-right:0px;
  3630. border-radius:0px;
  3631. border-bottom-right-radius:0px;
  3632. border-bottom-left-radius:0px;
  3633. -moz-box-shadow:none;
  3634. -webkit-box-shadow:none;
  3635. box-shadow:none;
  3636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3637. font-weight:400;
  3638. font-style:normal;
  3639. font-size:12px;
  3640. line-height:25px;
  3641. }
  3642. #u50375 {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:1342px;
  3646. top:339px;
  3647. width:85px;
  3648. height:25px;
  3649. display:flex;
  3650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3651. font-weight:400;
  3652. font-style:normal;
  3653. font-size:12px;
  3654. line-height:25px;
  3655. }
  3656. #u50375 .text {
  3657. position:absolute;
  3658. align-self:center;
  3659. padding:0px 0px 0px 0px;
  3660. box-sizing:border-box;
  3661. width:100%;
  3662. }
  3663. #u50375_text {
  3664. border-width:0px;
  3665. white-space:nowrap;
  3666. text-transform:none;
  3667. }
  3668. #u50376_div {
  3669. border-width:0px;
  3670. position:absolute;
  3671. left:0px;
  3672. top:0px;
  3673. width:85px;
  3674. height:25px;
  3675. background:inherit;
  3676. background-color:rgba(255, 255, 255, 0);
  3677. border:none;
  3678. border-left:0px;
  3679. border-top:0px;
  3680. border-right:0px;
  3681. border-radius:0px;
  3682. border-bottom-right-radius:0px;
  3683. border-bottom-left-radius:0px;
  3684. -moz-box-shadow:none;
  3685. -webkit-box-shadow:none;
  3686. box-shadow:none;
  3687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3688. font-weight:400;
  3689. font-style:normal;
  3690. font-size:12px;
  3691. line-height:25px;
  3692. }
  3693. #u50376 {
  3694. border-width:0px;
  3695. position:absolute;
  3696. left:1447px;
  3697. top:339px;
  3698. width:85px;
  3699. height:25px;
  3700. display:flex;
  3701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3702. font-weight:400;
  3703. font-style:normal;
  3704. font-size:12px;
  3705. line-height:25px;
  3706. }
  3707. #u50376 .text {
  3708. position:absolute;
  3709. align-self:center;
  3710. padding:0px 0px 0px 0px;
  3711. box-sizing:border-box;
  3712. width:100%;
  3713. }
  3714. #u50376_text {
  3715. border-width:0px;
  3716. white-space:nowrap;
  3717. text-transform:none;
  3718. }
  3719. #u50377_img {
  3720. border-width:0px;
  3721. position:absolute;
  3722. left:0px;
  3723. top:0px;
  3724. width:75px;
  3725. height:90px;
  3726. }
  3727. #u50377 {
  3728. border-width:0px;
  3729. position:absolute;
  3730. left:1342px;
  3731. top:218px;
  3732. width:75px;
  3733. height:90px;
  3734. display:flex;
  3735. }
  3736. #u50377 .text {
  3737. position:absolute;
  3738. align-self:center;
  3739. padding:2px 2px 2px 2px;
  3740. box-sizing:border-box;
  3741. width:100%;
  3742. }
  3743. #u50377_text {
  3744. border-width:0px;
  3745. word-wrap:break-word;
  3746. text-transform:none;
  3747. visibility:hidden;
  3748. }
  3749. #u50378_img {
  3750. border-width:0px;
  3751. position:absolute;
  3752. left:0px;
  3753. top:0px;
  3754. width:30px;
  3755. height:30px;
  3756. }
  3757. #u50378 {
  3758. border-width:0px;
  3759. position:absolute;
  3760. left:1506px;
  3761. top:170px;
  3762. width:30px;
  3763. height:30px;
  3764. display:flex;
  3765. }
  3766. #u50378 .text {
  3767. position:absolute;
  3768. align-self:center;
  3769. padding:2px 2px 2px 2px;
  3770. box-sizing:border-box;
  3771. width:100%;
  3772. }
  3773. #u50378_text {
  3774. border-width:0px;
  3775. word-wrap:break-word;
  3776. text-transform:none;
  3777. visibility:hidden;
  3778. }
  3779. #u50379_div {
  3780. border-width:0px;
  3781. position:absolute;
  3782. left:0px;
  3783. top:0px;
  3784. width:100px;
  3785. height:25px;
  3786. background:inherit;
  3787. background-color:rgba(0, 137, 254, 1);
  3788. border:none;
  3789. border-radius:4px;
  3790. -moz-box-shadow:none;
  3791. -webkit-box-shadow:none;
  3792. box-shadow:none;
  3793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3794. font-weight:400;
  3795. font-style:normal;
  3796. font-size:12px;
  3797. color:#FFFFFF;
  3798. text-align:center;
  3799. line-height:25px;
  3800. }
  3801. #u50379 {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:705px;
  3805. top:372px;
  3806. width:100px;
  3807. height:25px;
  3808. display:flex;
  3809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3810. font-weight:400;
  3811. font-style:normal;
  3812. font-size:12px;
  3813. color:#FFFFFF;
  3814. text-align:center;
  3815. line-height:25px;
  3816. }
  3817. #u50379 .text {
  3818. position:absolute;
  3819. align-self:center;
  3820. padding:0px 0px 0px 0px;
  3821. box-sizing:border-box;
  3822. width:100%;
  3823. }
  3824. #u50379_text {
  3825. border-width:0px;
  3826. word-wrap:break-word;
  3827. text-transform:none;
  3828. }
  3829. #u50380_div {
  3830. border-width:0px;
  3831. position:absolute;
  3832. left:0px;
  3833. top:0px;
  3834. width:100px;
  3835. height:25px;
  3836. background:inherit;
  3837. background-color:rgba(0, 137, 254, 1);
  3838. border:none;
  3839. border-radius:4px;
  3840. -moz-box-shadow:none;
  3841. -webkit-box-shadow:none;
  3842. box-shadow:none;
  3843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3844. font-weight:400;
  3845. font-style:normal;
  3846. font-size:12px;
  3847. color:#FFFFFF;
  3848. text-align:center;
  3849. line-height:25px;
  3850. }
  3851. #u50380 {
  3852. border-width:0px;
  3853. position:absolute;
  3854. left:941px;
  3855. top:372px;
  3856. width:100px;
  3857. height:25px;
  3858. display:flex;
  3859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3860. font-weight:400;
  3861. font-style:normal;
  3862. font-size:12px;
  3863. color:#FFFFFF;
  3864. text-align:center;
  3865. line-height:25px;
  3866. }
  3867. #u50380 .text {
  3868. position:absolute;
  3869. align-self:center;
  3870. padding:0px 0px 0px 0px;
  3871. box-sizing:border-box;
  3872. width:100%;
  3873. }
  3874. #u50380_text {
  3875. border-width:0px;
  3876. word-wrap:break-word;
  3877. text-transform:none;
  3878. }
  3879. #u50381_div {
  3880. border-width:0px;
  3881. position:absolute;
  3882. left:0px;
  3883. top:0px;
  3884. width:100px;
  3885. height:25px;
  3886. background:inherit;
  3887. background-color:rgba(0, 137, 254, 1);
  3888. border:none;
  3889. border-radius:4px;
  3890. -moz-box-shadow:none;
  3891. -webkit-box-shadow:none;
  3892. box-shadow:none;
  3893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3894. font-weight:400;
  3895. font-style:normal;
  3896. font-size:12px;
  3897. color:#FFFFFF;
  3898. text-align:center;
  3899. line-height:25px;
  3900. }
  3901. #u50381 {
  3902. border-width:0px;
  3903. position:absolute;
  3904. left:1187px;
  3905. top:372px;
  3906. width:100px;
  3907. height:25px;
  3908. display:flex;
  3909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3910. font-weight:400;
  3911. font-style:normal;
  3912. font-size:12px;
  3913. color:#FFFFFF;
  3914. text-align:center;
  3915. line-height:25px;
  3916. }
  3917. #u50381 .text {
  3918. position:absolute;
  3919. align-self:center;
  3920. padding:0px 0px 0px 0px;
  3921. box-sizing:border-box;
  3922. width:100%;
  3923. }
  3924. #u50381_text {
  3925. border-width:0px;
  3926. word-wrap:break-word;
  3927. text-transform:none;
  3928. }
  3929. #u50382_div {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:0px;
  3933. top:0px;
  3934. width:100px;
  3935. height:25px;
  3936. background:inherit;
  3937. background-color:rgba(0, 137, 254, 1);
  3938. border:none;
  3939. border-radius:4px;
  3940. -moz-box-shadow:none;
  3941. -webkit-box-shadow:none;
  3942. box-shadow:none;
  3943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3944. font-weight:400;
  3945. font-style:normal;
  3946. font-size:12px;
  3947. color:#FFFFFF;
  3948. text-align:center;
  3949. line-height:25px;
  3950. }
  3951. #u50382 {
  3952. border-width:0px;
  3953. position:absolute;
  3954. left:1436px;
  3955. top:372px;
  3956. width:100px;
  3957. height:25px;
  3958. display:flex;
  3959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3960. font-weight:400;
  3961. font-style:normal;
  3962. font-size:12px;
  3963. color:#FFFFFF;
  3964. text-align:center;
  3965. line-height:25px;
  3966. }
  3967. #u50382 .text {
  3968. position:absolute;
  3969. align-self:center;
  3970. padding:0px 0px 0px 0px;
  3971. box-sizing:border-box;
  3972. width:100%;
  3973. }
  3974. #u50382_text {
  3975. border-width:0px;
  3976. word-wrap:break-word;
  3977. text-transform:none;
  3978. }
  3979. #u50383_div {
  3980. border-width:0px;
  3981. position:absolute;
  3982. left:0px;
  3983. top:0px;
  3984. width:100px;
  3985. height:25px;
  3986. background:inherit;
  3987. background-color:rgba(0, 137, 254, 1);
  3988. border:none;
  3989. border-radius:4px;
  3990. -moz-box-shadow:none;
  3991. -webkit-box-shadow:none;
  3992. box-shadow:none;
  3993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3994. font-weight:400;
  3995. font-style:normal;
  3996. font-size:12px;
  3997. color:#FFFFFF;
  3998. text-align:center;
  3999. line-height:25px;
  4000. }
  4001. #u50383 {
  4002. border-width:0px;
  4003. position:absolute;
  4004. left:450px;
  4005. top:372px;
  4006. width:100px;
  4007. height:25px;
  4008. display:flex;
  4009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4010. font-weight:400;
  4011. font-style:normal;
  4012. font-size:12px;
  4013. color:#FFFFFF;
  4014. text-align:center;
  4015. line-height:25px;
  4016. }
  4017. #u50383 .text {
  4018. position:absolute;
  4019. align-self:center;
  4020. padding:0px 0px 0px 0px;
  4021. box-sizing:border-box;
  4022. width:100%;
  4023. }
  4024. #u50383_text {
  4025. border-width:0px;
  4026. word-wrap:break-word;
  4027. text-transform:none;
  4028. }
  4029. #u50384 {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:0px;
  4033. top:0px;
  4034. width:0px;
  4035. height:0px;
  4036. }
  4037. #u50385_div {
  4038. border-width:0px;
  4039. position:absolute;
  4040. left:0px;
  4041. top:0px;
  4042. width:220px;
  4043. height:250px;
  4044. background:inherit;
  4045. background-color:rgba(255, 255, 255, 1);
  4046. box-sizing:border-box;
  4047. border-width:1px;
  4048. border-style:solid;
  4049. border-color:rgba(121, 121, 121, 1);
  4050. border-radius:0px;
  4051. -moz-box-shadow:none;
  4052. -webkit-box-shadow:none;
  4053. box-shadow:none;
  4054. }
  4055. #u50385 {
  4056. border-width:0px;
  4057. position:absolute;
  4058. left:349px;
  4059. top:430px;
  4060. width:220px;
  4061. height:250px;
  4062. display:flex;
  4063. }
  4064. #u50385 .text {
  4065. position:absolute;
  4066. align-self:center;
  4067. padding:2px 2px 2px 2px;
  4068. box-sizing:border-box;
  4069. width:100%;
  4070. }
  4071. #u50385_text {
  4072. border-width:0px;
  4073. word-wrap:break-word;
  4074. text-transform:none;
  4075. visibility:hidden;
  4076. }
  4077. #u50386_div {
  4078. border-width:0px;
  4079. position:absolute;
  4080. left:0px;
  4081. top:0px;
  4082. width:220px;
  4083. height:50px;
  4084. background:inherit;
  4085. background-color:rgba(170, 170, 170, 1);
  4086. box-sizing:border-box;
  4087. border-width:1px;
  4088. border-style:solid;
  4089. border-color:rgba(242, 242, 242, 1);
  4090. border-left:0px;
  4091. border-top:0px;
  4092. border-right:0px;
  4093. border-radius:0px;
  4094. border-bottom-right-radius:0px;
  4095. border-bottom-left-radius:0px;
  4096. -moz-box-shadow:none;
  4097. -webkit-box-shadow:none;
  4098. box-shadow:none;
  4099. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4100. font-weight:500;
  4101. font-style:normal;
  4102. font-size:18px;
  4103. }
  4104. #u50386 {
  4105. border-width:0px;
  4106. position:absolute;
  4107. left:349px;
  4108. top:430px;
  4109. width:220px;
  4110. height:50px;
  4111. display:flex;
  4112. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4113. font-weight:500;
  4114. font-style:normal;
  4115. font-size:18px;
  4116. }
  4117. #u50386 .text {
  4118. position:absolute;
  4119. align-self:center;
  4120. padding:0px 0px 0px 20px;
  4121. box-sizing:border-box;
  4122. width:100%;
  4123. }
  4124. #u50386_text {
  4125. border-width:0px;
  4126. word-wrap:break-word;
  4127. text-transform:none;
  4128. }
  4129. #u50387_div {
  4130. border-width:0px;
  4131. position:absolute;
  4132. left:0px;
  4133. top:0px;
  4134. width:75px;
  4135. height:75px;
  4136. background:inherit;
  4137. background-color:rgba(255, 255, 255, 0);
  4138. border:none;
  4139. border-left:0px;
  4140. border-top:0px;
  4141. border-right:0px;
  4142. border-radius:0px;
  4143. border-bottom-right-radius:0px;
  4144. border-bottom-left-radius:0px;
  4145. -moz-box-shadow:none;
  4146. -webkit-box-shadow:none;
  4147. box-shadow:none;
  4148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4149. font-weight:400;
  4150. font-style:normal;
  4151. font-size:12px;
  4152. line-height:25px;
  4153. }
  4154. #u50387 {
  4155. border-width:0px;
  4156. position:absolute;
  4157. left:465px;
  4158. top:495px;
  4159. width:75px;
  4160. height:75px;
  4161. display:flex;
  4162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4163. font-weight:400;
  4164. font-style:normal;
  4165. font-size:12px;
  4166. line-height:25px;
  4167. }
  4168. #u50387 .text {
  4169. position:absolute;
  4170. align-self:center;
  4171. padding:0px 0px 0px 0px;
  4172. box-sizing:border-box;
  4173. width:100%;
  4174. }
  4175. #u50387_text {
  4176. border-width:0px;
  4177. white-space:nowrap;
  4178. text-transform:none;
  4179. }
  4180. #u50388_div {
  4181. border-width:0px;
  4182. position:absolute;
  4183. left:0px;
  4184. top:0px;
  4185. width:85px;
  4186. height:25px;
  4187. background:inherit;
  4188. background-color:rgba(255, 255, 255, 0);
  4189. border:none;
  4190. border-left:0px;
  4191. border-top:0px;
  4192. border-right:0px;
  4193. border-radius:0px;
  4194. border-bottom-right-radius:0px;
  4195. border-bottom-left-radius:0px;
  4196. -moz-box-shadow:none;
  4197. -webkit-box-shadow:none;
  4198. box-shadow:none;
  4199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4200. font-weight:400;
  4201. font-style:normal;
  4202. font-size:12px;
  4203. line-height:25px;
  4204. }
  4205. #u50388 {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:360px;
  4209. top:584px;
  4210. width:85px;
  4211. height:25px;
  4212. display:flex;
  4213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4214. font-weight:400;
  4215. font-style:normal;
  4216. font-size:12px;
  4217. line-height:25px;
  4218. }
  4219. #u50388 .text {
  4220. position:absolute;
  4221. align-self:center;
  4222. padding:0px 0px 0px 0px;
  4223. box-sizing:border-box;
  4224. width:100%;
  4225. }
  4226. #u50388_text {
  4227. border-width:0px;
  4228. white-space:nowrap;
  4229. text-transform:none;
  4230. }
  4231. #u50389_div {
  4232. border-width:0px;
  4233. position:absolute;
  4234. left:0px;
  4235. top:0px;
  4236. width:85px;
  4237. height:25px;
  4238. background:inherit;
  4239. background-color:rgba(255, 255, 255, 0);
  4240. border:none;
  4241. border-left:0px;
  4242. border-top:0px;
  4243. border-right:0px;
  4244. border-radius:0px;
  4245. border-bottom-right-radius:0px;
  4246. border-bottom-left-radius:0px;
  4247. -moz-box-shadow:none;
  4248. -webkit-box-shadow:none;
  4249. box-shadow:none;
  4250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4251. font-weight:400;
  4252. font-style:normal;
  4253. font-size:12px;
  4254. line-height:25px;
  4255. }
  4256. #u50389 {
  4257. border-width:0px;
  4258. position:absolute;
  4259. left:465px;
  4260. top:584px;
  4261. width:85px;
  4262. height:25px;
  4263. display:flex;
  4264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4265. font-weight:400;
  4266. font-style:normal;
  4267. font-size:12px;
  4268. line-height:25px;
  4269. }
  4270. #u50389 .text {
  4271. position:absolute;
  4272. align-self:center;
  4273. padding:0px 0px 0px 0px;
  4274. box-sizing:border-box;
  4275. width:100%;
  4276. }
  4277. #u50389_text {
  4278. border-width:0px;
  4279. white-space:nowrap;
  4280. text-transform:none;
  4281. }
  4282. #u50390_div {
  4283. border-width:0px;
  4284. position:absolute;
  4285. left:0px;
  4286. top:0px;
  4287. width:85px;
  4288. height:25px;
  4289. background:inherit;
  4290. background-color:rgba(255, 255, 255, 0);
  4291. border:none;
  4292. border-left:0px;
  4293. border-top:0px;
  4294. border-right:0px;
  4295. border-radius:0px;
  4296. border-bottom-right-radius:0px;
  4297. border-bottom-left-radius:0px;
  4298. -moz-box-shadow:none;
  4299. -webkit-box-shadow:none;
  4300. box-shadow:none;
  4301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4302. font-weight:400;
  4303. font-style:normal;
  4304. font-size:12px;
  4305. line-height:25px;
  4306. }
  4307. #u50390 {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:360px;
  4311. top:609px;
  4312. width:85px;
  4313. height:25px;
  4314. display:flex;
  4315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4316. font-weight:400;
  4317. font-style:normal;
  4318. font-size:12px;
  4319. line-height:25px;
  4320. }
  4321. #u50390 .text {
  4322. position:absolute;
  4323. align-self:center;
  4324. padding:0px 0px 0px 0px;
  4325. box-sizing:border-box;
  4326. width:100%;
  4327. }
  4328. #u50390_text {
  4329. border-width:0px;
  4330. white-space:nowrap;
  4331. text-transform:none;
  4332. }
  4333. #u50391_div {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:0px;
  4337. top:0px;
  4338. width:85px;
  4339. height:25px;
  4340. background:inherit;
  4341. background-color:rgba(255, 255, 255, 0);
  4342. border:none;
  4343. border-left:0px;
  4344. border-top:0px;
  4345. border-right:0px;
  4346. border-radius:0px;
  4347. border-bottom-right-radius:0px;
  4348. border-bottom-left-radius:0px;
  4349. -moz-box-shadow:none;
  4350. -webkit-box-shadow:none;
  4351. box-shadow:none;
  4352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4353. font-weight:400;
  4354. font-style:normal;
  4355. font-size:12px;
  4356. line-height:25px;
  4357. }
  4358. #u50391 {
  4359. border-width:0px;
  4360. position:absolute;
  4361. left:465px;
  4362. top:609px;
  4363. width:85px;
  4364. height:25px;
  4365. display:flex;
  4366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4367. font-weight:400;
  4368. font-style:normal;
  4369. font-size:12px;
  4370. line-height:25px;
  4371. }
  4372. #u50391 .text {
  4373. position:absolute;
  4374. align-self:center;
  4375. padding:0px 0px 0px 0px;
  4376. box-sizing:border-box;
  4377. width:100%;
  4378. }
  4379. #u50391_text {
  4380. border-width:0px;
  4381. white-space:nowrap;
  4382. text-transform:none;
  4383. }
  4384. #u50392_img {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:0px;
  4388. top:0px;
  4389. width:75px;
  4390. height:90px;
  4391. }
  4392. #u50392 {
  4393. border-width:0px;
  4394. position:absolute;
  4395. left:360px;
  4396. top:488px;
  4397. width:75px;
  4398. height:90px;
  4399. display:flex;
  4400. }
  4401. #u50392 .text {
  4402. position:absolute;
  4403. align-self:center;
  4404. padding:2px 2px 2px 2px;
  4405. box-sizing:border-box;
  4406. width:100%;
  4407. }
  4408. #u50392_text {
  4409. border-width:0px;
  4410. word-wrap:break-word;
  4411. text-transform:none;
  4412. visibility:hidden;
  4413. }
  4414. #u50393_img {
  4415. border-width:0px;
  4416. position:absolute;
  4417. left:0px;
  4418. top:0px;
  4419. width:30px;
  4420. height:30px;
  4421. }
  4422. #u50393 {
  4423. border-width:0px;
  4424. position:absolute;
  4425. left:527px;
  4426. top:440px;
  4427. width:30px;
  4428. height:30px;
  4429. display:flex;
  4430. }
  4431. #u50393 .text {
  4432. position:absolute;
  4433. align-self:center;
  4434. padding:2px 2px 2px 2px;
  4435. box-sizing:border-box;
  4436. width:100%;
  4437. }
  4438. #u50393_text {
  4439. border-width:0px;
  4440. word-wrap:break-word;
  4441. text-transform:none;
  4442. visibility:hidden;
  4443. }
  4444. #u50394_div {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:0px;
  4448. top:0px;
  4449. width:220px;
  4450. height:250px;
  4451. background:inherit;
  4452. background-color:rgba(255, 255, 255, 1);
  4453. box-sizing:border-box;
  4454. border-width:1px;
  4455. border-style:solid;
  4456. border-color:rgba(121, 121, 121, 1);
  4457. border-radius:0px;
  4458. -moz-box-shadow:none;
  4459. -webkit-box-shadow:none;
  4460. box-shadow:none;
  4461. }
  4462. #u50394 {
  4463. border-width:0px;
  4464. position:absolute;
  4465. left:595px;
  4466. top:430px;
  4467. width:220px;
  4468. height:250px;
  4469. display:flex;
  4470. }
  4471. #u50394 .text {
  4472. position:absolute;
  4473. align-self:center;
  4474. padding:2px 2px 2px 2px;
  4475. box-sizing:border-box;
  4476. width:100%;
  4477. }
  4478. #u50394_text {
  4479. border-width:0px;
  4480. word-wrap:break-word;
  4481. text-transform:none;
  4482. visibility:hidden;
  4483. }
  4484. #u50395_div {
  4485. border-width:0px;
  4486. position:absolute;
  4487. left:0px;
  4488. top:0px;
  4489. width:220px;
  4490. height:50px;
  4491. background:inherit;
  4492. background-color:rgba(170, 170, 170, 1);
  4493. box-sizing:border-box;
  4494. border-width:1px;
  4495. border-style:solid;
  4496. border-color:rgba(242, 242, 242, 1);
  4497. border-left:0px;
  4498. border-top:0px;
  4499. border-right:0px;
  4500. border-radius:0px;
  4501. border-bottom-right-radius:0px;
  4502. border-bottom-left-radius:0px;
  4503. -moz-box-shadow:none;
  4504. -webkit-box-shadow:none;
  4505. box-shadow:none;
  4506. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4507. font-weight:500;
  4508. font-style:normal;
  4509. font-size:18px;
  4510. }
  4511. #u50395 {
  4512. border-width:0px;
  4513. position:absolute;
  4514. left:595px;
  4515. top:430px;
  4516. width:220px;
  4517. height:50px;
  4518. display:flex;
  4519. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4520. font-weight:500;
  4521. font-style:normal;
  4522. font-size:18px;
  4523. }
  4524. #u50395 .text {
  4525. position:absolute;
  4526. align-self:center;
  4527. padding:0px 0px 0px 20px;
  4528. box-sizing:border-box;
  4529. width:100%;
  4530. }
  4531. #u50395_text {
  4532. border-width:0px;
  4533. word-wrap:break-word;
  4534. text-transform:none;
  4535. }
  4536. #u50396_div {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:0px;
  4540. top:0px;
  4541. width:80px;
  4542. height:75px;
  4543. background:inherit;
  4544. background-color:rgba(255, 255, 255, 0);
  4545. border:none;
  4546. border-left:0px;
  4547. border-top:0px;
  4548. border-right:0px;
  4549. border-radius:0px;
  4550. border-bottom-right-radius:0px;
  4551. border-bottom-left-radius:0px;
  4552. -moz-box-shadow:none;
  4553. -webkit-box-shadow:none;
  4554. box-shadow:none;
  4555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4556. font-weight:400;
  4557. font-style:normal;
  4558. font-size:12px;
  4559. line-height:25px;
  4560. }
  4561. #u50396 {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:711px;
  4565. top:495px;
  4566. width:80px;
  4567. height:75px;
  4568. display:flex;
  4569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4570. font-weight:400;
  4571. font-style:normal;
  4572. font-size:12px;
  4573. line-height:25px;
  4574. }
  4575. #u50396 .text {
  4576. position:absolute;
  4577. align-self:center;
  4578. padding:0px 0px 0px 0px;
  4579. box-sizing:border-box;
  4580. width:100%;
  4581. }
  4582. #u50396_text {
  4583. border-width:0px;
  4584. white-space:nowrap;
  4585. text-transform:none;
  4586. }
  4587. #u50397_div {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:0px;
  4591. top:0px;
  4592. width:85px;
  4593. height:25px;
  4594. background:inherit;
  4595. background-color:rgba(255, 255, 255, 0);
  4596. border:none;
  4597. border-left:0px;
  4598. border-top:0px;
  4599. border-right:0px;
  4600. border-radius:0px;
  4601. border-bottom-right-radius:0px;
  4602. border-bottom-left-radius:0px;
  4603. -moz-box-shadow:none;
  4604. -webkit-box-shadow:none;
  4605. box-shadow:none;
  4606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4607. font-weight:400;
  4608. font-style:normal;
  4609. font-size:12px;
  4610. line-height:25px;
  4611. }
  4612. #u50397 {
  4613. border-width:0px;
  4614. position:absolute;
  4615. left:606px;
  4616. top:584px;
  4617. width:85px;
  4618. height:25px;
  4619. display:flex;
  4620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4621. font-weight:400;
  4622. font-style:normal;
  4623. font-size:12px;
  4624. line-height:25px;
  4625. }
  4626. #u50397 .text {
  4627. position:absolute;
  4628. align-self:center;
  4629. padding:0px 0px 0px 0px;
  4630. box-sizing:border-box;
  4631. width:100%;
  4632. }
  4633. #u50397_text {
  4634. border-width:0px;
  4635. white-space:nowrap;
  4636. text-transform:none;
  4637. }
  4638. #u50398_div {
  4639. border-width:0px;
  4640. position:absolute;
  4641. left:0px;
  4642. top:0px;
  4643. width:85px;
  4644. height:25px;
  4645. background:inherit;
  4646. background-color:rgba(255, 255, 255, 0);
  4647. border:none;
  4648. border-left:0px;
  4649. border-top:0px;
  4650. border-right:0px;
  4651. border-radius:0px;
  4652. border-bottom-right-radius:0px;
  4653. border-bottom-left-radius:0px;
  4654. -moz-box-shadow:none;
  4655. -webkit-box-shadow:none;
  4656. box-shadow:none;
  4657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4658. font-weight:400;
  4659. font-style:normal;
  4660. font-size:12px;
  4661. line-height:25px;
  4662. }
  4663. #u50398 {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:711px;
  4667. top:584px;
  4668. width:85px;
  4669. height:25px;
  4670. display:flex;
  4671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4672. font-weight:400;
  4673. font-style:normal;
  4674. font-size:12px;
  4675. line-height:25px;
  4676. }
  4677. #u50398 .text {
  4678. position:absolute;
  4679. align-self:center;
  4680. padding:0px 0px 0px 0px;
  4681. box-sizing:border-box;
  4682. width:100%;
  4683. }
  4684. #u50398_text {
  4685. border-width:0px;
  4686. white-space:nowrap;
  4687. text-transform:none;
  4688. }
  4689. #u50399_div {
  4690. border-width:0px;
  4691. position:absolute;
  4692. left:0px;
  4693. top:0px;
  4694. width:85px;
  4695. height:25px;
  4696. background:inherit;
  4697. background-color:rgba(255, 255, 255, 0);
  4698. border:none;
  4699. border-left:0px;
  4700. border-top:0px;
  4701. border-right:0px;
  4702. border-radius:0px;
  4703. border-bottom-right-radius:0px;
  4704. border-bottom-left-radius:0px;
  4705. -moz-box-shadow:none;
  4706. -webkit-box-shadow:none;
  4707. box-shadow:none;
  4708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4709. font-weight:400;
  4710. font-style:normal;
  4711. font-size:12px;
  4712. line-height:25px;
  4713. }
  4714. #u50399 {
  4715. border-width:0px;
  4716. position:absolute;
  4717. left:606px;
  4718. top:609px;
  4719. width:85px;
  4720. height:25px;
  4721. display:flex;
  4722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4723. font-weight:400;
  4724. font-style:normal;
  4725. font-size:12px;
  4726. line-height:25px;
  4727. }
  4728. #u50399 .text {
  4729. position:absolute;
  4730. align-self:center;
  4731. padding:0px 0px 0px 0px;
  4732. box-sizing:border-box;
  4733. width:100%;
  4734. }
  4735. #u50399_text {
  4736. border-width:0px;
  4737. white-space:nowrap;
  4738. text-transform:none;
  4739. }
  4740. #u50400_div {
  4741. border-width:0px;
  4742. position:absolute;
  4743. left:0px;
  4744. top:0px;
  4745. width:85px;
  4746. height:25px;
  4747. background:inherit;
  4748. background-color:rgba(255, 255, 255, 0);
  4749. border:none;
  4750. border-left:0px;
  4751. border-top:0px;
  4752. border-right:0px;
  4753. border-radius:0px;
  4754. border-bottom-right-radius:0px;
  4755. border-bottom-left-radius:0px;
  4756. -moz-box-shadow:none;
  4757. -webkit-box-shadow:none;
  4758. box-shadow:none;
  4759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4760. font-weight:400;
  4761. font-style:normal;
  4762. font-size:12px;
  4763. line-height:25px;
  4764. }
  4765. #u50400 {
  4766. border-width:0px;
  4767. position:absolute;
  4768. left:711px;
  4769. top:609px;
  4770. width:85px;
  4771. height:25px;
  4772. display:flex;
  4773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4774. font-weight:400;
  4775. font-style:normal;
  4776. font-size:12px;
  4777. line-height:25px;
  4778. }
  4779. #u50400 .text {
  4780. position:absolute;
  4781. align-self:center;
  4782. padding:0px 0px 0px 0px;
  4783. box-sizing:border-box;
  4784. width:100%;
  4785. }
  4786. #u50400_text {
  4787. border-width:0px;
  4788. white-space:nowrap;
  4789. text-transform:none;
  4790. }
  4791. #u50401_img {
  4792. border-width:0px;
  4793. position:absolute;
  4794. left:0px;
  4795. top:0px;
  4796. width:75px;
  4797. height:90px;
  4798. }
  4799. #u50401 {
  4800. border-width:0px;
  4801. position:absolute;
  4802. left:606px;
  4803. top:488px;
  4804. width:75px;
  4805. height:90px;
  4806. display:flex;
  4807. }
  4808. #u50401 .text {
  4809. position:absolute;
  4810. align-self:center;
  4811. padding:2px 2px 2px 2px;
  4812. box-sizing:border-box;
  4813. width:100%;
  4814. }
  4815. #u50401_text {
  4816. border-width:0px;
  4817. word-wrap:break-word;
  4818. text-transform:none;
  4819. visibility:hidden;
  4820. }
  4821. #u50402_img {
  4822. border-width:0px;
  4823. position:absolute;
  4824. left:0px;
  4825. top:0px;
  4826. width:30px;
  4827. height:30px;
  4828. }
  4829. #u50402 {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:770px;
  4833. top:440px;
  4834. width:30px;
  4835. height:30px;
  4836. display:flex;
  4837. }
  4838. #u50402 .text {
  4839. position:absolute;
  4840. align-self:center;
  4841. padding:2px 2px 2px 2px;
  4842. box-sizing:border-box;
  4843. width:100%;
  4844. }
  4845. #u50402_text {
  4846. border-width:0px;
  4847. word-wrap:break-word;
  4848. text-transform:none;
  4849. visibility:hidden;
  4850. }
  4851. #u50403_div {
  4852. border-width:0px;
  4853. position:absolute;
  4854. left:0px;
  4855. top:0px;
  4856. width:220px;
  4857. height:250px;
  4858. background:inherit;
  4859. background-color:rgba(255, 255, 255, 1);
  4860. box-sizing:border-box;
  4861. border-width:1px;
  4862. border-style:solid;
  4863. border-color:rgba(121, 121, 121, 1);
  4864. border-radius:0px;
  4865. -moz-box-shadow:none;
  4866. -webkit-box-shadow:none;
  4867. box-shadow:none;
  4868. }
  4869. #u50403 {
  4870. border-width:0px;
  4871. position:absolute;
  4872. left:840px;
  4873. top:430px;
  4874. width:220px;
  4875. height:250px;
  4876. display:flex;
  4877. }
  4878. #u50403 .text {
  4879. position:absolute;
  4880. align-self:center;
  4881. padding:2px 2px 2px 2px;
  4882. box-sizing:border-box;
  4883. width:100%;
  4884. }
  4885. #u50403_text {
  4886. border-width:0px;
  4887. word-wrap:break-word;
  4888. text-transform:none;
  4889. visibility:hidden;
  4890. }
  4891. #u50404_div {
  4892. border-width:0px;
  4893. position:absolute;
  4894. left:0px;
  4895. top:0px;
  4896. width:220px;
  4897. height:50px;
  4898. background:inherit;
  4899. background-color:rgba(170, 170, 170, 1);
  4900. box-sizing:border-box;
  4901. border-width:1px;
  4902. border-style:solid;
  4903. border-color:rgba(242, 242, 242, 1);
  4904. border-left:0px;
  4905. border-top:0px;
  4906. border-right:0px;
  4907. border-radius:0px;
  4908. border-bottom-right-radius:0px;
  4909. border-bottom-left-radius:0px;
  4910. -moz-box-shadow:none;
  4911. -webkit-box-shadow:none;
  4912. box-shadow:none;
  4913. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4914. font-weight:500;
  4915. font-style:normal;
  4916. font-size:18px;
  4917. }
  4918. #u50404 {
  4919. border-width:0px;
  4920. position:absolute;
  4921. left:840px;
  4922. top:430px;
  4923. width:220px;
  4924. height:50px;
  4925. display:flex;
  4926. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4927. font-weight:500;
  4928. font-style:normal;
  4929. font-size:18px;
  4930. }
  4931. #u50404 .text {
  4932. position:absolute;
  4933. align-self:center;
  4934. padding:0px 0px 0px 20px;
  4935. box-sizing:border-box;
  4936. width:100%;
  4937. }
  4938. #u50404_text {
  4939. border-width:0px;
  4940. word-wrap:break-word;
  4941. text-transform:none;
  4942. }
  4943. #u50405_div {
  4944. border-width:0px;
  4945. position:absolute;
  4946. left:0px;
  4947. top:0px;
  4948. width:75px;
  4949. height:75px;
  4950. background:inherit;
  4951. background-color:rgba(255, 255, 255, 0);
  4952. border:none;
  4953. border-left:0px;
  4954. border-top:0px;
  4955. border-right:0px;
  4956. border-radius:0px;
  4957. border-bottom-right-radius:0px;
  4958. border-bottom-left-radius:0px;
  4959. -moz-box-shadow:none;
  4960. -webkit-box-shadow:none;
  4961. box-shadow:none;
  4962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4963. font-weight:400;
  4964. font-style:normal;
  4965. font-size:12px;
  4966. line-height:25px;
  4967. }
  4968. #u50405 {
  4969. border-width:0px;
  4970. position:absolute;
  4971. left:956px;
  4972. top:495px;
  4973. width:75px;
  4974. height:75px;
  4975. display:flex;
  4976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4977. font-weight:400;
  4978. font-style:normal;
  4979. font-size:12px;
  4980. line-height:25px;
  4981. }
  4982. #u50405 .text {
  4983. position:absolute;
  4984. align-self:center;
  4985. padding:0px 0px 0px 0px;
  4986. box-sizing:border-box;
  4987. width:100%;
  4988. }
  4989. #u50405_text {
  4990. border-width:0px;
  4991. white-space:nowrap;
  4992. text-transform:none;
  4993. }
  4994. #u50406_div {
  4995. border-width:0px;
  4996. position:absolute;
  4997. left:0px;
  4998. top:0px;
  4999. width:85px;
  5000. height:25px;
  5001. background:inherit;
  5002. background-color:rgba(255, 255, 255, 0);
  5003. border:none;
  5004. border-left:0px;
  5005. border-top:0px;
  5006. border-right:0px;
  5007. border-radius:0px;
  5008. border-bottom-right-radius:0px;
  5009. border-bottom-left-radius:0px;
  5010. -moz-box-shadow:none;
  5011. -webkit-box-shadow:none;
  5012. box-shadow:none;
  5013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5014. font-weight:400;
  5015. font-style:normal;
  5016. font-size:12px;
  5017. line-height:25px;
  5018. }
  5019. #u50406 {
  5020. border-width:0px;
  5021. position:absolute;
  5022. left:851px;
  5023. top:584px;
  5024. width:85px;
  5025. height:25px;
  5026. display:flex;
  5027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5028. font-weight:400;
  5029. font-style:normal;
  5030. font-size:12px;
  5031. line-height:25px;
  5032. }
  5033. #u50406 .text {
  5034. position:absolute;
  5035. align-self:center;
  5036. padding:0px 0px 0px 0px;
  5037. box-sizing:border-box;
  5038. width:100%;
  5039. }
  5040. #u50406_text {
  5041. border-width:0px;
  5042. white-space:nowrap;
  5043. text-transform:none;
  5044. }
  5045. #u50407_div {
  5046. border-width:0px;
  5047. position:absolute;
  5048. left:0px;
  5049. top:0px;
  5050. width:85px;
  5051. height:25px;
  5052. background:inherit;
  5053. background-color:rgba(255, 255, 255, 0);
  5054. border:none;
  5055. border-left:0px;
  5056. border-top:0px;
  5057. border-right:0px;
  5058. border-radius:0px;
  5059. border-bottom-right-radius:0px;
  5060. border-bottom-left-radius:0px;
  5061. -moz-box-shadow:none;
  5062. -webkit-box-shadow:none;
  5063. box-shadow:none;
  5064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5065. font-weight:400;
  5066. font-style:normal;
  5067. font-size:12px;
  5068. line-height:25px;
  5069. }
  5070. #u50407 {
  5071. border-width:0px;
  5072. position:absolute;
  5073. left:956px;
  5074. top:584px;
  5075. width:85px;
  5076. height:25px;
  5077. display:flex;
  5078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5079. font-weight:400;
  5080. font-style:normal;
  5081. font-size:12px;
  5082. line-height:25px;
  5083. }
  5084. #u50407 .text {
  5085. position:absolute;
  5086. align-self:center;
  5087. padding:0px 0px 0px 0px;
  5088. box-sizing:border-box;
  5089. width:100%;
  5090. }
  5091. #u50407_text {
  5092. border-width:0px;
  5093. white-space:nowrap;
  5094. text-transform:none;
  5095. }
  5096. #u50408_div {
  5097. border-width:0px;
  5098. position:absolute;
  5099. left:0px;
  5100. top:0px;
  5101. width:85px;
  5102. height:25px;
  5103. background:inherit;
  5104. background-color:rgba(255, 255, 255, 0);
  5105. border:none;
  5106. border-left:0px;
  5107. border-top:0px;
  5108. border-right:0px;
  5109. border-radius:0px;
  5110. border-bottom-right-radius:0px;
  5111. border-bottom-left-radius:0px;
  5112. -moz-box-shadow:none;
  5113. -webkit-box-shadow:none;
  5114. box-shadow:none;
  5115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5116. font-weight:400;
  5117. font-style:normal;
  5118. font-size:12px;
  5119. line-height:25px;
  5120. }
  5121. #u50408 {
  5122. border-width:0px;
  5123. position:absolute;
  5124. left:851px;
  5125. top:609px;
  5126. width:85px;
  5127. height:25px;
  5128. display:flex;
  5129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5130. font-weight:400;
  5131. font-style:normal;
  5132. font-size:12px;
  5133. line-height:25px;
  5134. }
  5135. #u50408 .text {
  5136. position:absolute;
  5137. align-self:center;
  5138. padding:0px 0px 0px 0px;
  5139. box-sizing:border-box;
  5140. width:100%;
  5141. }
  5142. #u50408_text {
  5143. border-width:0px;
  5144. white-space:nowrap;
  5145. text-transform:none;
  5146. }
  5147. #u50409_div {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:0px;
  5151. top:0px;
  5152. width:85px;
  5153. height:25px;
  5154. background:inherit;
  5155. background-color:rgba(255, 255, 255, 0);
  5156. border:none;
  5157. border-left:0px;
  5158. border-top:0px;
  5159. border-right:0px;
  5160. border-radius:0px;
  5161. border-bottom-right-radius:0px;
  5162. border-bottom-left-radius:0px;
  5163. -moz-box-shadow:none;
  5164. -webkit-box-shadow:none;
  5165. box-shadow:none;
  5166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5167. font-weight:400;
  5168. font-style:normal;
  5169. font-size:12px;
  5170. line-height:25px;
  5171. }
  5172. #u50409 {
  5173. border-width:0px;
  5174. position:absolute;
  5175. left:956px;
  5176. top:609px;
  5177. width:85px;
  5178. height:25px;
  5179. display:flex;
  5180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5181. font-weight:400;
  5182. font-style:normal;
  5183. font-size:12px;
  5184. line-height:25px;
  5185. }
  5186. #u50409 .text {
  5187. position:absolute;
  5188. align-self:center;
  5189. padding:0px 0px 0px 0px;
  5190. box-sizing:border-box;
  5191. width:100%;
  5192. }
  5193. #u50409_text {
  5194. border-width:0px;
  5195. white-space:nowrap;
  5196. text-transform:none;
  5197. }
  5198. #u50410_img {
  5199. border-width:0px;
  5200. position:absolute;
  5201. left:0px;
  5202. top:0px;
  5203. width:75px;
  5204. height:90px;
  5205. }
  5206. #u50410 {
  5207. border-width:0px;
  5208. position:absolute;
  5209. left:851px;
  5210. top:488px;
  5211. width:75px;
  5212. height:90px;
  5213. display:flex;
  5214. }
  5215. #u50410 .text {
  5216. position:absolute;
  5217. align-self:center;
  5218. padding:2px 2px 2px 2px;
  5219. box-sizing:border-box;
  5220. width:100%;
  5221. }
  5222. #u50410_text {
  5223. border-width:0px;
  5224. word-wrap:break-word;
  5225. text-transform:none;
  5226. visibility:hidden;
  5227. }
  5228. #u50411_img {
  5229. border-width:0px;
  5230. position:absolute;
  5231. left:0px;
  5232. top:0px;
  5233. width:30px;
  5234. height:30px;
  5235. }
  5236. #u50411 {
  5237. border-width:0px;
  5238. position:absolute;
  5239. left:1018px;
  5240. top:440px;
  5241. width:30px;
  5242. height:30px;
  5243. display:flex;
  5244. }
  5245. #u50411 .text {
  5246. position:absolute;
  5247. align-self:center;
  5248. padding:2px 2px 2px 2px;
  5249. box-sizing:border-box;
  5250. width:100%;
  5251. }
  5252. #u50411_text {
  5253. border-width:0px;
  5254. word-wrap:break-word;
  5255. text-transform:none;
  5256. visibility:hidden;
  5257. }
  5258. #u50412_div {
  5259. border-width:0px;
  5260. position:absolute;
  5261. left:0px;
  5262. top:0px;
  5263. width:220px;
  5264. height:250px;
  5265. background:inherit;
  5266. background-color:rgba(255, 255, 255, 1);
  5267. box-sizing:border-box;
  5268. border-width:1px;
  5269. border-style:solid;
  5270. border-color:rgba(121, 121, 121, 1);
  5271. border-radius:0px;
  5272. -moz-box-shadow:none;
  5273. -webkit-box-shadow:none;
  5274. box-shadow:none;
  5275. }
  5276. #u50412 {
  5277. border-width:0px;
  5278. position:absolute;
  5279. left:1086px;
  5280. top:430px;
  5281. width:220px;
  5282. height:250px;
  5283. display:flex;
  5284. }
  5285. #u50412 .text {
  5286. position:absolute;
  5287. align-self:center;
  5288. padding:2px 2px 2px 2px;
  5289. box-sizing:border-box;
  5290. width:100%;
  5291. }
  5292. #u50412_text {
  5293. border-width:0px;
  5294. word-wrap:break-word;
  5295. text-transform:none;
  5296. visibility:hidden;
  5297. }
  5298. #u50413_div {
  5299. border-width:0px;
  5300. position:absolute;
  5301. left:0px;
  5302. top:0px;
  5303. width:220px;
  5304. height:50px;
  5305. background:inherit;
  5306. background-color:rgba(170, 170, 170, 1);
  5307. box-sizing:border-box;
  5308. border-width:1px;
  5309. border-style:solid;
  5310. border-color:rgba(242, 242, 242, 1);
  5311. border-left:0px;
  5312. border-top:0px;
  5313. border-right:0px;
  5314. border-radius:0px;
  5315. border-bottom-right-radius:0px;
  5316. border-bottom-left-radius:0px;
  5317. -moz-box-shadow:none;
  5318. -webkit-box-shadow:none;
  5319. box-shadow:none;
  5320. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5321. font-weight:500;
  5322. font-style:normal;
  5323. font-size:18px;
  5324. }
  5325. #u50413 {
  5326. border-width:0px;
  5327. position:absolute;
  5328. left:1086px;
  5329. top:430px;
  5330. width:220px;
  5331. height:50px;
  5332. display:flex;
  5333. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5334. font-weight:500;
  5335. font-style:normal;
  5336. font-size:18px;
  5337. }
  5338. #u50413 .text {
  5339. position:absolute;
  5340. align-self:center;
  5341. padding:0px 0px 0px 20px;
  5342. box-sizing:border-box;
  5343. width:100%;
  5344. }
  5345. #u50413_text {
  5346. border-width:0px;
  5347. word-wrap:break-word;
  5348. text-transform:none;
  5349. }
  5350. #u50414_div {
  5351. border-width:0px;
  5352. position:absolute;
  5353. left:0px;
  5354. top:0px;
  5355. width:75px;
  5356. height:75px;
  5357. background:inherit;
  5358. background-color:rgba(255, 255, 255, 0);
  5359. border:none;
  5360. border-left:0px;
  5361. border-top:0px;
  5362. border-right:0px;
  5363. border-radius:0px;
  5364. border-bottom-right-radius:0px;
  5365. border-bottom-left-radius:0px;
  5366. -moz-box-shadow:none;
  5367. -webkit-box-shadow:none;
  5368. box-shadow:none;
  5369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5370. font-weight:400;
  5371. font-style:normal;
  5372. font-size:12px;
  5373. line-height:25px;
  5374. }
  5375. #u50414 {
  5376. border-width:0px;
  5377. position:absolute;
  5378. left:1202px;
  5379. top:495px;
  5380. width:75px;
  5381. height:75px;
  5382. display:flex;
  5383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5384. font-weight:400;
  5385. font-style:normal;
  5386. font-size:12px;
  5387. line-height:25px;
  5388. }
  5389. #u50414 .text {
  5390. position:absolute;
  5391. align-self:center;
  5392. padding:0px 0px 0px 0px;
  5393. box-sizing:border-box;
  5394. width:100%;
  5395. }
  5396. #u50414_text {
  5397. border-width:0px;
  5398. white-space:nowrap;
  5399. text-transform:none;
  5400. }
  5401. #u50415_div {
  5402. border-width:0px;
  5403. position:absolute;
  5404. left:0px;
  5405. top:0px;
  5406. width:85px;
  5407. height:25px;
  5408. background:inherit;
  5409. background-color:rgba(255, 255, 255, 0);
  5410. border:none;
  5411. border-left:0px;
  5412. border-top:0px;
  5413. border-right:0px;
  5414. border-radius:0px;
  5415. border-bottom-right-radius:0px;
  5416. border-bottom-left-radius:0px;
  5417. -moz-box-shadow:none;
  5418. -webkit-box-shadow:none;
  5419. box-shadow:none;
  5420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5421. font-weight:400;
  5422. font-style:normal;
  5423. font-size:12px;
  5424. line-height:25px;
  5425. }
  5426. #u50415 {
  5427. border-width:0px;
  5428. position:absolute;
  5429. left:1097px;
  5430. top:584px;
  5431. width:85px;
  5432. height:25px;
  5433. display:flex;
  5434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5435. font-weight:400;
  5436. font-style:normal;
  5437. font-size:12px;
  5438. line-height:25px;
  5439. }
  5440. #u50415 .text {
  5441. position:absolute;
  5442. align-self:center;
  5443. padding:0px 0px 0px 0px;
  5444. box-sizing:border-box;
  5445. width:100%;
  5446. }
  5447. #u50415_text {
  5448. border-width:0px;
  5449. white-space:nowrap;
  5450. text-transform:none;
  5451. }
  5452. #u50416_div {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:0px;
  5456. top:0px;
  5457. width:85px;
  5458. height:25px;
  5459. background:inherit;
  5460. background-color:rgba(255, 255, 255, 0);
  5461. border:none;
  5462. border-left:0px;
  5463. border-top:0px;
  5464. border-right:0px;
  5465. border-radius:0px;
  5466. border-bottom-right-radius:0px;
  5467. border-bottom-left-radius:0px;
  5468. -moz-box-shadow:none;
  5469. -webkit-box-shadow:none;
  5470. box-shadow:none;
  5471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5472. font-weight:400;
  5473. font-style:normal;
  5474. font-size:12px;
  5475. line-height:25px;
  5476. }
  5477. #u50416 {
  5478. border-width:0px;
  5479. position:absolute;
  5480. left:1202px;
  5481. top:584px;
  5482. width:85px;
  5483. height:25px;
  5484. display:flex;
  5485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5486. font-weight:400;
  5487. font-style:normal;
  5488. font-size:12px;
  5489. line-height:25px;
  5490. }
  5491. #u50416 .text {
  5492. position:absolute;
  5493. align-self:center;
  5494. padding:0px 0px 0px 0px;
  5495. box-sizing:border-box;
  5496. width:100%;
  5497. }
  5498. #u50416_text {
  5499. border-width:0px;
  5500. white-space:nowrap;
  5501. text-transform:none;
  5502. }
  5503. #u50417_div {
  5504. border-width:0px;
  5505. position:absolute;
  5506. left:0px;
  5507. top:0px;
  5508. width:85px;
  5509. height:25px;
  5510. background:inherit;
  5511. background-color:rgba(255, 255, 255, 0);
  5512. border:none;
  5513. border-left:0px;
  5514. border-top:0px;
  5515. border-right:0px;
  5516. border-radius:0px;
  5517. border-bottom-right-radius:0px;
  5518. border-bottom-left-radius:0px;
  5519. -moz-box-shadow:none;
  5520. -webkit-box-shadow:none;
  5521. box-shadow:none;
  5522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5523. font-weight:400;
  5524. font-style:normal;
  5525. font-size:12px;
  5526. line-height:25px;
  5527. }
  5528. #u50417 {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:1097px;
  5532. top:609px;
  5533. width:85px;
  5534. height:25px;
  5535. display:flex;
  5536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5537. font-weight:400;
  5538. font-style:normal;
  5539. font-size:12px;
  5540. line-height:25px;
  5541. }
  5542. #u50417 .text {
  5543. position:absolute;
  5544. align-self:center;
  5545. padding:0px 0px 0px 0px;
  5546. box-sizing:border-box;
  5547. width:100%;
  5548. }
  5549. #u50417_text {
  5550. border-width:0px;
  5551. white-space:nowrap;
  5552. text-transform:none;
  5553. }
  5554. #u50418_div {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:0px;
  5558. top:0px;
  5559. width:85px;
  5560. height:25px;
  5561. background:inherit;
  5562. background-color:rgba(255, 255, 255, 0);
  5563. border:none;
  5564. border-left:0px;
  5565. border-top:0px;
  5566. border-right:0px;
  5567. border-radius:0px;
  5568. border-bottom-right-radius:0px;
  5569. border-bottom-left-radius:0px;
  5570. -moz-box-shadow:none;
  5571. -webkit-box-shadow:none;
  5572. box-shadow:none;
  5573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5574. font-weight:400;
  5575. font-style:normal;
  5576. font-size:12px;
  5577. line-height:25px;
  5578. }
  5579. #u50418 {
  5580. border-width:0px;
  5581. position:absolute;
  5582. left:1202px;
  5583. top:609px;
  5584. width:85px;
  5585. height:25px;
  5586. display:flex;
  5587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5588. font-weight:400;
  5589. font-style:normal;
  5590. font-size:12px;
  5591. line-height:25px;
  5592. }
  5593. #u50418 .text {
  5594. position:absolute;
  5595. align-self:center;
  5596. padding:0px 0px 0px 0px;
  5597. box-sizing:border-box;
  5598. width:100%;
  5599. }
  5600. #u50418_text {
  5601. border-width:0px;
  5602. white-space:nowrap;
  5603. text-transform:none;
  5604. }
  5605. #u50419_img {
  5606. border-width:0px;
  5607. position:absolute;
  5608. left:0px;
  5609. top:0px;
  5610. width:75px;
  5611. height:90px;
  5612. }
  5613. #u50419 {
  5614. border-width:0px;
  5615. position:absolute;
  5616. left:1097px;
  5617. top:488px;
  5618. width:75px;
  5619. height:90px;
  5620. display:flex;
  5621. }
  5622. #u50419 .text {
  5623. position:absolute;
  5624. align-self:center;
  5625. padding:2px 2px 2px 2px;
  5626. box-sizing:border-box;
  5627. width:100%;
  5628. }
  5629. #u50419_text {
  5630. border-width:0px;
  5631. word-wrap:break-word;
  5632. text-transform:none;
  5633. visibility:hidden;
  5634. }
  5635. #u50420_img {
  5636. border-width:0px;
  5637. position:absolute;
  5638. left:0px;
  5639. top:0px;
  5640. width:30px;
  5641. height:30px;
  5642. }
  5643. #u50420 {
  5644. border-width:0px;
  5645. position:absolute;
  5646. left:1264px;
  5647. top:440px;
  5648. width:30px;
  5649. height:30px;
  5650. display:flex;
  5651. }
  5652. #u50420 .text {
  5653. position:absolute;
  5654. align-self:center;
  5655. padding:2px 2px 2px 2px;
  5656. box-sizing:border-box;
  5657. width:100%;
  5658. }
  5659. #u50420_text {
  5660. border-width:0px;
  5661. word-wrap:break-word;
  5662. text-transform:none;
  5663. visibility:hidden;
  5664. }
  5665. #u50421_div {
  5666. border-width:0px;
  5667. position:absolute;
  5668. left:0px;
  5669. top:0px;
  5670. width:220px;
  5671. height:250px;
  5672. background:inherit;
  5673. background-color:rgba(255, 255, 255, 1);
  5674. box-sizing:border-box;
  5675. border-width:1px;
  5676. border-style:solid;
  5677. border-color:rgba(121, 121, 121, 1);
  5678. border-radius:0px;
  5679. -moz-box-shadow:none;
  5680. -webkit-box-shadow:none;
  5681. box-shadow:none;
  5682. }
  5683. #u50421 {
  5684. border-width:0px;
  5685. position:absolute;
  5686. left:1331px;
  5687. top:430px;
  5688. width:220px;
  5689. height:250px;
  5690. display:flex;
  5691. }
  5692. #u50421 .text {
  5693. position:absolute;
  5694. align-self:center;
  5695. padding:2px 2px 2px 2px;
  5696. box-sizing:border-box;
  5697. width:100%;
  5698. }
  5699. #u50421_text {
  5700. border-width:0px;
  5701. word-wrap:break-word;
  5702. text-transform:none;
  5703. visibility:hidden;
  5704. }
  5705. #u50422_div {
  5706. border-width:0px;
  5707. position:absolute;
  5708. left:0px;
  5709. top:0px;
  5710. width:220px;
  5711. height:50px;
  5712. background:inherit;
  5713. background-color:rgba(170, 170, 170, 1);
  5714. box-sizing:border-box;
  5715. border-width:1px;
  5716. border-style:solid;
  5717. border-color:rgba(242, 242, 242, 1);
  5718. border-left:0px;
  5719. border-top:0px;
  5720. border-right:0px;
  5721. border-radius:0px;
  5722. border-bottom-right-radius:0px;
  5723. border-bottom-left-radius:0px;
  5724. -moz-box-shadow:none;
  5725. -webkit-box-shadow:none;
  5726. box-shadow:none;
  5727. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5728. font-weight:500;
  5729. font-style:normal;
  5730. font-size:18px;
  5731. }
  5732. #u50422 {
  5733. border-width:0px;
  5734. position:absolute;
  5735. left:1331px;
  5736. top:430px;
  5737. width:220px;
  5738. height:50px;
  5739. display:flex;
  5740. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5741. font-weight:500;
  5742. font-style:normal;
  5743. font-size:18px;
  5744. }
  5745. #u50422 .text {
  5746. position:absolute;
  5747. align-self:center;
  5748. padding:0px 0px 0px 20px;
  5749. box-sizing:border-box;
  5750. width:100%;
  5751. }
  5752. #u50422_text {
  5753. border-width:0px;
  5754. word-wrap:break-word;
  5755. text-transform:none;
  5756. }
  5757. #u50423_div {
  5758. border-width:0px;
  5759. position:absolute;
  5760. left:0px;
  5761. top:0px;
  5762. width:75px;
  5763. height:75px;
  5764. background:inherit;
  5765. background-color:rgba(255, 255, 255, 0);
  5766. border:none;
  5767. border-left:0px;
  5768. border-top:0px;
  5769. border-right:0px;
  5770. border-radius:0px;
  5771. border-bottom-right-radius:0px;
  5772. border-bottom-left-radius:0px;
  5773. -moz-box-shadow:none;
  5774. -webkit-box-shadow:none;
  5775. box-shadow:none;
  5776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5777. font-weight:400;
  5778. font-style:normal;
  5779. font-size:12px;
  5780. line-height:25px;
  5781. }
  5782. #u50423 {
  5783. border-width:0px;
  5784. position:absolute;
  5785. left:1447px;
  5786. top:495px;
  5787. width:75px;
  5788. height:75px;
  5789. display:flex;
  5790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5791. font-weight:400;
  5792. font-style:normal;
  5793. font-size:12px;
  5794. line-height:25px;
  5795. }
  5796. #u50423 .text {
  5797. position:absolute;
  5798. align-self:center;
  5799. padding:0px 0px 0px 0px;
  5800. box-sizing:border-box;
  5801. width:100%;
  5802. }
  5803. #u50423_text {
  5804. border-width:0px;
  5805. white-space:nowrap;
  5806. text-transform:none;
  5807. }
  5808. #u50424_div {
  5809. border-width:0px;
  5810. position:absolute;
  5811. left:0px;
  5812. top:0px;
  5813. width:85px;
  5814. height:25px;
  5815. background:inherit;
  5816. background-color:rgba(255, 255, 255, 0);
  5817. border:none;
  5818. border-left:0px;
  5819. border-top:0px;
  5820. border-right:0px;
  5821. border-radius:0px;
  5822. border-bottom-right-radius:0px;
  5823. border-bottom-left-radius:0px;
  5824. -moz-box-shadow:none;
  5825. -webkit-box-shadow:none;
  5826. box-shadow:none;
  5827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5828. font-weight:400;
  5829. font-style:normal;
  5830. font-size:12px;
  5831. line-height:25px;
  5832. }
  5833. #u50424 {
  5834. border-width:0px;
  5835. position:absolute;
  5836. left:1342px;
  5837. top:584px;
  5838. width:85px;
  5839. height:25px;
  5840. display:flex;
  5841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5842. font-weight:400;
  5843. font-style:normal;
  5844. font-size:12px;
  5845. line-height:25px;
  5846. }
  5847. #u50424 .text {
  5848. position:absolute;
  5849. align-self:center;
  5850. padding:0px 0px 0px 0px;
  5851. box-sizing:border-box;
  5852. width:100%;
  5853. }
  5854. #u50424_text {
  5855. border-width:0px;
  5856. white-space:nowrap;
  5857. text-transform:none;
  5858. }
  5859. #u50425_div {
  5860. border-width:0px;
  5861. position:absolute;
  5862. left:0px;
  5863. top:0px;
  5864. width:85px;
  5865. height:25px;
  5866. background:inherit;
  5867. background-color:rgba(255, 255, 255, 0);
  5868. border:none;
  5869. border-left:0px;
  5870. border-top:0px;
  5871. border-right:0px;
  5872. border-radius:0px;
  5873. border-bottom-right-radius:0px;
  5874. border-bottom-left-radius:0px;
  5875. -moz-box-shadow:none;
  5876. -webkit-box-shadow:none;
  5877. box-shadow:none;
  5878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5879. font-weight:400;
  5880. font-style:normal;
  5881. font-size:12px;
  5882. line-height:25px;
  5883. }
  5884. #u50425 {
  5885. border-width:0px;
  5886. position:absolute;
  5887. left:1447px;
  5888. top:584px;
  5889. width:85px;
  5890. height:25px;
  5891. display:flex;
  5892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5893. font-weight:400;
  5894. font-style:normal;
  5895. font-size:12px;
  5896. line-height:25px;
  5897. }
  5898. #u50425 .text {
  5899. position:absolute;
  5900. align-self:center;
  5901. padding:0px 0px 0px 0px;
  5902. box-sizing:border-box;
  5903. width:100%;
  5904. }
  5905. #u50425_text {
  5906. border-width:0px;
  5907. white-space:nowrap;
  5908. text-transform:none;
  5909. }
  5910. #u50426_div {
  5911. border-width:0px;
  5912. position:absolute;
  5913. left:0px;
  5914. top:0px;
  5915. width:85px;
  5916. height:25px;
  5917. background:inherit;
  5918. background-color:rgba(255, 255, 255, 0);
  5919. border:none;
  5920. border-left:0px;
  5921. border-top:0px;
  5922. border-right:0px;
  5923. border-radius:0px;
  5924. border-bottom-right-radius:0px;
  5925. border-bottom-left-radius:0px;
  5926. -moz-box-shadow:none;
  5927. -webkit-box-shadow:none;
  5928. box-shadow:none;
  5929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5930. font-weight:400;
  5931. font-style:normal;
  5932. font-size:12px;
  5933. line-height:25px;
  5934. }
  5935. #u50426 {
  5936. border-width:0px;
  5937. position:absolute;
  5938. left:1342px;
  5939. top:609px;
  5940. width:85px;
  5941. height:25px;
  5942. display:flex;
  5943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5944. font-weight:400;
  5945. font-style:normal;
  5946. font-size:12px;
  5947. line-height:25px;
  5948. }
  5949. #u50426 .text {
  5950. position:absolute;
  5951. align-self:center;
  5952. padding:0px 0px 0px 0px;
  5953. box-sizing:border-box;
  5954. width:100%;
  5955. }
  5956. #u50426_text {
  5957. border-width:0px;
  5958. white-space:nowrap;
  5959. text-transform:none;
  5960. }
  5961. #u50427_div {
  5962. border-width:0px;
  5963. position:absolute;
  5964. left:0px;
  5965. top:0px;
  5966. width:85px;
  5967. height:25px;
  5968. background:inherit;
  5969. background-color:rgba(255, 255, 255, 0);
  5970. border:none;
  5971. border-left:0px;
  5972. border-top:0px;
  5973. border-right:0px;
  5974. border-radius:0px;
  5975. border-bottom-right-radius:0px;
  5976. border-bottom-left-radius:0px;
  5977. -moz-box-shadow:none;
  5978. -webkit-box-shadow:none;
  5979. box-shadow:none;
  5980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5981. font-weight:400;
  5982. font-style:normal;
  5983. font-size:12px;
  5984. line-height:25px;
  5985. }
  5986. #u50427 {
  5987. border-width:0px;
  5988. position:absolute;
  5989. left:1447px;
  5990. top:609px;
  5991. width:85px;
  5992. height:25px;
  5993. display:flex;
  5994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5995. font-weight:400;
  5996. font-style:normal;
  5997. font-size:12px;
  5998. line-height:25px;
  5999. }
  6000. #u50427 .text {
  6001. position:absolute;
  6002. align-self:center;
  6003. padding:0px 0px 0px 0px;
  6004. box-sizing:border-box;
  6005. width:100%;
  6006. }
  6007. #u50427_text {
  6008. border-width:0px;
  6009. white-space:nowrap;
  6010. text-transform:none;
  6011. }
  6012. #u50428_img {
  6013. border-width:0px;
  6014. position:absolute;
  6015. left:0px;
  6016. top:0px;
  6017. width:75px;
  6018. height:90px;
  6019. }
  6020. #u50428 {
  6021. border-width:0px;
  6022. position:absolute;
  6023. left:1342px;
  6024. top:488px;
  6025. width:75px;
  6026. height:90px;
  6027. display:flex;
  6028. }
  6029. #u50428 .text {
  6030. position:absolute;
  6031. align-self:center;
  6032. padding:2px 2px 2px 2px;
  6033. box-sizing:border-box;
  6034. width:100%;
  6035. }
  6036. #u50428_text {
  6037. border-width:0px;
  6038. word-wrap:break-word;
  6039. text-transform:none;
  6040. visibility:hidden;
  6041. }
  6042. #u50429_img {
  6043. border-width:0px;
  6044. position:absolute;
  6045. left:0px;
  6046. top:0px;
  6047. width:30px;
  6048. height:30px;
  6049. }
  6050. #u50429 {
  6051. border-width:0px;
  6052. position:absolute;
  6053. left:1506px;
  6054. top:440px;
  6055. width:30px;
  6056. height:30px;
  6057. display:flex;
  6058. }
  6059. #u50429 .text {
  6060. position:absolute;
  6061. align-self:center;
  6062. padding:2px 2px 2px 2px;
  6063. box-sizing:border-box;
  6064. width:100%;
  6065. }
  6066. #u50429_text {
  6067. border-width:0px;
  6068. word-wrap:break-word;
  6069. text-transform:none;
  6070. visibility:hidden;
  6071. }
  6072. #u50430_div {
  6073. border-width:0px;
  6074. position:absolute;
  6075. left:0px;
  6076. top:0px;
  6077. width:100px;
  6078. height:25px;
  6079. background:inherit;
  6080. background-color:rgba(0, 137, 254, 1);
  6081. border:none;
  6082. border-radius:4px;
  6083. -moz-box-shadow:none;
  6084. -webkit-box-shadow:none;
  6085. box-shadow:none;
  6086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6087. font-weight:400;
  6088. font-style:normal;
  6089. font-size:12px;
  6090. color:#FFFFFF;
  6091. text-align:center;
  6092. line-height:25px;
  6093. }
  6094. #u50430 {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:705px;
  6098. top:645px;
  6099. width:100px;
  6100. height:25px;
  6101. display:flex;
  6102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6103. font-weight:400;
  6104. font-style:normal;
  6105. font-size:12px;
  6106. color:#FFFFFF;
  6107. text-align:center;
  6108. line-height:25px;
  6109. }
  6110. #u50430 .text {
  6111. position:absolute;
  6112. align-self:center;
  6113. padding:0px 0px 0px 0px;
  6114. box-sizing:border-box;
  6115. width:100%;
  6116. }
  6117. #u50430_text {
  6118. border-width:0px;
  6119. word-wrap:break-word;
  6120. text-transform:none;
  6121. }
  6122. #u50431_div {
  6123. border-width:0px;
  6124. position:absolute;
  6125. left:0px;
  6126. top:0px;
  6127. width:100px;
  6128. height:25px;
  6129. background:inherit;
  6130. background-color:rgba(0, 137, 254, 1);
  6131. border:none;
  6132. border-radius:4px;
  6133. -moz-box-shadow:none;
  6134. -webkit-box-shadow:none;
  6135. box-shadow:none;
  6136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6137. font-weight:400;
  6138. font-style:normal;
  6139. font-size:12px;
  6140. color:#FFFFFF;
  6141. text-align:center;
  6142. line-height:25px;
  6143. }
  6144. #u50431 {
  6145. border-width:0px;
  6146. position:absolute;
  6147. left:941px;
  6148. top:645px;
  6149. width:100px;
  6150. height:25px;
  6151. display:flex;
  6152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6153. font-weight:400;
  6154. font-style:normal;
  6155. font-size:12px;
  6156. color:#FFFFFF;
  6157. text-align:center;
  6158. line-height:25px;
  6159. }
  6160. #u50431 .text {
  6161. position:absolute;
  6162. align-self:center;
  6163. padding:0px 0px 0px 0px;
  6164. box-sizing:border-box;
  6165. width:100%;
  6166. }
  6167. #u50431_text {
  6168. border-width:0px;
  6169. word-wrap:break-word;
  6170. text-transform:none;
  6171. }
  6172. #u50432_div {
  6173. border-width:0px;
  6174. position:absolute;
  6175. left:0px;
  6176. top:0px;
  6177. width:100px;
  6178. height:25px;
  6179. background:inherit;
  6180. background-color:rgba(0, 137, 254, 1);
  6181. border:none;
  6182. border-radius:4px;
  6183. -moz-box-shadow:none;
  6184. -webkit-box-shadow:none;
  6185. box-shadow:none;
  6186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6187. font-weight:400;
  6188. font-style:normal;
  6189. font-size:12px;
  6190. color:#FFFFFF;
  6191. text-align:center;
  6192. line-height:25px;
  6193. }
  6194. #u50432 {
  6195. border-width:0px;
  6196. position:absolute;
  6197. left:1187px;
  6198. top:645px;
  6199. width:100px;
  6200. height:25px;
  6201. display:flex;
  6202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6203. font-weight:400;
  6204. font-style:normal;
  6205. font-size:12px;
  6206. color:#FFFFFF;
  6207. text-align:center;
  6208. line-height:25px;
  6209. }
  6210. #u50432 .text {
  6211. position:absolute;
  6212. align-self:center;
  6213. padding:0px 0px 0px 0px;
  6214. box-sizing:border-box;
  6215. width:100%;
  6216. }
  6217. #u50432_text {
  6218. border-width:0px;
  6219. word-wrap:break-word;
  6220. text-transform:none;
  6221. }
  6222. #u50433_div {
  6223. border-width:0px;
  6224. position:absolute;
  6225. left:0px;
  6226. top:0px;
  6227. width:100px;
  6228. height:25px;
  6229. background:inherit;
  6230. background-color:rgba(0, 137, 254, 1);
  6231. border:none;
  6232. border-radius:4px;
  6233. -moz-box-shadow:none;
  6234. -webkit-box-shadow:none;
  6235. box-shadow:none;
  6236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6237. font-weight:400;
  6238. font-style:normal;
  6239. font-size:12px;
  6240. color:#FFFFFF;
  6241. text-align:center;
  6242. line-height:25px;
  6243. }
  6244. #u50433 {
  6245. border-width:0px;
  6246. position:absolute;
  6247. left:1436px;
  6248. top:645px;
  6249. width:100px;
  6250. height:25px;
  6251. display:flex;
  6252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6253. font-weight:400;
  6254. font-style:normal;
  6255. font-size:12px;
  6256. color:#FFFFFF;
  6257. text-align:center;
  6258. line-height:25px;
  6259. }
  6260. #u50433 .text {
  6261. position:absolute;
  6262. align-self:center;
  6263. padding:0px 0px 0px 0px;
  6264. box-sizing:border-box;
  6265. width:100%;
  6266. }
  6267. #u50433_text {
  6268. border-width:0px;
  6269. word-wrap:break-word;
  6270. text-transform:none;
  6271. }
  6272. #u50434_div {
  6273. border-width:0px;
  6274. position:absolute;
  6275. left:0px;
  6276. top:0px;
  6277. width:100px;
  6278. height:25px;
  6279. background:inherit;
  6280. background-color:rgba(0, 137, 254, 1);
  6281. border:none;
  6282. border-radius:4px;
  6283. -moz-box-shadow:none;
  6284. -webkit-box-shadow:none;
  6285. box-shadow:none;
  6286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6287. font-weight:400;
  6288. font-style:normal;
  6289. font-size:12px;
  6290. color:#FFFFFF;
  6291. text-align:center;
  6292. line-height:25px;
  6293. }
  6294. #u50434 {
  6295. border-width:0px;
  6296. position:absolute;
  6297. left:450px;
  6298. top:645px;
  6299. width:100px;
  6300. height:25px;
  6301. display:flex;
  6302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6303. font-weight:400;
  6304. font-style:normal;
  6305. font-size:12px;
  6306. color:#FFFFFF;
  6307. text-align:center;
  6308. line-height:25px;
  6309. }
  6310. #u50434 .text {
  6311. position:absolute;
  6312. align-self:center;
  6313. padding:0px 0px 0px 0px;
  6314. box-sizing:border-box;
  6315. width:100%;
  6316. }
  6317. #u50434_text {
  6318. border-width:0px;
  6319. word-wrap:break-word;
  6320. text-transform:none;
  6321. }
  6322. #u50435_div {
  6323. border-width:0px;
  6324. position:absolute;
  6325. left:0px;
  6326. top:0px;
  6327. width:73px;
  6328. height:50px;
  6329. background:inherit;
  6330. background-color:rgba(255, 255, 255, 0);
  6331. border:none;
  6332. border-left:0px;
  6333. border-top:0px;
  6334. border-right:0px;
  6335. border-radius:0px;
  6336. border-bottom-right-radius:0px;
  6337. border-bottom-left-radius:0px;
  6338. -moz-box-shadow:none;
  6339. -webkit-box-shadow:none;
  6340. box-shadow:none;
  6341. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6342. font-weight:500;
  6343. font-style:normal;
  6344. font-size:18px;
  6345. }
  6346. #u50435 {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:451px;
  6350. top:50px;
  6351. width:73px;
  6352. height:50px;
  6353. display:flex;
  6354. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6355. font-weight:500;
  6356. font-style:normal;
  6357. font-size:18px;
  6358. }
  6359. #u50435 .text {
  6360. position:absolute;
  6361. align-self:center;
  6362. padding:0px 0px 0px 0px;
  6363. box-sizing:border-box;
  6364. width:100%;
  6365. }
  6366. #u50435_text {
  6367. border-width:0px;
  6368. white-space:nowrap;
  6369. text-transform:none;
  6370. }
  6371. #u50436 {
  6372. border-width:0px;
  6373. position:absolute;
  6374. left:0px;
  6375. top:0px;
  6376. width:0px;
  6377. height:0px;
  6378. }
  6379. #u50437_div {
  6380. border-width:0px;
  6381. position:absolute;
  6382. left:0px;
  6383. top:0px;
  6384. width:140px;
  6385. height:30px;
  6386. background:inherit;
  6387. background-color:rgba(255, 255, 255, 1);
  6388. box-sizing:border-box;
  6389. border-width:1px;
  6390. border-style:solid;
  6391. border-color:rgba(215, 215, 215, 1);
  6392. border-radius:4px;
  6393. -moz-box-shadow:none;
  6394. -webkit-box-shadow:none;
  6395. box-shadow:none;
  6396. font-size:14px;
  6397. }
  6398. #u50437 {
  6399. border-width:0px;
  6400. position:absolute;
  6401. left:348px;
  6402. top:110px;
  6403. width:140px;
  6404. height:30px;
  6405. display:flex;
  6406. font-size:14px;
  6407. }
  6408. #u50437 .text {
  6409. position:absolute;
  6410. align-self:center;
  6411. padding:2px 2px 2px 2px;
  6412. box-sizing:border-box;
  6413. width:100%;
  6414. }
  6415. #u50437_text {
  6416. border-width:0px;
  6417. word-wrap:break-word;
  6418. text-transform:none;
  6419. visibility:hidden;
  6420. }
  6421. #u50438_input {
  6422. position:absolute;
  6423. left:0px;
  6424. top:0px;
  6425. width:134px;
  6426. height:23px;
  6427. padding:2px 2px 2px 2px;
  6428. font-family:'ArialMT', 'Arial', sans-serif;
  6429. font-weight:400;
  6430. font-style:normal;
  6431. font-size:12px;
  6432. letter-spacing:normal;
  6433. color:#AAAAAA;
  6434. vertical-align:none;
  6435. text-align:left;
  6436. text-transform:none;
  6437. background-color:transparent;
  6438. border-color:transparent;
  6439. }
  6440. #u50438_input.disabled {
  6441. position:absolute;
  6442. left:0px;
  6443. top:0px;
  6444. width:134px;
  6445. height:23px;
  6446. padding:2px 2px 2px 2px;
  6447. font-family:'ArialMT', 'Arial', sans-serif;
  6448. font-weight:400;
  6449. font-style:normal;
  6450. font-size:12px;
  6451. letter-spacing:normal;
  6452. color:#AAAAAA;
  6453. vertical-align:none;
  6454. text-align:left;
  6455. text-transform:none;
  6456. background-color:transparent;
  6457. border-color:transparent;
  6458. }
  6459. #u50438_div {
  6460. border-width:0px;
  6461. position:absolute;
  6462. left:0px;
  6463. top:0px;
  6464. width:134px;
  6465. height:23px;
  6466. background:inherit;
  6467. background-color:rgba(255, 255, 255, 1);
  6468. border:none;
  6469. border-radius:0px;
  6470. -moz-box-shadow:none;
  6471. -webkit-box-shadow:none;
  6472. box-shadow:none;
  6473. font-size:12px;
  6474. color:#AAAAAA;
  6475. }
  6476. #u50438 {
  6477. border-width:0px;
  6478. position:absolute;
  6479. left:352px;
  6480. top:112px;
  6481. width:134px;
  6482. height:23px;
  6483. display:flex;
  6484. font-size:12px;
  6485. color:#AAAAAA;
  6486. }
  6487. #u50438 .text {
  6488. position:absolute;
  6489. align-self:flex-start;
  6490. padding:2px 2px 2px 2px;
  6491. box-sizing:border-box;
  6492. width:100%;
  6493. }
  6494. #u50438_div.disabled {
  6495. border-width:0px;
  6496. position:absolute;
  6497. left:0px;
  6498. top:0px;
  6499. width:134px;
  6500. height:23px;
  6501. background:inherit;
  6502. background-color:rgba(240, 240, 240, 1);
  6503. border:none;
  6504. border-radius:0px;
  6505. -moz-box-shadow:none;
  6506. -webkit-box-shadow:none;
  6507. box-shadow:none;
  6508. font-size:12px;
  6509. color:#AAAAAA;
  6510. }
  6511. #u50438.disabled {
  6512. }
  6513. .u50438_input_option {
  6514. font-size:12px;
  6515. }
  6516. #u50439 {
  6517. border-width:0px;
  6518. position:absolute;
  6519. left:0px;
  6520. top:0px;
  6521. width:0px;
  6522. height:0px;
  6523. }
  6524. #u50440_div {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:0px;
  6528. top:0px;
  6529. width:59px;
  6530. height:30px;
  6531. background:inherit;
  6532. background-color:rgba(24, 144, 255, 1);
  6533. box-sizing:border-box;
  6534. border-width:1px;
  6535. border-style:solid;
  6536. border-color:rgba(0, 153, 255, 1);
  6537. border-radius:4px;
  6538. -moz-box-shadow:none;
  6539. -webkit-box-shadow:none;
  6540. box-shadow:none;
  6541. font-family:'Microsoft YaHei', sans-serif;
  6542. font-weight:400;
  6543. font-style:normal;
  6544. font-size:14px;
  6545. color:#FFFFFF;
  6546. }
  6547. #u50440 {
  6548. border-width:0px;
  6549. position:absolute;
  6550. left:1268px;
  6551. top:110px;
  6552. width:59px;
  6553. height:30px;
  6554. display:flex;
  6555. font-family:'Microsoft YaHei', sans-serif;
  6556. font-weight:400;
  6557. font-style:normal;
  6558. font-size:14px;
  6559. color:#FFFFFF;
  6560. }
  6561. #u50440 .text {
  6562. position:absolute;
  6563. align-self:center;
  6564. padding:5px 15px 5px 15px;
  6565. box-sizing:border-box;
  6566. width:100%;
  6567. }
  6568. #u50440_text {
  6569. border-width:0px;
  6570. white-space:nowrap;
  6571. text-transform:none;
  6572. }
  6573. #u50441_div {
  6574. border-width:0px;
  6575. position:absolute;
  6576. left:0px;
  6577. top:0px;
  6578. width:55px;
  6579. height:30px;
  6580. background:inherit;
  6581. background-color:rgba(255, 255, 255, 1);
  6582. box-sizing:border-box;
  6583. border-width:1px;
  6584. border-style:solid;
  6585. border-color:rgba(170, 170, 170, 1);
  6586. border-radius:4px;
  6587. -moz-box-shadow:none;
  6588. -webkit-box-shadow:none;
  6589. box-shadow:none;
  6590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6591. font-weight:400;
  6592. font-style:normal;
  6593. font-size:12px;
  6594. color:#555555;
  6595. }
  6596. #u50441 {
  6597. border-width:0px;
  6598. position:absolute;
  6599. left:1337px;
  6600. top:110px;
  6601. width:55px;
  6602. height:30px;
  6603. display:flex;
  6604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6605. font-weight:400;
  6606. font-style:normal;
  6607. font-size:12px;
  6608. color:#555555;
  6609. }
  6610. #u50441 .text {
  6611. position:absolute;
  6612. align-self:center;
  6613. padding:5px 15px 5px 15px;
  6614. box-sizing:border-box;
  6615. width:100%;
  6616. }
  6617. #u50441_text {
  6618. border-width:0px;
  6619. white-space:nowrap;
  6620. text-transform:none;
  6621. }
  6622. #u50442 {
  6623. border-width:0px;
  6624. position:absolute;
  6625. left:0px;
  6626. top:0px;
  6627. width:0px;
  6628. height:0px;
  6629. }
  6630. #u50443_div {
  6631. border-width:0px;
  6632. position:absolute;
  6633. left:0px;
  6634. top:0px;
  6635. width:140px;
  6636. height:30px;
  6637. background:inherit;
  6638. background-color:rgba(255, 255, 255, 1);
  6639. box-sizing:border-box;
  6640. border-width:1px;
  6641. border-style:solid;
  6642. border-color:rgba(215, 215, 215, 1);
  6643. border-radius:4px;
  6644. -moz-box-shadow:none;
  6645. -webkit-box-shadow:none;
  6646. box-shadow:none;
  6647. font-size:11px;
  6648. }
  6649. #u50443 {
  6650. border-width:0px;
  6651. position:absolute;
  6652. left:818px;
  6653. top:110px;
  6654. width:140px;
  6655. height:30px;
  6656. display:flex;
  6657. font-size:11px;
  6658. }
  6659. #u50443 .text {
  6660. position:absolute;
  6661. align-self:center;
  6662. padding:2px 2px 2px 2px;
  6663. box-sizing:border-box;
  6664. width:100%;
  6665. }
  6666. #u50443_text {
  6667. border-width:0px;
  6668. word-wrap:break-word;
  6669. text-transform:none;
  6670. visibility:hidden;
  6671. }
  6672. #u50444_input {
  6673. position:absolute;
  6674. left:0px;
  6675. top:0px;
  6676. width:120px;
  6677. height:23px;
  6678. padding:2px 2px 2px 2px;
  6679. font-family:'ArialMT', 'Arial', sans-serif;
  6680. font-weight:400;
  6681. font-style:normal;
  6682. font-size:12px;
  6683. letter-spacing:normal;
  6684. color:#AAAAAA;
  6685. vertical-align:none;
  6686. text-align:left;
  6687. text-transform:none;
  6688. background-color:transparent;
  6689. border-color:transparent;
  6690. }
  6691. #u50444_input.disabled {
  6692. position:absolute;
  6693. left:0px;
  6694. top:0px;
  6695. width:120px;
  6696. height:23px;
  6697. padding:2px 2px 2px 2px;
  6698. font-family:'ArialMT', 'Arial', sans-serif;
  6699. font-weight:400;
  6700. font-style:normal;
  6701. font-size:12px;
  6702. letter-spacing:normal;
  6703. color:#AAAAAA;
  6704. vertical-align:none;
  6705. text-align:left;
  6706. text-transform:none;
  6707. background-color:transparent;
  6708. border-color:transparent;
  6709. }
  6710. #u50444_div {
  6711. border-width:0px;
  6712. position:absolute;
  6713. left:0px;
  6714. top:0px;
  6715. width:120px;
  6716. height:23px;
  6717. background:inherit;
  6718. background-color:rgba(255, 255, 255, 1);
  6719. border:none;
  6720. border-radius:0px;
  6721. -moz-box-shadow:none;
  6722. -webkit-box-shadow:none;
  6723. box-shadow:none;
  6724. font-size:12px;
  6725. color:#AAAAAA;
  6726. }
  6727. #u50444 {
  6728. border-width:0px;
  6729. position:absolute;
  6730. left:825px;
  6731. top:112px;
  6732. width:120px;
  6733. height:23px;
  6734. display:flex;
  6735. font-size:12px;
  6736. color:#AAAAAA;
  6737. }
  6738. #u50444 .text {
  6739. position:absolute;
  6740. align-self:flex-start;
  6741. padding:2px 2px 2px 2px;
  6742. box-sizing:border-box;
  6743. width:100%;
  6744. }
  6745. #u50444_div.disabled {
  6746. border-width:0px;
  6747. position:absolute;
  6748. left:0px;
  6749. top:0px;
  6750. width:120px;
  6751. height:23px;
  6752. background:inherit;
  6753. background-color:rgba(240, 240, 240, 1);
  6754. border:none;
  6755. border-radius:0px;
  6756. -moz-box-shadow:none;
  6757. -webkit-box-shadow:none;
  6758. box-shadow:none;
  6759. font-size:12px;
  6760. color:#AAAAAA;
  6761. }
  6762. #u50444.disabled {
  6763. }
  6764. .u50444_input_option {
  6765. font-size:12px;
  6766. }
  6767. #u50445 {
  6768. border-width:0px;
  6769. position:absolute;
  6770. left:0px;
  6771. top:0px;
  6772. width:0px;
  6773. height:0px;
  6774. }
  6775. #u50446_div {
  6776. border-width:0px;
  6777. position:absolute;
  6778. left:0px;
  6779. top:0px;
  6780. width:160px;
  6781. height:30px;
  6782. background:inherit;
  6783. background-color:rgba(255, 255, 255, 1);
  6784. box-sizing:border-box;
  6785. border-width:1px;
  6786. border-style:solid;
  6787. border-color:rgba(215, 215, 215, 1);
  6788. border-radius:4px;
  6789. -moz-box-shadow:none;
  6790. -webkit-box-shadow:none;
  6791. box-shadow:none;
  6792. font-size:14px;
  6793. }
  6794. #u50446 {
  6795. border-width:0px;
  6796. position:absolute;
  6797. left:648px;
  6798. top:110px;
  6799. width:160px;
  6800. height:30px;
  6801. display:flex;
  6802. font-size:14px;
  6803. }
  6804. #u50446 .text {
  6805. position:absolute;
  6806. align-self:center;
  6807. padding:2px 2px 2px 2px;
  6808. box-sizing:border-box;
  6809. width:100%;
  6810. }
  6811. #u50446_text {
  6812. border-width:0px;
  6813. word-wrap:break-word;
  6814. text-transform:none;
  6815. visibility:hidden;
  6816. }
  6817. #u50447_input {
  6818. position:absolute;
  6819. left:0px;
  6820. top:0px;
  6821. width:153px;
  6822. height:23px;
  6823. padding:2px 2px 2px 2px;
  6824. font-family:'ArialMT', 'Arial', sans-serif;
  6825. font-weight:400;
  6826. font-style:normal;
  6827. font-size:14px;
  6828. letter-spacing:normal;
  6829. color:#AAAAAA;
  6830. vertical-align:none;
  6831. text-align:left;
  6832. text-transform:none;
  6833. background-color:transparent;
  6834. border-color:transparent;
  6835. }
  6836. #u50447_input.disabled {
  6837. position:absolute;
  6838. left:0px;
  6839. top:0px;
  6840. width:153px;
  6841. height:23px;
  6842. padding:2px 2px 2px 2px;
  6843. font-family:'ArialMT', 'Arial', sans-serif;
  6844. font-weight:400;
  6845. font-style:normal;
  6846. font-size:14px;
  6847. letter-spacing:normal;
  6848. color:#AAAAAA;
  6849. vertical-align:none;
  6850. text-align:left;
  6851. text-transform:none;
  6852. background-color:transparent;
  6853. border-color:transparent;
  6854. }
  6855. #u50447_div {
  6856. border-width:0px;
  6857. position:absolute;
  6858. left:0px;
  6859. top:0px;
  6860. width:153px;
  6861. height:23px;
  6862. background:inherit;
  6863. background-color:rgba(255, 255, 255, 1);
  6864. border:none;
  6865. border-radius:0px;
  6866. -moz-box-shadow:none;
  6867. -webkit-box-shadow:none;
  6868. box-shadow:none;
  6869. font-size:14px;
  6870. color:#AAAAAA;
  6871. }
  6872. #u50447 {
  6873. border-width:0px;
  6874. position:absolute;
  6875. left:653px;
  6876. top:112px;
  6877. width:153px;
  6878. height:23px;
  6879. display:flex;
  6880. font-size:14px;
  6881. color:#AAAAAA;
  6882. }
  6883. #u50447 .text {
  6884. position:absolute;
  6885. align-self:flex-start;
  6886. padding:2px 2px 2px 2px;
  6887. box-sizing:border-box;
  6888. width:100%;
  6889. }
  6890. #u50447_div.disabled {
  6891. border-width:0px;
  6892. position:absolute;
  6893. left:0px;
  6894. top:0px;
  6895. width:153px;
  6896. height:23px;
  6897. background:inherit;
  6898. background-color:rgba(240, 240, 240, 1);
  6899. border:none;
  6900. border-radius:0px;
  6901. -moz-box-shadow:none;
  6902. -webkit-box-shadow:none;
  6903. box-shadow:none;
  6904. font-size:14px;
  6905. color:#AAAAAA;
  6906. }
  6907. #u50447.disabled {
  6908. }
  6909. .u50447_input_option {
  6910. font-size:14px;
  6911. }
  6912. #u50448 {
  6913. border-width:0px;
  6914. position:absolute;
  6915. left:0px;
  6916. top:0px;
  6917. width:0px;
  6918. height:0px;
  6919. }
  6920. #u50449_div {
  6921. border-width:0px;
  6922. position:absolute;
  6923. left:0px;
  6924. top:0px;
  6925. width:140px;
  6926. height:30px;
  6927. background:inherit;
  6928. background-color:rgba(255, 255, 255, 1);
  6929. box-sizing:border-box;
  6930. border-width:1px;
  6931. border-style:solid;
  6932. border-color:rgba(215, 215, 215, 1);
  6933. border-radius:4px;
  6934. -moz-box-shadow:none;
  6935. -webkit-box-shadow:none;
  6936. box-shadow:none;
  6937. font-size:11px;
  6938. }
  6939. #u50449 {
  6940. border-width:0px;
  6941. position:absolute;
  6942. left:498px;
  6943. top:110px;
  6944. width:140px;
  6945. height:30px;
  6946. display:flex;
  6947. font-size:11px;
  6948. }
  6949. #u50449 .text {
  6950. position:absolute;
  6951. align-self:center;
  6952. padding:2px 2px 2px 2px;
  6953. box-sizing:border-box;
  6954. width:100%;
  6955. }
  6956. #u50449_text {
  6957. border-width:0px;
  6958. word-wrap:break-word;
  6959. text-transform:none;
  6960. visibility:hidden;
  6961. }
  6962. #u50450_input {
  6963. position:absolute;
  6964. left:0px;
  6965. top:0px;
  6966. width:120px;
  6967. height:23px;
  6968. padding:2px 2px 2px 2px;
  6969. font-family:'ArialMT', 'Arial', sans-serif;
  6970. font-weight:400;
  6971. font-style:normal;
  6972. font-size:11px;
  6973. letter-spacing:normal;
  6974. color:#AAAAAA;
  6975. vertical-align:none;
  6976. text-align:left;
  6977. text-transform:none;
  6978. background-color:transparent;
  6979. border-color:transparent;
  6980. }
  6981. #u50450_input.disabled {
  6982. position:absolute;
  6983. left:0px;
  6984. top:0px;
  6985. width:120px;
  6986. height:23px;
  6987. padding:2px 2px 2px 2px;
  6988. font-family:'ArialMT', 'Arial', sans-serif;
  6989. font-weight:400;
  6990. font-style:normal;
  6991. font-size:11px;
  6992. letter-spacing:normal;
  6993. color:#AAAAAA;
  6994. vertical-align:none;
  6995. text-align:left;
  6996. text-transform:none;
  6997. background-color:transparent;
  6998. border-color:transparent;
  6999. }
  7000. #u50450_div {
  7001. border-width:0px;
  7002. position:absolute;
  7003. left:0px;
  7004. top:0px;
  7005. width:120px;
  7006. height:23px;
  7007. background:inherit;
  7008. background-color:rgba(255, 255, 255, 1);
  7009. border:none;
  7010. border-radius:0px;
  7011. -moz-box-shadow:none;
  7012. -webkit-box-shadow:none;
  7013. box-shadow:none;
  7014. font-size:11px;
  7015. color:#AAAAAA;
  7016. }
  7017. #u50450 {
  7018. border-width:0px;
  7019. position:absolute;
  7020. left:505px;
  7021. top:112px;
  7022. width:120px;
  7023. height:23px;
  7024. display:flex;
  7025. font-size:11px;
  7026. color:#AAAAAA;
  7027. }
  7028. #u50450 .text {
  7029. position:absolute;
  7030. align-self:flex-start;
  7031. padding:2px 2px 2px 2px;
  7032. box-sizing:border-box;
  7033. width:100%;
  7034. }
  7035. #u50450_div.disabled {
  7036. border-width:0px;
  7037. position:absolute;
  7038. left:0px;
  7039. top:0px;
  7040. width:120px;
  7041. height:23px;
  7042. background:inherit;
  7043. background-color:rgba(240, 240, 240, 1);
  7044. border:none;
  7045. border-radius:0px;
  7046. -moz-box-shadow:none;
  7047. -webkit-box-shadow:none;
  7048. box-shadow:none;
  7049. font-size:11px;
  7050. color:#AAAAAA;
  7051. }
  7052. #u50450.disabled {
  7053. }
  7054. .u50450_input_option {
  7055. font-size:11px;
  7056. }
  7057. #u50451 {
  7058. border-width:0px;
  7059. position:absolute;
  7060. left:0px;
  7061. top:0px;
  7062. width:0px;
  7063. height:0px;
  7064. }
  7065. #u50452_div {
  7066. border-width:0px;
  7067. position:absolute;
  7068. left:0px;
  7069. top:0px;
  7070. width:140px;
  7071. height:30px;
  7072. background:inherit;
  7073. background-color:rgba(255, 255, 255, 1);
  7074. box-sizing:border-box;
  7075. border-width:1px;
  7076. border-style:solid;
  7077. border-color:rgba(215, 215, 215, 1);
  7078. border-radius:4px;
  7079. -moz-box-shadow:none;
  7080. -webkit-box-shadow:none;
  7081. box-shadow:none;
  7082. font-size:11px;
  7083. }
  7084. #u50452 {
  7085. border-width:0px;
  7086. position:absolute;
  7087. left:968px;
  7088. top:110px;
  7089. width:140px;
  7090. height:30px;
  7091. display:flex;
  7092. font-size:11px;
  7093. }
  7094. #u50452 .text {
  7095. position:absolute;
  7096. align-self:center;
  7097. padding:2px 2px 2px 2px;
  7098. box-sizing:border-box;
  7099. width:100%;
  7100. }
  7101. #u50452_text {
  7102. border-width:0px;
  7103. word-wrap:break-word;
  7104. text-transform:none;
  7105. visibility:hidden;
  7106. }
  7107. #u50453_input {
  7108. position:absolute;
  7109. left:0px;
  7110. top:0px;
  7111. width:120px;
  7112. height:23px;
  7113. padding:2px 2px 2px 2px;
  7114. font-family:'ArialMT', 'Arial', sans-serif;
  7115. font-weight:400;
  7116. font-style:normal;
  7117. font-size:12px;
  7118. letter-spacing:normal;
  7119. color:#AAAAAA;
  7120. vertical-align:none;
  7121. text-align:left;
  7122. text-transform:none;
  7123. background-color:transparent;
  7124. border-color:transparent;
  7125. }
  7126. #u50453_input.disabled {
  7127. position:absolute;
  7128. left:0px;
  7129. top:0px;
  7130. width:120px;
  7131. height:23px;
  7132. padding:2px 2px 2px 2px;
  7133. font-family:'ArialMT', 'Arial', sans-serif;
  7134. font-weight:400;
  7135. font-style:normal;
  7136. font-size:12px;
  7137. letter-spacing:normal;
  7138. color:#AAAAAA;
  7139. vertical-align:none;
  7140. text-align:left;
  7141. text-transform:none;
  7142. background-color:transparent;
  7143. border-color:transparent;
  7144. }
  7145. #u50453_div {
  7146. border-width:0px;
  7147. position:absolute;
  7148. left:0px;
  7149. top:0px;
  7150. width:120px;
  7151. height:23px;
  7152. background:inherit;
  7153. background-color:rgba(255, 255, 255, 1);
  7154. border:none;
  7155. border-radius:0px;
  7156. -moz-box-shadow:none;
  7157. -webkit-box-shadow:none;
  7158. box-shadow:none;
  7159. font-size:12px;
  7160. color:#AAAAAA;
  7161. }
  7162. #u50453 {
  7163. border-width:0px;
  7164. position:absolute;
  7165. left:975px;
  7166. top:112px;
  7167. width:120px;
  7168. height:23px;
  7169. display:flex;
  7170. font-size:12px;
  7171. color:#AAAAAA;
  7172. }
  7173. #u50453 .text {
  7174. position:absolute;
  7175. align-self:flex-start;
  7176. padding:2px 2px 2px 2px;
  7177. box-sizing:border-box;
  7178. width:100%;
  7179. }
  7180. #u50453_div.disabled {
  7181. border-width:0px;
  7182. position:absolute;
  7183. left:0px;
  7184. top:0px;
  7185. width:120px;
  7186. height:23px;
  7187. background:inherit;
  7188. background-color:rgba(240, 240, 240, 1);
  7189. border:none;
  7190. border-radius:0px;
  7191. -moz-box-shadow:none;
  7192. -webkit-box-shadow:none;
  7193. box-shadow:none;
  7194. font-size:12px;
  7195. color:#AAAAAA;
  7196. }
  7197. #u50453.disabled {
  7198. }
  7199. .u50453_input_option {
  7200. font-size:12px;
  7201. }
  7202. #u50454 {
  7203. border-width:0px;
  7204. position:absolute;
  7205. left:0px;
  7206. top:0px;
  7207. width:0px;
  7208. height:0px;
  7209. }
  7210. #u50455_div {
  7211. border-width:0px;
  7212. position:absolute;
  7213. left:0px;
  7214. top:0px;
  7215. width:140px;
  7216. height:30px;
  7217. background:inherit;
  7218. background-color:rgba(255, 255, 255, 1);
  7219. box-sizing:border-box;
  7220. border-width:1px;
  7221. border-style:solid;
  7222. border-color:rgba(215, 215, 215, 1);
  7223. border-radius:4px;
  7224. -moz-box-shadow:none;
  7225. -webkit-box-shadow:none;
  7226. box-shadow:none;
  7227. font-size:11px;
  7228. }
  7229. #u50455 {
  7230. border-width:0px;
  7231. position:absolute;
  7232. left:1118px;
  7233. top:110px;
  7234. width:140px;
  7235. height:30px;
  7236. display:flex;
  7237. font-size:11px;
  7238. }
  7239. #u50455 .text {
  7240. position:absolute;
  7241. align-self:center;
  7242. padding:2px 2px 2px 2px;
  7243. box-sizing:border-box;
  7244. width:100%;
  7245. }
  7246. #u50455_text {
  7247. border-width:0px;
  7248. word-wrap:break-word;
  7249. text-transform:none;
  7250. visibility:hidden;
  7251. }
  7252. #u50456_input {
  7253. position:absolute;
  7254. left:0px;
  7255. top:0px;
  7256. width:120px;
  7257. height:23px;
  7258. padding:2px 2px 2px 2px;
  7259. font-family:'ArialMT', 'Arial', sans-serif;
  7260. font-weight:400;
  7261. font-style:normal;
  7262. font-size:12px;
  7263. letter-spacing:normal;
  7264. color:#AAAAAA;
  7265. vertical-align:none;
  7266. text-align:left;
  7267. text-transform:none;
  7268. background-color:transparent;
  7269. border-color:transparent;
  7270. }
  7271. #u50456_input.disabled {
  7272. position:absolute;
  7273. left:0px;
  7274. top:0px;
  7275. width:120px;
  7276. height:23px;
  7277. padding:2px 2px 2px 2px;
  7278. font-family:'ArialMT', 'Arial', sans-serif;
  7279. font-weight:400;
  7280. font-style:normal;
  7281. font-size:12px;
  7282. letter-spacing:normal;
  7283. color:#AAAAAA;
  7284. vertical-align:none;
  7285. text-align:left;
  7286. text-transform:none;
  7287. background-color:transparent;
  7288. border-color:transparent;
  7289. }
  7290. #u50456_div {
  7291. border-width:0px;
  7292. position:absolute;
  7293. left:0px;
  7294. top:0px;
  7295. width:120px;
  7296. height:23px;
  7297. background:inherit;
  7298. background-color:rgba(255, 255, 255, 1);
  7299. border:none;
  7300. border-radius:0px;
  7301. -moz-box-shadow:none;
  7302. -webkit-box-shadow:none;
  7303. box-shadow:none;
  7304. font-size:12px;
  7305. color:#AAAAAA;
  7306. }
  7307. #u50456 {
  7308. border-width:0px;
  7309. position:absolute;
  7310. left:1125px;
  7311. top:112px;
  7312. width:120px;
  7313. height:23px;
  7314. display:flex;
  7315. font-size:12px;
  7316. color:#AAAAAA;
  7317. }
  7318. #u50456 .text {
  7319. position:absolute;
  7320. align-self:flex-start;
  7321. padding:2px 2px 2px 2px;
  7322. box-sizing:border-box;
  7323. width:100%;
  7324. }
  7325. #u50456_div.disabled {
  7326. border-width:0px;
  7327. position:absolute;
  7328. left:0px;
  7329. top:0px;
  7330. width:120px;
  7331. height:23px;
  7332. background:inherit;
  7333. background-color:rgba(240, 240, 240, 1);
  7334. border:none;
  7335. border-radius:0px;
  7336. -moz-box-shadow:none;
  7337. -webkit-box-shadow:none;
  7338. box-shadow:none;
  7339. font-size:12px;
  7340. color:#AAAAAA;
  7341. }
  7342. #u50456.disabled {
  7343. }
  7344. .u50456_input_option {
  7345. font-size:12px;
  7346. }
  7347. #u50457 {
  7348. border-width:0px;
  7349. position:absolute;
  7350. left:0px;
  7351. top:0px;
  7352. width:0px;
  7353. height:0px;
  7354. }
  7355. #u50458_div {
  7356. border-width:0px;
  7357. position:absolute;
  7358. left:0px;
  7359. top:0px;
  7360. width:1265px;
  7361. height:1193px;
  7362. background:inherit;
  7363. background-color:rgba(255, 255, 255, 1);
  7364. border:none;
  7365. border-radius:0px;
  7366. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  7367. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  7368. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  7369. color:#1890FF;
  7370. }
  7371. #u50458 {
  7372. border-width:0px;
  7373. position:absolute;
  7374. left:1640px;
  7375. top:50px;
  7376. width:1265px;
  7377. height:1193px;
  7378. display:flex;
  7379. color:#1890FF;
  7380. }
  7381. #u50458 .text {
  7382. position:absolute;
  7383. align-self:center;
  7384. padding:2px 2px 2px 2px;
  7385. box-sizing:border-box;
  7386. width:100%;
  7387. }
  7388. #u50458_text {
  7389. border-width:0px;
  7390. word-wrap:break-word;
  7391. text-transform:none;
  7392. visibility:hidden;
  7393. }
  7394. #u50459_div {
  7395. border-width:0px;
  7396. position:absolute;
  7397. left:0px;
  7398. top:0px;
  7399. width:73px;
  7400. height:50px;
  7401. background:inherit;
  7402. background-color:rgba(255, 255, 255, 0);
  7403. border:none;
  7404. border-left:0px;
  7405. border-top:0px;
  7406. border-right:0px;
  7407. border-radius:0px;
  7408. border-bottom-right-radius:0px;
  7409. border-bottom-left-radius:0px;
  7410. -moz-box-shadow:none;
  7411. -webkit-box-shadow:none;
  7412. box-shadow:none;
  7413. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7414. font-weight:500;
  7415. font-style:normal;
  7416. font-size:18px;
  7417. }
  7418. #u50459 {
  7419. border-width:0px;
  7420. position:absolute;
  7421. left:1659px;
  7422. top:50px;
  7423. width:73px;
  7424. height:50px;
  7425. display:flex;
  7426. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7427. font-weight:500;
  7428. font-style:normal;
  7429. font-size:18px;
  7430. }
  7431. #u50459 .text {
  7432. position:absolute;
  7433. align-self:center;
  7434. padding:0px 0px 0px 0px;
  7435. box-sizing:border-box;
  7436. width:100%;
  7437. }
  7438. #u50459_text {
  7439. border-width:0px;
  7440. white-space:nowrap;
  7441. text-transform:none;
  7442. }
  7443. #u50460_div {
  7444. border-width:0px;
  7445. position:absolute;
  7446. left:0px;
  7447. top:0px;
  7448. width:73px;
  7449. height:50px;
  7450. background:inherit;
  7451. background-color:rgba(255, 255, 255, 0);
  7452. border:none;
  7453. border-left:0px;
  7454. border-top:0px;
  7455. border-right:0px;
  7456. border-radius:0px;
  7457. border-bottom-right-radius:0px;
  7458. border-bottom-left-radius:0px;
  7459. -moz-box-shadow:none;
  7460. -webkit-box-shadow:none;
  7461. box-shadow:none;
  7462. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7463. font-weight:500;
  7464. font-style:normal;
  7465. font-size:18px;
  7466. color:#1890FF;
  7467. }
  7468. #u50460 {
  7469. border-width:0px;
  7470. position:absolute;
  7471. left:1762px;
  7472. top:50px;
  7473. width:73px;
  7474. height:50px;
  7475. display:flex;
  7476. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7477. font-weight:500;
  7478. font-style:normal;
  7479. font-size:18px;
  7480. color:#1890FF;
  7481. }
  7482. #u50460 .text {
  7483. position:absolute;
  7484. align-self:center;
  7485. padding:0px 0px 0px 0px;
  7486. box-sizing:border-box;
  7487. width:100%;
  7488. }
  7489. #u50460_text {
  7490. border-width:0px;
  7491. white-space:nowrap;
  7492. text-transform:none;
  7493. }
  7494. #u50461 {
  7495. border-width:0px;
  7496. position:absolute;
  7497. left:0px;
  7498. top:0px;
  7499. width:0px;
  7500. height:0px;
  7501. }
  7502. #u50462 {
  7503. border-width:0px;
  7504. position:absolute;
  7505. left:0px;
  7506. top:0px;
  7507. width:0px;
  7508. height:0px;
  7509. }
  7510. #u50463_img {
  7511. border-width:0px;
  7512. position:absolute;
  7513. left:0px;
  7514. top:0px;
  7515. width:993px;
  7516. height:950px;
  7517. }
  7518. #u50463 {
  7519. border-width:0px;
  7520. position:absolute;
  7521. left:1889px;
  7522. top:115px;
  7523. width:993px;
  7524. height:950px;
  7525. display:flex;
  7526. }
  7527. #u50463 .text {
  7528. position:absolute;
  7529. align-self:center;
  7530. padding:2px 2px 2px 2px;
  7531. box-sizing:border-box;
  7532. width:100%;
  7533. }
  7534. #u50463_text {
  7535. border-width:0px;
  7536. word-wrap:break-word;
  7537. text-transform:none;
  7538. visibility:hidden;
  7539. }
  7540. #u50464_div {
  7541. border-width:0px;
  7542. position:absolute;
  7543. left:0px;
  7544. top:0px;
  7545. width:29px;
  7546. height:17px;
  7547. background:inherit;
  7548. background-color:rgba(0, 191, 191, 1);
  7549. border:none;
  7550. border-radius:4px;
  7551. -moz-box-shadow:none;
  7552. -webkit-box-shadow:none;
  7553. box-shadow:none;
  7554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7555. font-weight:400;
  7556. font-style:normal;
  7557. font-size:10px;
  7558. color:#FFFFFF;
  7559. }
  7560. #u50464 {
  7561. border-width:0px;
  7562. position:absolute;
  7563. left:1889px;
  7564. top:118px;
  7565. width:29px;
  7566. height:17px;
  7567. display:flex;
  7568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7569. font-weight:400;
  7570. font-style:normal;
  7571. font-size:10px;
  7572. color:#FFFFFF;
  7573. }
  7574. #u50464 .text {
  7575. position:absolute;
  7576. align-self:center;
  7577. padding:5px 0px 5px 0px;
  7578. box-sizing:border-box;
  7579. width:100%;
  7580. }
  7581. #u50464_text {
  7582. border-width:0px;
  7583. word-wrap:break-word;
  7584. text-transform:none;
  7585. }
  7586. #u50465_div {
  7587. border-width:0px;
  7588. position:absolute;
  7589. left:0px;
  7590. top:0px;
  7591. width:29px;
  7592. height:17px;
  7593. background:inherit;
  7594. background-color:rgba(217, 0, 27, 1);
  7595. border:none;
  7596. border-radius:4px;
  7597. -moz-box-shadow:none;
  7598. -webkit-box-shadow:none;
  7599. box-shadow:none;
  7600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7601. font-weight:400;
  7602. font-style:normal;
  7603. font-size:10px;
  7604. color:#FFFFFF;
  7605. }
  7606. #u50465 {
  7607. border-width:0px;
  7608. position:absolute;
  7609. left:2556px;
  7610. top:115px;
  7611. width:29px;
  7612. height:17px;
  7613. display:flex;
  7614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7615. font-weight:400;
  7616. font-style:normal;
  7617. font-size:10px;
  7618. color:#FFFFFF;
  7619. }
  7620. #u50465 .text {
  7621. position:absolute;
  7622. align-self:center;
  7623. padding:5px 0px 5px 0px;
  7624. box-sizing:border-box;
  7625. width:100%;
  7626. }
  7627. #u50465_text {
  7628. border-width:0px;
  7629. word-wrap:break-word;
  7630. text-transform:none;
  7631. }
  7632. #u50466_div {
  7633. border-width:0px;
  7634. position:absolute;
  7635. left:0px;
  7636. top:0px;
  7637. width:29px;
  7638. height:17px;
  7639. background:inherit;
  7640. background-color:rgba(245, 154, 35, 1);
  7641. border:none;
  7642. border-radius:4px;
  7643. -moz-box-shadow:none;
  7644. -webkit-box-shadow:none;
  7645. box-shadow:none;
  7646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7647. font-weight:400;
  7648. font-style:normal;
  7649. font-size:10px;
  7650. color:#FFFFFF;
  7651. }
  7652. #u50466 {
  7653. border-width:0px;
  7654. position:absolute;
  7655. left:1889px;
  7656. top:346px;
  7657. width:29px;
  7658. height:17px;
  7659. display:flex;
  7660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7661. font-weight:400;
  7662. font-style:normal;
  7663. font-size:10px;
  7664. color:#FFFFFF;
  7665. }
  7666. #u50466 .text {
  7667. position:absolute;
  7668. align-self:center;
  7669. padding:5px 0px 5px 0px;
  7670. box-sizing:border-box;
  7671. width:100%;
  7672. }
  7673. #u50466_text {
  7674. border-width:0px;
  7675. word-wrap:break-word;
  7676. text-transform:none;
  7677. }
  7678. #u50467_div {
  7679. border-width:0px;
  7680. position:absolute;
  7681. left:0px;
  7682. top:0px;
  7683. width:29px;
  7684. height:17px;
  7685. background:inherit;
  7686. background-color:rgba(0, 191, 191, 1);
  7687. border:none;
  7688. border-radius:4px;
  7689. -moz-box-shadow:none;
  7690. -webkit-box-shadow:none;
  7691. box-shadow:none;
  7692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7693. font-weight:400;
  7694. font-style:normal;
  7695. font-size:10px;
  7696. color:#FFFFFF;
  7697. }
  7698. #u50467 {
  7699. border-width:0px;
  7700. position:absolute;
  7701. left:2220px;
  7702. top:115px;
  7703. width:29px;
  7704. height:17px;
  7705. display:flex;
  7706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7707. font-weight:400;
  7708. font-style:normal;
  7709. font-size:10px;
  7710. color:#FFFFFF;
  7711. }
  7712. #u50467 .text {
  7713. position:absolute;
  7714. align-self:center;
  7715. padding:5px 0px 5px 0px;
  7716. box-sizing:border-box;
  7717. width:100%;
  7718. }
  7719. #u50467_text {
  7720. border-width:0px;
  7721. word-wrap:break-word;
  7722. text-transform:none;
  7723. }
  7724. #u50468_div {
  7725. border-width:0px;
  7726. position:absolute;
  7727. left:0px;
  7728. top:0px;
  7729. width:29px;
  7730. height:17px;
  7731. background:inherit;
  7732. background-color:rgba(0, 191, 191, 1);
  7733. border:none;
  7734. border-radius:4px;
  7735. -moz-box-shadow:none;
  7736. -webkit-box-shadow:none;
  7737. box-shadow:none;
  7738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7739. font-weight:400;
  7740. font-style:normal;
  7741. font-size:10px;
  7742. color:#FFFFFF;
  7743. }
  7744. #u50468 {
  7745. border-width:0px;
  7746. position:absolute;
  7747. left:2220px;
  7748. top:349px;
  7749. width:29px;
  7750. height:17px;
  7751. display:flex;
  7752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7753. font-weight:400;
  7754. font-style:normal;
  7755. font-size:10px;
  7756. color:#FFFFFF;
  7757. }
  7758. #u50468 .text {
  7759. position:absolute;
  7760. align-self:center;
  7761. padding:5px 0px 5px 0px;
  7762. box-sizing:border-box;
  7763. width:100%;
  7764. }
  7765. #u50468_text {
  7766. border-width:0px;
  7767. word-wrap:break-word;
  7768. text-transform:none;
  7769. }
  7770. #u50469_div {
  7771. border-width:0px;
  7772. position:absolute;
  7773. left:0px;
  7774. top:0px;
  7775. width:29px;
  7776. height:17px;
  7777. background:inherit;
  7778. background-color:rgba(0, 191, 191, 1);
  7779. border:none;
  7780. border-radius:4px;
  7781. -moz-box-shadow:none;
  7782. -webkit-box-shadow:none;
  7783. box-shadow:none;
  7784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7785. font-weight:400;
  7786. font-style:normal;
  7787. font-size:10px;
  7788. color:#FFFFFF;
  7789. }
  7790. #u50469 {
  7791. border-width:0px;
  7792. position:absolute;
  7793. left:2550px;
  7794. top:346px;
  7795. width:29px;
  7796. height:17px;
  7797. display:flex;
  7798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7799. font-weight:400;
  7800. font-style:normal;
  7801. font-size:10px;
  7802. color:#FFFFFF;
  7803. }
  7804. #u50469 .text {
  7805. position:absolute;
  7806. align-self:center;
  7807. padding:5px 0px 5px 0px;
  7808. box-sizing:border-box;
  7809. width:100%;
  7810. }
  7811. #u50469_text {
  7812. border-width:0px;
  7813. word-wrap:break-word;
  7814. text-transform:none;
  7815. }
  7816. #u50470_div {
  7817. border-width:0px;
  7818. position:absolute;
  7819. left:0px;
  7820. top:0px;
  7821. width:29px;
  7822. height:17px;
  7823. background:inherit;
  7824. background-color:rgba(0, 191, 191, 1);
  7825. border:none;
  7826. border-radius:4px;
  7827. -moz-box-shadow:none;
  7828. -webkit-box-shadow:none;
  7829. box-shadow:none;
  7830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7831. font-weight:400;
  7832. font-style:normal;
  7833. font-size:10px;
  7834. color:#FFFFFF;
  7835. }
  7836. #u50470 {
  7837. border-width:0px;
  7838. position:absolute;
  7839. left:2220px;
  7840. top:602px;
  7841. width:29px;
  7842. height:17px;
  7843. display:flex;
  7844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7845. font-weight:400;
  7846. font-style:normal;
  7847. font-size:10px;
  7848. color:#FFFFFF;
  7849. }
  7850. #u50470 .text {
  7851. position:absolute;
  7852. align-self:center;
  7853. padding:5px 0px 5px 0px;
  7854. box-sizing:border-box;
  7855. width:100%;
  7856. }
  7857. #u50470_text {
  7858. border-width:0px;
  7859. word-wrap:break-word;
  7860. text-transform:none;
  7861. }
  7862. #u50471_div {
  7863. border-width:0px;
  7864. position:absolute;
  7865. left:0px;
  7866. top:0px;
  7867. width:29px;
  7868. height:17px;
  7869. background:inherit;
  7870. background-color:rgba(0, 191, 191, 1);
  7871. border:none;
  7872. border-radius:4px;
  7873. -moz-box-shadow:none;
  7874. -webkit-box-shadow:none;
  7875. box-shadow:none;
  7876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7877. font-weight:400;
  7878. font-style:normal;
  7879. font-size:10px;
  7880. color:#FFFFFF;
  7881. }
  7882. #u50471 {
  7883. border-width:0px;
  7884. position:absolute;
  7885. left:2550px;
  7886. top:598px;
  7887. width:29px;
  7888. height:17px;
  7889. display:flex;
  7890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7891. font-weight:400;
  7892. font-style:normal;
  7893. font-size:10px;
  7894. color:#FFFFFF;
  7895. }
  7896. #u50471 .text {
  7897. position:absolute;
  7898. align-self:center;
  7899. padding:5px 0px 5px 0px;
  7900. box-sizing:border-box;
  7901. width:100%;
  7902. }
  7903. #u50471_text {
  7904. border-width:0px;
  7905. word-wrap:break-word;
  7906. text-transform:none;
  7907. }
  7908. #u50472_div {
  7909. border-width:0px;
  7910. position:absolute;
  7911. left:0px;
  7912. top:0px;
  7913. width:29px;
  7914. height:17px;
  7915. background:inherit;
  7916. background-color:rgba(0, 191, 191, 1);
  7917. border:none;
  7918. border-radius:4px;
  7919. -moz-box-shadow:none;
  7920. -webkit-box-shadow:none;
  7921. box-shadow:none;
  7922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7923. font-weight:400;
  7924. font-style:normal;
  7925. font-size:10px;
  7926. color:#FFFFFF;
  7927. }
  7928. #u50472 {
  7929. border-width:0px;
  7930. position:absolute;
  7931. left:1889px;
  7932. top:602px;
  7933. width:29px;
  7934. height:17px;
  7935. display:flex;
  7936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7937. font-weight:400;
  7938. font-style:normal;
  7939. font-size:10px;
  7940. color:#FFFFFF;
  7941. }
  7942. #u50472 .text {
  7943. position:absolute;
  7944. align-self:center;
  7945. padding:5px 0px 5px 0px;
  7946. box-sizing:border-box;
  7947. width:100%;
  7948. }
  7949. #u50472_text {
  7950. border-width:0px;
  7951. word-wrap:break-word;
  7952. text-transform:none;
  7953. }
  7954. #u50473_div {
  7955. border-width:0px;
  7956. position:absolute;
  7957. left:0px;
  7958. top:0px;
  7959. width:29px;
  7960. height:17px;
  7961. background:inherit;
  7962. background-color:rgba(0, 191, 191, 1);
  7963. border:none;
  7964. border-radius:4px;
  7965. -moz-box-shadow:none;
  7966. -webkit-box-shadow:none;
  7967. box-shadow:none;
  7968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7969. font-weight:400;
  7970. font-style:normal;
  7971. font-size:10px;
  7972. color:#FFFFFF;
  7973. }
  7974. #u50473 {
  7975. border-width:0px;
  7976. position:absolute;
  7977. left:2220px;
  7978. top:848px;
  7979. width:29px;
  7980. height:17px;
  7981. display:flex;
  7982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7983. font-weight:400;
  7984. font-style:normal;
  7985. font-size:10px;
  7986. color:#FFFFFF;
  7987. }
  7988. #u50473 .text {
  7989. position:absolute;
  7990. align-self:center;
  7991. padding:5px 0px 5px 0px;
  7992. box-sizing:border-box;
  7993. width:100%;
  7994. }
  7995. #u50473_text {
  7996. border-width:0px;
  7997. word-wrap:break-word;
  7998. text-transform:none;
  7999. }
  8000. #u50474_div {
  8001. border-width:0px;
  8002. position:absolute;
  8003. left:0px;
  8004. top:0px;
  8005. width:29px;
  8006. height:17px;
  8007. background:inherit;
  8008. background-color:rgba(0, 191, 191, 1);
  8009. border:none;
  8010. border-radius:4px;
  8011. -moz-box-shadow:none;
  8012. -webkit-box-shadow:none;
  8013. box-shadow:none;
  8014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8015. font-weight:400;
  8016. font-style:normal;
  8017. font-size:10px;
  8018. color:#FFFFFF;
  8019. }
  8020. #u50474 {
  8021. border-width:0px;
  8022. position:absolute;
  8023. left:2550px;
  8024. top:845px;
  8025. width:29px;
  8026. height:17px;
  8027. display:flex;
  8028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8029. font-weight:400;
  8030. font-style:normal;
  8031. font-size:10px;
  8032. color:#FFFFFF;
  8033. }
  8034. #u50474 .text {
  8035. position:absolute;
  8036. align-self:center;
  8037. padding:5px 0px 5px 0px;
  8038. box-sizing:border-box;
  8039. width:100%;
  8040. }
  8041. #u50474_text {
  8042. border-width:0px;
  8043. word-wrap:break-word;
  8044. text-transform:none;
  8045. }
  8046. #u50475_div {
  8047. border-width:0px;
  8048. position:absolute;
  8049. left:0px;
  8050. top:0px;
  8051. width:29px;
  8052. height:17px;
  8053. background:inherit;
  8054. background-color:rgba(0, 191, 191, 1);
  8055. border:none;
  8056. border-radius:4px;
  8057. -moz-box-shadow:none;
  8058. -webkit-box-shadow:none;
  8059. box-shadow:none;
  8060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8061. font-weight:400;
  8062. font-style:normal;
  8063. font-size:10px;
  8064. color:#FFFFFF;
  8065. }
  8066. #u50475 {
  8067. border-width:0px;
  8068. position:absolute;
  8069. left:1889px;
  8070. top:848px;
  8071. width:29px;
  8072. height:17px;
  8073. display:flex;
  8074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8075. font-weight:400;
  8076. font-style:normal;
  8077. font-size:10px;
  8078. color:#FFFFFF;
  8079. }
  8080. #u50475 .text {
  8081. position:absolute;
  8082. align-self:center;
  8083. padding:5px 0px 5px 0px;
  8084. box-sizing:border-box;
  8085. width:100%;
  8086. }
  8087. #u50475_text {
  8088. border-width:0px;
  8089. word-wrap:break-word;
  8090. text-transform:none;
  8091. }
  8092. #u50476_div {
  8093. border-width:0px;
  8094. position:absolute;
  8095. left:0px;
  8096. top:0px;
  8097. width:191px;
  8098. height:435px;
  8099. background:inherit;
  8100. background-color:rgba(242, 242, 242, 1);
  8101. border:none;
  8102. border-radius:7px;
  8103. -moz-box-shadow:none;
  8104. -webkit-box-shadow:none;
  8105. box-shadow:none;
  8106. }
  8107. #u50476 {
  8108. border-width:0px;
  8109. position:absolute;
  8110. left:1658px;
  8111. top:321px;
  8112. width:191px;
  8113. height:435px;
  8114. display:flex;
  8115. }
  8116. #u50476 .text {
  8117. position:absolute;
  8118. align-self:center;
  8119. padding:2px 2px 2px 2px;
  8120. box-sizing:border-box;
  8121. width:100%;
  8122. }
  8123. #u50476_text {
  8124. border-width:0px;
  8125. word-wrap:break-word;
  8126. text-transform:none;
  8127. visibility:hidden;
  8128. }
  8129. #u50477_div {
  8130. border-width:0px;
  8131. position:absolute;
  8132. left:0px;
  8133. top:0px;
  8134. width:57px;
  8135. height:30px;
  8136. background:inherit;
  8137. background-color:rgba(255, 255, 255, 0);
  8138. border:none;
  8139. border-radius:0px;
  8140. -moz-box-shadow:none;
  8141. -webkit-box-shadow:none;
  8142. box-shadow:none;
  8143. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8144. font-weight:500;
  8145. font-style:normal;
  8146. font-size:14px;
  8147. color:#000000;
  8148. line-height:30px;
  8149. }
  8150. #u50477 {
  8151. border-width:0px;
  8152. position:absolute;
  8153. left:1658px;
  8154. top:99px;
  8155. width:57px;
  8156. height:30px;
  8157. display:flex;
  8158. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8159. font-weight:500;
  8160. font-style:normal;
  8161. font-size:14px;
  8162. color:#000000;
  8163. line-height:30px;
  8164. }
  8165. #u50477 .text {
  8166. position:absolute;
  8167. align-self:flex-start;
  8168. padding:0px 0px 0px 0px;
  8169. box-sizing:border-box;
  8170. width:100%;
  8171. }
  8172. #u50477_text {
  8173. border-width:0px;
  8174. white-space:nowrap;
  8175. text-transform:none;
  8176. }
  8177. #u50478 {
  8178. border-width:0px;
  8179. position:absolute;
  8180. left:0px;
  8181. top:0px;
  8182. width:0px;
  8183. height:0px;
  8184. }
  8185. #u50479_img {
  8186. border-width:0px;
  8187. position:absolute;
  8188. left:0px;
  8189. top:0px;
  8190. width:18px;
  8191. height:18px;
  8192. }
  8193. #u50479 {
  8194. border-width:0px;
  8195. position:absolute;
  8196. left:2857px;
  8197. top:67px;
  8198. width:18px;
  8199. height:18px;
  8200. display:flex;
  8201. }
  8202. #u50479 .text {
  8203. position:absolute;
  8204. align-self:center;
  8205. padding:2px 2px 2px 2px;
  8206. box-sizing:border-box;
  8207. width:100%;
  8208. }
  8209. #u50479_text {
  8210. border-width:0px;
  8211. word-wrap:break-word;
  8212. text-transform:none;
  8213. visibility:hidden;
  8214. }
  8215. #u50480_img {
  8216. border-width:0px;
  8217. position:absolute;
  8218. left:0px;
  8219. top:0px;
  8220. width:2px;
  8221. height:15px;
  8222. }
  8223. #u50480 {
  8224. border-width:0px;
  8225. position:absolute;
  8226. left:2842px;
  8227. top:69px;
  8228. width:1px;
  8229. height:14px;
  8230. display:flex;
  8231. }
  8232. #u50480 .text {
  8233. position:absolute;
  8234. align-self:center;
  8235. padding:2px 2px 2px 2px;
  8236. box-sizing:border-box;
  8237. width:100%;
  8238. }
  8239. #u50480_text {
  8240. border-width:0px;
  8241. word-wrap:break-word;
  8242. text-transform:none;
  8243. visibility:hidden;
  8244. }
  8245. #u50481 {
  8246. border-width:0px;
  8247. position:absolute;
  8248. left:0px;
  8249. top:0px;
  8250. width:0px;
  8251. height:0px;
  8252. }
  8253. #u50482_img {
  8254. border-width:0px;
  8255. position:absolute;
  8256. left:0px;
  8257. top:0px;
  8258. width:9px;
  8259. height:9px;
  8260. }
  8261. #u50482 {
  8262. border-width:0px;
  8263. position:absolute;
  8264. left:2719px;
  8265. top:66px;
  8266. width:9px;
  8267. height:9px;
  8268. display:flex;
  8269. }
  8270. #u50482 .text {
  8271. position:absolute;
  8272. align-self:center;
  8273. padding:2px 2px 2px 2px;
  8274. box-sizing:border-box;
  8275. width:100%;
  8276. }
  8277. #u50482_text {
  8278. border-width:0px;
  8279. word-wrap:break-word;
  8280. text-transform:none;
  8281. visibility:hidden;
  8282. }
  8283. #u50483_img {
  8284. border-width:0px;
  8285. position:absolute;
  8286. left:0px;
  8287. top:0px;
  8288. width:9px;
  8289. height:9px;
  8290. }
  8291. #u50483 {
  8292. border-width:0px;
  8293. position:absolute;
  8294. left:2731px;
  8295. top:66px;
  8296. width:9px;
  8297. height:9px;
  8298. display:flex;
  8299. }
  8300. #u50483 .text {
  8301. position:absolute;
  8302. align-self:center;
  8303. padding:2px 2px 2px 2px;
  8304. box-sizing:border-box;
  8305. width:100%;
  8306. }
  8307. #u50483_text {
  8308. border-width:0px;
  8309. word-wrap:break-word;
  8310. text-transform:none;
  8311. visibility:hidden;
  8312. }
  8313. #u50484_img {
  8314. border-width:0px;
  8315. position:absolute;
  8316. left:0px;
  8317. top:0px;
  8318. width:9px;
  8319. height:9px;
  8320. }
  8321. #u50484 {
  8322. border-width:0px;
  8323. position:absolute;
  8324. left:2719px;
  8325. top:78px;
  8326. width:9px;
  8327. height:9px;
  8328. display:flex;
  8329. }
  8330. #u50484 .text {
  8331. position:absolute;
  8332. align-self:center;
  8333. padding:2px 2px 2px 2px;
  8334. box-sizing:border-box;
  8335. width:100%;
  8336. }
  8337. #u50484_text {
  8338. border-width:0px;
  8339. word-wrap:break-word;
  8340. text-transform:none;
  8341. visibility:hidden;
  8342. }
  8343. #u50485_img {
  8344. border-width:0px;
  8345. position:absolute;
  8346. left:0px;
  8347. top:0px;
  8348. width:9px;
  8349. height:9px;
  8350. }
  8351. #u50485 {
  8352. border-width:0px;
  8353. position:absolute;
  8354. left:2731px;
  8355. top:78px;
  8356. width:9px;
  8357. height:9px;
  8358. display:flex;
  8359. }
  8360. #u50485 .text {
  8361. position:absolute;
  8362. align-self:center;
  8363. padding:2px 2px 2px 2px;
  8364. box-sizing:border-box;
  8365. width:100%;
  8366. }
  8367. #u50485_text {
  8368. border-width:0px;
  8369. word-wrap:break-word;
  8370. text-transform:none;
  8371. visibility:hidden;
  8372. }
  8373. #u50486 {
  8374. border-width:0px;
  8375. position:absolute;
  8376. left:0px;
  8377. top:0px;
  8378. width:0px;
  8379. height:0px;
  8380. }
  8381. #u50487_img {
  8382. border-width:0px;
  8383. position:absolute;
  8384. left:0px;
  8385. top:0px;
  8386. width:6px;
  8387. height:6px;
  8388. }
  8389. #u50487 {
  8390. border-width:0px;
  8391. position:absolute;
  8392. left:2679px;
  8393. top:66px;
  8394. width:6px;
  8395. height:6px;
  8396. display:flex;
  8397. }
  8398. #u50487 .text {
  8399. position:absolute;
  8400. align-self:center;
  8401. padding:2px 2px 2px 2px;
  8402. box-sizing:border-box;
  8403. width:100%;
  8404. }
  8405. #u50487_text {
  8406. border-width:0px;
  8407. word-wrap:break-word;
  8408. text-transform:none;
  8409. visibility:hidden;
  8410. }
  8411. #u50488_img {
  8412. border-width:0px;
  8413. position:absolute;
  8414. left:0px;
  8415. top:0px;
  8416. width:6px;
  8417. height:6px;
  8418. }
  8419. #u50488 {
  8420. border-width:0px;
  8421. position:absolute;
  8422. left:2686px;
  8423. top:66px;
  8424. width:6px;
  8425. height:6px;
  8426. display:flex;
  8427. }
  8428. #u50488 .text {
  8429. position:absolute;
  8430. align-self:center;
  8431. padding:2px 2px 2px 2px;
  8432. box-sizing:border-box;
  8433. width:100%;
  8434. }
  8435. #u50488_text {
  8436. border-width:0px;
  8437. word-wrap:break-word;
  8438. text-transform:none;
  8439. visibility:hidden;
  8440. }
  8441. #u50489_img {
  8442. border-width:0px;
  8443. position:absolute;
  8444. left:0px;
  8445. top:0px;
  8446. width:6px;
  8447. height:6px;
  8448. }
  8449. #u50489 {
  8450. border-width:0px;
  8451. position:absolute;
  8452. left:2693px;
  8453. top:66px;
  8454. width:6px;
  8455. height:6px;
  8456. display:flex;
  8457. }
  8458. #u50489 .text {
  8459. position:absolute;
  8460. align-self:center;
  8461. padding:2px 2px 2px 2px;
  8462. box-sizing:border-box;
  8463. width:100%;
  8464. }
  8465. #u50489_text {
  8466. border-width:0px;
  8467. word-wrap:break-word;
  8468. text-transform:none;
  8469. visibility:hidden;
  8470. }
  8471. #u50490_img {
  8472. border-width:0px;
  8473. position:absolute;
  8474. left:0px;
  8475. top:0px;
  8476. width:6px;
  8477. height:6px;
  8478. }
  8479. #u50490 {
  8480. border-width:0px;
  8481. position:absolute;
  8482. left:2679px;
  8483. top:73px;
  8484. width:6px;
  8485. height:6px;
  8486. display:flex;
  8487. }
  8488. #u50490 .text {
  8489. position:absolute;
  8490. align-self:center;
  8491. padding:2px 2px 2px 2px;
  8492. box-sizing:border-box;
  8493. width:100%;
  8494. }
  8495. #u50490_text {
  8496. border-width:0px;
  8497. word-wrap:break-word;
  8498. text-transform:none;
  8499. visibility:hidden;
  8500. }
  8501. #u50491_img {
  8502. border-width:0px;
  8503. position:absolute;
  8504. left:0px;
  8505. top:0px;
  8506. width:6px;
  8507. height:6px;
  8508. }
  8509. #u50491 {
  8510. border-width:0px;
  8511. position:absolute;
  8512. left:2686px;
  8513. top:73px;
  8514. width:6px;
  8515. height:6px;
  8516. display:flex;
  8517. }
  8518. #u50491 .text {
  8519. position:absolute;
  8520. align-self:center;
  8521. padding:2px 2px 2px 2px;
  8522. box-sizing:border-box;
  8523. width:100%;
  8524. }
  8525. #u50491_text {
  8526. border-width:0px;
  8527. word-wrap:break-word;
  8528. text-transform:none;
  8529. visibility:hidden;
  8530. }
  8531. #u50492_img {
  8532. border-width:0px;
  8533. position:absolute;
  8534. left:0px;
  8535. top:0px;
  8536. width:6px;
  8537. height:6px;
  8538. }
  8539. #u50492 {
  8540. border-width:0px;
  8541. position:absolute;
  8542. left:2693px;
  8543. top:73px;
  8544. width:6px;
  8545. height:6px;
  8546. display:flex;
  8547. }
  8548. #u50492 .text {
  8549. position:absolute;
  8550. align-self:center;
  8551. padding:2px 2px 2px 2px;
  8552. box-sizing:border-box;
  8553. width:100%;
  8554. }
  8555. #u50492_text {
  8556. border-width:0px;
  8557. word-wrap:break-word;
  8558. text-transform:none;
  8559. visibility:hidden;
  8560. }
  8561. #u50493_img {
  8562. border-width:0px;
  8563. position:absolute;
  8564. left:0px;
  8565. top:0px;
  8566. width:6px;
  8567. height:6px;
  8568. }
  8569. #u50493 {
  8570. border-width:0px;
  8571. position:absolute;
  8572. left:2679px;
  8573. top:80px;
  8574. width:6px;
  8575. height:6px;
  8576. display:flex;
  8577. }
  8578. #u50493 .text {
  8579. position:absolute;
  8580. align-self:center;
  8581. padding:2px 2px 2px 2px;
  8582. box-sizing:border-box;
  8583. width:100%;
  8584. }
  8585. #u50493_text {
  8586. border-width:0px;
  8587. word-wrap:break-word;
  8588. text-transform:none;
  8589. visibility:hidden;
  8590. }
  8591. #u50494_img {
  8592. border-width:0px;
  8593. position:absolute;
  8594. left:0px;
  8595. top:0px;
  8596. width:6px;
  8597. height:6px;
  8598. }
  8599. #u50494 {
  8600. border-width:0px;
  8601. position:absolute;
  8602. left:2686px;
  8603. top:80px;
  8604. width:6px;
  8605. height:6px;
  8606. display:flex;
  8607. }
  8608. #u50494 .text {
  8609. position:absolute;
  8610. align-self:center;
  8611. padding:2px 2px 2px 2px;
  8612. box-sizing:border-box;
  8613. width:100%;
  8614. }
  8615. #u50494_text {
  8616. border-width:0px;
  8617. word-wrap:break-word;
  8618. text-transform:none;
  8619. visibility:hidden;
  8620. }
  8621. #u50495_img {
  8622. border-width:0px;
  8623. position:absolute;
  8624. left:0px;
  8625. top:0px;
  8626. width:6px;
  8627. height:6px;
  8628. }
  8629. #u50495 {
  8630. border-width:0px;
  8631. position:absolute;
  8632. left:2693px;
  8633. top:80px;
  8634. width:6px;
  8635. height:6px;
  8636. display:flex;
  8637. }
  8638. #u50495 .text {
  8639. position:absolute;
  8640. align-self:center;
  8641. padding:2px 2px 2px 2px;
  8642. box-sizing:border-box;
  8643. width:100%;
  8644. }
  8645. #u50495_text {
  8646. border-width:0px;
  8647. word-wrap:break-word;
  8648. text-transform:none;
  8649. visibility:hidden;
  8650. }
  8651. #u50496 {
  8652. border-width:0px;
  8653. position:absolute;
  8654. left:0px;
  8655. top:0px;
  8656. width:0px;
  8657. height:0px;
  8658. }
  8659. #u50497_img {
  8660. border-width:0px;
  8661. position:absolute;
  8662. left:0px;
  8663. top:0px;
  8664. width:4px;
  8665. height:4px;
  8666. }
  8667. #u50497 {
  8668. border-width:0px;
  8669. position:absolute;
  8670. left:2639px;
  8671. top:67px;
  8672. width:4px;
  8673. height:4px;
  8674. display:flex;
  8675. }
  8676. #u50497 .text {
  8677. position:absolute;
  8678. align-self:center;
  8679. padding:2px 2px 2px 2px;
  8680. box-sizing:border-box;
  8681. width:100%;
  8682. }
  8683. #u50497_text {
  8684. border-width:0px;
  8685. word-wrap:break-word;
  8686. text-transform:none;
  8687. visibility:hidden;
  8688. }
  8689. #u50498_img {
  8690. border-width:0px;
  8691. position:absolute;
  8692. left:0px;
  8693. top:0px;
  8694. width:4px;
  8695. height:4px;
  8696. }
  8697. #u50498 {
  8698. border-width:0px;
  8699. position:absolute;
  8700. left:2644px;
  8701. top:67px;
  8702. width:4px;
  8703. height:4px;
  8704. display:flex;
  8705. }
  8706. #u50498 .text {
  8707. position:absolute;
  8708. align-self:center;
  8709. padding:2px 2px 2px 2px;
  8710. box-sizing:border-box;
  8711. width:100%;
  8712. }
  8713. #u50498_text {
  8714. border-width:0px;
  8715. word-wrap:break-word;
  8716. text-transform:none;
  8717. visibility:hidden;
  8718. }
  8719. #u50499_img {
  8720. border-width:0px;
  8721. position:absolute;
  8722. left:0px;
  8723. top:0px;
  8724. width:4px;
  8725. height:4px;
  8726. }
  8727. #u50499 {
  8728. border-width:0px;
  8729. position:absolute;
  8730. left:2649px;
  8731. top:67px;
  8732. width:4px;
  8733. height:4px;
  8734. display:flex;
  8735. }
  8736. #u50499 .text {
  8737. position:absolute;
  8738. align-self:center;
  8739. padding:2px 2px 2px 2px;
  8740. box-sizing:border-box;
  8741. width:100%;
  8742. }
  8743. #u50499_text {
  8744. border-width:0px;
  8745. word-wrap:break-word;
  8746. text-transform:none;
  8747. visibility:hidden;
  8748. }
  8749. #u50500_img {
  8750. border-width:0px;
  8751. position:absolute;
  8752. left:0px;
  8753. top:0px;
  8754. width:4px;
  8755. height:4px;
  8756. }
  8757. #u50500 {
  8758. border-width:0px;
  8759. position:absolute;
  8760. left:2654px;
  8761. top:67px;
  8762. width:4px;
  8763. height:4px;
  8764. display:flex;
  8765. }
  8766. #u50500 .text {
  8767. position:absolute;
  8768. align-self:center;
  8769. padding:2px 2px 2px 2px;
  8770. box-sizing:border-box;
  8771. width:100%;
  8772. }
  8773. #u50500_text {
  8774. border-width:0px;
  8775. word-wrap:break-word;
  8776. text-transform:none;
  8777. visibility:hidden;
  8778. }
  8779. #u50501_img {
  8780. border-width:0px;
  8781. position:absolute;
  8782. left:0px;
  8783. top:0px;
  8784. width:4px;
  8785. height:4px;
  8786. }
  8787. #u50501 {
  8788. border-width:0px;
  8789. position:absolute;
  8790. left:2639px;
  8791. top:72px;
  8792. width:4px;
  8793. height:4px;
  8794. display:flex;
  8795. }
  8796. #u50501 .text {
  8797. position:absolute;
  8798. align-self:center;
  8799. padding:2px 2px 2px 2px;
  8800. box-sizing:border-box;
  8801. width:100%;
  8802. }
  8803. #u50501_text {
  8804. border-width:0px;
  8805. word-wrap:break-word;
  8806. text-transform:none;
  8807. visibility:hidden;
  8808. }
  8809. #u50502_img {
  8810. border-width:0px;
  8811. position:absolute;
  8812. left:0px;
  8813. top:0px;
  8814. width:4px;
  8815. height:4px;
  8816. }
  8817. #u50502 {
  8818. border-width:0px;
  8819. position:absolute;
  8820. left:2644px;
  8821. top:72px;
  8822. width:4px;
  8823. height:4px;
  8824. display:flex;
  8825. }
  8826. #u50502 .text {
  8827. position:absolute;
  8828. align-self:center;
  8829. padding:2px 2px 2px 2px;
  8830. box-sizing:border-box;
  8831. width:100%;
  8832. }
  8833. #u50502_text {
  8834. border-width:0px;
  8835. word-wrap:break-word;
  8836. text-transform:none;
  8837. visibility:hidden;
  8838. }
  8839. #u50503_img {
  8840. border-width:0px;
  8841. position:absolute;
  8842. left:0px;
  8843. top:0px;
  8844. width:4px;
  8845. height:4px;
  8846. }
  8847. #u50503 {
  8848. border-width:0px;
  8849. position:absolute;
  8850. left:2649px;
  8851. top:72px;
  8852. width:4px;
  8853. height:4px;
  8854. display:flex;
  8855. }
  8856. #u50503 .text {
  8857. position:absolute;
  8858. align-self:center;
  8859. padding:2px 2px 2px 2px;
  8860. box-sizing:border-box;
  8861. width:100%;
  8862. }
  8863. #u50503_text {
  8864. border-width:0px;
  8865. word-wrap:break-word;
  8866. text-transform:none;
  8867. visibility:hidden;
  8868. }
  8869. #u50504_img {
  8870. border-width:0px;
  8871. position:absolute;
  8872. left:0px;
  8873. top:0px;
  8874. width:4px;
  8875. height:4px;
  8876. }
  8877. #u50504 {
  8878. border-width:0px;
  8879. position:absolute;
  8880. left:2654px;
  8881. top:72px;
  8882. width:4px;
  8883. height:4px;
  8884. display:flex;
  8885. }
  8886. #u50504 .text {
  8887. position:absolute;
  8888. align-self:center;
  8889. padding:2px 2px 2px 2px;
  8890. box-sizing:border-box;
  8891. width:100%;
  8892. }
  8893. #u50504_text {
  8894. border-width:0px;
  8895. word-wrap:break-word;
  8896. text-transform:none;
  8897. visibility:hidden;
  8898. }
  8899. #u50505_img {
  8900. border-width:0px;
  8901. position:absolute;
  8902. left:0px;
  8903. top:0px;
  8904. width:4px;
  8905. height:4px;
  8906. }
  8907. #u50505 {
  8908. border-width:0px;
  8909. position:absolute;
  8910. left:2639px;
  8911. top:77px;
  8912. width:4px;
  8913. height:4px;
  8914. display:flex;
  8915. }
  8916. #u50505 .text {
  8917. position:absolute;
  8918. align-self:center;
  8919. padding:2px 2px 2px 2px;
  8920. box-sizing:border-box;
  8921. width:100%;
  8922. }
  8923. #u50505_text {
  8924. border-width:0px;
  8925. word-wrap:break-word;
  8926. text-transform:none;
  8927. visibility:hidden;
  8928. }
  8929. #u50506_img {
  8930. border-width:0px;
  8931. position:absolute;
  8932. left:0px;
  8933. top:0px;
  8934. width:4px;
  8935. height:4px;
  8936. }
  8937. #u50506 {
  8938. border-width:0px;
  8939. position:absolute;
  8940. left:2644px;
  8941. top:77px;
  8942. width:4px;
  8943. height:4px;
  8944. display:flex;
  8945. }
  8946. #u50506 .text {
  8947. position:absolute;
  8948. align-self:center;
  8949. padding:2px 2px 2px 2px;
  8950. box-sizing:border-box;
  8951. width:100%;
  8952. }
  8953. #u50506_text {
  8954. border-width:0px;
  8955. word-wrap:break-word;
  8956. text-transform:none;
  8957. visibility:hidden;
  8958. }
  8959. #u50507_img {
  8960. border-width:0px;
  8961. position:absolute;
  8962. left:0px;
  8963. top:0px;
  8964. width:4px;
  8965. height:4px;
  8966. }
  8967. #u50507 {
  8968. border-width:0px;
  8969. position:absolute;
  8970. left:2649px;
  8971. top:77px;
  8972. width:4px;
  8973. height:4px;
  8974. display:flex;
  8975. }
  8976. #u50507 .text {
  8977. position:absolute;
  8978. align-self:center;
  8979. padding:2px 2px 2px 2px;
  8980. box-sizing:border-box;
  8981. width:100%;
  8982. }
  8983. #u50507_text {
  8984. border-width:0px;
  8985. word-wrap:break-word;
  8986. text-transform:none;
  8987. visibility:hidden;
  8988. }
  8989. #u50508_img {
  8990. border-width:0px;
  8991. position:absolute;
  8992. left:0px;
  8993. top:0px;
  8994. width:4px;
  8995. height:4px;
  8996. }
  8997. #u50508 {
  8998. border-width:0px;
  8999. position:absolute;
  9000. left:2654px;
  9001. top:77px;
  9002. width:4px;
  9003. height:4px;
  9004. display:flex;
  9005. }
  9006. #u50508 .text {
  9007. position:absolute;
  9008. align-self:center;
  9009. padding:2px 2px 2px 2px;
  9010. box-sizing:border-box;
  9011. width:100%;
  9012. }
  9013. #u50508_text {
  9014. border-width:0px;
  9015. word-wrap:break-word;
  9016. text-transform:none;
  9017. visibility:hidden;
  9018. }
  9019. #u50509_img {
  9020. border-width:0px;
  9021. position:absolute;
  9022. left:0px;
  9023. top:0px;
  9024. width:4px;
  9025. height:4px;
  9026. }
  9027. #u50509 {
  9028. border-width:0px;
  9029. position:absolute;
  9030. left:2639px;
  9031. top:82px;
  9032. width:4px;
  9033. height:4px;
  9034. display:flex;
  9035. }
  9036. #u50509 .text {
  9037. position:absolute;
  9038. align-self:center;
  9039. padding:2px 2px 2px 2px;
  9040. box-sizing:border-box;
  9041. width:100%;
  9042. }
  9043. #u50509_text {
  9044. border-width:0px;
  9045. word-wrap:break-word;
  9046. text-transform:none;
  9047. visibility:hidden;
  9048. }
  9049. #u50510_img {
  9050. border-width:0px;
  9051. position:absolute;
  9052. left:0px;
  9053. top:0px;
  9054. width:4px;
  9055. height:4px;
  9056. }
  9057. #u50510 {
  9058. border-width:0px;
  9059. position:absolute;
  9060. left:2644px;
  9061. top:82px;
  9062. width:4px;
  9063. height:4px;
  9064. display:flex;
  9065. }
  9066. #u50510 .text {
  9067. position:absolute;
  9068. align-self:center;
  9069. padding:2px 2px 2px 2px;
  9070. box-sizing:border-box;
  9071. width:100%;
  9072. }
  9073. #u50510_text {
  9074. border-width:0px;
  9075. word-wrap:break-word;
  9076. text-transform:none;
  9077. visibility:hidden;
  9078. }
  9079. #u50511_img {
  9080. border-width:0px;
  9081. position:absolute;
  9082. left:0px;
  9083. top:0px;
  9084. width:4px;
  9085. height:4px;
  9086. }
  9087. #u50511 {
  9088. border-width:0px;
  9089. position:absolute;
  9090. left:2649px;
  9091. top:82px;
  9092. width:4px;
  9093. height:4px;
  9094. display:flex;
  9095. }
  9096. #u50511 .text {
  9097. position:absolute;
  9098. align-self:center;
  9099. padding:2px 2px 2px 2px;
  9100. box-sizing:border-box;
  9101. width:100%;
  9102. }
  9103. #u50511_text {
  9104. border-width:0px;
  9105. word-wrap:break-word;
  9106. text-transform:none;
  9107. visibility:hidden;
  9108. }
  9109. #u50512_img {
  9110. border-width:0px;
  9111. position:absolute;
  9112. left:0px;
  9113. top:0px;
  9114. width:4px;
  9115. height:4px;
  9116. }
  9117. #u50512 {
  9118. border-width:0px;
  9119. position:absolute;
  9120. left:2654px;
  9121. top:82px;
  9122. width:4px;
  9123. height:4px;
  9124. display:flex;
  9125. }
  9126. #u50512 .text {
  9127. position:absolute;
  9128. align-self:center;
  9129. padding:2px 2px 2px 2px;
  9130. box-sizing:border-box;
  9131. width:100%;
  9132. }
  9133. #u50512_text {
  9134. border-width:0px;
  9135. word-wrap:break-word;
  9136. text-transform:none;
  9137. visibility:hidden;
  9138. }
  9139. #u50513_img {
  9140. border-width:0px;
  9141. position:absolute;
  9142. left:0px;
  9143. top:0px;
  9144. width:20px;
  9145. height:20px;
  9146. }
  9147. #u50513 {
  9148. border-width:0px;
  9149. position:absolute;
  9150. left:2761px;
  9151. top:66px;
  9152. width:20px;
  9153. height:20px;
  9154. display:flex;
  9155. }
  9156. #u50513 .text {
  9157. position:absolute;
  9158. align-self:center;
  9159. padding:2px 2px 2px 2px;
  9160. box-sizing:border-box;
  9161. width:100%;
  9162. }
  9163. #u50513_text {
  9164. border-width:0px;
  9165. word-wrap:break-word;
  9166. text-transform:none;
  9167. visibility:hidden;
  9168. }
  9169. #u50514_img {
  9170. border-width:0px;
  9171. position:absolute;
  9172. left:0px;
  9173. top:0px;
  9174. width:18px;
  9175. height:18px;
  9176. }
  9177. #u50514 {
  9178. border-width:0px;
  9179. position:absolute;
  9180. left:2810px;
  9181. top:67px;
  9182. width:18px;
  9183. height:18px;
  9184. display:flex;
  9185. }
  9186. #u50514 .text {
  9187. position:absolute;
  9188. align-self:center;
  9189. padding:2px 2px 2px 2px;
  9190. box-sizing:border-box;
  9191. width:100%;
  9192. }
  9193. #u50514_text {
  9194. border-width:0px;
  9195. word-wrap:break-word;
  9196. text-transform:none;
  9197. visibility:hidden;
  9198. }
  9199. #u50515_img {
  9200. border-width:0px;
  9201. position:absolute;
  9202. left:0px;
  9203. top:0px;
  9204. width:2px;
  9205. height:15px;
  9206. }
  9207. #u50515 {
  9208. border-width:0px;
  9209. position:absolute;
  9210. left:2795px;
  9211. top:69px;
  9212. width:1px;
  9213. height:14px;
  9214. display:flex;
  9215. }
  9216. #u50515 .text {
  9217. position:absolute;
  9218. align-self:center;
  9219. padding:2px 2px 2px 2px;
  9220. box-sizing:border-box;
  9221. width:100%;
  9222. }
  9223. #u50515_text {
  9224. border-width:0px;
  9225. word-wrap:break-word;
  9226. text-transform:none;
  9227. visibility:hidden;
  9228. }
  9229. #u50516_div {
  9230. border-width:0px;
  9231. position:absolute;
  9232. left:0px;
  9233. top:0px;
  9234. width:43px;
  9235. height:30px;
  9236. background:inherit;
  9237. background-color:rgba(255, 255, 255, 0);
  9238. border:none;
  9239. border-radius:0px;
  9240. -moz-box-shadow:none;
  9241. -webkit-box-shadow:none;
  9242. box-shadow:none;
  9243. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9244. font-weight:500;
  9245. font-style:normal;
  9246. font-size:14px;
  9247. color:#000000;
  9248. line-height:30px;
  9249. }
  9250. #u50516 {
  9251. border-width:0px;
  9252. position:absolute;
  9253. left:1658px;
  9254. top:291px;
  9255. width:43px;
  9256. height:30px;
  9257. display:flex;
  9258. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9259. font-weight:500;
  9260. font-style:normal;
  9261. font-size:14px;
  9262. color:#000000;
  9263. line-height:30px;
  9264. }
  9265. #u50516 .text {
  9266. position:absolute;
  9267. align-self:flex-start;
  9268. padding:0px 0px 0px 0px;
  9269. box-sizing:border-box;
  9270. width:100%;
  9271. }
  9272. #u50516_text {
  9273. border-width:0px;
  9274. white-space:nowrap;
  9275. text-transform:none;
  9276. }
  9277. #u50517 {
  9278. border-width:0px;
  9279. position:absolute;
  9280. left:0px;
  9281. top:0px;
  9282. width:0px;
  9283. height:0px;
  9284. }
  9285. #u50518_div {
  9286. border-width:0px;
  9287. position:absolute;
  9288. left:0px;
  9289. top:0px;
  9290. width:30px;
  9291. height:30px;
  9292. background:inherit;
  9293. background-color:rgba(255, 255, 255, 1);
  9294. box-sizing:border-box;
  9295. border-width:1px;
  9296. border-style:solid;
  9297. border-color:rgba(121, 121, 121, 1);
  9298. border-radius:0px;
  9299. -moz-box-shadow:none;
  9300. -webkit-box-shadow:none;
  9301. box-shadow:none;
  9302. }
  9303. #u50518 {
  9304. border-width:0px;
  9305. position:absolute;
  9306. left:1659px;
  9307. top:134px;
  9308. width:30px;
  9309. height:30px;
  9310. display:flex;
  9311. }
  9312. #u50518 .text {
  9313. position:absolute;
  9314. align-self:center;
  9315. padding:2px 2px 2px 2px;
  9316. box-sizing:border-box;
  9317. width:100%;
  9318. }
  9319. #u50518_text {
  9320. border-width:0px;
  9321. word-wrap:break-word;
  9322. text-transform:none;
  9323. visibility:hidden;
  9324. }
  9325. #u50519_img {
  9326. border-width:0px;
  9327. position:absolute;
  9328. left:0px;
  9329. top:0px;
  9330. width:19px;
  9331. height:18px;
  9332. }
  9333. #u50519 {
  9334. border-width:0px;
  9335. position:absolute;
  9336. left:1665px;
  9337. top:140px;
  9338. width:19px;
  9339. height:18px;
  9340. display:flex;
  9341. -webkit-transform:rotate(135deg);
  9342. -moz-transform:rotate(135deg);
  9343. -ms-transform:rotate(135deg);
  9344. transform:rotate(135deg);
  9345. }
  9346. #u50519 .text {
  9347. position:absolute;
  9348. align-self:center;
  9349. padding:2px 2px 2px 2px;
  9350. box-sizing:border-box;
  9351. width:100%;
  9352. }
  9353. #u50519_text {
  9354. border-width:0px;
  9355. word-wrap:break-word;
  9356. text-transform:none;
  9357. visibility:hidden;
  9358. }
  9359. #u50520 {
  9360. border-width:0px;
  9361. position:absolute;
  9362. left:0px;
  9363. top:0px;
  9364. width:0px;
  9365. height:0px;
  9366. }
  9367. #u50521_div {
  9368. border-width:0px;
  9369. position:absolute;
  9370. left:0px;
  9371. top:0px;
  9372. width:30px;
  9373. height:30px;
  9374. background:inherit;
  9375. background-color:rgba(255, 255, 255, 1);
  9376. box-sizing:border-box;
  9377. border-width:1px;
  9378. border-style:solid;
  9379. border-color:rgba(121, 121, 121, 1);
  9380. border-radius:0px;
  9381. -moz-box-shadow:none;
  9382. -webkit-box-shadow:none;
  9383. box-shadow:none;
  9384. }
  9385. #u50521 {
  9386. border-width:0px;
  9387. position:absolute;
  9388. left:1699px;
  9389. top:134px;
  9390. width:30px;
  9391. height:30px;
  9392. display:flex;
  9393. }
  9394. #u50521 .text {
  9395. position:absolute;
  9396. align-self:center;
  9397. padding:2px 2px 2px 2px;
  9398. box-sizing:border-box;
  9399. width:100%;
  9400. }
  9401. #u50521_text {
  9402. border-width:0px;
  9403. word-wrap:break-word;
  9404. text-transform:none;
  9405. visibility:hidden;
  9406. }
  9407. #u50522_img {
  9408. border-width:0px;
  9409. position:absolute;
  9410. left:0px;
  9411. top:0px;
  9412. width:19px;
  9413. height:18px;
  9414. }
  9415. #u50522 {
  9416. border-width:0px;
  9417. position:absolute;
  9418. left:1705px;
  9419. top:140px;
  9420. width:19px;
  9421. height:18px;
  9422. display:flex;
  9423. -webkit-transform:rotate(180deg);
  9424. -moz-transform:rotate(180deg);
  9425. -ms-transform:rotate(180deg);
  9426. transform:rotate(180deg);
  9427. }
  9428. #u50522 .text {
  9429. position:absolute;
  9430. align-self:center;
  9431. padding:2px 2px 2px 2px;
  9432. box-sizing:border-box;
  9433. width:100%;
  9434. }
  9435. #u50522_text {
  9436. border-width:0px;
  9437. word-wrap:break-word;
  9438. text-transform:none;
  9439. visibility:hidden;
  9440. }
  9441. #u50523 {
  9442. border-width:0px;
  9443. position:absolute;
  9444. left:0px;
  9445. top:0px;
  9446. width:0px;
  9447. height:0px;
  9448. }
  9449. #u50524_div {
  9450. border-width:0px;
  9451. position:absolute;
  9452. left:0px;
  9453. top:0px;
  9454. width:30px;
  9455. height:30px;
  9456. background:inherit;
  9457. background-color:rgba(255, 255, 255, 1);
  9458. box-sizing:border-box;
  9459. border-width:1px;
  9460. border-style:solid;
  9461. border-color:rgba(121, 121, 121, 1);
  9462. border-radius:0px;
  9463. -moz-box-shadow:none;
  9464. -webkit-box-shadow:none;
  9465. box-shadow:none;
  9466. }
  9467. #u50524 {
  9468. border-width:0px;
  9469. position:absolute;
  9470. left:1739px;
  9471. top:134px;
  9472. width:30px;
  9473. height:30px;
  9474. display:flex;
  9475. }
  9476. #u50524 .text {
  9477. position:absolute;
  9478. align-self:center;
  9479. padding:2px 2px 2px 2px;
  9480. box-sizing:border-box;
  9481. width:100%;
  9482. }
  9483. #u50524_text {
  9484. border-width:0px;
  9485. word-wrap:break-word;
  9486. text-transform:none;
  9487. visibility:hidden;
  9488. }
  9489. #u50525_img {
  9490. border-width:0px;
  9491. position:absolute;
  9492. left:0px;
  9493. top:0px;
  9494. width:19px;
  9495. height:18px;
  9496. }
  9497. #u50525 {
  9498. border-width:0px;
  9499. position:absolute;
  9500. left:1745px;
  9501. top:140px;
  9502. width:19px;
  9503. height:18px;
  9504. display:flex;
  9505. -webkit-transform:rotate(225deg);
  9506. -moz-transform:rotate(225deg);
  9507. -ms-transform:rotate(225deg);
  9508. transform:rotate(225deg);
  9509. }
  9510. #u50525 .text {
  9511. position:absolute;
  9512. align-self:center;
  9513. padding:2px 2px 2px 2px;
  9514. box-sizing:border-box;
  9515. width:100%;
  9516. }
  9517. #u50525_text {
  9518. border-width:0px;
  9519. word-wrap:break-word;
  9520. text-transform:none;
  9521. visibility:hidden;
  9522. }
  9523. #u50526 {
  9524. border-width:0px;
  9525. position:absolute;
  9526. left:0px;
  9527. top:0px;
  9528. width:0px;
  9529. height:0px;
  9530. }
  9531. #u50527_div {
  9532. border-width:0px;
  9533. position:absolute;
  9534. left:0px;
  9535. top:0px;
  9536. width:30px;
  9537. height:30px;
  9538. background:inherit;
  9539. background-color:rgba(255, 255, 255, 1);
  9540. box-sizing:border-box;
  9541. border-width:1px;
  9542. border-style:solid;
  9543. border-color:rgba(121, 121, 121, 1);
  9544. border-radius:0px;
  9545. -moz-box-shadow:none;
  9546. -webkit-box-shadow:none;
  9547. box-shadow:none;
  9548. }
  9549. #u50527 {
  9550. border-width:0px;
  9551. position:absolute;
  9552. left:1659px;
  9553. top:174px;
  9554. width:30px;
  9555. height:30px;
  9556. display:flex;
  9557. }
  9558. #u50527 .text {
  9559. position:absolute;
  9560. align-self:center;
  9561. padding:2px 2px 2px 2px;
  9562. box-sizing:border-box;
  9563. width:100%;
  9564. }
  9565. #u50527_text {
  9566. border-width:0px;
  9567. word-wrap:break-word;
  9568. text-transform:none;
  9569. visibility:hidden;
  9570. }
  9571. #u50528_img {
  9572. border-width:0px;
  9573. position:absolute;
  9574. left:0px;
  9575. top:0px;
  9576. width:19px;
  9577. height:18px;
  9578. }
  9579. #u50528 {
  9580. border-width:0px;
  9581. position:absolute;
  9582. left:1665px;
  9583. top:180px;
  9584. width:19px;
  9585. height:18px;
  9586. display:flex;
  9587. -webkit-transform:rotate(90deg);
  9588. -moz-transform:rotate(90deg);
  9589. -ms-transform:rotate(90deg);
  9590. transform:rotate(90deg);
  9591. }
  9592. #u50528 .text {
  9593. position:absolute;
  9594. align-self:center;
  9595. padding:2px 2px 2px 2px;
  9596. box-sizing:border-box;
  9597. width:100%;
  9598. }
  9599. #u50528_text {
  9600. border-width:0px;
  9601. word-wrap:break-word;
  9602. text-transform:none;
  9603. visibility:hidden;
  9604. }
  9605. #u50529 {
  9606. border-width:0px;
  9607. position:absolute;
  9608. left:0px;
  9609. top:0px;
  9610. width:0px;
  9611. height:0px;
  9612. }
  9613. #u50530_div {
  9614. border-width:0px;
  9615. position:absolute;
  9616. left:0px;
  9617. top:0px;
  9618. width:30px;
  9619. height:30px;
  9620. background:inherit;
  9621. background-color:rgba(255, 255, 255, 1);
  9622. box-sizing:border-box;
  9623. border-width:1px;
  9624. border-style:solid;
  9625. border-color:rgba(121, 121, 121, 1);
  9626. border-radius:0px;
  9627. -moz-box-shadow:none;
  9628. -webkit-box-shadow:none;
  9629. box-shadow:none;
  9630. }
  9631. #u50530 {
  9632. border-width:0px;
  9633. position:absolute;
  9634. left:1739px;
  9635. top:174px;
  9636. width:30px;
  9637. height:30px;
  9638. display:flex;
  9639. }
  9640. #u50530 .text {
  9641. position:absolute;
  9642. align-self:center;
  9643. padding:2px 2px 2px 2px;
  9644. box-sizing:border-box;
  9645. width:100%;
  9646. }
  9647. #u50530_text {
  9648. border-width:0px;
  9649. word-wrap:break-word;
  9650. text-transform:none;
  9651. visibility:hidden;
  9652. }
  9653. #u50531_img {
  9654. border-width:0px;
  9655. position:absolute;
  9656. left:0px;
  9657. top:0px;
  9658. width:19px;
  9659. height:18px;
  9660. }
  9661. #u50531 {
  9662. border-width:0px;
  9663. position:absolute;
  9664. left:1745px;
  9665. top:180px;
  9666. width:19px;
  9667. height:18px;
  9668. display:flex;
  9669. -webkit-transform:rotate(270deg);
  9670. -moz-transform:rotate(270deg);
  9671. -ms-transform:rotate(270deg);
  9672. transform:rotate(270deg);
  9673. }
  9674. #u50531 .text {
  9675. position:absolute;
  9676. align-self:center;
  9677. padding:2px 2px 2px 2px;
  9678. box-sizing:border-box;
  9679. width:100%;
  9680. }
  9681. #u50531_text {
  9682. border-width:0px;
  9683. word-wrap:break-word;
  9684. text-transform:none;
  9685. visibility:hidden;
  9686. }
  9687. #u50532 {
  9688. border-width:0px;
  9689. position:absolute;
  9690. left:0px;
  9691. top:0px;
  9692. width:0px;
  9693. height:0px;
  9694. }
  9695. #u50533_div {
  9696. border-width:0px;
  9697. position:absolute;
  9698. left:0px;
  9699. top:0px;
  9700. width:30px;
  9701. height:30px;
  9702. background:inherit;
  9703. background-color:rgba(255, 255, 255, 1);
  9704. box-sizing:border-box;
  9705. border-width:1px;
  9706. border-style:solid;
  9707. border-color:rgba(121, 121, 121, 1);
  9708. border-radius:0px;
  9709. -moz-box-shadow:none;
  9710. -webkit-box-shadow:none;
  9711. box-shadow:none;
  9712. }
  9713. #u50533 {
  9714. border-width:0px;
  9715. position:absolute;
  9716. left:1659px;
  9717. top:214px;
  9718. width:30px;
  9719. height:30px;
  9720. display:flex;
  9721. }
  9722. #u50533 .text {
  9723. position:absolute;
  9724. align-self:center;
  9725. padding:2px 2px 2px 2px;
  9726. box-sizing:border-box;
  9727. width:100%;
  9728. }
  9729. #u50533_text {
  9730. border-width:0px;
  9731. word-wrap:break-word;
  9732. text-transform:none;
  9733. visibility:hidden;
  9734. }
  9735. #u50534_img {
  9736. border-width:0px;
  9737. position:absolute;
  9738. left:0px;
  9739. top:0px;
  9740. width:19px;
  9741. height:18px;
  9742. }
  9743. #u50534 {
  9744. border-width:0px;
  9745. position:absolute;
  9746. left:1665px;
  9747. top:220px;
  9748. width:19px;
  9749. height:18px;
  9750. display:flex;
  9751. -webkit-transform:rotate(51deg);
  9752. -moz-transform:rotate(51deg);
  9753. -ms-transform:rotate(51deg);
  9754. transform:rotate(51deg);
  9755. }
  9756. #u50534 .text {
  9757. position:absolute;
  9758. align-self:center;
  9759. padding:2px 2px 2px 2px;
  9760. box-sizing:border-box;
  9761. width:100%;
  9762. }
  9763. #u50534_text {
  9764. border-width:0px;
  9765. word-wrap:break-word;
  9766. text-transform:none;
  9767. visibility:hidden;
  9768. }
  9769. #u50535 {
  9770. border-width:0px;
  9771. position:absolute;
  9772. left:0px;
  9773. top:0px;
  9774. width:0px;
  9775. height:0px;
  9776. }
  9777. #u50536_div {
  9778. border-width:0px;
  9779. position:absolute;
  9780. left:0px;
  9781. top:0px;
  9782. width:30px;
  9783. height:30px;
  9784. background:inherit;
  9785. background-color:rgba(255, 255, 255, 1);
  9786. box-sizing:border-box;
  9787. border-width:1px;
  9788. border-style:solid;
  9789. border-color:rgba(121, 121, 121, 1);
  9790. border-radius:0px;
  9791. -moz-box-shadow:none;
  9792. -webkit-box-shadow:none;
  9793. box-shadow:none;
  9794. }
  9795. #u50536 {
  9796. border-width:0px;
  9797. position:absolute;
  9798. left:1699px;
  9799. top:214px;
  9800. width:30px;
  9801. height:30px;
  9802. display:flex;
  9803. }
  9804. #u50536 .text {
  9805. position:absolute;
  9806. align-self:center;
  9807. padding:2px 2px 2px 2px;
  9808. box-sizing:border-box;
  9809. width:100%;
  9810. }
  9811. #u50536_text {
  9812. border-width:0px;
  9813. word-wrap:break-word;
  9814. text-transform:none;
  9815. visibility:hidden;
  9816. }
  9817. #u50537_img {
  9818. border-width:0px;
  9819. position:absolute;
  9820. left:0px;
  9821. top:0px;
  9822. width:19px;
  9823. height:18px;
  9824. }
  9825. #u50537 {
  9826. border-width:0px;
  9827. position:absolute;
  9828. left:1705px;
  9829. top:220px;
  9830. width:19px;
  9831. height:18px;
  9832. display:flex;
  9833. }
  9834. #u50537 .text {
  9835. position:absolute;
  9836. align-self:center;
  9837. padding:2px 2px 2px 2px;
  9838. box-sizing:border-box;
  9839. width:100%;
  9840. }
  9841. #u50537_text {
  9842. border-width:0px;
  9843. word-wrap:break-word;
  9844. text-transform:none;
  9845. visibility:hidden;
  9846. }
  9847. #u50538 {
  9848. border-width:0px;
  9849. position:absolute;
  9850. left:0px;
  9851. top:0px;
  9852. width:0px;
  9853. height:0px;
  9854. }
  9855. #u50539_div {
  9856. border-width:0px;
  9857. position:absolute;
  9858. left:0px;
  9859. top:0px;
  9860. width:30px;
  9861. height:30px;
  9862. background:inherit;
  9863. background-color:rgba(255, 255, 255, 1);
  9864. box-sizing:border-box;
  9865. border-width:1px;
  9866. border-style:solid;
  9867. border-color:rgba(121, 121, 121, 1);
  9868. border-radius:0px;
  9869. -moz-box-shadow:none;
  9870. -webkit-box-shadow:none;
  9871. box-shadow:none;
  9872. }
  9873. #u50539 {
  9874. border-width:0px;
  9875. position:absolute;
  9876. left:1739px;
  9877. top:214px;
  9878. width:30px;
  9879. height:30px;
  9880. display:flex;
  9881. }
  9882. #u50539 .text {
  9883. position:absolute;
  9884. align-self:center;
  9885. padding:2px 2px 2px 2px;
  9886. box-sizing:border-box;
  9887. width:100%;
  9888. }
  9889. #u50539_text {
  9890. border-width:0px;
  9891. word-wrap:break-word;
  9892. text-transform:none;
  9893. visibility:hidden;
  9894. }
  9895. #u50540_img {
  9896. border-width:0px;
  9897. position:absolute;
  9898. left:0px;
  9899. top:0px;
  9900. width:19px;
  9901. height:18px;
  9902. }
  9903. #u50540 {
  9904. border-width:0px;
  9905. position:absolute;
  9906. left:1745px;
  9907. top:220px;
  9908. width:19px;
  9909. height:18px;
  9910. display:flex;
  9911. -webkit-transform:rotate(300deg);
  9912. -moz-transform:rotate(300deg);
  9913. -ms-transform:rotate(300deg);
  9914. transform:rotate(300deg);
  9915. }
  9916. #u50540 .text {
  9917. position:absolute;
  9918. align-self:center;
  9919. padding:2px 2px 2px 2px;
  9920. box-sizing:border-box;
  9921. width:100%;
  9922. }
  9923. #u50540_text {
  9924. border-width:0px;
  9925. word-wrap:break-word;
  9926. text-transform:none;
  9927. visibility:hidden;
  9928. }
  9929. #u50541_div {
  9930. border-width:0px;
  9931. position:absolute;
  9932. left:0px;
  9933. top:0px;
  9934. width:30px;
  9935. height:30px;
  9936. background:inherit;
  9937. background-color:rgba(255, 255, 255, 1);
  9938. box-sizing:border-box;
  9939. border-width:1px;
  9940. border-style:solid;
  9941. border-color:rgba(121, 121, 121, 1);
  9942. border-radius:7px;
  9943. -moz-box-shadow:none;
  9944. -webkit-box-shadow:none;
  9945. box-shadow:none;
  9946. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  9947. font-weight:700;
  9948. font-style:normal;
  9949. font-size:24px;
  9950. }
  9951. #u50541 {
  9952. border-width:0px;
  9953. position:absolute;
  9954. left:1779px;
  9955. top:134px;
  9956. width:30px;
  9957. height:30px;
  9958. display:flex;
  9959. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  9960. font-weight:700;
  9961. font-style:normal;
  9962. font-size:24px;
  9963. }
  9964. #u50541 .text {
  9965. position:absolute;
  9966. align-self:center;
  9967. padding:2px 2px 2px 2px;
  9968. box-sizing:border-box;
  9969. width:100%;
  9970. }
  9971. #u50541_text {
  9972. border-width:0px;
  9973. word-wrap:break-word;
  9974. text-transform:none;
  9975. }
  9976. #u50542_div {
  9977. border-width:0px;
  9978. position:absolute;
  9979. left:0px;
  9980. top:0px;
  9981. width:30px;
  9982. height:30px;
  9983. background:inherit;
  9984. background-color:rgba(255, 255, 255, 1);
  9985. box-sizing:border-box;
  9986. border-width:1px;
  9987. border-style:solid;
  9988. border-color:rgba(121, 121, 121, 1);
  9989. border-radius:7px;
  9990. -moz-box-shadow:none;
  9991. -webkit-box-shadow:none;
  9992. box-shadow:none;
  9993. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  9994. font-weight:700;
  9995. font-style:normal;
  9996. font-size:24px;
  9997. }
  9998. #u50542 {
  9999. border-width:0px;
  10000. position:absolute;
  10001. left:1779px;
  10002. top:174px;
  10003. width:30px;
  10004. height:30px;
  10005. display:flex;
  10006. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  10007. font-weight:700;
  10008. font-style:normal;
  10009. font-size:24px;
  10010. }
  10011. #u50542 .text {
  10012. position:absolute;
  10013. align-self:center;
  10014. padding:2px 2px 2px 2px;
  10015. box-sizing:border-box;
  10016. width:100%;
  10017. }
  10018. #u50542_text {
  10019. border-width:0px;
  10020. word-wrap:break-word;
  10021. text-transform:none;
  10022. }
  10023. #u50543_div {
  10024. border-width:0px;
  10025. position:absolute;
  10026. left:0px;
  10027. top:0px;
  10028. width:30px;
  10029. height:30px;
  10030. background:inherit;
  10031. background-color:rgba(255, 255, 255, 1);
  10032. box-sizing:border-box;
  10033. border-width:1px;
  10034. border-style:solid;
  10035. border-color:rgba(121, 121, 121, 1);
  10036. border-radius:7px;
  10037. -moz-box-shadow:none;
  10038. -webkit-box-shadow:none;
  10039. box-shadow:none;
  10040. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  10041. font-weight:700;
  10042. font-style:normal;
  10043. font-size:24px;
  10044. }
  10045. #u50543 {
  10046. border-width:0px;
  10047. position:absolute;
  10048. left:1779px;
  10049. top:214px;
  10050. width:30px;
  10051. height:30px;
  10052. display:flex;
  10053. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  10054. font-weight:700;
  10055. font-style:normal;
  10056. font-size:24px;
  10057. }
  10058. #u50543 .text {
  10059. position:absolute;
  10060. align-self:center;
  10061. padding:2px 2px 2px 2px;
  10062. box-sizing:border-box;
  10063. width:100%;
  10064. }
  10065. #u50543_text {
  10066. border-width:0px;
  10067. word-wrap:break-word;
  10068. text-transform:none;
  10069. }
  10070. #u50544 {
  10071. border-width:0px;
  10072. position:absolute;
  10073. left:0px;
  10074. top:0px;
  10075. width:0px;
  10076. height:0px;
  10077. }
  10078. #u50545_div {
  10079. border-width:0px;
  10080. position:absolute;
  10081. left:0px;
  10082. top:0px;
  10083. width:30px;
  10084. height:30px;
  10085. background:inherit;
  10086. background-color:rgba(255, 255, 255, 1);
  10087. box-sizing:border-box;
  10088. border-width:1px;
  10089. border-style:solid;
  10090. border-color:rgba(121, 121, 121, 1);
  10091. border-radius:0px;
  10092. -moz-box-shadow:none;
  10093. -webkit-box-shadow:none;
  10094. box-shadow:none;
  10095. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  10096. font-weight:700;
  10097. font-style:normal;
  10098. font-size:18px;
  10099. }
  10100. #u50545 {
  10101. border-width:0px;
  10102. position:absolute;
  10103. left:1819px;
  10104. top:134px;
  10105. width:30px;
  10106. height:30px;
  10107. display:flex;
  10108. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  10109. font-weight:700;
  10110. font-style:normal;
  10111. font-size:18px;
  10112. }
  10113. #u50545 .text {
  10114. position:absolute;
  10115. align-self:center;
  10116. padding:2px 2px 2px 2px;
  10117. box-sizing:border-box;
  10118. width:100%;
  10119. }
  10120. #u50545_text {
  10121. border-width:0px;
  10122. word-wrap:break-word;
  10123. text-transform:none;
  10124. visibility:hidden;
  10125. }
  10126. #u50546_img {
  10127. border-width:0px;
  10128. position:absolute;
  10129. left:0px;
  10130. top:0px;
  10131. width:14px;
  10132. height:14px;
  10133. }
  10134. #u50546 {
  10135. border-width:0px;
  10136. position:absolute;
  10137. left:1827px;
  10138. top:142px;
  10139. width:14px;
  10140. height:14px;
  10141. display:flex;
  10142. }
  10143. #u50546 .text {
  10144. position:absolute;
  10145. align-self:center;
  10146. padding:2px 2px 2px 2px;
  10147. box-sizing:border-box;
  10148. width:100%;
  10149. }
  10150. #u50546_text {
  10151. border-width:0px;
  10152. word-wrap:break-word;
  10153. text-transform:none;
  10154. visibility:hidden;
  10155. }
  10156. #u50547 {
  10157. border-width:0px;
  10158. position:absolute;
  10159. left:0px;
  10160. top:0px;
  10161. width:0px;
  10162. height:0px;
  10163. }
  10164. #u50548_div {
  10165. border-width:0px;
  10166. position:absolute;
  10167. left:0px;
  10168. top:0px;
  10169. width:30px;
  10170. height:30px;
  10171. background:inherit;
  10172. background-color:rgba(255, 255, 255, 1);
  10173. box-sizing:border-box;
  10174. border-width:1px;
  10175. border-style:solid;
  10176. border-color:rgba(121, 121, 121, 1);
  10177. border-radius:0px;
  10178. -moz-box-shadow:none;
  10179. -webkit-box-shadow:none;
  10180. box-shadow:none;
  10181. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  10182. font-weight:700;
  10183. font-style:normal;
  10184. font-size:18px;
  10185. }
  10186. #u50548 {
  10187. border-width:0px;
  10188. position:absolute;
  10189. left:1819px;
  10190. top:174px;
  10191. width:30px;
  10192. height:30px;
  10193. display:flex;
  10194. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  10195. font-weight:700;
  10196. font-style:normal;
  10197. font-size:18px;
  10198. }
  10199. #u50548 .text {
  10200. position:absolute;
  10201. align-self:center;
  10202. padding:2px 2px 2px 2px;
  10203. box-sizing:border-box;
  10204. width:100%;
  10205. }
  10206. #u50548_text {
  10207. border-width:0px;
  10208. word-wrap:break-word;
  10209. text-transform:none;
  10210. visibility:hidden;
  10211. }
  10212. #u50549_img {
  10213. border-width:0px;
  10214. position:absolute;
  10215. left:0px;
  10216. top:0px;
  10217. width:14px;
  10218. height:14px;
  10219. }
  10220. #u50549 {
  10221. border-width:0px;
  10222. position:absolute;
  10223. left:1827px;
  10224. top:182px;
  10225. width:14px;
  10226. height:14px;
  10227. display:flex;
  10228. }
  10229. #u50549 .text {
  10230. position:absolute;
  10231. align-self:center;
  10232. padding:2px 2px 2px 2px;
  10233. box-sizing:border-box;
  10234. width:100%;
  10235. }
  10236. #u50549_text {
  10237. border-width:0px;
  10238. word-wrap:break-word;
  10239. text-transform:none;
  10240. visibility:hidden;
  10241. }
  10242. #u50550 {
  10243. border-width:0px;
  10244. position:absolute;
  10245. left:0px;
  10246. top:0px;
  10247. width:0px;
  10248. height:0px;
  10249. }
  10250. #u50551_div {
  10251. border-width:0px;
  10252. position:absolute;
  10253. left:0px;
  10254. top:0px;
  10255. width:30px;
  10256. height:30px;
  10257. background:inherit;
  10258. background-color:rgba(255, 255, 255, 1);
  10259. box-sizing:border-box;
  10260. border-width:1px;
  10261. border-style:solid;
  10262. border-color:rgba(121, 121, 121, 1);
  10263. border-radius:0px;
  10264. -moz-box-shadow:none;
  10265. -webkit-box-shadow:none;
  10266. box-shadow:none;
  10267. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  10268. font-weight:700;
  10269. font-style:normal;
  10270. font-size:18px;
  10271. }
  10272. #u50551 {
  10273. border-width:0px;
  10274. position:absolute;
  10275. left:1819px;
  10276. top:214px;
  10277. width:30px;
  10278. height:30px;
  10279. display:flex;
  10280. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  10281. font-weight:700;
  10282. font-style:normal;
  10283. font-size:18px;
  10284. }
  10285. #u50551 .text {
  10286. position:absolute;
  10287. align-self:center;
  10288. padding:2px 2px 2px 2px;
  10289. box-sizing:border-box;
  10290. width:100%;
  10291. }
  10292. #u50551_text {
  10293. border-width:0px;
  10294. word-wrap:break-word;
  10295. text-transform:none;
  10296. visibility:hidden;
  10297. }
  10298. #u50552_img {
  10299. border-width:0px;
  10300. position:absolute;
  10301. left:0px;
  10302. top:0px;
  10303. width:17px;
  10304. height:11px;
  10305. }
  10306. #u50552 {
  10307. border-width:0px;
  10308. position:absolute;
  10309. left:1826px;
  10310. top:224px;
  10311. width:17px;
  10312. height:11px;
  10313. display:flex;
  10314. }
  10315. #u50552 .text {
  10316. position:absolute;
  10317. align-self:center;
  10318. padding:2px 2px 2px 2px;
  10319. box-sizing:border-box;
  10320. width:100%;
  10321. }
  10322. #u50552_text {
  10323. border-width:0px;
  10324. word-wrap:break-word;
  10325. text-transform:none;
  10326. visibility:hidden;
  10327. }
  10328. #u50553 {
  10329. border-width:0px;
  10330. position:absolute;
  10331. left:0px;
  10332. top:0px;
  10333. width:0px;
  10334. height:0px;
  10335. }
  10336. #u50554_div {
  10337. border-width:0px;
  10338. position:absolute;
  10339. left:0px;
  10340. top:0px;
  10341. width:84px;
  10342. height:21px;
  10343. background:inherit;
  10344. background-color:rgba(51, 51, 51, 1);
  10345. border:none;
  10346. border-radius:11px;
  10347. -moz-box-shadow:none;
  10348. -webkit-box-shadow:none;
  10349. box-shadow:none;
  10350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10351. font-weight:400;
  10352. font-style:normal;
  10353. font-size:12px;
  10354. color:#FFFFFF;
  10355. text-align:center;
  10356. }
  10357. #u50554 {
  10358. border-width:0px;
  10359. position:absolute;
  10360. left:1750px;
  10361. top:240px;
  10362. width:84px;
  10363. height:21px;
  10364. display:flex;
  10365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10366. font-weight:400;
  10367. font-style:normal;
  10368. font-size:12px;
  10369. color:#FFFFFF;
  10370. text-align:center;
  10371. }
  10372. #u50554 .text {
  10373. position:absolute;
  10374. align-self:center;
  10375. padding:2px 2px 2px 2px;
  10376. box-sizing:border-box;
  10377. width:100%;
  10378. }
  10379. #u50554_text {
  10380. border-width:0px;
  10381. white-space:nowrap;
  10382. text-transform:none;
  10383. }
  10384. #u50555_img {
  10385. border-width:0px;
  10386. position:absolute;
  10387. left:0px;
  10388. top:0px;
  10389. width:11px;
  10390. height:17px;
  10391. }
  10392. #u50555 {
  10393. border-width:0px;
  10394. position:absolute;
  10395. left:1802px;
  10396. top:271px;
  10397. width:11px;
  10398. height:17px;
  10399. display:flex;
  10400. }
  10401. #u50555 .text {
  10402. position:absolute;
  10403. align-self:center;
  10404. padding:2px 2px 2px 2px;
  10405. box-sizing:border-box;
  10406. width:100%;
  10407. }
  10408. #u50555_text {
  10409. border-width:0px;
  10410. word-wrap:break-word;
  10411. text-transform:none;
  10412. visibility:hidden;
  10413. }
  10414. #u50556_div {
  10415. border-width:0px;
  10416. position:absolute;
  10417. left:0px;
  10418. top:0px;
  10419. width:191px;
  10420. height:6px;
  10421. background:inherit;
  10422. background-color:rgba(255, 255, 255, 1);
  10423. box-sizing:border-box;
  10424. border-width:1px;
  10425. border-style:solid;
  10426. border-color:rgba(228, 228, 228, 1);
  10427. border-radius:7px;
  10428. -moz-box-shadow:none;
  10429. -webkit-box-shadow:none;
  10430. box-shadow:none;
  10431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10432. font-weight:400;
  10433. font-style:normal;
  10434. font-size:12px;
  10435. color:#FFFFFF;
  10436. }
  10437. #u50556 {
  10438. border-width:0px;
  10439. position:absolute;
  10440. left:1658px;
  10441. top:268px;
  10442. width:191px;
  10443. height:6px;
  10444. display:flex;
  10445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10446. font-weight:400;
  10447. font-style:normal;
  10448. font-size:12px;
  10449. color:#FFFFFF;
  10450. }
  10451. #u50556 .text {
  10452. position:absolute;
  10453. align-self:center;
  10454. padding:8px 15px 8px 15px;
  10455. box-sizing:border-box;
  10456. width:100%;
  10457. }
  10458. #u50556_text {
  10459. border-width:0px;
  10460. word-wrap:break-word;
  10461. text-transform:none;
  10462. visibility:hidden;
  10463. }
  10464. #u50557_div {
  10465. border-width:0px;
  10466. position:absolute;
  10467. left:0px;
  10468. top:0px;
  10469. width:140px;
  10470. height:6px;
  10471. background:inherit;
  10472. background-color:rgba(51, 153, 255, 1);
  10473. box-sizing:border-box;
  10474. border-width:1px;
  10475. border-style:solid;
  10476. border-color:rgba(228, 228, 228, 1);
  10477. border-radius:7px;
  10478. -moz-box-shadow:none;
  10479. -webkit-box-shadow:none;
  10480. box-shadow:none;
  10481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10482. font-weight:400;
  10483. font-style:normal;
  10484. font-size:12px;
  10485. color:#FFFFFF;
  10486. }
  10487. #u50557 {
  10488. border-width:0px;
  10489. position:absolute;
  10490. left:1658px;
  10491. top:268px;
  10492. width:140px;
  10493. height:6px;
  10494. display:flex;
  10495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10496. font-weight:400;
  10497. font-style:normal;
  10498. font-size:12px;
  10499. color:#FFFFFF;
  10500. }
  10501. #u50557 .text {
  10502. position:absolute;
  10503. align-self:center;
  10504. padding:8px 15px 8px 15px;
  10505. box-sizing:border-box;
  10506. width:100%;
  10507. }
  10508. #u50557_text {
  10509. border-width:0px;
  10510. word-wrap:break-word;
  10511. text-transform:none;
  10512. visibility:hidden;
  10513. }
  10514. #u50558_img {
  10515. border-width:0px;
  10516. position:absolute;
  10517. left:-3px;
  10518. top:-3px;
  10519. width:20px;
  10520. height:20px;
  10521. }
  10522. #u50558 {
  10523. border-width:0px;
  10524. position:absolute;
  10525. left:1787px;
  10526. top:264px;
  10527. width:14px;
  10528. height:14px;
  10529. display:flex;
  10530. }
  10531. #u50558 .text {
  10532. position:absolute;
  10533. align-self:center;
  10534. padding:2px 2px 2px 2px;
  10535. box-sizing:border-box;
  10536. width:100%;
  10537. }
  10538. #u50558_text {
  10539. border-width:0px;
  10540. word-wrap:break-word;
  10541. text-transform:none;
  10542. visibility:hidden;
  10543. }
  10544. #u50559 {
  10545. border-width:0px;
  10546. position:absolute;
  10547. left:1665px;
  10548. top:410px;
  10549. width:127px;
  10550. height:240px;
  10551. }
  10552. #u50559_children {
  10553. border-width:0px;
  10554. position:absolute;
  10555. left:0px;
  10556. top:0px;
  10557. width:0px;
  10558. height:0px;
  10559. }
  10560. #u50560 {
  10561. border-width:0px;
  10562. position:absolute;
  10563. left:0px;
  10564. top:0px;
  10565. width:80px;
  10566. height:20px;
  10567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10568. font-weight:400;
  10569. font-style:normal;
  10570. }
  10571. #u50561_img {
  10572. border-width:0px;
  10573. position:absolute;
  10574. left:0px;
  10575. top:0px;
  10576. width:9px;
  10577. height:9px;
  10578. }
  10579. #u50561 {
  10580. border-width:0px;
  10581. position:absolute;
  10582. left:6px;
  10583. top:6px;
  10584. width:9px;
  10585. height:9px;
  10586. display:flex;
  10587. }
  10588. #u50561 .text {
  10589. position:absolute;
  10590. align-self:center;
  10591. padding:2px 2px 2px 2px;
  10592. box-sizing:border-box;
  10593. width:100%;
  10594. }
  10595. #u50561_img.selected {
  10596. }
  10597. #u50561.selected {
  10598. }
  10599. #u50561_text {
  10600. border-width:0px;
  10601. word-wrap:break-word;
  10602. text-transform:none;
  10603. visibility:hidden;
  10604. }
  10605. #u50562_div {
  10606. border-width:0px;
  10607. position:absolute;
  10608. left:0px;
  10609. top:0px;
  10610. width:58px;
  10611. height:20px;
  10612. background:inherit;
  10613. background-color:rgba(255, 255, 255, 0);
  10614. border:none;
  10615. border-radius:0px;
  10616. -moz-box-shadow:none;
  10617. -webkit-box-shadow:none;
  10618. box-shadow:none;
  10619. }
  10620. #u50562 {
  10621. border-width:0px;
  10622. position:absolute;
  10623. left:22px;
  10624. top:0px;
  10625. width:58px;
  10626. height:20px;
  10627. display:flex;
  10628. }
  10629. #u50562 .text {
  10630. position:absolute;
  10631. align-self:center;
  10632. padding:2px 2px 2px 3px;
  10633. box-sizing:border-box;
  10634. width:100%;
  10635. }
  10636. #u50562_text {
  10637. border-width:0px;
  10638. white-space:nowrap;
  10639. text-transform:none;
  10640. }
  10641. #u50560_children {
  10642. border-width:0px;
  10643. position:absolute;
  10644. left:0px;
  10645. top:0px;
  10646. width:0px;
  10647. height:0px;
  10648. }
  10649. #u50563 {
  10650. border-width:0px;
  10651. position:absolute;
  10652. left:20px;
  10653. top:20px;
  10654. width:87px;
  10655. height:20px;
  10656. }
  10657. #u50564_img {
  10658. border-width:0px;
  10659. position:absolute;
  10660. left:0px;
  10661. top:0px;
  10662. width:9px;
  10663. height:9px;
  10664. }
  10665. #u50564 {
  10666. border-width:0px;
  10667. position:absolute;
  10668. left:6px;
  10669. top:6px;
  10670. width:9px;
  10671. height:9px;
  10672. display:flex;
  10673. }
  10674. #u50564 .text {
  10675. position:absolute;
  10676. align-self:center;
  10677. padding:2px 2px 2px 2px;
  10678. box-sizing:border-box;
  10679. width:100%;
  10680. }
  10681. #u50564_img.selected {
  10682. }
  10683. #u50564.selected {
  10684. }
  10685. #u50564_text {
  10686. border-width:0px;
  10687. word-wrap:break-word;
  10688. text-transform:none;
  10689. visibility:hidden;
  10690. }
  10691. #u50565_div {
  10692. border-width:0px;
  10693. position:absolute;
  10694. left:0px;
  10695. top:0px;
  10696. width:65px;
  10697. height:20px;
  10698. background:inherit;
  10699. background-color:rgba(255, 255, 255, 0);
  10700. border:none;
  10701. border-radius:0px;
  10702. -moz-box-shadow:none;
  10703. -webkit-box-shadow:none;
  10704. box-shadow:none;
  10705. }
  10706. #u50565 {
  10707. border-width:0px;
  10708. position:absolute;
  10709. left:22px;
  10710. top:0px;
  10711. width:65px;
  10712. height:20px;
  10713. display:flex;
  10714. }
  10715. #u50565 .text {
  10716. position:absolute;
  10717. align-self:center;
  10718. padding:2px 2px 2px 3px;
  10719. box-sizing:border-box;
  10720. width:100%;
  10721. }
  10722. #u50565_text {
  10723. border-width:0px;
  10724. white-space:nowrap;
  10725. text-transform:none;
  10726. }
  10727. #u50563_children {
  10728. border-width:0px;
  10729. position:absolute;
  10730. left:0px;
  10731. top:0px;
  10732. width:0px;
  10733. height:0px;
  10734. }
  10735. #u50566 {
  10736. border-width:0px;
  10737. position:absolute;
  10738. left:20px;
  10739. top:20px;
  10740. width:87px;
  10741. height:20px;
  10742. }
  10743. #u50567_div {
  10744. border-width:0px;
  10745. position:absolute;
  10746. left:0px;
  10747. top:0px;
  10748. width:65px;
  10749. height:20px;
  10750. background:inherit;
  10751. background-color:rgba(255, 255, 255, 0);
  10752. border:none;
  10753. border-radius:0px;
  10754. -moz-box-shadow:none;
  10755. -webkit-box-shadow:none;
  10756. box-shadow:none;
  10757. }
  10758. #u50567 {
  10759. border-width:0px;
  10760. position:absolute;
  10761. left:22px;
  10762. top:0px;
  10763. width:65px;
  10764. height:20px;
  10765. display:flex;
  10766. }
  10767. #u50567 .text {
  10768. position:absolute;
  10769. align-self:center;
  10770. padding:2px 2px 2px 3px;
  10771. box-sizing:border-box;
  10772. width:100%;
  10773. }
  10774. #u50567_text {
  10775. border-width:0px;
  10776. white-space:nowrap;
  10777. text-transform:none;
  10778. }
  10779. #u50568 {
  10780. border-width:0px;
  10781. position:absolute;
  10782. left:20px;
  10783. top:40px;
  10784. width:87px;
  10785. height:20px;
  10786. }
  10787. #u50569_div {
  10788. border-width:0px;
  10789. position:absolute;
  10790. left:0px;
  10791. top:0px;
  10792. width:65px;
  10793. height:20px;
  10794. background:inherit;
  10795. background-color:rgba(255, 255, 255, 0);
  10796. border:none;
  10797. border-radius:0px;
  10798. -moz-box-shadow:none;
  10799. -webkit-box-shadow:none;
  10800. box-shadow:none;
  10801. }
  10802. #u50569 {
  10803. border-width:0px;
  10804. position:absolute;
  10805. left:22px;
  10806. top:0px;
  10807. width:65px;
  10808. height:20px;
  10809. display:flex;
  10810. }
  10811. #u50569 .text {
  10812. position:absolute;
  10813. align-self:center;
  10814. padding:2px 2px 2px 3px;
  10815. box-sizing:border-box;
  10816. width:100%;
  10817. }
  10818. #u50569_text {
  10819. border-width:0px;
  10820. white-space:nowrap;
  10821. text-transform:none;
  10822. }
  10823. #u50570 {
  10824. border-width:0px;
  10825. position:absolute;
  10826. left:20px;
  10827. top:60px;
  10828. width:54px;
  10829. height:20px;
  10830. }
  10831. #u50571_div {
  10832. border-width:0px;
  10833. position:absolute;
  10834. left:0px;
  10835. top:0px;
  10836. width:32px;
  10837. height:20px;
  10838. background:inherit;
  10839. background-color:rgba(255, 255, 255, 0);
  10840. border:none;
  10841. border-radius:0px;
  10842. -moz-box-shadow:none;
  10843. -webkit-box-shadow:none;
  10844. box-shadow:none;
  10845. }
  10846. #u50571 {
  10847. border-width:0px;
  10848. position:absolute;
  10849. left:22px;
  10850. top:0px;
  10851. width:32px;
  10852. height:20px;
  10853. display:flex;
  10854. }
  10855. #u50571 .text {
  10856. position:absolute;
  10857. align-self:center;
  10858. padding:2px 2px 2px 3px;
  10859. box-sizing:border-box;
  10860. width:100%;
  10861. }
  10862. #u50571_text {
  10863. border-width:0px;
  10864. white-space:nowrap;
  10865. text-transform:none;
  10866. }
  10867. #u50572 {
  10868. border-width:0px;
  10869. position:absolute;
  10870. left:20px;
  10871. top:100px;
  10872. width:87px;
  10873. height:20px;
  10874. }
  10875. #u50573_img {
  10876. border-width:0px;
  10877. position:absolute;
  10878. left:0px;
  10879. top:0px;
  10880. width:9px;
  10881. height:9px;
  10882. }
  10883. #u50573 {
  10884. border-width:0px;
  10885. position:absolute;
  10886. left:6px;
  10887. top:6px;
  10888. width:9px;
  10889. height:9px;
  10890. display:flex;
  10891. }
  10892. #u50573 .text {
  10893. position:absolute;
  10894. align-self:center;
  10895. padding:2px 2px 2px 2px;
  10896. box-sizing:border-box;
  10897. width:100%;
  10898. }
  10899. #u50573_img.selected {
  10900. }
  10901. #u50573.selected {
  10902. }
  10903. #u50573_text {
  10904. border-width:0px;
  10905. word-wrap:break-word;
  10906. text-transform:none;
  10907. visibility:hidden;
  10908. }
  10909. #u50574_div {
  10910. border-width:0px;
  10911. position:absolute;
  10912. left:0px;
  10913. top:0px;
  10914. width:65px;
  10915. height:20px;
  10916. background:inherit;
  10917. background-color:rgba(255, 255, 255, 0);
  10918. border:none;
  10919. border-radius:0px;
  10920. -moz-box-shadow:none;
  10921. -webkit-box-shadow:none;
  10922. box-shadow:none;
  10923. }
  10924. #u50574 {
  10925. border-width:0px;
  10926. position:absolute;
  10927. left:22px;
  10928. top:0px;
  10929. width:65px;
  10930. height:20px;
  10931. display:flex;
  10932. }
  10933. #u50574 .text {
  10934. position:absolute;
  10935. align-self:center;
  10936. padding:2px 2px 2px 3px;
  10937. box-sizing:border-box;
  10938. width:100%;
  10939. }
  10940. #u50574_text {
  10941. border-width:0px;
  10942. white-space:nowrap;
  10943. text-transform:none;
  10944. }
  10945. #u50572_children {
  10946. border-width:0px;
  10947. position:absolute;
  10948. left:0px;
  10949. top:0px;
  10950. width:0px;
  10951. height:0px;
  10952. }
  10953. #u50575 {
  10954. border-width:0px;
  10955. position:absolute;
  10956. left:20px;
  10957. top:20px;
  10958. width:87px;
  10959. height:20px;
  10960. }
  10961. #u50576_div {
  10962. border-width:0px;
  10963. position:absolute;
  10964. left:0px;
  10965. top:0px;
  10966. width:65px;
  10967. height:20px;
  10968. background:inherit;
  10969. background-color:rgba(255, 255, 255, 0);
  10970. border:none;
  10971. border-radius:0px;
  10972. -moz-box-shadow:none;
  10973. -webkit-box-shadow:none;
  10974. box-shadow:none;
  10975. }
  10976. #u50576 {
  10977. border-width:0px;
  10978. position:absolute;
  10979. left:22px;
  10980. top:0px;
  10981. width:65px;
  10982. height:20px;
  10983. display:flex;
  10984. }
  10985. #u50576 .text {
  10986. position:absolute;
  10987. align-self:center;
  10988. padding:2px 2px 2px 3px;
  10989. box-sizing:border-box;
  10990. width:100%;
  10991. }
  10992. #u50576_text {
  10993. border-width:0px;
  10994. white-space:nowrap;
  10995. text-transform:none;
  10996. }
  10997. #u50577 {
  10998. border-width:0px;
  10999. position:absolute;
  11000. left:20px;
  11001. top:40px;
  11002. width:87px;
  11003. height:20px;
  11004. }
  11005. #u50578_div {
  11006. border-width:0px;
  11007. position:absolute;
  11008. left:0px;
  11009. top:0px;
  11010. width:65px;
  11011. height:20px;
  11012. background:inherit;
  11013. background-color:rgba(255, 255, 255, 0);
  11014. border:none;
  11015. border-radius:0px;
  11016. -moz-box-shadow:none;
  11017. -webkit-box-shadow:none;
  11018. box-shadow:none;
  11019. }
  11020. #u50578 {
  11021. border-width:0px;
  11022. position:absolute;
  11023. left:22px;
  11024. top:0px;
  11025. width:65px;
  11026. height:20px;
  11027. display:flex;
  11028. }
  11029. #u50578 .text {
  11030. position:absolute;
  11031. align-self:center;
  11032. padding:2px 2px 2px 3px;
  11033. box-sizing:border-box;
  11034. width:100%;
  11035. }
  11036. #u50578_text {
  11037. border-width:0px;
  11038. white-space:nowrap;
  11039. text-transform:none;
  11040. }
  11041. #u50579 {
  11042. border-width:0px;
  11043. position:absolute;
  11044. left:20px;
  11045. top:60px;
  11046. width:54px;
  11047. height:20px;
  11048. }
  11049. #u50580_div {
  11050. border-width:0px;
  11051. position:absolute;
  11052. left:0px;
  11053. top:0px;
  11054. width:32px;
  11055. height:20px;
  11056. background:inherit;
  11057. background-color:rgba(255, 255, 255, 0);
  11058. border:none;
  11059. border-radius:0px;
  11060. -moz-box-shadow:none;
  11061. -webkit-box-shadow:none;
  11062. box-shadow:none;
  11063. }
  11064. #u50580 {
  11065. border-width:0px;
  11066. position:absolute;
  11067. left:22px;
  11068. top:0px;
  11069. width:32px;
  11070. height:20px;
  11071. display:flex;
  11072. }
  11073. #u50580 .text {
  11074. position:absolute;
  11075. align-self:center;
  11076. padding:2px 2px 2px 3px;
  11077. box-sizing:border-box;
  11078. width:100%;
  11079. }
  11080. #u50580_text {
  11081. border-width:0px;
  11082. white-space:nowrap;
  11083. text-transform:none;
  11084. }
  11085. #u50581 {
  11086. border-width:0px;
  11087. position:absolute;
  11088. left:20px;
  11089. top:180px;
  11090. width:87px;
  11091. height:20px;
  11092. }
  11093. #u50582_img {
  11094. border-width:0px;
  11095. position:absolute;
  11096. left:0px;
  11097. top:0px;
  11098. width:9px;
  11099. height:9px;
  11100. }
  11101. #u50582 {
  11102. border-width:0px;
  11103. position:absolute;
  11104. left:6px;
  11105. top:6px;
  11106. width:9px;
  11107. height:9px;
  11108. display:flex;
  11109. }
  11110. #u50582 .text {
  11111. position:absolute;
  11112. align-self:center;
  11113. padding:2px 2px 2px 2px;
  11114. box-sizing:border-box;
  11115. width:100%;
  11116. }
  11117. #u50582_img.selected {
  11118. }
  11119. #u50582.selected {
  11120. }
  11121. #u50582_text {
  11122. border-width:0px;
  11123. word-wrap:break-word;
  11124. text-transform:none;
  11125. visibility:hidden;
  11126. }
  11127. #u50583_div {
  11128. border-width:0px;
  11129. position:absolute;
  11130. left:0px;
  11131. top:0px;
  11132. width:65px;
  11133. height:20px;
  11134. background:inherit;
  11135. background-color:rgba(255, 255, 255, 0);
  11136. border:none;
  11137. border-radius:0px;
  11138. -moz-box-shadow:none;
  11139. -webkit-box-shadow:none;
  11140. box-shadow:none;
  11141. }
  11142. #u50583 {
  11143. border-width:0px;
  11144. position:absolute;
  11145. left:22px;
  11146. top:0px;
  11147. width:65px;
  11148. height:20px;
  11149. display:flex;
  11150. }
  11151. #u50583 .text {
  11152. position:absolute;
  11153. align-self:center;
  11154. padding:2px 2px 2px 3px;
  11155. box-sizing:border-box;
  11156. width:100%;
  11157. }
  11158. #u50583_text {
  11159. border-width:0px;
  11160. white-space:nowrap;
  11161. text-transform:none;
  11162. }
  11163. #u50581_children {
  11164. border-width:0px;
  11165. position:absolute;
  11166. left:0px;
  11167. top:0px;
  11168. width:0px;
  11169. height:0px;
  11170. }
  11171. #u50584 {
  11172. border-width:0px;
  11173. position:absolute;
  11174. left:20px;
  11175. top:20px;
  11176. width:87px;
  11177. height:20px;
  11178. }
  11179. #u50585_div {
  11180. border-width:0px;
  11181. position:absolute;
  11182. left:0px;
  11183. top:0px;
  11184. width:65px;
  11185. height:20px;
  11186. background:inherit;
  11187. background-color:rgba(255, 255, 255, 0);
  11188. border:none;
  11189. border-radius:0px;
  11190. -moz-box-shadow:none;
  11191. -webkit-box-shadow:none;
  11192. box-shadow:none;
  11193. }
  11194. #u50585 {
  11195. border-width:0px;
  11196. position:absolute;
  11197. left:22px;
  11198. top:0px;
  11199. width:65px;
  11200. height:20px;
  11201. display:flex;
  11202. }
  11203. #u50585 .text {
  11204. position:absolute;
  11205. align-self:center;
  11206. padding:2px 2px 2px 3px;
  11207. box-sizing:border-box;
  11208. width:100%;
  11209. }
  11210. #u50585_text {
  11211. border-width:0px;
  11212. white-space:nowrap;
  11213. text-transform:none;
  11214. }
  11215. #u50586 {
  11216. border-width:0px;
  11217. position:absolute;
  11218. left:20px;
  11219. top:40px;
  11220. width:54px;
  11221. height:20px;
  11222. }
  11223. #u50587_div {
  11224. border-width:0px;
  11225. position:absolute;
  11226. left:0px;
  11227. top:0px;
  11228. width:32px;
  11229. height:20px;
  11230. background:inherit;
  11231. background-color:rgba(255, 255, 255, 0);
  11232. border:none;
  11233. border-radius:0px;
  11234. -moz-box-shadow:none;
  11235. -webkit-box-shadow:none;
  11236. box-shadow:none;
  11237. }
  11238. #u50587 {
  11239. border-width:0px;
  11240. position:absolute;
  11241. left:22px;
  11242. top:0px;
  11243. width:32px;
  11244. height:20px;
  11245. display:flex;
  11246. }
  11247. #u50587 .text {
  11248. position:absolute;
  11249. align-self:center;
  11250. padding:2px 2px 2px 3px;
  11251. box-sizing:border-box;
  11252. width:100%;
  11253. }
  11254. #u50587_text {
  11255. border-width:0px;
  11256. white-space:nowrap;
  11257. text-transform:none;
  11258. }
  11259. #u50588 {
  11260. border-width:0px;
  11261. position:absolute;
  11262. left:0px;
  11263. top:0px;
  11264. width:0px;
  11265. height:0px;
  11266. }
  11267. #u50589_div {
  11268. border-width:0px;
  11269. position:absolute;
  11270. left:0px;
  11271. top:0px;
  11272. width:175px;
  11273. height:30px;
  11274. background:inherit;
  11275. background-color:rgba(255, 255, 255, 1);
  11276. box-sizing:border-box;
  11277. border-width:1px;
  11278. border-style:solid;
  11279. border-color:rgba(201, 201, 201, 1);
  11280. border-radius:4px;
  11281. -moz-box-shadow:none;
  11282. -webkit-box-shadow:none;
  11283. box-shadow:none;
  11284. font-family:'Microsoft YaHei', sans-serif;
  11285. font-weight:400;
  11286. font-style:normal;
  11287. font-size:14px;
  11288. color:#CCCCCC;
  11289. text-align:left;
  11290. }
  11291. #u50589 {
  11292. border-width:0px;
  11293. position:absolute;
  11294. left:1666px;
  11295. top:333px;
  11296. width:175px;
  11297. height:30px;
  11298. display:flex;
  11299. font-family:'Microsoft YaHei', sans-serif;
  11300. font-weight:400;
  11301. font-style:normal;
  11302. font-size:14px;
  11303. color:#CCCCCC;
  11304. text-align:left;
  11305. }
  11306. #u50589 .text {
  11307. position:absolute;
  11308. align-self:center;
  11309. padding:2px 8px 2px 8px;
  11310. box-sizing:border-box;
  11311. width:100%;
  11312. }
  11313. #u50589_text {
  11314. border-width:0px;
  11315. word-wrap:break-word;
  11316. text-transform:none;
  11317. visibility:hidden;
  11318. }
  11319. #u50590_input {
  11320. position:absolute;
  11321. left:0px;
  11322. top:0px;
  11323. width:159px;
  11324. height:25px;
  11325. padding:2px 2px 2px 2px;
  11326. font-family:'Microsoft YaHei', sans-serif;
  11327. font-weight:400;
  11328. font-style:normal;
  11329. font-size:10px;
  11330. letter-spacing:normal;
  11331. color:#000000;
  11332. vertical-align:none;
  11333. text-align:left;
  11334. text-transform:none;
  11335. background-color:transparent;
  11336. border-color:transparent;
  11337. }
  11338. #u50590_input.disabled {
  11339. position:absolute;
  11340. left:0px;
  11341. top:0px;
  11342. width:159px;
  11343. height:25px;
  11344. padding:2px 2px 2px 2px;
  11345. font-family:'Microsoft YaHei', sans-serif;
  11346. font-weight:400;
  11347. font-style:normal;
  11348. font-size:10px;
  11349. letter-spacing:normal;
  11350. color:#000000;
  11351. vertical-align:none;
  11352. text-align:left;
  11353. text-transform:none;
  11354. background-color:transparent;
  11355. border-color:transparent;
  11356. }
  11357. #u50590_div {
  11358. border-width:0px;
  11359. position:absolute;
  11360. left:0px;
  11361. top:0px;
  11362. width:159px;
  11363. height:25px;
  11364. background:inherit;
  11365. background-color:rgba(255, 255, 255, 1);
  11366. border:none;
  11367. border-radius:0px;
  11368. -moz-box-shadow:none;
  11369. -webkit-box-shadow:none;
  11370. box-shadow:none;
  11371. font-family:'Microsoft YaHei', sans-serif;
  11372. font-weight:400;
  11373. font-style:normal;
  11374. font-size:10px;
  11375. }
  11376. #u50590 {
  11377. border-width:0px;
  11378. position:absolute;
  11379. left:1676px;
  11380. top:334px;
  11381. width:159px;
  11382. height:25px;
  11383. display:flex;
  11384. font-family:'Microsoft YaHei', sans-serif;
  11385. font-weight:400;
  11386. font-style:normal;
  11387. font-size:10px;
  11388. }
  11389. #u50590 .text {
  11390. position:absolute;
  11391. align-self:center;
  11392. padding:2px 2px 2px 2px;
  11393. box-sizing:border-box;
  11394. width:100%;
  11395. }
  11396. #u50590_div.disabled {
  11397. border-width:0px;
  11398. position:absolute;
  11399. left:0px;
  11400. top:0px;
  11401. width:159px;
  11402. height:25px;
  11403. background:inherit;
  11404. background-color:rgba(240, 240, 240, 1);
  11405. border:none;
  11406. border-radius:0px;
  11407. -moz-box-shadow:none;
  11408. -webkit-box-shadow:none;
  11409. box-shadow:none;
  11410. font-family:'Microsoft YaHei', sans-serif;
  11411. font-weight:400;
  11412. font-style:normal;
  11413. font-size:10px;
  11414. }
  11415. #u50590.disabled {
  11416. }
  11417. #u50591_div {
  11418. border-width:0px;
  11419. position:absolute;
  11420. left:0px;
  11421. top:0px;
  11422. width:25px;
  11423. height:30px;
  11424. background:inherit;
  11425. background-color:rgba(255, 255, 255, 0);
  11426. border:none;
  11427. border-radius:0px;
  11428. -moz-box-shadow:none;
  11429. -webkit-box-shadow:none;
  11430. box-shadow:none;
  11431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11432. font-weight:400;
  11433. font-style:normal;
  11434. font-size:12px;
  11435. color:#3399FF;
  11436. line-height:30px;
  11437. }
  11438. #u50591 {
  11439. border-width:0px;
  11440. position:absolute;
  11441. left:1666px;
  11442. top:372px;
  11443. width:25px;
  11444. height:30px;
  11445. display:flex;
  11446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11447. font-weight:400;
  11448. font-style:normal;
  11449. font-size:12px;
  11450. color:#3399FF;
  11451. line-height:30px;
  11452. }
  11453. #u50591 .text {
  11454. position:absolute;
  11455. align-self:flex-start;
  11456. padding:0px 0px 0px 0px;
  11457. box-sizing:border-box;
  11458. width:100%;
  11459. }
  11460. #u50591_text {
  11461. border-width:0px;
  11462. white-space:nowrap;
  11463. text-transform:none;
  11464. }
  11465. #u50592_div {
  11466. border-width:0px;
  11467. position:absolute;
  11468. left:0px;
  11469. top:0px;
  11470. width:25px;
  11471. height:30px;
  11472. background:inherit;
  11473. background-color:rgba(255, 255, 255, 0);
  11474. border:none;
  11475. border-radius:0px;
  11476. -moz-box-shadow:none;
  11477. -webkit-box-shadow:none;
  11478. box-shadow:none;
  11479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11480. font-weight:400;
  11481. font-style:normal;
  11482. font-size:12px;
  11483. color:#7F7F7F;
  11484. line-height:30px;
  11485. }
  11486. #u50592 {
  11487. border-width:0px;
  11488. position:absolute;
  11489. left:1703px;
  11490. top:372px;
  11491. width:25px;
  11492. height:30px;
  11493. display:flex;
  11494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11495. font-weight:400;
  11496. font-style:normal;
  11497. font-size:12px;
  11498. color:#7F7F7F;
  11499. line-height:30px;
  11500. }
  11501. #u50592 .text {
  11502. position:absolute;
  11503. align-self:flex-start;
  11504. padding:0px 0px 0px 0px;
  11505. box-sizing:border-box;
  11506. width:100%;
  11507. }
  11508. #u50592_text {
  11509. border-width:0px;
  11510. white-space:nowrap;
  11511. text-transform:none;
  11512. }
  11513. #u50593_div {
  11514. border-width:0px;
  11515. position:absolute;
  11516. left:0px;
  11517. top:0px;
  11518. width:25px;
  11519. height:30px;
  11520. background:inherit;
  11521. background-color:rgba(255, 255, 255, 0);
  11522. border:none;
  11523. border-radius:0px;
  11524. -moz-box-shadow:none;
  11525. -webkit-box-shadow:none;
  11526. box-shadow:none;
  11527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11528. font-weight:400;
  11529. font-style:normal;
  11530. font-size:12px;
  11531. color:#7F7F7F;
  11532. line-height:30px;
  11533. }
  11534. #u50593 {
  11535. border-width:0px;
  11536. position:absolute;
  11537. left:1739px;
  11538. top:372px;
  11539. width:25px;
  11540. height:30px;
  11541. display:flex;
  11542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11543. font-weight:400;
  11544. font-style:normal;
  11545. font-size:12px;
  11546. color:#7F7F7F;
  11547. line-height:30px;
  11548. }
  11549. #u50593 .text {
  11550. position:absolute;
  11551. align-self:flex-start;
  11552. padding:0px 0px 0px 0px;
  11553. box-sizing:border-box;
  11554. width:100%;
  11555. }
  11556. #u50593_text {
  11557. border-width:0px;
  11558. white-space:nowrap;
  11559. text-transform:none;
  11560. }
  11561. #u50594_div {
  11562. border-width:0px;
  11563. position:absolute;
  11564. left:0px;
  11565. top:0px;
  11566. width:25px;
  11567. height:30px;
  11568. background:inherit;
  11569. background-color:rgba(255, 255, 255, 0);
  11570. border:none;
  11571. border-radius:0px;
  11572. -moz-box-shadow:none;
  11573. -webkit-box-shadow:none;
  11574. box-shadow:none;
  11575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11576. font-weight:400;
  11577. font-style:normal;
  11578. font-size:12px;
  11579. color:#7F7F7F;
  11580. line-height:30px;
  11581. }
  11582. #u50594 {
  11583. border-width:0px;
  11584. position:absolute;
  11585. left:1776px;
  11586. top:372px;
  11587. width:25px;
  11588. height:30px;
  11589. display:flex;
  11590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11591. font-weight:400;
  11592. font-style:normal;
  11593. font-size:12px;
  11594. color:#7F7F7F;
  11595. line-height:30px;
  11596. }
  11597. #u50594 .text {
  11598. position:absolute;
  11599. align-self:flex-start;
  11600. padding:0px 0px 0px 0px;
  11601. box-sizing:border-box;
  11602. width:100%;
  11603. }
  11604. #u50594_text {
  11605. border-width:0px;
  11606. white-space:nowrap;
  11607. text-transform:none;
  11608. }
  11609. #u50595 {
  11610. border-width:0px;
  11611. position:absolute;
  11612. left:0px;
  11613. top:0px;
  11614. width:0px;
  11615. height:0px;
  11616. }
  11617. #u50596_div {
  11618. border-width:0px;
  11619. position:absolute;
  11620. left:0px;
  11621. top:0px;
  11622. width:200px;
  11623. height:1193px;
  11624. background:inherit;
  11625. background-color:rgba(255, 255, 255, 1);
  11626. border:none;
  11627. border-radius:0px;
  11628. -moz-box-shadow:none;
  11629. -webkit-box-shadow:none;
  11630. box-shadow:none;
  11631. }
  11632. #u50596 {
  11633. border-width:0px;
  11634. position:absolute;
  11635. left:120px;
  11636. top:50px;
  11637. width:200px;
  11638. height:1193px;
  11639. display:flex;
  11640. }
  11641. #u50596 .text {
  11642. position:absolute;
  11643. align-self:center;
  11644. padding:2px 2px 2px 2px;
  11645. box-sizing:border-box;
  11646. width:100%;
  11647. }
  11648. #u50596_text {
  11649. border-width:0px;
  11650. word-wrap:break-word;
  11651. text-transform:none;
  11652. visibility:hidden;
  11653. }
  11654. #u50597_div {
  11655. border-width:0px;
  11656. position:absolute;
  11657. left:0px;
  11658. top:0px;
  11659. width:200px;
  11660. height:60px;
  11661. background:inherit;
  11662. background-color:rgba(224, 231, 247, 1);
  11663. border:none;
  11664. border-radius:0px;
  11665. -moz-box-shadow:none;
  11666. -webkit-box-shadow:none;
  11667. box-shadow:none;
  11668. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11669. font-weight:500;
  11670. font-style:normal;
  11671. font-size:18px;
  11672. }
  11673. #u50597 {
  11674. border-width:0px;
  11675. position:absolute;
  11676. left:120px;
  11677. top:50px;
  11678. width:200px;
  11679. height:60px;
  11680. display:flex;
  11681. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11682. font-weight:500;
  11683. font-style:normal;
  11684. font-size:18px;
  11685. }
  11686. #u50597 .text {
  11687. position:absolute;
  11688. align-self:center;
  11689. padding:0px 0px 0px 20px;
  11690. box-sizing:border-box;
  11691. width:100%;
  11692. }
  11693. #u50597_text {
  11694. border-width:0px;
  11695. word-wrap:break-word;
  11696. text-transform:none;
  11697. }
  11698. #u50598_div {
  11699. border-width:0px;
  11700. position:absolute;
  11701. left:0px;
  11702. top:0px;
  11703. width:97px;
  11704. height:22px;
  11705. background:inherit;
  11706. background-color:rgba(255, 255, 255, 0);
  11707. border:none;
  11708. border-radius:0px;
  11709. -moz-box-shadow:none;
  11710. -webkit-box-shadow:none;
  11711. box-shadow:none;
  11712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11713. font-weight:400;
  11714. font-style:normal;
  11715. font-size:16px;
  11716. }
  11717. #u50598 {
  11718. border-width:0px;
  11719. position:absolute;
  11720. left:147px;
  11721. top:387px;
  11722. width:97px;
  11723. height:22px;
  11724. display:flex;
  11725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11726. font-weight:400;
  11727. font-style:normal;
  11728. font-size:16px;
  11729. }
  11730. #u50598 .text {
  11731. position:absolute;
  11732. align-self:flex-start;
  11733. padding:0px 0px 0px 0px;
  11734. box-sizing:border-box;
  11735. width:100%;
  11736. }
  11737. #u50598_text {
  11738. border-width:0px;
  11739. word-wrap:break-word;
  11740. text-transform:none;
  11741. }
  11742. #u50599_div {
  11743. border-width:0px;
  11744. position:absolute;
  11745. left:0px;
  11746. top:0px;
  11747. width:97px;
  11748. height:22px;
  11749. background:inherit;
  11750. background-color:rgba(255, 255, 255, 0);
  11751. border:none;
  11752. border-radius:0px;
  11753. -moz-box-shadow:none;
  11754. -webkit-box-shadow:none;
  11755. box-shadow:none;
  11756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11757. font-weight:400;
  11758. font-style:normal;
  11759. font-size:16px;
  11760. }
  11761. #u50599 {
  11762. border-width:0px;
  11763. position:absolute;
  11764. left:147px;
  11765. top:166px;
  11766. width:97px;
  11767. height:22px;
  11768. display:flex;
  11769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11770. font-weight:400;
  11771. font-style:normal;
  11772. font-size:16px;
  11773. }
  11774. #u50599 .text {
  11775. position:absolute;
  11776. align-self:flex-start;
  11777. padding:0px 0px 0px 0px;
  11778. box-sizing:border-box;
  11779. width:100%;
  11780. }
  11781. #u50599_text {
  11782. border-width:0px;
  11783. word-wrap:break-word;
  11784. text-transform:none;
  11785. }
  11786. #u50600_div {
  11787. border-width:0px;
  11788. position:absolute;
  11789. left:0px;
  11790. top:0px;
  11791. width:49px;
  11792. height:17px;
  11793. background:inherit;
  11794. background-color:rgba(255, 255, 255, 0);
  11795. border:none;
  11796. border-radius:0px;
  11797. -moz-box-shadow:none;
  11798. -webkit-box-shadow:none;
  11799. box-shadow:none;
  11800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11801. font-weight:400;
  11802. font-style:normal;
  11803. font-size:12px;
  11804. color:#AAAAAA;
  11805. }
  11806. #u50600 {
  11807. border-width:0px;
  11808. position:absolute;
  11809. left:147px;
  11810. top:130px;
  11811. width:49px;
  11812. height:17px;
  11813. display:flex;
  11814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11815. font-weight:400;
  11816. font-style:normal;
  11817. font-size:12px;
  11818. color:#AAAAAA;
  11819. }
  11820. #u50600 .text {
  11821. position:absolute;
  11822. align-self:flex-start;
  11823. padding:0px 0px 0px 0px;
  11824. box-sizing:border-box;
  11825. width:100%;
  11826. }
  11827. #u50600_text {
  11828. border-width:0px;
  11829. white-space:nowrap;
  11830. text-transform:none;
  11831. }
  11832. #u50601_div {
  11833. border-width:0px;
  11834. position:absolute;
  11835. left:0px;
  11836. top:0px;
  11837. width:97px;
  11838. height:22px;
  11839. background:inherit;
  11840. background-color:rgba(255, 255, 255, 0);
  11841. border:none;
  11842. border-radius:0px;
  11843. -moz-box-shadow:none;
  11844. -webkit-box-shadow:none;
  11845. box-shadow:none;
  11846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11847. font-weight:400;
  11848. font-style:normal;
  11849. font-size:16px;
  11850. }
  11851. #u50601 {
  11852. border-width:0px;
  11853. position:absolute;
  11854. left:147px;
  11855. top:208px;
  11856. width:97px;
  11857. height:22px;
  11858. display:flex;
  11859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11860. font-weight:400;
  11861. font-style:normal;
  11862. font-size:16px;
  11863. }
  11864. #u50601 .text {
  11865. position:absolute;
  11866. align-self:flex-start;
  11867. padding:0px 0px 0px 0px;
  11868. box-sizing:border-box;
  11869. width:100%;
  11870. }
  11871. #u50601_text {
  11872. border-width:0px;
  11873. word-wrap:break-word;
  11874. text-transform:none;
  11875. }
  11876. #u50602_img {
  11877. border-width:0px;
  11878. position:absolute;
  11879. left:0px;
  11880. top:0px;
  11881. width:201px;
  11882. height:2px;
  11883. }
  11884. #u50602 {
  11885. border-width:0px;
  11886. position:absolute;
  11887. left:120px;
  11888. top:246px;
  11889. width:200px;
  11890. height:1px;
  11891. display:flex;
  11892. }
  11893. #u50602 .text {
  11894. position:absolute;
  11895. align-self:center;
  11896. padding:2px 2px 2px 2px;
  11897. box-sizing:border-box;
  11898. width:100%;
  11899. }
  11900. #u50602_text {
  11901. border-width:0px;
  11902. word-wrap:break-word;
  11903. text-transform:none;
  11904. visibility:hidden;
  11905. }
  11906. #u50603_div {
  11907. border-width:0px;
  11908. position:absolute;
  11909. left:0px;
  11910. top:0px;
  11911. width:97px;
  11912. height:22px;
  11913. background:inherit;
  11914. background-color:rgba(255, 255, 255, 0);
  11915. border:none;
  11916. border-radius:0px;
  11917. -moz-box-shadow:none;
  11918. -webkit-box-shadow:none;
  11919. box-shadow:none;
  11920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11921. font-weight:400;
  11922. font-style:normal;
  11923. font-size:16px;
  11924. }
  11925. #u50603 {
  11926. border-width:0px;
  11927. position:absolute;
  11928. left:147px;
  11929. top:569px;
  11930. width:97px;
  11931. height:22px;
  11932. display:flex;
  11933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11934. font-weight:400;
  11935. font-style:normal;
  11936. font-size:16px;
  11937. }
  11938. #u50603 .text {
  11939. position:absolute;
  11940. align-self:flex-start;
  11941. padding:0px 0px 0px 0px;
  11942. box-sizing:border-box;
  11943. width:100%;
  11944. }
  11945. #u50603_text {
  11946. border-width:0px;
  11947. word-wrap:break-word;
  11948. text-transform:none;
  11949. }
  11950. #u50604_div {
  11951. border-width:0px;
  11952. position:absolute;
  11953. left:0px;
  11954. top:0px;
  11955. width:49px;
  11956. height:17px;
  11957. background:inherit;
  11958. background-color:rgba(255, 255, 255, 0);
  11959. border:none;
  11960. border-radius:0px;
  11961. -moz-box-shadow:none;
  11962. -webkit-box-shadow:none;
  11963. box-shadow:none;
  11964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11965. font-weight:400;
  11966. font-style:normal;
  11967. font-size:12px;
  11968. color:#AAAAAA;
  11969. }
  11970. #u50604 {
  11971. border-width:0px;
  11972. position:absolute;
  11973. left:147px;
  11974. top:533px;
  11975. width:49px;
  11976. height:17px;
  11977. display:flex;
  11978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11979. font-weight:400;
  11980. font-style:normal;
  11981. font-size:12px;
  11982. color:#AAAAAA;
  11983. }
  11984. #u50604 .text {
  11985. position:absolute;
  11986. align-self:flex-start;
  11987. padding:0px 0px 0px 0px;
  11988. box-sizing:border-box;
  11989. width:100%;
  11990. }
  11991. #u50604_text {
  11992. border-width:0px;
  11993. white-space:nowrap;
  11994. text-transform:none;
  11995. }
  11996. #u50605_div {
  11997. border-width:0px;
  11998. position:absolute;
  11999. left:0px;
  12000. top:0px;
  12001. width:97px;
  12002. height:22px;
  12003. background:inherit;
  12004. background-color:rgba(255, 255, 255, 0);
  12005. border:none;
  12006. border-radius:0px;
  12007. -moz-box-shadow:none;
  12008. -webkit-box-shadow:none;
  12009. box-shadow:none;
  12010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12011. font-weight:400;
  12012. font-style:normal;
  12013. font-size:16px;
  12014. }
  12015. #u50605 {
  12016. border-width:0px;
  12017. position:absolute;
  12018. left:147px;
  12019. top:754px;
  12020. width:97px;
  12021. height:22px;
  12022. display:flex;
  12023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12024. font-weight:400;
  12025. font-style:normal;
  12026. font-size:16px;
  12027. }
  12028. #u50605 .text {
  12029. position:absolute;
  12030. align-self:flex-start;
  12031. padding:0px 0px 0px 0px;
  12032. box-sizing:border-box;
  12033. width:100%;
  12034. }
  12035. #u50605_text {
  12036. border-width:0px;
  12037. word-wrap:break-word;
  12038. text-transform:none;
  12039. }
  12040. #u50606_img {
  12041. border-width:0px;
  12042. position:absolute;
  12043. left:0px;
  12044. top:0px;
  12045. width:201px;
  12046. height:2px;
  12047. }
  12048. #u50606 {
  12049. border-width:0px;
  12050. position:absolute;
  12051. left:120px;
  12052. top:655px;
  12053. width:200px;
  12054. height:1px;
  12055. display:flex;
  12056. }
  12057. #u50606 .text {
  12058. position:absolute;
  12059. align-self:center;
  12060. padding:2px 2px 2px 2px;
  12061. box-sizing:border-box;
  12062. width:100%;
  12063. }
  12064. #u50606_text {
  12065. border-width:0px;
  12066. word-wrap:break-word;
  12067. text-transform:none;
  12068. visibility:hidden;
  12069. }
  12070. #u50607_div {
  12071. border-width:0px;
  12072. position:absolute;
  12073. left:0px;
  12074. top:0px;
  12075. width:97px;
  12076. height:22px;
  12077. background:inherit;
  12078. background-color:rgba(255, 255, 255, 0);
  12079. border:none;
  12080. border-radius:0px;
  12081. -moz-box-shadow:none;
  12082. -webkit-box-shadow:none;
  12083. box-shadow:none;
  12084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12085. font-weight:400;
  12086. font-style:normal;
  12087. font-size:16px;
  12088. }
  12089. #u50607 {
  12090. border-width:0px;
  12091. position:absolute;
  12092. left:147px;
  12093. top:712px;
  12094. width:97px;
  12095. height:22px;
  12096. display:flex;
  12097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12098. font-weight:400;
  12099. font-style:normal;
  12100. font-size:16px;
  12101. }
  12102. #u50607 .text {
  12103. position:absolute;
  12104. align-self:flex-start;
  12105. padding:0px 0px 0px 0px;
  12106. box-sizing:border-box;
  12107. width:100%;
  12108. }
  12109. #u50607_text {
  12110. border-width:0px;
  12111. word-wrap:break-word;
  12112. text-transform:none;
  12113. }
  12114. #u50608_div {
  12115. border-width:0px;
  12116. position:absolute;
  12117. left:0px;
  12118. top:0px;
  12119. width:49px;
  12120. height:17px;
  12121. background:inherit;
  12122. background-color:rgba(255, 255, 255, 0);
  12123. border:none;
  12124. border-radius:0px;
  12125. -moz-box-shadow:none;
  12126. -webkit-box-shadow:none;
  12127. box-shadow:none;
  12128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12129. font-weight:400;
  12130. font-style:normal;
  12131. font-size:12px;
  12132. color:#AAAAAA;
  12133. }
  12134. #u50608 {
  12135. border-width:0px;
  12136. position:absolute;
  12137. left:147px;
  12138. top:676px;
  12139. width:49px;
  12140. height:17px;
  12141. display:flex;
  12142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12143. font-weight:400;
  12144. font-style:normal;
  12145. font-size:12px;
  12146. color:#AAAAAA;
  12147. }
  12148. #u50608 .text {
  12149. position:absolute;
  12150. align-self:flex-start;
  12151. padding:0px 0px 0px 0px;
  12152. box-sizing:border-box;
  12153. width:100%;
  12154. }
  12155. #u50608_text {
  12156. border-width:0px;
  12157. white-space:nowrap;
  12158. text-transform:none;
  12159. }
  12160. #u50609_div {
  12161. border-width:0px;
  12162. position:absolute;
  12163. left:0px;
  12164. top:0px;
  12165. width:97px;
  12166. height:22px;
  12167. background:inherit;
  12168. background-color:rgba(255, 255, 255, 0);
  12169. border:none;
  12170. border-radius:0px;
  12171. -moz-box-shadow:none;
  12172. -webkit-box-shadow:none;
  12173. box-shadow:none;
  12174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12175. font-weight:400;
  12176. font-style:normal;
  12177. font-size:16px;
  12178. }
  12179. #u50609 {
  12180. border-width:0px;
  12181. position:absolute;
  12182. left:147px;
  12183. top:895px;
  12184. width:97px;
  12185. height:22px;
  12186. display:flex;
  12187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12188. font-weight:400;
  12189. font-style:normal;
  12190. font-size:16px;
  12191. }
  12192. #u50609 .text {
  12193. position:absolute;
  12194. align-self:flex-start;
  12195. padding:0px 0px 0px 0px;
  12196. box-sizing:border-box;
  12197. width:100%;
  12198. }
  12199. #u50609_text {
  12200. border-width:0px;
  12201. word-wrap:break-word;
  12202. text-transform:none;
  12203. }
  12204. #u50610_div {
  12205. border-width:0px;
  12206. position:absolute;
  12207. left:0px;
  12208. top:0px;
  12209. width:97px;
  12210. height:22px;
  12211. background:inherit;
  12212. background-color:rgba(255, 255, 255, 0);
  12213. border:none;
  12214. border-radius:0px;
  12215. -moz-box-shadow:none;
  12216. -webkit-box-shadow:none;
  12217. box-shadow:none;
  12218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12219. font-weight:400;
  12220. font-style:normal;
  12221. font-size:16px;
  12222. }
  12223. #u50610 {
  12224. border-width:0px;
  12225. position:absolute;
  12226. left:147px;
  12227. top:937px;
  12228. width:97px;
  12229. height:22px;
  12230. display:flex;
  12231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12232. font-weight:400;
  12233. font-style:normal;
  12234. font-size:16px;
  12235. }
  12236. #u50610 .text {
  12237. position:absolute;
  12238. align-self:flex-start;
  12239. padding:0px 0px 0px 0px;
  12240. box-sizing:border-box;
  12241. width:100%;
  12242. }
  12243. #u50610_text {
  12244. border-width:0px;
  12245. white-space:nowrap;
  12246. text-transform:none;
  12247. }
  12248. #u50611_img {
  12249. border-width:0px;
  12250. position:absolute;
  12251. left:0px;
  12252. top:0px;
  12253. width:201px;
  12254. height:2px;
  12255. }
  12256. #u50611 {
  12257. border-width:0px;
  12258. position:absolute;
  12259. left:120px;
  12260. top:796px;
  12261. width:200px;
  12262. height:1px;
  12263. display:flex;
  12264. }
  12265. #u50611 .text {
  12266. position:absolute;
  12267. align-self:center;
  12268. padding:2px 2px 2px 2px;
  12269. box-sizing:border-box;
  12270. width:100%;
  12271. }
  12272. #u50611_text {
  12273. border-width:0px;
  12274. word-wrap:break-word;
  12275. text-transform:none;
  12276. visibility:hidden;
  12277. }
  12278. #u50612_div {
  12279. border-width:0px;
  12280. position:absolute;
  12281. left:0px;
  12282. top:0px;
  12283. width:97px;
  12284. height:22px;
  12285. background:inherit;
  12286. background-color:rgba(255, 255, 255, 0);
  12287. border:none;
  12288. border-radius:0px;
  12289. -moz-box-shadow:none;
  12290. -webkit-box-shadow:none;
  12291. box-shadow:none;
  12292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12293. font-weight:400;
  12294. font-style:normal;
  12295. font-size:16px;
  12296. }
  12297. #u50612 {
  12298. border-width:0px;
  12299. position:absolute;
  12300. left:147px;
  12301. top:853px;
  12302. width:97px;
  12303. height:22px;
  12304. display:flex;
  12305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12306. font-weight:400;
  12307. font-style:normal;
  12308. font-size:16px;
  12309. }
  12310. #u50612 .text {
  12311. position:absolute;
  12312. align-self:flex-start;
  12313. padding:0px 0px 0px 0px;
  12314. box-sizing:border-box;
  12315. width:100%;
  12316. }
  12317. #u50612_text {
  12318. border-width:0px;
  12319. word-wrap:break-word;
  12320. text-transform:none;
  12321. }
  12322. #u50613_div {
  12323. border-width:0px;
  12324. position:absolute;
  12325. left:0px;
  12326. top:0px;
  12327. width:49px;
  12328. height:17px;
  12329. background:inherit;
  12330. background-color:rgba(255, 255, 255, 0);
  12331. border:none;
  12332. border-radius:0px;
  12333. -moz-box-shadow:none;
  12334. -webkit-box-shadow:none;
  12335. box-shadow:none;
  12336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12337. font-weight:400;
  12338. font-style:normal;
  12339. font-size:12px;
  12340. color:#AAAAAA;
  12341. }
  12342. #u50613 {
  12343. border-width:0px;
  12344. position:absolute;
  12345. left:147px;
  12346. top:817px;
  12347. width:49px;
  12348. height:17px;
  12349. display:flex;
  12350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12351. font-weight:400;
  12352. font-style:normal;
  12353. font-size:12px;
  12354. color:#AAAAAA;
  12355. }
  12356. #u50613 .text {
  12357. position:absolute;
  12358. align-self:flex-start;
  12359. padding:0px 0px 0px 0px;
  12360. box-sizing:border-box;
  12361. width:100%;
  12362. }
  12363. #u50613_text {
  12364. border-width:0px;
  12365. white-space:nowrap;
  12366. text-transform:none;
  12367. }
  12368. #u50614_div {
  12369. border-width:0px;
  12370. position:absolute;
  12371. left:0px;
  12372. top:0px;
  12373. width:97px;
  12374. height:22px;
  12375. background:inherit;
  12376. background-color:rgba(255, 255, 255, 0);
  12377. border:none;
  12378. border-radius:0px;
  12379. -moz-box-shadow:none;
  12380. -webkit-box-shadow:none;
  12381. box-shadow:none;
  12382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12383. font-weight:400;
  12384. font-style:normal;
  12385. font-size:16px;
  12386. }
  12387. #u50614 {
  12388. border-width:0px;
  12389. position:absolute;
  12390. left:147px;
  12391. top:611px;
  12392. width:97px;
  12393. height:22px;
  12394. display:flex;
  12395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12396. font-weight:400;
  12397. font-style:normal;
  12398. font-size:16px;
  12399. }
  12400. #u50614 .text {
  12401. position:absolute;
  12402. align-self:flex-start;
  12403. padding:0px 0px 0px 0px;
  12404. box-sizing:border-box;
  12405. width:100%;
  12406. }
  12407. #u50614_text {
  12408. border-width:0px;
  12409. word-wrap:break-word;
  12410. text-transform:none;
  12411. }
  12412. #u50615_div {
  12413. border-width:0px;
  12414. position:absolute;
  12415. left:0px;
  12416. top:0px;
  12417. width:97px;
  12418. height:22px;
  12419. background:inherit;
  12420. background-color:rgba(255, 255, 255, 0);
  12421. border:none;
  12422. border-radius:0px;
  12423. -moz-box-shadow:none;
  12424. -webkit-box-shadow:none;
  12425. box-shadow:none;
  12426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12427. font-weight:400;
  12428. font-style:normal;
  12429. font-size:16px;
  12430. }
  12431. #u50615 {
  12432. border-width:0px;
  12433. position:absolute;
  12434. left:147px;
  12435. top:303px;
  12436. width:97px;
  12437. height:22px;
  12438. display:flex;
  12439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12440. font-weight:400;
  12441. font-style:normal;
  12442. font-size:16px;
  12443. }
  12444. #u50615 .text {
  12445. position:absolute;
  12446. align-self:flex-start;
  12447. padding:0px 0px 0px 0px;
  12448. box-sizing:border-box;
  12449. width:100%;
  12450. }
  12451. #u50615_text {
  12452. border-width:0px;
  12453. word-wrap:break-word;
  12454. text-transform:none;
  12455. }
  12456. #u50616_div {
  12457. border-width:0px;
  12458. position:absolute;
  12459. left:0px;
  12460. top:0px;
  12461. width:49px;
  12462. height:17px;
  12463. background:inherit;
  12464. background-color:rgba(255, 255, 255, 0);
  12465. border:none;
  12466. border-radius:0px;
  12467. -moz-box-shadow:none;
  12468. -webkit-box-shadow:none;
  12469. box-shadow:none;
  12470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12471. font-weight:400;
  12472. font-style:normal;
  12473. font-size:12px;
  12474. color:#AAAAAA;
  12475. }
  12476. #u50616 {
  12477. border-width:0px;
  12478. position:absolute;
  12479. left:147px;
  12480. top:267px;
  12481. width:49px;
  12482. height:17px;
  12483. display:flex;
  12484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12485. font-weight:400;
  12486. font-style:normal;
  12487. font-size:12px;
  12488. color:#AAAAAA;
  12489. }
  12490. #u50616 .text {
  12491. position:absolute;
  12492. align-self:flex-start;
  12493. padding:0px 0px 0px 0px;
  12494. box-sizing:border-box;
  12495. width:100%;
  12496. }
  12497. #u50616_text {
  12498. border-width:0px;
  12499. white-space:nowrap;
  12500. text-transform:none;
  12501. }
  12502. #u50617_div {
  12503. border-width:0px;
  12504. position:absolute;
  12505. left:0px;
  12506. top:0px;
  12507. width:97px;
  12508. height:22px;
  12509. background:inherit;
  12510. background-color:rgba(255, 255, 255, 0);
  12511. border:none;
  12512. border-radius:0px;
  12513. -moz-box-shadow:none;
  12514. -webkit-box-shadow:none;
  12515. box-shadow:none;
  12516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12517. font-weight:400;
  12518. font-style:normal;
  12519. font-size:16px;
  12520. }
  12521. #u50617 {
  12522. border-width:0px;
  12523. position:absolute;
  12524. left:147px;
  12525. top:345px;
  12526. width:97px;
  12527. height:22px;
  12528. display:flex;
  12529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12530. font-weight:400;
  12531. font-style:normal;
  12532. font-size:16px;
  12533. }
  12534. #u50617 .text {
  12535. position:absolute;
  12536. align-self:flex-start;
  12537. padding:0px 0px 0px 0px;
  12538. box-sizing:border-box;
  12539. width:100%;
  12540. }
  12541. #u50617_text {
  12542. border-width:0px;
  12543. word-wrap:break-word;
  12544. text-transform:none;
  12545. }
  12546. #u50618_img {
  12547. border-width:0px;
  12548. position:absolute;
  12549. left:0px;
  12550. top:0px;
  12551. width:201px;
  12552. height:2px;
  12553. }
  12554. #u50618 {
  12555. border-width:0px;
  12556. position:absolute;
  12557. left:120px;
  12558. top:514px;
  12559. width:200px;
  12560. height:1px;
  12561. display:flex;
  12562. }
  12563. #u50618 .text {
  12564. position:absolute;
  12565. align-self:center;
  12566. padding:2px 2px 2px 2px;
  12567. box-sizing:border-box;
  12568. width:100%;
  12569. }
  12570. #u50618_text {
  12571. border-width:0px;
  12572. word-wrap:break-word;
  12573. text-transform:none;
  12574. visibility:hidden;
  12575. }
  12576. #u50619_div {
  12577. border-width:0px;
  12578. position:absolute;
  12579. left:0px;
  12580. top:0px;
  12581. width:97px;
  12582. height:22px;
  12583. background:inherit;
  12584. background-color:rgba(255, 255, 255, 0);
  12585. border:none;
  12586. border-radius:0px;
  12587. -moz-box-shadow:none;
  12588. -webkit-box-shadow:none;
  12589. box-shadow:none;
  12590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12591. font-weight:400;
  12592. font-style:normal;
  12593. font-size:16px;
  12594. }
  12595. #u50619 {
  12596. border-width:0px;
  12597. position:absolute;
  12598. left:147px;
  12599. top:429px;
  12600. width:97px;
  12601. height:22px;
  12602. display:flex;
  12603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12604. font-weight:400;
  12605. font-style:normal;
  12606. font-size:16px;
  12607. }
  12608. #u50619 .text {
  12609. position:absolute;
  12610. align-self:flex-start;
  12611. padding:0px 0px 0px 0px;
  12612. box-sizing:border-box;
  12613. width:100%;
  12614. }
  12615. #u50619_text {
  12616. border-width:0px;
  12617. word-wrap:break-word;
  12618. text-transform:none;
  12619. }
  12620. #u50620_div {
  12621. border-width:0px;
  12622. position:absolute;
  12623. left:0px;
  12624. top:0px;
  12625. width:97px;
  12626. height:22px;
  12627. background:inherit;
  12628. background-color:rgba(255, 255, 255, 0);
  12629. border:none;
  12630. border-radius:0px;
  12631. -moz-box-shadow:none;
  12632. -webkit-box-shadow:none;
  12633. box-shadow:none;
  12634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12635. font-weight:400;
  12636. font-style:normal;
  12637. font-size:16px;
  12638. }
  12639. #u50620 {
  12640. border-width:0px;
  12641. position:absolute;
  12642. left:147px;
  12643. top:471px;
  12644. width:97px;
  12645. height:22px;
  12646. display:flex;
  12647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12648. font-weight:400;
  12649. font-style:normal;
  12650. font-size:16px;
  12651. }
  12652. #u50620 .text {
  12653. position:absolute;
  12654. align-self:flex-start;
  12655. padding:0px 0px 0px 0px;
  12656. box-sizing:border-box;
  12657. width:100%;
  12658. }
  12659. #u50620_text {
  12660. border-width:0px;
  12661. white-space:nowrap;
  12662. text-transform:none;
  12663. }