styles.css 134 KB

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