styles.css 195 KB

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