styles.css 215 KB

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