styles.css 111 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465
  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. #u43019_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u43019 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u43019 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u43019_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u43020_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u43020 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u43020 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u43020_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u43021_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u43021 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u43021 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u43021_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u43022 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u43023_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u43023 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u43023 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u43023_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u43024_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u43024 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u43024 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u43024_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u43025_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u43025 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u43025 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u43025_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u43026 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u43027_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u43027 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:71px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u43027 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u43027_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u43028_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u43028 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u43028 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u43028_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u43029 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u43030_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u43030 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:147px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u43030 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u43030_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u43031_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u43031 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u43031 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u43031_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u43032 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u43033_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:33px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u43033 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:399px;
  458. width:33px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u43033 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u43033_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u43034_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u43034 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u43034 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u43034_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u43035 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u43036_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:49px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u43036 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:109px;
  542. width:49px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u43036 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u43036_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u43037_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u43037 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u43037 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u43037_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u43038 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u43039_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u43039 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:441px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u43039 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u43039_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u43040_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u43040 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u43040 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u43040_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u43041 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u43042_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u43042 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:315px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u43042 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u43042_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u43043_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u43043 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u43043 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u43043_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u43044 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u43045_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u43045 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:189px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u43045 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u43045_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u43046_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u43046 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u43046 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u43046_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u43047 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u43048_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u43048 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:357px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u43048 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u43048_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u43049_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u43049 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u43049 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u43049_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u43050 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u43051_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:33px;
  943. height:22px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:0px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. font-size:16px;
  955. color:#FFFFFF;
  956. }
  957. #u43051 {
  958. border-width:0px;
  959. position:absolute;
  960. left:39px;
  961. top:483px;
  962. width:33px;
  963. height:22px;
  964. display:flex;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:16px;
  969. color:#FFFFFF;
  970. }
  971. #u43051 .text {
  972. position:absolute;
  973. align-self:flex-start;
  974. padding:0px 0px 0px 0px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u43051_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u43052_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u43052 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u43052 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u43052_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u43053_div {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:29px;
  1019. height:20px;
  1020. background:inherit;
  1021. background-color:rgba(255, 255, 255, 0);
  1022. border:none;
  1023. border-radius:25px;
  1024. -moz-box-shadow:none;
  1025. -webkit-box-shadow:none;
  1026. box-shadow:none;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. color:#FFFFFF;
  1031. }
  1032. #u43053 {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:52px;
  1036. top:1145px;
  1037. width:29px;
  1038. height:20px;
  1039. display:flex;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. color:#FFFFFF;
  1044. }
  1045. #u43053 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u43053_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u43054_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u43054 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u43054 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u43054_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u43055_div {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:29px;
  1093. height:20px;
  1094. background:inherit;
  1095. background-color:rgba(255, 255, 255, 0);
  1096. border:none;
  1097. border-radius:25px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. color:#FFFFFF;
  1105. }
  1106. #u43055 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:52px;
  1110. top:1187px;
  1111. width:29px;
  1112. height:20px;
  1113. display:flex;
  1114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1115. font-weight:400;
  1116. font-style:normal;
  1117. color:#FFFFFF;
  1118. }
  1119. #u43055 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u43055_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u43056_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u43056 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u43056 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u43056_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u43057 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u43058_div {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:33px;
  1175. height:22px;
  1176. background:inherit;
  1177. background-color:rgba(255, 255, 255, 0);
  1178. border:none;
  1179. border-radius:0px;
  1180. -moz-box-shadow:none;
  1181. -webkit-box-shadow:none;
  1182. box-shadow:none;
  1183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1184. font-weight:400;
  1185. font-style:normal;
  1186. font-size:16px;
  1187. color:#FFFFFF;
  1188. }
  1189. #u43058 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:39px;
  1193. top:231px;
  1194. width:33px;
  1195. height:22px;
  1196. display:flex;
  1197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1198. font-weight:400;
  1199. font-style:normal;
  1200. font-size:16px;
  1201. color:#FFFFFF;
  1202. }
  1203. #u43058 .text {
  1204. position:absolute;
  1205. align-self:flex-start;
  1206. padding:0px 0px 0px 0px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u43058_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u43059_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u43059 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u43059 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u43059_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u43060 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u43061_div {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:33px;
  1259. height:22px;
  1260. background:inherit;
  1261. background-color:rgba(255, 255, 255, 0);
  1262. border:none;
  1263. border-radius:0px;
  1264. -moz-box-shadow:none;
  1265. -webkit-box-shadow:none;
  1266. box-shadow:none;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:16px;
  1271. color:#FFFFFF;
  1272. }
  1273. #u43061 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:39px;
  1277. top:273px;
  1278. width:33px;
  1279. height:22px;
  1280. display:flex;
  1281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1282. font-weight:400;
  1283. font-style:normal;
  1284. font-size:16px;
  1285. color:#FFFFFF;
  1286. }
  1287. #u43061 .text {
  1288. position:absolute;
  1289. align-self:flex-start;
  1290. padding:0px 0px 0px 0px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u43061_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u43062_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u43062 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u43062 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u43062_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u43063 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u43064_input {
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:214px;
  1342. height:27px;
  1343. padding:2px 2px 2px 2px;
  1344. font-family:'ArialMT', 'Arial', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:14px;
  1348. letter-spacing:normal;
  1349. color:#FFFFFF;
  1350. vertical-align:none;
  1351. text-align:left;
  1352. text-transform:none;
  1353. background-color:transparent;
  1354. border-color:transparent;
  1355. }
  1356. #u43064_input.disabled {
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:214px;
  1361. height:27px;
  1362. padding:2px 2px 2px 2px;
  1363. font-family:'ArialMT', 'Arial', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:14px;
  1367. letter-spacing:normal;
  1368. color:#FFFFFF;
  1369. vertical-align:none;
  1370. text-align:left;
  1371. text-transform:none;
  1372. background-color:transparent;
  1373. border-color:transparent;
  1374. }
  1375. #u43064_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:214px;
  1381. height:27px;
  1382. background:inherit;
  1383. background-color:rgba(255, 255, 255, 0);
  1384. border:none;
  1385. border-radius:0px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-size:14px;
  1390. color:#FFFFFF;
  1391. }
  1392. #u43064 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:1221px;
  1396. top:11px;
  1397. width:214px;
  1398. height:27px;
  1399. display:flex;
  1400. font-size:14px;
  1401. color:#FFFFFF;
  1402. }
  1403. #u43064 .text {
  1404. position:absolute;
  1405. align-self:flex-start;
  1406. padding:2px 2px 2px 2px;
  1407. box-sizing:border-box;
  1408. width:100%;
  1409. }
  1410. #u43064_div.disabled {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:214px;
  1416. height:27px;
  1417. background:inherit;
  1418. background-color:rgba(240, 240, 240, 1);
  1419. border:none;
  1420. border-radius:0px;
  1421. -moz-box-shadow:none;
  1422. -webkit-box-shadow:none;
  1423. box-shadow:none;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u43064.disabled {
  1428. }
  1429. .u43064_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u43065_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u43065 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u43065 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u43065_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u43066_div {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:100px;
  1468. height:24px;
  1469. background:inherit;
  1470. background-color:rgba(242, 242, 242, 0.2);
  1471. border:none;
  1472. border-radius:25px;
  1473. -moz-box-shadow:none;
  1474. -webkit-box-shadow:none;
  1475. box-shadow:none;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. color:#FFFFFF;
  1480. text-align:center;
  1481. }
  1482. #u43066 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:1480px;
  1486. top:13px;
  1487. width:100px;
  1488. height:24px;
  1489. display:flex;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. color:#FFFFFF;
  1494. text-align:center;
  1495. }
  1496. #u43066 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u43066_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u43067_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u43067 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u43067 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u43067_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u43068 {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:0px;
  1544. height:0px;
  1545. }
  1546. #u43069_div {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:1255px;
  1552. height:1189px;
  1553. background:inherit;
  1554. background-color:rgba(255, 255, 255, 1);
  1555. border:none;
  1556. border-radius:0px;
  1557. -moz-box-shadow:none;
  1558. -webkit-box-shadow:none;
  1559. box-shadow:none;
  1560. }
  1561. #u43069 {
  1562. border-width:0px;
  1563. position:absolute;
  1564. left:333px;
  1565. top:51px;
  1566. width:1255px;
  1567. height:1189px;
  1568. display:flex;
  1569. }
  1570. #u43069 .text {
  1571. position:absolute;
  1572. align-self:center;
  1573. padding:2px 2px 2px 2px;
  1574. box-sizing:border-box;
  1575. width:100%;
  1576. }
  1577. #u43069_text {
  1578. border-width:0px;
  1579. word-wrap:break-word;
  1580. text-transform:none;
  1581. visibility:hidden;
  1582. }
  1583. #u43070 {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:0px;
  1587. top:0px;
  1588. width:0px;
  1589. height:0px;
  1590. }
  1591. #u43071_img {
  1592. border-width:0px;
  1593. position:absolute;
  1594. left:0px;
  1595. top:0px;
  1596. width:993px;
  1597. height:950px;
  1598. }
  1599. #u43071 {
  1600. border-width:0px;
  1601. position:absolute;
  1602. left:582px;
  1603. top:115px;
  1604. width:993px;
  1605. height:950px;
  1606. display:flex;
  1607. }
  1608. #u43071 .text {
  1609. position:absolute;
  1610. align-self:center;
  1611. padding:2px 2px 2px 2px;
  1612. box-sizing:border-box;
  1613. width:100%;
  1614. }
  1615. #u43071_text {
  1616. border-width:0px;
  1617. word-wrap:break-word;
  1618. text-transform:none;
  1619. visibility:hidden;
  1620. }
  1621. #u43072_div {
  1622. border-width:0px;
  1623. position:absolute;
  1624. left:0px;
  1625. top:0px;
  1626. width:29px;
  1627. height:17px;
  1628. background:inherit;
  1629. background-color:rgba(0, 191, 191, 1);
  1630. border:none;
  1631. border-radius:4px;
  1632. -moz-box-shadow:none;
  1633. -webkit-box-shadow:none;
  1634. box-shadow:none;
  1635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1636. font-weight:400;
  1637. font-style:normal;
  1638. font-size:10px;
  1639. color:#FFFFFF;
  1640. }
  1641. #u43072 {
  1642. border-width:0px;
  1643. position:absolute;
  1644. left:582px;
  1645. top:118px;
  1646. width:29px;
  1647. height:17px;
  1648. display:flex;
  1649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1650. font-weight:400;
  1651. font-style:normal;
  1652. font-size:10px;
  1653. color:#FFFFFF;
  1654. }
  1655. #u43072 .text {
  1656. position:absolute;
  1657. align-self:center;
  1658. padding:5px 0px 5px 0px;
  1659. box-sizing:border-box;
  1660. width:100%;
  1661. }
  1662. #u43072_text {
  1663. border-width:0px;
  1664. word-wrap:break-word;
  1665. text-transform:none;
  1666. }
  1667. #u43073_div {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:29px;
  1673. height:17px;
  1674. background:inherit;
  1675. background-color:rgba(217, 0, 27, 1);
  1676. border:none;
  1677. border-radius:4px;
  1678. -moz-box-shadow:none;
  1679. -webkit-box-shadow:none;
  1680. box-shadow:none;
  1681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1682. font-weight:400;
  1683. font-style:normal;
  1684. font-size:10px;
  1685. color:#FFFFFF;
  1686. }
  1687. #u43073 {
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:1249px;
  1691. top:115px;
  1692. width:29px;
  1693. height:17px;
  1694. display:flex;
  1695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1696. font-weight:400;
  1697. font-style:normal;
  1698. font-size:10px;
  1699. color:#FFFFFF;
  1700. }
  1701. #u43073 .text {
  1702. position:absolute;
  1703. align-self:center;
  1704. padding:5px 0px 5px 0px;
  1705. box-sizing:border-box;
  1706. width:100%;
  1707. }
  1708. #u43073_text {
  1709. border-width:0px;
  1710. word-wrap:break-word;
  1711. text-transform:none;
  1712. }
  1713. #u43074_div {
  1714. border-width:0px;
  1715. position:absolute;
  1716. left:0px;
  1717. top:0px;
  1718. width:29px;
  1719. height:17px;
  1720. background:inherit;
  1721. background-color:rgba(245, 154, 35, 1);
  1722. border:none;
  1723. border-radius:4px;
  1724. -moz-box-shadow:none;
  1725. -webkit-box-shadow:none;
  1726. box-shadow:none;
  1727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1728. font-weight:400;
  1729. font-style:normal;
  1730. font-size:10px;
  1731. color:#FFFFFF;
  1732. }
  1733. #u43074 {
  1734. border-width:0px;
  1735. position:absolute;
  1736. left:582px;
  1737. top:346px;
  1738. width:29px;
  1739. height:17px;
  1740. display:flex;
  1741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1742. font-weight:400;
  1743. font-style:normal;
  1744. font-size:10px;
  1745. color:#FFFFFF;
  1746. }
  1747. #u43074 .text {
  1748. position:absolute;
  1749. align-self:center;
  1750. padding:5px 0px 5px 0px;
  1751. box-sizing:border-box;
  1752. width:100%;
  1753. }
  1754. #u43074_text {
  1755. border-width:0px;
  1756. word-wrap:break-word;
  1757. text-transform:none;
  1758. }
  1759. #u43075_div {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:29px;
  1765. height:17px;
  1766. background:inherit;
  1767. background-color:rgba(0, 191, 191, 1);
  1768. border:none;
  1769. border-radius:4px;
  1770. -moz-box-shadow:none;
  1771. -webkit-box-shadow:none;
  1772. box-shadow:none;
  1773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1774. font-weight:400;
  1775. font-style:normal;
  1776. font-size:10px;
  1777. color:#FFFFFF;
  1778. }
  1779. #u43075 {
  1780. border-width:0px;
  1781. position:absolute;
  1782. left:913px;
  1783. top:115px;
  1784. width:29px;
  1785. height:17px;
  1786. display:flex;
  1787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1788. font-weight:400;
  1789. font-style:normal;
  1790. font-size:10px;
  1791. color:#FFFFFF;
  1792. }
  1793. #u43075 .text {
  1794. position:absolute;
  1795. align-self:center;
  1796. padding:5px 0px 5px 0px;
  1797. box-sizing:border-box;
  1798. width:100%;
  1799. }
  1800. #u43075_text {
  1801. border-width:0px;
  1802. word-wrap:break-word;
  1803. text-transform:none;
  1804. }
  1805. #u43076_div {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:0px;
  1809. top:0px;
  1810. width:29px;
  1811. height:17px;
  1812. background:inherit;
  1813. background-color:rgba(0, 191, 191, 1);
  1814. border:none;
  1815. border-radius:4px;
  1816. -moz-box-shadow:none;
  1817. -webkit-box-shadow:none;
  1818. box-shadow:none;
  1819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1820. font-weight:400;
  1821. font-style:normal;
  1822. font-size:10px;
  1823. color:#FFFFFF;
  1824. }
  1825. #u43076 {
  1826. border-width:0px;
  1827. position:absolute;
  1828. left:913px;
  1829. top:349px;
  1830. width:29px;
  1831. height:17px;
  1832. display:flex;
  1833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1834. font-weight:400;
  1835. font-style:normal;
  1836. font-size:10px;
  1837. color:#FFFFFF;
  1838. }
  1839. #u43076 .text {
  1840. position:absolute;
  1841. align-self:center;
  1842. padding:5px 0px 5px 0px;
  1843. box-sizing:border-box;
  1844. width:100%;
  1845. }
  1846. #u43076_text {
  1847. border-width:0px;
  1848. word-wrap:break-word;
  1849. text-transform:none;
  1850. }
  1851. #u43077_div {
  1852. border-width:0px;
  1853. position:absolute;
  1854. left:0px;
  1855. top:0px;
  1856. width:29px;
  1857. height:17px;
  1858. background:inherit;
  1859. background-color:rgba(0, 191, 191, 1);
  1860. border:none;
  1861. border-radius:4px;
  1862. -moz-box-shadow:none;
  1863. -webkit-box-shadow:none;
  1864. box-shadow:none;
  1865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1866. font-weight:400;
  1867. font-style:normal;
  1868. font-size:10px;
  1869. color:#FFFFFF;
  1870. }
  1871. #u43077 {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:1243px;
  1875. top:346px;
  1876. width:29px;
  1877. height:17px;
  1878. display:flex;
  1879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1880. font-weight:400;
  1881. font-style:normal;
  1882. font-size:10px;
  1883. color:#FFFFFF;
  1884. }
  1885. #u43077 .text {
  1886. position:absolute;
  1887. align-self:center;
  1888. padding:5px 0px 5px 0px;
  1889. box-sizing:border-box;
  1890. width:100%;
  1891. }
  1892. #u43077_text {
  1893. border-width:0px;
  1894. word-wrap:break-word;
  1895. text-transform:none;
  1896. }
  1897. #u43078_div {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:0px;
  1901. top:0px;
  1902. width:29px;
  1903. height:17px;
  1904. background:inherit;
  1905. background-color:rgba(0, 191, 191, 1);
  1906. border:none;
  1907. border-radius:4px;
  1908. -moz-box-shadow:none;
  1909. -webkit-box-shadow:none;
  1910. box-shadow:none;
  1911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1912. font-weight:400;
  1913. font-style:normal;
  1914. font-size:10px;
  1915. color:#FFFFFF;
  1916. }
  1917. #u43078 {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:913px;
  1921. top:602px;
  1922. width:29px;
  1923. height:17px;
  1924. display:flex;
  1925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1926. font-weight:400;
  1927. font-style:normal;
  1928. font-size:10px;
  1929. color:#FFFFFF;
  1930. }
  1931. #u43078 .text {
  1932. position:absolute;
  1933. align-self:center;
  1934. padding:5px 0px 5px 0px;
  1935. box-sizing:border-box;
  1936. width:100%;
  1937. }
  1938. #u43078_text {
  1939. border-width:0px;
  1940. word-wrap:break-word;
  1941. text-transform:none;
  1942. }
  1943. #u43079_div {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:0px;
  1947. top:0px;
  1948. width:29px;
  1949. height:17px;
  1950. background:inherit;
  1951. background-color:rgba(0, 191, 191, 1);
  1952. border:none;
  1953. border-radius:4px;
  1954. -moz-box-shadow:none;
  1955. -webkit-box-shadow:none;
  1956. box-shadow:none;
  1957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1958. font-weight:400;
  1959. font-style:normal;
  1960. font-size:10px;
  1961. color:#FFFFFF;
  1962. }
  1963. #u43079 {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:1243px;
  1967. top:598px;
  1968. width:29px;
  1969. height:17px;
  1970. display:flex;
  1971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1972. font-weight:400;
  1973. font-style:normal;
  1974. font-size:10px;
  1975. color:#FFFFFF;
  1976. }
  1977. #u43079 .text {
  1978. position:absolute;
  1979. align-self:center;
  1980. padding:5px 0px 5px 0px;
  1981. box-sizing:border-box;
  1982. width:100%;
  1983. }
  1984. #u43079_text {
  1985. border-width:0px;
  1986. word-wrap:break-word;
  1987. text-transform:none;
  1988. }
  1989. #u43080_div {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:0px;
  1993. top:0px;
  1994. width:29px;
  1995. height:17px;
  1996. background:inherit;
  1997. background-color:rgba(0, 191, 191, 1);
  1998. border:none;
  1999. border-radius:4px;
  2000. -moz-box-shadow:none;
  2001. -webkit-box-shadow:none;
  2002. box-shadow:none;
  2003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2004. font-weight:400;
  2005. font-style:normal;
  2006. font-size:10px;
  2007. color:#FFFFFF;
  2008. }
  2009. #u43080 {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:582px;
  2013. top:602px;
  2014. width:29px;
  2015. height:17px;
  2016. display:flex;
  2017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2018. font-weight:400;
  2019. font-style:normal;
  2020. font-size:10px;
  2021. color:#FFFFFF;
  2022. }
  2023. #u43080 .text {
  2024. position:absolute;
  2025. align-self:center;
  2026. padding:5px 0px 5px 0px;
  2027. box-sizing:border-box;
  2028. width:100%;
  2029. }
  2030. #u43080_text {
  2031. border-width:0px;
  2032. word-wrap:break-word;
  2033. text-transform:none;
  2034. }
  2035. #u43081_div {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:0px;
  2039. top:0px;
  2040. width:29px;
  2041. height:17px;
  2042. background:inherit;
  2043. background-color:rgba(0, 191, 191, 1);
  2044. border:none;
  2045. border-radius:4px;
  2046. -moz-box-shadow:none;
  2047. -webkit-box-shadow:none;
  2048. box-shadow:none;
  2049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2050. font-weight:400;
  2051. font-style:normal;
  2052. font-size:10px;
  2053. color:#FFFFFF;
  2054. }
  2055. #u43081 {
  2056. border-width:0px;
  2057. position:absolute;
  2058. left:913px;
  2059. top:848px;
  2060. width:29px;
  2061. height:17px;
  2062. display:flex;
  2063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2064. font-weight:400;
  2065. font-style:normal;
  2066. font-size:10px;
  2067. color:#FFFFFF;
  2068. }
  2069. #u43081 .text {
  2070. position:absolute;
  2071. align-self:center;
  2072. padding:5px 0px 5px 0px;
  2073. box-sizing:border-box;
  2074. width:100%;
  2075. }
  2076. #u43081_text {
  2077. border-width:0px;
  2078. word-wrap:break-word;
  2079. text-transform:none;
  2080. }
  2081. #u43082_div {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:0px;
  2085. top:0px;
  2086. width:29px;
  2087. height:17px;
  2088. background:inherit;
  2089. background-color:rgba(0, 191, 191, 1);
  2090. border:none;
  2091. border-radius:4px;
  2092. -moz-box-shadow:none;
  2093. -webkit-box-shadow:none;
  2094. box-shadow:none;
  2095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2096. font-weight:400;
  2097. font-style:normal;
  2098. font-size:10px;
  2099. color:#FFFFFF;
  2100. }
  2101. #u43082 {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:1243px;
  2105. top:845px;
  2106. width:29px;
  2107. height:17px;
  2108. display:flex;
  2109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2110. font-weight:400;
  2111. font-style:normal;
  2112. font-size:10px;
  2113. color:#FFFFFF;
  2114. }
  2115. #u43082 .text {
  2116. position:absolute;
  2117. align-self:center;
  2118. padding:5px 0px 5px 0px;
  2119. box-sizing:border-box;
  2120. width:100%;
  2121. }
  2122. #u43082_text {
  2123. border-width:0px;
  2124. word-wrap:break-word;
  2125. text-transform:none;
  2126. }
  2127. #u43083_div {
  2128. border-width:0px;
  2129. position:absolute;
  2130. left:0px;
  2131. top:0px;
  2132. width:29px;
  2133. height:17px;
  2134. background:inherit;
  2135. background-color:rgba(0, 191, 191, 1);
  2136. border:none;
  2137. border-radius:4px;
  2138. -moz-box-shadow:none;
  2139. -webkit-box-shadow:none;
  2140. box-shadow:none;
  2141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2142. font-weight:400;
  2143. font-style:normal;
  2144. font-size:10px;
  2145. color:#FFFFFF;
  2146. }
  2147. #u43083 {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:582px;
  2151. top:848px;
  2152. width:29px;
  2153. height:17px;
  2154. display:flex;
  2155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2156. font-weight:400;
  2157. font-style:normal;
  2158. font-size:10px;
  2159. color:#FFFFFF;
  2160. }
  2161. #u43083 .text {
  2162. position:absolute;
  2163. align-self:center;
  2164. padding:5px 0px 5px 0px;
  2165. box-sizing:border-box;
  2166. width:100%;
  2167. }
  2168. #u43083_text {
  2169. border-width:0px;
  2170. word-wrap:break-word;
  2171. text-transform:none;
  2172. }
  2173. #u43084_div {
  2174. border-width:0px;
  2175. position:absolute;
  2176. left:0px;
  2177. top:0px;
  2178. width:73px;
  2179. height:50px;
  2180. background:inherit;
  2181. background-color:rgba(255, 255, 255, 0);
  2182. border:none;
  2183. border-left:0px;
  2184. border-top:0px;
  2185. border-right:0px;
  2186. border-radius:0px;
  2187. border-bottom-right-radius:0px;
  2188. border-bottom-left-radius:0px;
  2189. -moz-box-shadow:none;
  2190. -webkit-box-shadow:none;
  2191. box-shadow:none;
  2192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2193. font-weight:400;
  2194. font-style:normal;
  2195. font-size:18px;
  2196. }
  2197. #u43084 {
  2198. border-width:0px;
  2199. position:absolute;
  2200. left:352px;
  2201. top:51px;
  2202. width:73px;
  2203. height:50px;
  2204. display:flex;
  2205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2206. font-weight:400;
  2207. font-style:normal;
  2208. font-size:18px;
  2209. }
  2210. #u43084 .text {
  2211. position:absolute;
  2212. align-self:center;
  2213. padding:0px 0px 0px 0px;
  2214. box-sizing:border-box;
  2215. width:100%;
  2216. }
  2217. #u43084_text {
  2218. border-width:0px;
  2219. white-space:nowrap;
  2220. text-transform:none;
  2221. }
  2222. #u43085_div {
  2223. border-width:0px;
  2224. position:absolute;
  2225. left:0px;
  2226. top:0px;
  2227. width:191px;
  2228. height:435px;
  2229. background:inherit;
  2230. background-color:rgba(242, 242, 242, 1);
  2231. border:none;
  2232. border-radius:7px;
  2233. -moz-box-shadow:none;
  2234. -webkit-box-shadow:none;
  2235. box-shadow:none;
  2236. }
  2237. #u43085 {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:351px;
  2241. top:321px;
  2242. width:191px;
  2243. height:435px;
  2244. display:flex;
  2245. }
  2246. #u43085 .text {
  2247. position:absolute;
  2248. align-self:center;
  2249. padding:2px 2px 2px 2px;
  2250. box-sizing:border-box;
  2251. width:100%;
  2252. }
  2253. #u43085_text {
  2254. border-width:0px;
  2255. word-wrap:break-word;
  2256. text-transform:none;
  2257. visibility:hidden;
  2258. }
  2259. #u43086_div {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:0px;
  2263. top:0px;
  2264. width:57px;
  2265. height:30px;
  2266. background:inherit;
  2267. background-color:rgba(255, 255, 255, 0);
  2268. border:none;
  2269. border-radius:0px;
  2270. -moz-box-shadow:none;
  2271. -webkit-box-shadow:none;
  2272. box-shadow:none;
  2273. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2274. font-weight:500;
  2275. font-style:normal;
  2276. font-size:14px;
  2277. color:#000000;
  2278. line-height:30px;
  2279. }
  2280. #u43086 {
  2281. border-width:0px;
  2282. position:absolute;
  2283. left:351px;
  2284. top:99px;
  2285. width:57px;
  2286. height:30px;
  2287. display:flex;
  2288. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2289. font-weight:500;
  2290. font-style:normal;
  2291. font-size:14px;
  2292. color:#000000;
  2293. line-height:30px;
  2294. }
  2295. #u43086 .text {
  2296. position:absolute;
  2297. align-self:flex-start;
  2298. padding:0px 0px 0px 0px;
  2299. box-sizing:border-box;
  2300. width:100%;
  2301. }
  2302. #u43086_text {
  2303. border-width:0px;
  2304. white-space:nowrap;
  2305. text-transform:none;
  2306. }
  2307. #u43087 {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:0px;
  2311. top:0px;
  2312. width:0px;
  2313. height:0px;
  2314. }
  2315. #u43088_img {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:0px;
  2319. top:0px;
  2320. width:18px;
  2321. height:18px;
  2322. }
  2323. #u43088 {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:1550px;
  2327. top:67px;
  2328. width:18px;
  2329. height:18px;
  2330. display:flex;
  2331. }
  2332. #u43088 .text {
  2333. position:absolute;
  2334. align-self:center;
  2335. padding:2px 2px 2px 2px;
  2336. box-sizing:border-box;
  2337. width:100%;
  2338. }
  2339. #u43088_text {
  2340. border-width:0px;
  2341. word-wrap:break-word;
  2342. text-transform:none;
  2343. visibility:hidden;
  2344. }
  2345. #u43089_img {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:0px;
  2349. top:0px;
  2350. width:2px;
  2351. height:15px;
  2352. }
  2353. #u43089 {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:1535px;
  2357. top:69px;
  2358. width:1px;
  2359. height:14px;
  2360. display:flex;
  2361. }
  2362. #u43089 .text {
  2363. position:absolute;
  2364. align-self:center;
  2365. padding:2px 2px 2px 2px;
  2366. box-sizing:border-box;
  2367. width:100%;
  2368. }
  2369. #u43089_text {
  2370. border-width:0px;
  2371. word-wrap:break-word;
  2372. text-transform:none;
  2373. visibility:hidden;
  2374. }
  2375. #u43090 {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:0px;
  2379. top:0px;
  2380. width:0px;
  2381. height:0px;
  2382. }
  2383. #u43091_img {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:0px;
  2387. top:0px;
  2388. width:9px;
  2389. height:9px;
  2390. }
  2391. #u43091 {
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:1412px;
  2395. top:66px;
  2396. width:9px;
  2397. height:9px;
  2398. display:flex;
  2399. }
  2400. #u43091 .text {
  2401. position:absolute;
  2402. align-self:center;
  2403. padding:2px 2px 2px 2px;
  2404. box-sizing:border-box;
  2405. width:100%;
  2406. }
  2407. #u43091_text {
  2408. border-width:0px;
  2409. word-wrap:break-word;
  2410. text-transform:none;
  2411. visibility:hidden;
  2412. }
  2413. #u43092_img {
  2414. border-width:0px;
  2415. position:absolute;
  2416. left:0px;
  2417. top:0px;
  2418. width:9px;
  2419. height:9px;
  2420. }
  2421. #u43092 {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:1424px;
  2425. top:66px;
  2426. width:9px;
  2427. height:9px;
  2428. display:flex;
  2429. }
  2430. #u43092 .text {
  2431. position:absolute;
  2432. align-self:center;
  2433. padding:2px 2px 2px 2px;
  2434. box-sizing:border-box;
  2435. width:100%;
  2436. }
  2437. #u43092_text {
  2438. border-width:0px;
  2439. word-wrap:break-word;
  2440. text-transform:none;
  2441. visibility:hidden;
  2442. }
  2443. #u43093_img {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:0px;
  2447. top:0px;
  2448. width:9px;
  2449. height:9px;
  2450. }
  2451. #u43093 {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:1412px;
  2455. top:78px;
  2456. width:9px;
  2457. height:9px;
  2458. display:flex;
  2459. }
  2460. #u43093 .text {
  2461. position:absolute;
  2462. align-self:center;
  2463. padding:2px 2px 2px 2px;
  2464. box-sizing:border-box;
  2465. width:100%;
  2466. }
  2467. #u43093_text {
  2468. border-width:0px;
  2469. word-wrap:break-word;
  2470. text-transform:none;
  2471. visibility:hidden;
  2472. }
  2473. #u43094_img {
  2474. border-width:0px;
  2475. position:absolute;
  2476. left:0px;
  2477. top:0px;
  2478. width:9px;
  2479. height:9px;
  2480. }
  2481. #u43094 {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:1424px;
  2485. top:78px;
  2486. width:9px;
  2487. height:9px;
  2488. display:flex;
  2489. }
  2490. #u43094 .text {
  2491. position:absolute;
  2492. align-self:center;
  2493. padding:2px 2px 2px 2px;
  2494. box-sizing:border-box;
  2495. width:100%;
  2496. }
  2497. #u43094_text {
  2498. border-width:0px;
  2499. word-wrap:break-word;
  2500. text-transform:none;
  2501. visibility:hidden;
  2502. }
  2503. #u43095 {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:0px;
  2507. top:0px;
  2508. width:0px;
  2509. height:0px;
  2510. }
  2511. #u43096_img {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:0px;
  2515. top:0px;
  2516. width:6px;
  2517. height:6px;
  2518. }
  2519. #u43096 {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:1372px;
  2523. top:66px;
  2524. width:6px;
  2525. height:6px;
  2526. display:flex;
  2527. }
  2528. #u43096 .text {
  2529. position:absolute;
  2530. align-self:center;
  2531. padding:2px 2px 2px 2px;
  2532. box-sizing:border-box;
  2533. width:100%;
  2534. }
  2535. #u43096_text {
  2536. border-width:0px;
  2537. word-wrap:break-word;
  2538. text-transform:none;
  2539. visibility:hidden;
  2540. }
  2541. #u43097_img {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:0px;
  2545. top:0px;
  2546. width:6px;
  2547. height:6px;
  2548. }
  2549. #u43097 {
  2550. border-width:0px;
  2551. position:absolute;
  2552. left:1379px;
  2553. top:66px;
  2554. width:6px;
  2555. height:6px;
  2556. display:flex;
  2557. }
  2558. #u43097 .text {
  2559. position:absolute;
  2560. align-self:center;
  2561. padding:2px 2px 2px 2px;
  2562. box-sizing:border-box;
  2563. width:100%;
  2564. }
  2565. #u43097_text {
  2566. border-width:0px;
  2567. word-wrap:break-word;
  2568. text-transform:none;
  2569. visibility:hidden;
  2570. }
  2571. #u43098_img {
  2572. border-width:0px;
  2573. position:absolute;
  2574. left:0px;
  2575. top:0px;
  2576. width:6px;
  2577. height:6px;
  2578. }
  2579. #u43098 {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:1386px;
  2583. top:66px;
  2584. width:6px;
  2585. height:6px;
  2586. display:flex;
  2587. }
  2588. #u43098 .text {
  2589. position:absolute;
  2590. align-self:center;
  2591. padding:2px 2px 2px 2px;
  2592. box-sizing:border-box;
  2593. width:100%;
  2594. }
  2595. #u43098_text {
  2596. border-width:0px;
  2597. word-wrap:break-word;
  2598. text-transform:none;
  2599. visibility:hidden;
  2600. }
  2601. #u43099_img {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:0px;
  2605. top:0px;
  2606. width:6px;
  2607. height:6px;
  2608. }
  2609. #u43099 {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:1372px;
  2613. top:73px;
  2614. width:6px;
  2615. height:6px;
  2616. display:flex;
  2617. }
  2618. #u43099 .text {
  2619. position:absolute;
  2620. align-self:center;
  2621. padding:2px 2px 2px 2px;
  2622. box-sizing:border-box;
  2623. width:100%;
  2624. }
  2625. #u43099_text {
  2626. border-width:0px;
  2627. word-wrap:break-word;
  2628. text-transform:none;
  2629. visibility:hidden;
  2630. }
  2631. #u43100_img {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:0px;
  2635. top:0px;
  2636. width:6px;
  2637. height:6px;
  2638. }
  2639. #u43100 {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:1379px;
  2643. top:73px;
  2644. width:6px;
  2645. height:6px;
  2646. display:flex;
  2647. }
  2648. #u43100 .text {
  2649. position:absolute;
  2650. align-self:center;
  2651. padding:2px 2px 2px 2px;
  2652. box-sizing:border-box;
  2653. width:100%;
  2654. }
  2655. #u43100_text {
  2656. border-width:0px;
  2657. word-wrap:break-word;
  2658. text-transform:none;
  2659. visibility:hidden;
  2660. }
  2661. #u43101_img {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:0px;
  2665. top:0px;
  2666. width:6px;
  2667. height:6px;
  2668. }
  2669. #u43101 {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:1386px;
  2673. top:73px;
  2674. width:6px;
  2675. height:6px;
  2676. display:flex;
  2677. }
  2678. #u43101 .text {
  2679. position:absolute;
  2680. align-self:center;
  2681. padding:2px 2px 2px 2px;
  2682. box-sizing:border-box;
  2683. width:100%;
  2684. }
  2685. #u43101_text {
  2686. border-width:0px;
  2687. word-wrap:break-word;
  2688. text-transform:none;
  2689. visibility:hidden;
  2690. }
  2691. #u43102_img {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:0px;
  2695. top:0px;
  2696. width:6px;
  2697. height:6px;
  2698. }
  2699. #u43102 {
  2700. border-width:0px;
  2701. position:absolute;
  2702. left:1372px;
  2703. top:80px;
  2704. width:6px;
  2705. height:6px;
  2706. display:flex;
  2707. }
  2708. #u43102 .text {
  2709. position:absolute;
  2710. align-self:center;
  2711. padding:2px 2px 2px 2px;
  2712. box-sizing:border-box;
  2713. width:100%;
  2714. }
  2715. #u43102_text {
  2716. border-width:0px;
  2717. word-wrap:break-word;
  2718. text-transform:none;
  2719. visibility:hidden;
  2720. }
  2721. #u43103_img {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:0px;
  2725. top:0px;
  2726. width:6px;
  2727. height:6px;
  2728. }
  2729. #u43103 {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:1379px;
  2733. top:80px;
  2734. width:6px;
  2735. height:6px;
  2736. display:flex;
  2737. }
  2738. #u43103 .text {
  2739. position:absolute;
  2740. align-self:center;
  2741. padding:2px 2px 2px 2px;
  2742. box-sizing:border-box;
  2743. width:100%;
  2744. }
  2745. #u43103_text {
  2746. border-width:0px;
  2747. word-wrap:break-word;
  2748. text-transform:none;
  2749. visibility:hidden;
  2750. }
  2751. #u43104_img {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:0px;
  2755. top:0px;
  2756. width:6px;
  2757. height:6px;
  2758. }
  2759. #u43104 {
  2760. border-width:0px;
  2761. position:absolute;
  2762. left:1386px;
  2763. top:80px;
  2764. width:6px;
  2765. height:6px;
  2766. display:flex;
  2767. }
  2768. #u43104 .text {
  2769. position:absolute;
  2770. align-self:center;
  2771. padding:2px 2px 2px 2px;
  2772. box-sizing:border-box;
  2773. width:100%;
  2774. }
  2775. #u43104_text {
  2776. border-width:0px;
  2777. word-wrap:break-word;
  2778. text-transform:none;
  2779. visibility:hidden;
  2780. }
  2781. #u43105 {
  2782. border-width:0px;
  2783. position:absolute;
  2784. left:0px;
  2785. top:0px;
  2786. width:0px;
  2787. height:0px;
  2788. }
  2789. #u43106_img {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:0px;
  2793. top:0px;
  2794. width:4px;
  2795. height:4px;
  2796. }
  2797. #u43106 {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:1332px;
  2801. top:67px;
  2802. width:4px;
  2803. height:4px;
  2804. display:flex;
  2805. }
  2806. #u43106 .text {
  2807. position:absolute;
  2808. align-self:center;
  2809. padding:2px 2px 2px 2px;
  2810. box-sizing:border-box;
  2811. width:100%;
  2812. }
  2813. #u43106_text {
  2814. border-width:0px;
  2815. word-wrap:break-word;
  2816. text-transform:none;
  2817. visibility:hidden;
  2818. }
  2819. #u43107_img {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:0px;
  2823. top:0px;
  2824. width:4px;
  2825. height:4px;
  2826. }
  2827. #u43107 {
  2828. border-width:0px;
  2829. position:absolute;
  2830. left:1337px;
  2831. top:67px;
  2832. width:4px;
  2833. height:4px;
  2834. display:flex;
  2835. }
  2836. #u43107 .text {
  2837. position:absolute;
  2838. align-self:center;
  2839. padding:2px 2px 2px 2px;
  2840. box-sizing:border-box;
  2841. width:100%;
  2842. }
  2843. #u43107_text {
  2844. border-width:0px;
  2845. word-wrap:break-word;
  2846. text-transform:none;
  2847. visibility:hidden;
  2848. }
  2849. #u43108_img {
  2850. border-width:0px;
  2851. position:absolute;
  2852. left:0px;
  2853. top:0px;
  2854. width:4px;
  2855. height:4px;
  2856. }
  2857. #u43108 {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:1342px;
  2861. top:67px;
  2862. width:4px;
  2863. height:4px;
  2864. display:flex;
  2865. }
  2866. #u43108 .text {
  2867. position:absolute;
  2868. align-self:center;
  2869. padding:2px 2px 2px 2px;
  2870. box-sizing:border-box;
  2871. width:100%;
  2872. }
  2873. #u43108_text {
  2874. border-width:0px;
  2875. word-wrap:break-word;
  2876. text-transform:none;
  2877. visibility:hidden;
  2878. }
  2879. #u43109_img {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:0px;
  2883. top:0px;
  2884. width:4px;
  2885. height:4px;
  2886. }
  2887. #u43109 {
  2888. border-width:0px;
  2889. position:absolute;
  2890. left:1347px;
  2891. top:67px;
  2892. width:4px;
  2893. height:4px;
  2894. display:flex;
  2895. }
  2896. #u43109 .text {
  2897. position:absolute;
  2898. align-self:center;
  2899. padding:2px 2px 2px 2px;
  2900. box-sizing:border-box;
  2901. width:100%;
  2902. }
  2903. #u43109_text {
  2904. border-width:0px;
  2905. word-wrap:break-word;
  2906. text-transform:none;
  2907. visibility:hidden;
  2908. }
  2909. #u43110_img {
  2910. border-width:0px;
  2911. position:absolute;
  2912. left:0px;
  2913. top:0px;
  2914. width:4px;
  2915. height:4px;
  2916. }
  2917. #u43110 {
  2918. border-width:0px;
  2919. position:absolute;
  2920. left:1332px;
  2921. top:72px;
  2922. width:4px;
  2923. height:4px;
  2924. display:flex;
  2925. }
  2926. #u43110 .text {
  2927. position:absolute;
  2928. align-self:center;
  2929. padding:2px 2px 2px 2px;
  2930. box-sizing:border-box;
  2931. width:100%;
  2932. }
  2933. #u43110_text {
  2934. border-width:0px;
  2935. word-wrap:break-word;
  2936. text-transform:none;
  2937. visibility:hidden;
  2938. }
  2939. #u43111_img {
  2940. border-width:0px;
  2941. position:absolute;
  2942. left:0px;
  2943. top:0px;
  2944. width:4px;
  2945. height:4px;
  2946. }
  2947. #u43111 {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:1337px;
  2951. top:72px;
  2952. width:4px;
  2953. height:4px;
  2954. display:flex;
  2955. }
  2956. #u43111 .text {
  2957. position:absolute;
  2958. align-self:center;
  2959. padding:2px 2px 2px 2px;
  2960. box-sizing:border-box;
  2961. width:100%;
  2962. }
  2963. #u43111_text {
  2964. border-width:0px;
  2965. word-wrap:break-word;
  2966. text-transform:none;
  2967. visibility:hidden;
  2968. }
  2969. #u43112_img {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:0px;
  2973. top:0px;
  2974. width:4px;
  2975. height:4px;
  2976. }
  2977. #u43112 {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:1342px;
  2981. top:72px;
  2982. width:4px;
  2983. height:4px;
  2984. display:flex;
  2985. }
  2986. #u43112 .text {
  2987. position:absolute;
  2988. align-self:center;
  2989. padding:2px 2px 2px 2px;
  2990. box-sizing:border-box;
  2991. width:100%;
  2992. }
  2993. #u43112_text {
  2994. border-width:0px;
  2995. word-wrap:break-word;
  2996. text-transform:none;
  2997. visibility:hidden;
  2998. }
  2999. #u43113_img {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:0px;
  3003. top:0px;
  3004. width:4px;
  3005. height:4px;
  3006. }
  3007. #u43113 {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:1347px;
  3011. top:72px;
  3012. width:4px;
  3013. height:4px;
  3014. display:flex;
  3015. }
  3016. #u43113 .text {
  3017. position:absolute;
  3018. align-self:center;
  3019. padding:2px 2px 2px 2px;
  3020. box-sizing:border-box;
  3021. width:100%;
  3022. }
  3023. #u43113_text {
  3024. border-width:0px;
  3025. word-wrap:break-word;
  3026. text-transform:none;
  3027. visibility:hidden;
  3028. }
  3029. #u43114_img {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:0px;
  3033. top:0px;
  3034. width:4px;
  3035. height:4px;
  3036. }
  3037. #u43114 {
  3038. border-width:0px;
  3039. position:absolute;
  3040. left:1332px;
  3041. top:77px;
  3042. width:4px;
  3043. height:4px;
  3044. display:flex;
  3045. }
  3046. #u43114 .text {
  3047. position:absolute;
  3048. align-self:center;
  3049. padding:2px 2px 2px 2px;
  3050. box-sizing:border-box;
  3051. width:100%;
  3052. }
  3053. #u43114_text {
  3054. border-width:0px;
  3055. word-wrap:break-word;
  3056. text-transform:none;
  3057. visibility:hidden;
  3058. }
  3059. #u43115_img {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:0px;
  3063. top:0px;
  3064. width:4px;
  3065. height:4px;
  3066. }
  3067. #u43115 {
  3068. border-width:0px;
  3069. position:absolute;
  3070. left:1337px;
  3071. top:77px;
  3072. width:4px;
  3073. height:4px;
  3074. display:flex;
  3075. }
  3076. #u43115 .text {
  3077. position:absolute;
  3078. align-self:center;
  3079. padding:2px 2px 2px 2px;
  3080. box-sizing:border-box;
  3081. width:100%;
  3082. }
  3083. #u43115_text {
  3084. border-width:0px;
  3085. word-wrap:break-word;
  3086. text-transform:none;
  3087. visibility:hidden;
  3088. }
  3089. #u43116_img {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:0px;
  3093. top:0px;
  3094. width:4px;
  3095. height:4px;
  3096. }
  3097. #u43116 {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:1342px;
  3101. top:77px;
  3102. width:4px;
  3103. height:4px;
  3104. display:flex;
  3105. }
  3106. #u43116 .text {
  3107. position:absolute;
  3108. align-self:center;
  3109. padding:2px 2px 2px 2px;
  3110. box-sizing:border-box;
  3111. width:100%;
  3112. }
  3113. #u43116_text {
  3114. border-width:0px;
  3115. word-wrap:break-word;
  3116. text-transform:none;
  3117. visibility:hidden;
  3118. }
  3119. #u43117_img {
  3120. border-width:0px;
  3121. position:absolute;
  3122. left:0px;
  3123. top:0px;
  3124. width:4px;
  3125. height:4px;
  3126. }
  3127. #u43117 {
  3128. border-width:0px;
  3129. position:absolute;
  3130. left:1347px;
  3131. top:77px;
  3132. width:4px;
  3133. height:4px;
  3134. display:flex;
  3135. }
  3136. #u43117 .text {
  3137. position:absolute;
  3138. align-self:center;
  3139. padding:2px 2px 2px 2px;
  3140. box-sizing:border-box;
  3141. width:100%;
  3142. }
  3143. #u43117_text {
  3144. border-width:0px;
  3145. word-wrap:break-word;
  3146. text-transform:none;
  3147. visibility:hidden;
  3148. }
  3149. #u43118_img {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:0px;
  3153. top:0px;
  3154. width:4px;
  3155. height:4px;
  3156. }
  3157. #u43118 {
  3158. border-width:0px;
  3159. position:absolute;
  3160. left:1332px;
  3161. top:82px;
  3162. width:4px;
  3163. height:4px;
  3164. display:flex;
  3165. }
  3166. #u43118 .text {
  3167. position:absolute;
  3168. align-self:center;
  3169. padding:2px 2px 2px 2px;
  3170. box-sizing:border-box;
  3171. width:100%;
  3172. }
  3173. #u43118_text {
  3174. border-width:0px;
  3175. word-wrap:break-word;
  3176. text-transform:none;
  3177. visibility:hidden;
  3178. }
  3179. #u43119_img {
  3180. border-width:0px;
  3181. position:absolute;
  3182. left:0px;
  3183. top:0px;
  3184. width:4px;
  3185. height:4px;
  3186. }
  3187. #u43119 {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:1337px;
  3191. top:82px;
  3192. width:4px;
  3193. height:4px;
  3194. display:flex;
  3195. }
  3196. #u43119 .text {
  3197. position:absolute;
  3198. align-self:center;
  3199. padding:2px 2px 2px 2px;
  3200. box-sizing:border-box;
  3201. width:100%;
  3202. }
  3203. #u43119_text {
  3204. border-width:0px;
  3205. word-wrap:break-word;
  3206. text-transform:none;
  3207. visibility:hidden;
  3208. }
  3209. #u43120_img {
  3210. border-width:0px;
  3211. position:absolute;
  3212. left:0px;
  3213. top:0px;
  3214. width:4px;
  3215. height:4px;
  3216. }
  3217. #u43120 {
  3218. border-width:0px;
  3219. position:absolute;
  3220. left:1342px;
  3221. top:82px;
  3222. width:4px;
  3223. height:4px;
  3224. display:flex;
  3225. }
  3226. #u43120 .text {
  3227. position:absolute;
  3228. align-self:center;
  3229. padding:2px 2px 2px 2px;
  3230. box-sizing:border-box;
  3231. width:100%;
  3232. }
  3233. #u43120_text {
  3234. border-width:0px;
  3235. word-wrap:break-word;
  3236. text-transform:none;
  3237. visibility:hidden;
  3238. }
  3239. #u43121_img {
  3240. border-width:0px;
  3241. position:absolute;
  3242. left:0px;
  3243. top:0px;
  3244. width:4px;
  3245. height:4px;
  3246. }
  3247. #u43121 {
  3248. border-width:0px;
  3249. position:absolute;
  3250. left:1347px;
  3251. top:82px;
  3252. width:4px;
  3253. height:4px;
  3254. display:flex;
  3255. }
  3256. #u43121 .text {
  3257. position:absolute;
  3258. align-self:center;
  3259. padding:2px 2px 2px 2px;
  3260. box-sizing:border-box;
  3261. width:100%;
  3262. }
  3263. #u43121_text {
  3264. border-width:0px;
  3265. word-wrap:break-word;
  3266. text-transform:none;
  3267. visibility:hidden;
  3268. }
  3269. #u43122_img {
  3270. border-width:0px;
  3271. position:absolute;
  3272. left:0px;
  3273. top:0px;
  3274. width:20px;
  3275. height:20px;
  3276. }
  3277. #u43122 {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:1454px;
  3281. top:66px;
  3282. width:20px;
  3283. height:20px;
  3284. display:flex;
  3285. }
  3286. #u43122 .text {
  3287. position:absolute;
  3288. align-self:center;
  3289. padding:2px 2px 2px 2px;
  3290. box-sizing:border-box;
  3291. width:100%;
  3292. }
  3293. #u43122_text {
  3294. border-width:0px;
  3295. word-wrap:break-word;
  3296. text-transform:none;
  3297. visibility:hidden;
  3298. }
  3299. #u43123_img {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:0px;
  3303. top:0px;
  3304. width:18px;
  3305. height:18px;
  3306. }
  3307. #u43123 {
  3308. border-width:0px;
  3309. position:absolute;
  3310. left:1503px;
  3311. top:67px;
  3312. width:18px;
  3313. height:18px;
  3314. display:flex;
  3315. }
  3316. #u43123 .text {
  3317. position:absolute;
  3318. align-self:center;
  3319. padding:2px 2px 2px 2px;
  3320. box-sizing:border-box;
  3321. width:100%;
  3322. }
  3323. #u43123_text {
  3324. border-width:0px;
  3325. word-wrap:break-word;
  3326. text-transform:none;
  3327. visibility:hidden;
  3328. }
  3329. #u43124_img {
  3330. border-width:0px;
  3331. position:absolute;
  3332. left:0px;
  3333. top:0px;
  3334. width:2px;
  3335. height:15px;
  3336. }
  3337. #u43124 {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:1488px;
  3341. top:69px;
  3342. width:1px;
  3343. height:14px;
  3344. display:flex;
  3345. }
  3346. #u43124 .text {
  3347. position:absolute;
  3348. align-self:center;
  3349. padding:2px 2px 2px 2px;
  3350. box-sizing:border-box;
  3351. width:100%;
  3352. }
  3353. #u43124_text {
  3354. border-width:0px;
  3355. word-wrap:break-word;
  3356. text-transform:none;
  3357. visibility:hidden;
  3358. }
  3359. #u43125_div {
  3360. border-width:0px;
  3361. position:absolute;
  3362. left:0px;
  3363. top:0px;
  3364. width:43px;
  3365. height:30px;
  3366. background:inherit;
  3367. background-color:rgba(255, 255, 255, 0);
  3368. border:none;
  3369. border-radius:0px;
  3370. -moz-box-shadow:none;
  3371. -webkit-box-shadow:none;
  3372. box-shadow:none;
  3373. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3374. font-weight:500;
  3375. font-style:normal;
  3376. font-size:14px;
  3377. color:#000000;
  3378. line-height:30px;
  3379. }
  3380. #u43125 {
  3381. border-width:0px;
  3382. position:absolute;
  3383. left:351px;
  3384. top:291px;
  3385. width:43px;
  3386. height:30px;
  3387. display:flex;
  3388. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3389. font-weight:500;
  3390. font-style:normal;
  3391. font-size:14px;
  3392. color:#000000;
  3393. line-height:30px;
  3394. }
  3395. #u43125 .text {
  3396. position:absolute;
  3397. align-self:flex-start;
  3398. padding:0px 0px 0px 0px;
  3399. box-sizing:border-box;
  3400. width:100%;
  3401. }
  3402. #u43125_text {
  3403. border-width:0px;
  3404. white-space:nowrap;
  3405. text-transform:none;
  3406. }
  3407. #u43126 {
  3408. border-width:0px;
  3409. position:absolute;
  3410. left:0px;
  3411. top:0px;
  3412. width:0px;
  3413. height:0px;
  3414. }
  3415. #u43127_div {
  3416. border-width:0px;
  3417. position:absolute;
  3418. left:0px;
  3419. top:0px;
  3420. width:30px;
  3421. height:30px;
  3422. background:inherit;
  3423. background-color:rgba(255, 255, 255, 1);
  3424. box-sizing:border-box;
  3425. border-width:1px;
  3426. border-style:solid;
  3427. border-color:rgba(121, 121, 121, 1);
  3428. border-radius:0px;
  3429. -moz-box-shadow:none;
  3430. -webkit-box-shadow:none;
  3431. box-shadow:none;
  3432. }
  3433. #u43127 {
  3434. border-width:0px;
  3435. position:absolute;
  3436. left:352px;
  3437. top:134px;
  3438. width:30px;
  3439. height:30px;
  3440. display:flex;
  3441. }
  3442. #u43127 .text {
  3443. position:absolute;
  3444. align-self:center;
  3445. padding:2px 2px 2px 2px;
  3446. box-sizing:border-box;
  3447. width:100%;
  3448. }
  3449. #u43127_text {
  3450. border-width:0px;
  3451. word-wrap:break-word;
  3452. text-transform:none;
  3453. visibility:hidden;
  3454. }
  3455. #u43128_img {
  3456. border-width:0px;
  3457. position:absolute;
  3458. left:0px;
  3459. top:0px;
  3460. width:19px;
  3461. height:18px;
  3462. }
  3463. #u43128 {
  3464. border-width:0px;
  3465. position:absolute;
  3466. left:358px;
  3467. top:140px;
  3468. width:19px;
  3469. height:18px;
  3470. display:flex;
  3471. -webkit-transform:rotate(135deg);
  3472. -moz-transform:rotate(135deg);
  3473. -ms-transform:rotate(135deg);
  3474. transform:rotate(135deg);
  3475. }
  3476. #u43128 .text {
  3477. position:absolute;
  3478. align-self:center;
  3479. padding:2px 2px 2px 2px;
  3480. box-sizing:border-box;
  3481. width:100%;
  3482. }
  3483. #u43128_text {
  3484. border-width:0px;
  3485. word-wrap:break-word;
  3486. text-transform:none;
  3487. visibility:hidden;
  3488. }
  3489. #u43129 {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:0px;
  3493. top:0px;
  3494. width:0px;
  3495. height:0px;
  3496. }
  3497. #u43130_div {
  3498. border-width:0px;
  3499. position:absolute;
  3500. left:0px;
  3501. top:0px;
  3502. width:30px;
  3503. height:30px;
  3504. background:inherit;
  3505. background-color:rgba(255, 255, 255, 1);
  3506. box-sizing:border-box;
  3507. border-width:1px;
  3508. border-style:solid;
  3509. border-color:rgba(121, 121, 121, 1);
  3510. border-radius:0px;
  3511. -moz-box-shadow:none;
  3512. -webkit-box-shadow:none;
  3513. box-shadow:none;
  3514. }
  3515. #u43130 {
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:392px;
  3519. top:134px;
  3520. width:30px;
  3521. height:30px;
  3522. display:flex;
  3523. }
  3524. #u43130 .text {
  3525. position:absolute;
  3526. align-self:center;
  3527. padding:2px 2px 2px 2px;
  3528. box-sizing:border-box;
  3529. width:100%;
  3530. }
  3531. #u43130_text {
  3532. border-width:0px;
  3533. word-wrap:break-word;
  3534. text-transform:none;
  3535. visibility:hidden;
  3536. }
  3537. #u43131_img {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:0px;
  3541. top:0px;
  3542. width:19px;
  3543. height:18px;
  3544. }
  3545. #u43131 {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:398px;
  3549. top:140px;
  3550. width:19px;
  3551. height:18px;
  3552. display:flex;
  3553. -webkit-transform:rotate(180deg);
  3554. -moz-transform:rotate(180deg);
  3555. -ms-transform:rotate(180deg);
  3556. transform:rotate(180deg);
  3557. }
  3558. #u43131 .text {
  3559. position:absolute;
  3560. align-self:center;
  3561. padding:2px 2px 2px 2px;
  3562. box-sizing:border-box;
  3563. width:100%;
  3564. }
  3565. #u43131_text {
  3566. border-width:0px;
  3567. word-wrap:break-word;
  3568. text-transform:none;
  3569. visibility:hidden;
  3570. }
  3571. #u43132 {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:0px;
  3575. top:0px;
  3576. width:0px;
  3577. height:0px;
  3578. }
  3579. #u43133_div {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:0px;
  3583. top:0px;
  3584. width:30px;
  3585. height:30px;
  3586. background:inherit;
  3587. background-color:rgba(255, 255, 255, 1);
  3588. box-sizing:border-box;
  3589. border-width:1px;
  3590. border-style:solid;
  3591. border-color:rgba(121, 121, 121, 1);
  3592. border-radius:0px;
  3593. -moz-box-shadow:none;
  3594. -webkit-box-shadow:none;
  3595. box-shadow:none;
  3596. }
  3597. #u43133 {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:432px;
  3601. top:134px;
  3602. width:30px;
  3603. height:30px;
  3604. display:flex;
  3605. }
  3606. #u43133 .text {
  3607. position:absolute;
  3608. align-self:center;
  3609. padding:2px 2px 2px 2px;
  3610. box-sizing:border-box;
  3611. width:100%;
  3612. }
  3613. #u43133_text {
  3614. border-width:0px;
  3615. word-wrap:break-word;
  3616. text-transform:none;
  3617. visibility:hidden;
  3618. }
  3619. #u43134_img {
  3620. border-width:0px;
  3621. position:absolute;
  3622. left:0px;
  3623. top:0px;
  3624. width:19px;
  3625. height:18px;
  3626. }
  3627. #u43134 {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:438px;
  3631. top:140px;
  3632. width:19px;
  3633. height:18px;
  3634. display:flex;
  3635. -webkit-transform:rotate(225deg);
  3636. -moz-transform:rotate(225deg);
  3637. -ms-transform:rotate(225deg);
  3638. transform:rotate(225deg);
  3639. }
  3640. #u43134 .text {
  3641. position:absolute;
  3642. align-self:center;
  3643. padding:2px 2px 2px 2px;
  3644. box-sizing:border-box;
  3645. width:100%;
  3646. }
  3647. #u43134_text {
  3648. border-width:0px;
  3649. word-wrap:break-word;
  3650. text-transform:none;
  3651. visibility:hidden;
  3652. }
  3653. #u43135 {
  3654. border-width:0px;
  3655. position:absolute;
  3656. left:0px;
  3657. top:0px;
  3658. width:0px;
  3659. height:0px;
  3660. }
  3661. #u43136_div {
  3662. border-width:0px;
  3663. position:absolute;
  3664. left:0px;
  3665. top:0px;
  3666. width:30px;
  3667. height:30px;
  3668. background:inherit;
  3669. background-color:rgba(255, 255, 255, 1);
  3670. box-sizing:border-box;
  3671. border-width:1px;
  3672. border-style:solid;
  3673. border-color:rgba(121, 121, 121, 1);
  3674. border-radius:0px;
  3675. -moz-box-shadow:none;
  3676. -webkit-box-shadow:none;
  3677. box-shadow:none;
  3678. }
  3679. #u43136 {
  3680. border-width:0px;
  3681. position:absolute;
  3682. left:352px;
  3683. top:174px;
  3684. width:30px;
  3685. height:30px;
  3686. display:flex;
  3687. }
  3688. #u43136 .text {
  3689. position:absolute;
  3690. align-self:center;
  3691. padding:2px 2px 2px 2px;
  3692. box-sizing:border-box;
  3693. width:100%;
  3694. }
  3695. #u43136_text {
  3696. border-width:0px;
  3697. word-wrap:break-word;
  3698. text-transform:none;
  3699. visibility:hidden;
  3700. }
  3701. #u43137_img {
  3702. border-width:0px;
  3703. position:absolute;
  3704. left:0px;
  3705. top:0px;
  3706. width:19px;
  3707. height:18px;
  3708. }
  3709. #u43137 {
  3710. border-width:0px;
  3711. position:absolute;
  3712. left:358px;
  3713. top:180px;
  3714. width:19px;
  3715. height:18px;
  3716. display:flex;
  3717. -webkit-transform:rotate(90deg);
  3718. -moz-transform:rotate(90deg);
  3719. -ms-transform:rotate(90deg);
  3720. transform:rotate(90deg);
  3721. }
  3722. #u43137 .text {
  3723. position:absolute;
  3724. align-self:center;
  3725. padding:2px 2px 2px 2px;
  3726. box-sizing:border-box;
  3727. width:100%;
  3728. }
  3729. #u43137_text {
  3730. border-width:0px;
  3731. word-wrap:break-word;
  3732. text-transform:none;
  3733. visibility:hidden;
  3734. }
  3735. #u43138 {
  3736. border-width:0px;
  3737. position:absolute;
  3738. left:0px;
  3739. top:0px;
  3740. width:0px;
  3741. height:0px;
  3742. }
  3743. #u43139_div {
  3744. border-width:0px;
  3745. position:absolute;
  3746. left:0px;
  3747. top:0px;
  3748. width:30px;
  3749. height:30px;
  3750. background:inherit;
  3751. background-color:rgba(255, 255, 255, 1);
  3752. box-sizing:border-box;
  3753. border-width:1px;
  3754. border-style:solid;
  3755. border-color:rgba(121, 121, 121, 1);
  3756. border-radius:0px;
  3757. -moz-box-shadow:none;
  3758. -webkit-box-shadow:none;
  3759. box-shadow:none;
  3760. }
  3761. #u43139 {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:432px;
  3765. top:174px;
  3766. width:30px;
  3767. height:30px;
  3768. display:flex;
  3769. }
  3770. #u43139 .text {
  3771. position:absolute;
  3772. align-self:center;
  3773. padding:2px 2px 2px 2px;
  3774. box-sizing:border-box;
  3775. width:100%;
  3776. }
  3777. #u43139_text {
  3778. border-width:0px;
  3779. word-wrap:break-word;
  3780. text-transform:none;
  3781. visibility:hidden;
  3782. }
  3783. #u43140_img {
  3784. border-width:0px;
  3785. position:absolute;
  3786. left:0px;
  3787. top:0px;
  3788. width:19px;
  3789. height:18px;
  3790. }
  3791. #u43140 {
  3792. border-width:0px;
  3793. position:absolute;
  3794. left:438px;
  3795. top:180px;
  3796. width:19px;
  3797. height:18px;
  3798. display:flex;
  3799. -webkit-transform:rotate(270deg);
  3800. -moz-transform:rotate(270deg);
  3801. -ms-transform:rotate(270deg);
  3802. transform:rotate(270deg);
  3803. }
  3804. #u43140 .text {
  3805. position:absolute;
  3806. align-self:center;
  3807. padding:2px 2px 2px 2px;
  3808. box-sizing:border-box;
  3809. width:100%;
  3810. }
  3811. #u43140_text {
  3812. border-width:0px;
  3813. word-wrap:break-word;
  3814. text-transform:none;
  3815. visibility:hidden;
  3816. }
  3817. #u43141 {
  3818. border-width:0px;
  3819. position:absolute;
  3820. left:0px;
  3821. top:0px;
  3822. width:0px;
  3823. height:0px;
  3824. }
  3825. #u43142_div {
  3826. border-width:0px;
  3827. position:absolute;
  3828. left:0px;
  3829. top:0px;
  3830. width:30px;
  3831. height:30px;
  3832. background:inherit;
  3833. background-color:rgba(255, 255, 255, 1);
  3834. box-sizing:border-box;
  3835. border-width:1px;
  3836. border-style:solid;
  3837. border-color:rgba(121, 121, 121, 1);
  3838. border-radius:0px;
  3839. -moz-box-shadow:none;
  3840. -webkit-box-shadow:none;
  3841. box-shadow:none;
  3842. }
  3843. #u43142 {
  3844. border-width:0px;
  3845. position:absolute;
  3846. left:352px;
  3847. top:214px;
  3848. width:30px;
  3849. height:30px;
  3850. display:flex;
  3851. }
  3852. #u43142 .text {
  3853. position:absolute;
  3854. align-self:center;
  3855. padding:2px 2px 2px 2px;
  3856. box-sizing:border-box;
  3857. width:100%;
  3858. }
  3859. #u43142_text {
  3860. border-width:0px;
  3861. word-wrap:break-word;
  3862. text-transform:none;
  3863. visibility:hidden;
  3864. }
  3865. #u43143_img {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:0px;
  3869. top:0px;
  3870. width:19px;
  3871. height:18px;
  3872. }
  3873. #u43143 {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:358px;
  3877. top:220px;
  3878. width:19px;
  3879. height:18px;
  3880. display:flex;
  3881. -webkit-transform:rotate(51deg);
  3882. -moz-transform:rotate(51deg);
  3883. -ms-transform:rotate(51deg);
  3884. transform:rotate(51deg);
  3885. }
  3886. #u43143 .text {
  3887. position:absolute;
  3888. align-self:center;
  3889. padding:2px 2px 2px 2px;
  3890. box-sizing:border-box;
  3891. width:100%;
  3892. }
  3893. #u43143_text {
  3894. border-width:0px;
  3895. word-wrap:break-word;
  3896. text-transform:none;
  3897. visibility:hidden;
  3898. }
  3899. #u43144 {
  3900. border-width:0px;
  3901. position:absolute;
  3902. left:0px;
  3903. top:0px;
  3904. width:0px;
  3905. height:0px;
  3906. }
  3907. #u43145_div {
  3908. border-width:0px;
  3909. position:absolute;
  3910. left:0px;
  3911. top:0px;
  3912. width:30px;
  3913. height:30px;
  3914. background:inherit;
  3915. background-color:rgba(255, 255, 255, 1);
  3916. box-sizing:border-box;
  3917. border-width:1px;
  3918. border-style:solid;
  3919. border-color:rgba(121, 121, 121, 1);
  3920. border-radius:0px;
  3921. -moz-box-shadow:none;
  3922. -webkit-box-shadow:none;
  3923. box-shadow:none;
  3924. }
  3925. #u43145 {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:392px;
  3929. top:214px;
  3930. width:30px;
  3931. height:30px;
  3932. display:flex;
  3933. }
  3934. #u43145 .text {
  3935. position:absolute;
  3936. align-self:center;
  3937. padding:2px 2px 2px 2px;
  3938. box-sizing:border-box;
  3939. width:100%;
  3940. }
  3941. #u43145_text {
  3942. border-width:0px;
  3943. word-wrap:break-word;
  3944. text-transform:none;
  3945. visibility:hidden;
  3946. }
  3947. #u43146_img {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:0px;
  3951. top:0px;
  3952. width:19px;
  3953. height:18px;
  3954. }
  3955. #u43146 {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:398px;
  3959. top:220px;
  3960. width:19px;
  3961. height:18px;
  3962. display:flex;
  3963. }
  3964. #u43146 .text {
  3965. position:absolute;
  3966. align-self:center;
  3967. padding:2px 2px 2px 2px;
  3968. box-sizing:border-box;
  3969. width:100%;
  3970. }
  3971. #u43146_text {
  3972. border-width:0px;
  3973. word-wrap:break-word;
  3974. text-transform:none;
  3975. visibility:hidden;
  3976. }
  3977. #u43147 {
  3978. border-width:0px;
  3979. position:absolute;
  3980. left:0px;
  3981. top:0px;
  3982. width:0px;
  3983. height:0px;
  3984. }
  3985. #u43148_div {
  3986. border-width:0px;
  3987. position:absolute;
  3988. left:0px;
  3989. top:0px;
  3990. width:30px;
  3991. height:30px;
  3992. background:inherit;
  3993. background-color:rgba(255, 255, 255, 1);
  3994. box-sizing:border-box;
  3995. border-width:1px;
  3996. border-style:solid;
  3997. border-color:rgba(121, 121, 121, 1);
  3998. border-radius:0px;
  3999. -moz-box-shadow:none;
  4000. -webkit-box-shadow:none;
  4001. box-shadow:none;
  4002. }
  4003. #u43148 {
  4004. border-width:0px;
  4005. position:absolute;
  4006. left:432px;
  4007. top:214px;
  4008. width:30px;
  4009. height:30px;
  4010. display:flex;
  4011. }
  4012. #u43148 .text {
  4013. position:absolute;
  4014. align-self:center;
  4015. padding:2px 2px 2px 2px;
  4016. box-sizing:border-box;
  4017. width:100%;
  4018. }
  4019. #u43148_text {
  4020. border-width:0px;
  4021. word-wrap:break-word;
  4022. text-transform:none;
  4023. visibility:hidden;
  4024. }
  4025. #u43149_img {
  4026. border-width:0px;
  4027. position:absolute;
  4028. left:0px;
  4029. top:0px;
  4030. width:19px;
  4031. height:18px;
  4032. }
  4033. #u43149 {
  4034. border-width:0px;
  4035. position:absolute;
  4036. left:438px;
  4037. top:220px;
  4038. width:19px;
  4039. height:18px;
  4040. display:flex;
  4041. -webkit-transform:rotate(300deg);
  4042. -moz-transform:rotate(300deg);
  4043. -ms-transform:rotate(300deg);
  4044. transform:rotate(300deg);
  4045. }
  4046. #u43149 .text {
  4047. position:absolute;
  4048. align-self:center;
  4049. padding:2px 2px 2px 2px;
  4050. box-sizing:border-box;
  4051. width:100%;
  4052. }
  4053. #u43149_text {
  4054. border-width:0px;
  4055. word-wrap:break-word;
  4056. text-transform:none;
  4057. visibility:hidden;
  4058. }
  4059. #u43150_div {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:0px;
  4063. top:0px;
  4064. width:30px;
  4065. height:30px;
  4066. background:inherit;
  4067. background-color:rgba(255, 255, 255, 1);
  4068. box-sizing:border-box;
  4069. border-width:1px;
  4070. border-style:solid;
  4071. border-color:rgba(121, 121, 121, 1);
  4072. border-radius:7px;
  4073. -moz-box-shadow:none;
  4074. -webkit-box-shadow:none;
  4075. box-shadow:none;
  4076. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4077. font-weight:700;
  4078. font-style:normal;
  4079. font-size:24px;
  4080. }
  4081. #u43150 {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:472px;
  4085. top:134px;
  4086. width:30px;
  4087. height:30px;
  4088. display:flex;
  4089. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4090. font-weight:700;
  4091. font-style:normal;
  4092. font-size:24px;
  4093. }
  4094. #u43150 .text {
  4095. position:absolute;
  4096. align-self:center;
  4097. padding:2px 2px 2px 2px;
  4098. box-sizing:border-box;
  4099. width:100%;
  4100. }
  4101. #u43150_text {
  4102. border-width:0px;
  4103. word-wrap:break-word;
  4104. text-transform:none;
  4105. }
  4106. #u43151_div {
  4107. border-width:0px;
  4108. position:absolute;
  4109. left:0px;
  4110. top:0px;
  4111. width:30px;
  4112. height:30px;
  4113. background:inherit;
  4114. background-color:rgba(255, 255, 255, 1);
  4115. box-sizing:border-box;
  4116. border-width:1px;
  4117. border-style:solid;
  4118. border-color:rgba(121, 121, 121, 1);
  4119. border-radius:7px;
  4120. -moz-box-shadow:none;
  4121. -webkit-box-shadow:none;
  4122. box-shadow:none;
  4123. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4124. font-weight:700;
  4125. font-style:normal;
  4126. font-size:24px;
  4127. }
  4128. #u43151 {
  4129. border-width:0px;
  4130. position:absolute;
  4131. left:472px;
  4132. top:174px;
  4133. width:30px;
  4134. height:30px;
  4135. display:flex;
  4136. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4137. font-weight:700;
  4138. font-style:normal;
  4139. font-size:24px;
  4140. }
  4141. #u43151 .text {
  4142. position:absolute;
  4143. align-self:center;
  4144. padding:2px 2px 2px 2px;
  4145. box-sizing:border-box;
  4146. width:100%;
  4147. }
  4148. #u43151_text {
  4149. border-width:0px;
  4150. word-wrap:break-word;
  4151. text-transform:none;
  4152. }
  4153. #u43152_div {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:0px;
  4157. top:0px;
  4158. width:30px;
  4159. height:30px;
  4160. background:inherit;
  4161. background-color:rgba(255, 255, 255, 1);
  4162. box-sizing:border-box;
  4163. border-width:1px;
  4164. border-style:solid;
  4165. border-color:rgba(121, 121, 121, 1);
  4166. border-radius:7px;
  4167. -moz-box-shadow:none;
  4168. -webkit-box-shadow:none;
  4169. box-shadow:none;
  4170. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4171. font-weight:700;
  4172. font-style:normal;
  4173. font-size:24px;
  4174. }
  4175. #u43152 {
  4176. border-width:0px;
  4177. position:absolute;
  4178. left:472px;
  4179. top:214px;
  4180. width:30px;
  4181. height:30px;
  4182. display:flex;
  4183. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4184. font-weight:700;
  4185. font-style:normal;
  4186. font-size:24px;
  4187. }
  4188. #u43152 .text {
  4189. position:absolute;
  4190. align-self:center;
  4191. padding:2px 2px 2px 2px;
  4192. box-sizing:border-box;
  4193. width:100%;
  4194. }
  4195. #u43152_text {
  4196. border-width:0px;
  4197. word-wrap:break-word;
  4198. text-transform:none;
  4199. }
  4200. #u43153 {
  4201. border-width:0px;
  4202. position:absolute;
  4203. left:0px;
  4204. top:0px;
  4205. width:0px;
  4206. height:0px;
  4207. }
  4208. #u43154_div {
  4209. border-width:0px;
  4210. position:absolute;
  4211. left:0px;
  4212. top:0px;
  4213. width:30px;
  4214. height:30px;
  4215. background:inherit;
  4216. background-color:rgba(255, 255, 255, 1);
  4217. box-sizing:border-box;
  4218. border-width:1px;
  4219. border-style:solid;
  4220. border-color:rgba(121, 121, 121, 1);
  4221. border-radius:0px;
  4222. -moz-box-shadow:none;
  4223. -webkit-box-shadow:none;
  4224. box-shadow:none;
  4225. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4226. font-weight:700;
  4227. font-style:normal;
  4228. font-size:18px;
  4229. }
  4230. #u43154 {
  4231. border-width:0px;
  4232. position:absolute;
  4233. left:512px;
  4234. top:134px;
  4235. width:30px;
  4236. height:30px;
  4237. display:flex;
  4238. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4239. font-weight:700;
  4240. font-style:normal;
  4241. font-size:18px;
  4242. }
  4243. #u43154 .text {
  4244. position:absolute;
  4245. align-self:center;
  4246. padding:2px 2px 2px 2px;
  4247. box-sizing:border-box;
  4248. width:100%;
  4249. }
  4250. #u43154_text {
  4251. border-width:0px;
  4252. word-wrap:break-word;
  4253. text-transform:none;
  4254. visibility:hidden;
  4255. }
  4256. #u43155_img {
  4257. border-width:0px;
  4258. position:absolute;
  4259. left:0px;
  4260. top:0px;
  4261. width:14px;
  4262. height:14px;
  4263. }
  4264. #u43155 {
  4265. border-width:0px;
  4266. position:absolute;
  4267. left:520px;
  4268. top:142px;
  4269. width:14px;
  4270. height:14px;
  4271. display:flex;
  4272. }
  4273. #u43155 .text {
  4274. position:absolute;
  4275. align-self:center;
  4276. padding:2px 2px 2px 2px;
  4277. box-sizing:border-box;
  4278. width:100%;
  4279. }
  4280. #u43155_text {
  4281. border-width:0px;
  4282. word-wrap:break-word;
  4283. text-transform:none;
  4284. visibility:hidden;
  4285. }
  4286. #u43156 {
  4287. border-width:0px;
  4288. position:absolute;
  4289. left:0px;
  4290. top:0px;
  4291. width:0px;
  4292. height:0px;
  4293. }
  4294. #u43157_div {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:0px;
  4298. top:0px;
  4299. width:30px;
  4300. height:30px;
  4301. background:inherit;
  4302. background-color:rgba(255, 255, 255, 1);
  4303. box-sizing:border-box;
  4304. border-width:1px;
  4305. border-style:solid;
  4306. border-color:rgba(121, 121, 121, 1);
  4307. border-radius:0px;
  4308. -moz-box-shadow:none;
  4309. -webkit-box-shadow:none;
  4310. box-shadow:none;
  4311. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4312. font-weight:700;
  4313. font-style:normal;
  4314. font-size:18px;
  4315. }
  4316. #u43157 {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:512px;
  4320. top:174px;
  4321. width:30px;
  4322. height:30px;
  4323. display:flex;
  4324. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4325. font-weight:700;
  4326. font-style:normal;
  4327. font-size:18px;
  4328. }
  4329. #u43157 .text {
  4330. position:absolute;
  4331. align-self:center;
  4332. padding:2px 2px 2px 2px;
  4333. box-sizing:border-box;
  4334. width:100%;
  4335. }
  4336. #u43157_text {
  4337. border-width:0px;
  4338. word-wrap:break-word;
  4339. text-transform:none;
  4340. visibility:hidden;
  4341. }
  4342. #u43158_img {
  4343. border-width:0px;
  4344. position:absolute;
  4345. left:0px;
  4346. top:0px;
  4347. width:14px;
  4348. height:14px;
  4349. }
  4350. #u43158 {
  4351. border-width:0px;
  4352. position:absolute;
  4353. left:520px;
  4354. top:182px;
  4355. width:14px;
  4356. height:14px;
  4357. display:flex;
  4358. }
  4359. #u43158 .text {
  4360. position:absolute;
  4361. align-self:center;
  4362. padding:2px 2px 2px 2px;
  4363. box-sizing:border-box;
  4364. width:100%;
  4365. }
  4366. #u43158_text {
  4367. border-width:0px;
  4368. word-wrap:break-word;
  4369. text-transform:none;
  4370. visibility:hidden;
  4371. }
  4372. #u43159 {
  4373. border-width:0px;
  4374. position:absolute;
  4375. left:0px;
  4376. top:0px;
  4377. width:0px;
  4378. height:0px;
  4379. }
  4380. #u43160_div {
  4381. border-width:0px;
  4382. position:absolute;
  4383. left:0px;
  4384. top:0px;
  4385. width:30px;
  4386. height:30px;
  4387. background:inherit;
  4388. background-color:rgba(255, 255, 255, 1);
  4389. box-sizing:border-box;
  4390. border-width:1px;
  4391. border-style:solid;
  4392. border-color:rgba(121, 121, 121, 1);
  4393. border-radius:0px;
  4394. -moz-box-shadow:none;
  4395. -webkit-box-shadow:none;
  4396. box-shadow:none;
  4397. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4398. font-weight:700;
  4399. font-style:normal;
  4400. font-size:18px;
  4401. }
  4402. #u43160 {
  4403. border-width:0px;
  4404. position:absolute;
  4405. left:512px;
  4406. top:214px;
  4407. width:30px;
  4408. height:30px;
  4409. display:flex;
  4410. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4411. font-weight:700;
  4412. font-style:normal;
  4413. font-size:18px;
  4414. }
  4415. #u43160 .text {
  4416. position:absolute;
  4417. align-self:center;
  4418. padding:2px 2px 2px 2px;
  4419. box-sizing:border-box;
  4420. width:100%;
  4421. }
  4422. #u43160_text {
  4423. border-width:0px;
  4424. word-wrap:break-word;
  4425. text-transform:none;
  4426. visibility:hidden;
  4427. }
  4428. #u43161_img {
  4429. border-width:0px;
  4430. position:absolute;
  4431. left:0px;
  4432. top:0px;
  4433. width:17px;
  4434. height:11px;
  4435. }
  4436. #u43161 {
  4437. border-width:0px;
  4438. position:absolute;
  4439. left:519px;
  4440. top:224px;
  4441. width:17px;
  4442. height:11px;
  4443. display:flex;
  4444. }
  4445. #u43161 .text {
  4446. position:absolute;
  4447. align-self:center;
  4448. padding:2px 2px 2px 2px;
  4449. box-sizing:border-box;
  4450. width:100%;
  4451. }
  4452. #u43161_text {
  4453. border-width:0px;
  4454. word-wrap:break-word;
  4455. text-transform:none;
  4456. visibility:hidden;
  4457. }
  4458. #u43162 {
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:0px;
  4462. top:0px;
  4463. width:0px;
  4464. height:0px;
  4465. }
  4466. #u43163_div {
  4467. border-width:0px;
  4468. position:absolute;
  4469. left:0px;
  4470. top:0px;
  4471. width:84px;
  4472. height:21px;
  4473. background:inherit;
  4474. background-color:rgba(51, 51, 51, 1);
  4475. border:none;
  4476. border-radius:11px;
  4477. -moz-box-shadow:none;
  4478. -webkit-box-shadow:none;
  4479. box-shadow:none;
  4480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4481. font-weight:400;
  4482. font-style:normal;
  4483. font-size:12px;
  4484. color:#FFFFFF;
  4485. text-align:center;
  4486. }
  4487. #u43163 {
  4488. border-width:0px;
  4489. position:absolute;
  4490. left:443px;
  4491. top:240px;
  4492. width:84px;
  4493. height:21px;
  4494. display:flex;
  4495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4496. font-weight:400;
  4497. font-style:normal;
  4498. font-size:12px;
  4499. color:#FFFFFF;
  4500. text-align:center;
  4501. }
  4502. #u43163 .text {
  4503. position:absolute;
  4504. align-self:center;
  4505. padding:2px 2px 2px 2px;
  4506. box-sizing:border-box;
  4507. width:100%;
  4508. }
  4509. #u43163_text {
  4510. border-width:0px;
  4511. white-space:nowrap;
  4512. text-transform:none;
  4513. }
  4514. #u43164_img {
  4515. border-width:0px;
  4516. position:absolute;
  4517. left:0px;
  4518. top:0px;
  4519. width:11px;
  4520. height:17px;
  4521. }
  4522. #u43164 {
  4523. border-width:0px;
  4524. position:absolute;
  4525. left:495px;
  4526. top:271px;
  4527. width:11px;
  4528. height:17px;
  4529. display:flex;
  4530. }
  4531. #u43164 .text {
  4532. position:absolute;
  4533. align-self:center;
  4534. padding:2px 2px 2px 2px;
  4535. box-sizing:border-box;
  4536. width:100%;
  4537. }
  4538. #u43164_text {
  4539. border-width:0px;
  4540. word-wrap:break-word;
  4541. text-transform:none;
  4542. visibility:hidden;
  4543. }
  4544. #u43165_div {
  4545. border-width:0px;
  4546. position:absolute;
  4547. left:0px;
  4548. top:0px;
  4549. width:191px;
  4550. height:6px;
  4551. background:inherit;
  4552. background-color:rgba(255, 255, 255, 1);
  4553. box-sizing:border-box;
  4554. border-width:1px;
  4555. border-style:solid;
  4556. border-color:rgba(228, 228, 228, 1);
  4557. border-radius:7px;
  4558. -moz-box-shadow:none;
  4559. -webkit-box-shadow:none;
  4560. box-shadow:none;
  4561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4562. font-weight:400;
  4563. font-style:normal;
  4564. font-size:12px;
  4565. color:#FFFFFF;
  4566. }
  4567. #u43165 {
  4568. border-width:0px;
  4569. position:absolute;
  4570. left:351px;
  4571. top:268px;
  4572. width:191px;
  4573. height:6px;
  4574. display:flex;
  4575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4576. font-weight:400;
  4577. font-style:normal;
  4578. font-size:12px;
  4579. color:#FFFFFF;
  4580. }
  4581. #u43165 .text {
  4582. position:absolute;
  4583. align-self:center;
  4584. padding:8px 15px 8px 15px;
  4585. box-sizing:border-box;
  4586. width:100%;
  4587. }
  4588. #u43165_text {
  4589. border-width:0px;
  4590. word-wrap:break-word;
  4591. text-transform:none;
  4592. visibility:hidden;
  4593. }
  4594. #u43166_div {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:0px;
  4598. top:0px;
  4599. width:140px;
  4600. height:6px;
  4601. background:inherit;
  4602. background-color:rgba(51, 153, 255, 1);
  4603. box-sizing:border-box;
  4604. border-width:1px;
  4605. border-style:solid;
  4606. border-color:rgba(228, 228, 228, 1);
  4607. border-radius:7px;
  4608. -moz-box-shadow:none;
  4609. -webkit-box-shadow:none;
  4610. box-shadow:none;
  4611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4612. font-weight:400;
  4613. font-style:normal;
  4614. font-size:12px;
  4615. color:#FFFFFF;
  4616. }
  4617. #u43166 {
  4618. border-width:0px;
  4619. position:absolute;
  4620. left:351px;
  4621. top:268px;
  4622. width:140px;
  4623. height:6px;
  4624. display:flex;
  4625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4626. font-weight:400;
  4627. font-style:normal;
  4628. font-size:12px;
  4629. color:#FFFFFF;
  4630. }
  4631. #u43166 .text {
  4632. position:absolute;
  4633. align-self:center;
  4634. padding:8px 15px 8px 15px;
  4635. box-sizing:border-box;
  4636. width:100%;
  4637. }
  4638. #u43166_text {
  4639. border-width:0px;
  4640. word-wrap:break-word;
  4641. text-transform:none;
  4642. visibility:hidden;
  4643. }
  4644. #u43167_img {
  4645. border-width:0px;
  4646. position:absolute;
  4647. left:-3px;
  4648. top:-3px;
  4649. width:20px;
  4650. height:20px;
  4651. }
  4652. #u43167 {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:480px;
  4656. top:264px;
  4657. width:14px;
  4658. height:14px;
  4659. display:flex;
  4660. }
  4661. #u43167 .text {
  4662. position:absolute;
  4663. align-self:center;
  4664. padding:2px 2px 2px 2px;
  4665. box-sizing:border-box;
  4666. width:100%;
  4667. }
  4668. #u43167_text {
  4669. border-width:0px;
  4670. word-wrap:break-word;
  4671. text-transform:none;
  4672. visibility:hidden;
  4673. }
  4674. #u43168 {
  4675. border-width:0px;
  4676. position:absolute;
  4677. left:358px;
  4678. top:410px;
  4679. width:127px;
  4680. height:240px;
  4681. }
  4682. #u43168_children {
  4683. border-width:0px;
  4684. position:absolute;
  4685. left:0px;
  4686. top:0px;
  4687. width:0px;
  4688. height:0px;
  4689. }
  4690. #u43169 {
  4691. border-width:0px;
  4692. position:absolute;
  4693. left:0px;
  4694. top:0px;
  4695. width:80px;
  4696. height:20px;
  4697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4698. font-weight:400;
  4699. font-style:normal;
  4700. }
  4701. #u43170_img {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:0px;
  4705. top:0px;
  4706. width:9px;
  4707. height:9px;
  4708. }
  4709. #u43170 {
  4710. border-width:0px;
  4711. position:absolute;
  4712. left:6px;
  4713. top:6px;
  4714. width:9px;
  4715. height:9px;
  4716. display:flex;
  4717. }
  4718. #u43170 .text {
  4719. position:absolute;
  4720. align-self:center;
  4721. padding:2px 2px 2px 2px;
  4722. box-sizing:border-box;
  4723. width:100%;
  4724. }
  4725. #u43170_img.selected {
  4726. }
  4727. #u43170.selected {
  4728. }
  4729. #u43170_text {
  4730. border-width:0px;
  4731. word-wrap:break-word;
  4732. text-transform:none;
  4733. visibility:hidden;
  4734. }
  4735. #u43171_div {
  4736. border-width:0px;
  4737. position:absolute;
  4738. left:0px;
  4739. top:0px;
  4740. width:58px;
  4741. height:20px;
  4742. background:inherit;
  4743. background-color:rgba(255, 255, 255, 0);
  4744. border:none;
  4745. border-radius:0px;
  4746. -moz-box-shadow:none;
  4747. -webkit-box-shadow:none;
  4748. box-shadow:none;
  4749. }
  4750. #u43171 {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:22px;
  4754. top:0px;
  4755. width:58px;
  4756. height:20px;
  4757. display:flex;
  4758. }
  4759. #u43171 .text {
  4760. position:absolute;
  4761. align-self:center;
  4762. padding:2px 2px 2px 3px;
  4763. box-sizing:border-box;
  4764. width:100%;
  4765. }
  4766. #u43171_text {
  4767. border-width:0px;
  4768. white-space:nowrap;
  4769. text-transform:none;
  4770. }
  4771. #u43169_children {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:0px;
  4775. top:0px;
  4776. width:0px;
  4777. height:0px;
  4778. }
  4779. #u43172 {
  4780. border-width:0px;
  4781. position:absolute;
  4782. left:20px;
  4783. top:20px;
  4784. width:87px;
  4785. height:20px;
  4786. }
  4787. #u43173_img {
  4788. border-width:0px;
  4789. position:absolute;
  4790. left:0px;
  4791. top:0px;
  4792. width:9px;
  4793. height:9px;
  4794. }
  4795. #u43173 {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:6px;
  4799. top:6px;
  4800. width:9px;
  4801. height:9px;
  4802. display:flex;
  4803. }
  4804. #u43173 .text {
  4805. position:absolute;
  4806. align-self:center;
  4807. padding:2px 2px 2px 2px;
  4808. box-sizing:border-box;
  4809. width:100%;
  4810. }
  4811. #u43173_img.selected {
  4812. }
  4813. #u43173.selected {
  4814. }
  4815. #u43173_text {
  4816. border-width:0px;
  4817. word-wrap:break-word;
  4818. text-transform:none;
  4819. visibility:hidden;
  4820. }
  4821. #u43174_div {
  4822. border-width:0px;
  4823. position:absolute;
  4824. left:0px;
  4825. top:0px;
  4826. width:65px;
  4827. height:20px;
  4828. background:inherit;
  4829. background-color:rgba(255, 255, 255, 0);
  4830. border:none;
  4831. border-radius:0px;
  4832. -moz-box-shadow:none;
  4833. -webkit-box-shadow:none;
  4834. box-shadow:none;
  4835. }
  4836. #u43174 {
  4837. border-width:0px;
  4838. position:absolute;
  4839. left:22px;
  4840. top:0px;
  4841. width:65px;
  4842. height:20px;
  4843. display:flex;
  4844. }
  4845. #u43174 .text {
  4846. position:absolute;
  4847. align-self:center;
  4848. padding:2px 2px 2px 3px;
  4849. box-sizing:border-box;
  4850. width:100%;
  4851. }
  4852. #u43174_text {
  4853. border-width:0px;
  4854. white-space:nowrap;
  4855. text-transform:none;
  4856. }
  4857. #u43172_children {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:0px;
  4861. top:0px;
  4862. width:0px;
  4863. height:0px;
  4864. }
  4865. #u43175 {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:20px;
  4869. top:20px;
  4870. width:87px;
  4871. height:20px;
  4872. }
  4873. #u43176_div {
  4874. border-width:0px;
  4875. position:absolute;
  4876. left:0px;
  4877. top:0px;
  4878. width:65px;
  4879. height:20px;
  4880. background:inherit;
  4881. background-color:rgba(255, 255, 255, 0);
  4882. border:none;
  4883. border-radius:0px;
  4884. -moz-box-shadow:none;
  4885. -webkit-box-shadow:none;
  4886. box-shadow:none;
  4887. }
  4888. #u43176 {
  4889. border-width:0px;
  4890. position:absolute;
  4891. left:22px;
  4892. top:0px;
  4893. width:65px;
  4894. height:20px;
  4895. display:flex;
  4896. }
  4897. #u43176 .text {
  4898. position:absolute;
  4899. align-self:center;
  4900. padding:2px 2px 2px 3px;
  4901. box-sizing:border-box;
  4902. width:100%;
  4903. }
  4904. #u43176_text {
  4905. border-width:0px;
  4906. white-space:nowrap;
  4907. text-transform:none;
  4908. }
  4909. #u43177 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:20px;
  4913. top:40px;
  4914. width:87px;
  4915. height:20px;
  4916. }
  4917. #u43178_div {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:0px;
  4921. top:0px;
  4922. width:65px;
  4923. height:20px;
  4924. background:inherit;
  4925. background-color:rgba(255, 255, 255, 0);
  4926. border:none;
  4927. border-radius:0px;
  4928. -moz-box-shadow:none;
  4929. -webkit-box-shadow:none;
  4930. box-shadow:none;
  4931. }
  4932. #u43178 {
  4933. border-width:0px;
  4934. position:absolute;
  4935. left:22px;
  4936. top:0px;
  4937. width:65px;
  4938. height:20px;
  4939. display:flex;
  4940. }
  4941. #u43178 .text {
  4942. position:absolute;
  4943. align-self:center;
  4944. padding:2px 2px 2px 3px;
  4945. box-sizing:border-box;
  4946. width:100%;
  4947. }
  4948. #u43178_text {
  4949. border-width:0px;
  4950. white-space:nowrap;
  4951. text-transform:none;
  4952. }
  4953. #u43179 {
  4954. border-width:0px;
  4955. position:absolute;
  4956. left:20px;
  4957. top:60px;
  4958. width:54px;
  4959. height:20px;
  4960. }
  4961. #u43180_div {
  4962. border-width:0px;
  4963. position:absolute;
  4964. left:0px;
  4965. top:0px;
  4966. width:32px;
  4967. height:20px;
  4968. background:inherit;
  4969. background-color:rgba(255, 255, 255, 0);
  4970. border:none;
  4971. border-radius:0px;
  4972. -moz-box-shadow:none;
  4973. -webkit-box-shadow:none;
  4974. box-shadow:none;
  4975. }
  4976. #u43180 {
  4977. border-width:0px;
  4978. position:absolute;
  4979. left:22px;
  4980. top:0px;
  4981. width:32px;
  4982. height:20px;
  4983. display:flex;
  4984. }
  4985. #u43180 .text {
  4986. position:absolute;
  4987. align-self:center;
  4988. padding:2px 2px 2px 3px;
  4989. box-sizing:border-box;
  4990. width:100%;
  4991. }
  4992. #u43180_text {
  4993. border-width:0px;
  4994. white-space:nowrap;
  4995. text-transform:none;
  4996. }
  4997. #u43181 {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:20px;
  5001. top:100px;
  5002. width:87px;
  5003. height:20px;
  5004. }
  5005. #u43182_img {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:0px;
  5009. top:0px;
  5010. width:9px;
  5011. height:9px;
  5012. }
  5013. #u43182 {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:6px;
  5017. top:6px;
  5018. width:9px;
  5019. height:9px;
  5020. display:flex;
  5021. }
  5022. #u43182 .text {
  5023. position:absolute;
  5024. align-self:center;
  5025. padding:2px 2px 2px 2px;
  5026. box-sizing:border-box;
  5027. width:100%;
  5028. }
  5029. #u43182_img.selected {
  5030. }
  5031. #u43182.selected {
  5032. }
  5033. #u43182_text {
  5034. border-width:0px;
  5035. word-wrap:break-word;
  5036. text-transform:none;
  5037. visibility:hidden;
  5038. }
  5039. #u43183_div {
  5040. border-width:0px;
  5041. position:absolute;
  5042. left:0px;
  5043. top:0px;
  5044. width:65px;
  5045. height:20px;
  5046. background:inherit;
  5047. background-color:rgba(255, 255, 255, 0);
  5048. border:none;
  5049. border-radius:0px;
  5050. -moz-box-shadow:none;
  5051. -webkit-box-shadow:none;
  5052. box-shadow:none;
  5053. }
  5054. #u43183 {
  5055. border-width:0px;
  5056. position:absolute;
  5057. left:22px;
  5058. top:0px;
  5059. width:65px;
  5060. height:20px;
  5061. display:flex;
  5062. }
  5063. #u43183 .text {
  5064. position:absolute;
  5065. align-self:center;
  5066. padding:2px 2px 2px 3px;
  5067. box-sizing:border-box;
  5068. width:100%;
  5069. }
  5070. #u43183_text {
  5071. border-width:0px;
  5072. white-space:nowrap;
  5073. text-transform:none;
  5074. }
  5075. #u43181_children {
  5076. border-width:0px;
  5077. position:absolute;
  5078. left:0px;
  5079. top:0px;
  5080. width:0px;
  5081. height:0px;
  5082. }
  5083. #u43184 {
  5084. border-width:0px;
  5085. position:absolute;
  5086. left:20px;
  5087. top:20px;
  5088. width:87px;
  5089. height:20px;
  5090. }
  5091. #u43185_div {
  5092. border-width:0px;
  5093. position:absolute;
  5094. left:0px;
  5095. top:0px;
  5096. width:65px;
  5097. height:20px;
  5098. background:inherit;
  5099. background-color:rgba(255, 255, 255, 0);
  5100. border:none;
  5101. border-radius:0px;
  5102. -moz-box-shadow:none;
  5103. -webkit-box-shadow:none;
  5104. box-shadow:none;
  5105. }
  5106. #u43185 {
  5107. border-width:0px;
  5108. position:absolute;
  5109. left:22px;
  5110. top:0px;
  5111. width:65px;
  5112. height:20px;
  5113. display:flex;
  5114. }
  5115. #u43185 .text {
  5116. position:absolute;
  5117. align-self:center;
  5118. padding:2px 2px 2px 3px;
  5119. box-sizing:border-box;
  5120. width:100%;
  5121. }
  5122. #u43185_text {
  5123. border-width:0px;
  5124. white-space:nowrap;
  5125. text-transform:none;
  5126. }
  5127. #u43186 {
  5128. border-width:0px;
  5129. position:absolute;
  5130. left:20px;
  5131. top:40px;
  5132. width:87px;
  5133. height:20px;
  5134. }
  5135. #u43187_div {
  5136. border-width:0px;
  5137. position:absolute;
  5138. left:0px;
  5139. top:0px;
  5140. width:65px;
  5141. height:20px;
  5142. background:inherit;
  5143. background-color:rgba(255, 255, 255, 0);
  5144. border:none;
  5145. border-radius:0px;
  5146. -moz-box-shadow:none;
  5147. -webkit-box-shadow:none;
  5148. box-shadow:none;
  5149. }
  5150. #u43187 {
  5151. border-width:0px;
  5152. position:absolute;
  5153. left:22px;
  5154. top:0px;
  5155. width:65px;
  5156. height:20px;
  5157. display:flex;
  5158. }
  5159. #u43187 .text {
  5160. position:absolute;
  5161. align-self:center;
  5162. padding:2px 2px 2px 3px;
  5163. box-sizing:border-box;
  5164. width:100%;
  5165. }
  5166. #u43187_text {
  5167. border-width:0px;
  5168. white-space:nowrap;
  5169. text-transform:none;
  5170. }
  5171. #u43188 {
  5172. border-width:0px;
  5173. position:absolute;
  5174. left:20px;
  5175. top:60px;
  5176. width:54px;
  5177. height:20px;
  5178. }
  5179. #u43189_div {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:0px;
  5183. top:0px;
  5184. width:32px;
  5185. height:20px;
  5186. background:inherit;
  5187. background-color:rgba(255, 255, 255, 0);
  5188. border:none;
  5189. border-radius:0px;
  5190. -moz-box-shadow:none;
  5191. -webkit-box-shadow:none;
  5192. box-shadow:none;
  5193. }
  5194. #u43189 {
  5195. border-width:0px;
  5196. position:absolute;
  5197. left:22px;
  5198. top:0px;
  5199. width:32px;
  5200. height:20px;
  5201. display:flex;
  5202. }
  5203. #u43189 .text {
  5204. position:absolute;
  5205. align-self:center;
  5206. padding:2px 2px 2px 3px;
  5207. box-sizing:border-box;
  5208. width:100%;
  5209. }
  5210. #u43189_text {
  5211. border-width:0px;
  5212. white-space:nowrap;
  5213. text-transform:none;
  5214. }
  5215. #u43190 {
  5216. border-width:0px;
  5217. position:absolute;
  5218. left:20px;
  5219. top:180px;
  5220. width:87px;
  5221. height:20px;
  5222. }
  5223. #u43191_img {
  5224. border-width:0px;
  5225. position:absolute;
  5226. left:0px;
  5227. top:0px;
  5228. width:9px;
  5229. height:9px;
  5230. }
  5231. #u43191 {
  5232. border-width:0px;
  5233. position:absolute;
  5234. left:6px;
  5235. top:6px;
  5236. width:9px;
  5237. height:9px;
  5238. display:flex;
  5239. }
  5240. #u43191 .text {
  5241. position:absolute;
  5242. align-self:center;
  5243. padding:2px 2px 2px 2px;
  5244. box-sizing:border-box;
  5245. width:100%;
  5246. }
  5247. #u43191_img.selected {
  5248. }
  5249. #u43191.selected {
  5250. }
  5251. #u43191_text {
  5252. border-width:0px;
  5253. word-wrap:break-word;
  5254. text-transform:none;
  5255. visibility:hidden;
  5256. }
  5257. #u43192_div {
  5258. border-width:0px;
  5259. position:absolute;
  5260. left:0px;
  5261. top:0px;
  5262. width:65px;
  5263. height:20px;
  5264. background:inherit;
  5265. background-color:rgba(255, 255, 255, 0);
  5266. border:none;
  5267. border-radius:0px;
  5268. -moz-box-shadow:none;
  5269. -webkit-box-shadow:none;
  5270. box-shadow:none;
  5271. }
  5272. #u43192 {
  5273. border-width:0px;
  5274. position:absolute;
  5275. left:22px;
  5276. top:0px;
  5277. width:65px;
  5278. height:20px;
  5279. display:flex;
  5280. }
  5281. #u43192 .text {
  5282. position:absolute;
  5283. align-self:center;
  5284. padding:2px 2px 2px 3px;
  5285. box-sizing:border-box;
  5286. width:100%;
  5287. }
  5288. #u43192_text {
  5289. border-width:0px;
  5290. white-space:nowrap;
  5291. text-transform:none;
  5292. }
  5293. #u43190_children {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:0px;
  5297. top:0px;
  5298. width:0px;
  5299. height:0px;
  5300. }
  5301. #u43193 {
  5302. border-width:0px;
  5303. position:absolute;
  5304. left:20px;
  5305. top:20px;
  5306. width:87px;
  5307. height:20px;
  5308. }
  5309. #u43194_div {
  5310. border-width:0px;
  5311. position:absolute;
  5312. left:0px;
  5313. top:0px;
  5314. width:65px;
  5315. height:20px;
  5316. background:inherit;
  5317. background-color:rgba(255, 255, 255, 0);
  5318. border:none;
  5319. border-radius:0px;
  5320. -moz-box-shadow:none;
  5321. -webkit-box-shadow:none;
  5322. box-shadow:none;
  5323. }
  5324. #u43194 {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:22px;
  5328. top:0px;
  5329. width:65px;
  5330. height:20px;
  5331. display:flex;
  5332. }
  5333. #u43194 .text {
  5334. position:absolute;
  5335. align-self:center;
  5336. padding:2px 2px 2px 3px;
  5337. box-sizing:border-box;
  5338. width:100%;
  5339. }
  5340. #u43194_text {
  5341. border-width:0px;
  5342. white-space:nowrap;
  5343. text-transform:none;
  5344. }
  5345. #u43195 {
  5346. border-width:0px;
  5347. position:absolute;
  5348. left:20px;
  5349. top:40px;
  5350. width:54px;
  5351. height:20px;
  5352. }
  5353. #u43196_div {
  5354. border-width:0px;
  5355. position:absolute;
  5356. left:0px;
  5357. top:0px;
  5358. width:32px;
  5359. height:20px;
  5360. background:inherit;
  5361. background-color:rgba(255, 255, 255, 0);
  5362. border:none;
  5363. border-radius:0px;
  5364. -moz-box-shadow:none;
  5365. -webkit-box-shadow:none;
  5366. box-shadow:none;
  5367. }
  5368. #u43196 {
  5369. border-width:0px;
  5370. position:absolute;
  5371. left:22px;
  5372. top:0px;
  5373. width:32px;
  5374. height:20px;
  5375. display:flex;
  5376. }
  5377. #u43196 .text {
  5378. position:absolute;
  5379. align-self:center;
  5380. padding:2px 2px 2px 3px;
  5381. box-sizing:border-box;
  5382. width:100%;
  5383. }
  5384. #u43196_text {
  5385. border-width:0px;
  5386. white-space:nowrap;
  5387. text-transform:none;
  5388. }
  5389. #u43197 {
  5390. border-width:0px;
  5391. position:absolute;
  5392. left:0px;
  5393. top:0px;
  5394. width:0px;
  5395. height:0px;
  5396. }
  5397. #u43198_div {
  5398. border-width:0px;
  5399. position:absolute;
  5400. left:0px;
  5401. top:0px;
  5402. width:175px;
  5403. height:30px;
  5404. background:inherit;
  5405. background-color:rgba(255, 255, 255, 1);
  5406. box-sizing:border-box;
  5407. border-width:1px;
  5408. border-style:solid;
  5409. border-color:rgba(201, 201, 201, 1);
  5410. border-radius:4px;
  5411. -moz-box-shadow:none;
  5412. -webkit-box-shadow:none;
  5413. box-shadow:none;
  5414. font-family:'Microsoft YaHei', sans-serif;
  5415. font-weight:400;
  5416. font-style:normal;
  5417. font-size:14px;
  5418. color:#CCCCCC;
  5419. text-align:left;
  5420. }
  5421. #u43198 {
  5422. border-width:0px;
  5423. position:absolute;
  5424. left:359px;
  5425. top:333px;
  5426. width:175px;
  5427. height:30px;
  5428. display:flex;
  5429. font-family:'Microsoft YaHei', sans-serif;
  5430. font-weight:400;
  5431. font-style:normal;
  5432. font-size:14px;
  5433. color:#CCCCCC;
  5434. text-align:left;
  5435. }
  5436. #u43198 .text {
  5437. position:absolute;
  5438. align-self:center;
  5439. padding:2px 8px 2px 8px;
  5440. box-sizing:border-box;
  5441. width:100%;
  5442. }
  5443. #u43198_text {
  5444. border-width:0px;
  5445. word-wrap:break-word;
  5446. text-transform:none;
  5447. visibility:hidden;
  5448. }
  5449. #u43199_input {
  5450. position:absolute;
  5451. left:0px;
  5452. top:0px;
  5453. width:159px;
  5454. height:25px;
  5455. padding:2px 2px 2px 2px;
  5456. font-family:'Microsoft YaHei', sans-serif;
  5457. font-weight:400;
  5458. font-style:normal;
  5459. font-size:10px;
  5460. letter-spacing:normal;
  5461. color:#000000;
  5462. vertical-align:none;
  5463. text-align:left;
  5464. text-transform:none;
  5465. background-color:transparent;
  5466. border-color:transparent;
  5467. }
  5468. #u43199_input.disabled {
  5469. position:absolute;
  5470. left:0px;
  5471. top:0px;
  5472. width:159px;
  5473. height:25px;
  5474. padding:2px 2px 2px 2px;
  5475. font-family:'Microsoft YaHei', sans-serif;
  5476. font-weight:400;
  5477. font-style:normal;
  5478. font-size:10px;
  5479. letter-spacing:normal;
  5480. color:#000000;
  5481. vertical-align:none;
  5482. text-align:left;
  5483. text-transform:none;
  5484. background-color:transparent;
  5485. border-color:transparent;
  5486. }
  5487. #u43199_div {
  5488. border-width:0px;
  5489. position:absolute;
  5490. left:0px;
  5491. top:0px;
  5492. width:159px;
  5493. height:25px;
  5494. background:inherit;
  5495. background-color:rgba(255, 255, 255, 1);
  5496. border:none;
  5497. border-radius:0px;
  5498. -moz-box-shadow:none;
  5499. -webkit-box-shadow:none;
  5500. box-shadow:none;
  5501. font-family:'Microsoft YaHei', sans-serif;
  5502. font-weight:400;
  5503. font-style:normal;
  5504. font-size:10px;
  5505. }
  5506. #u43199 {
  5507. border-width:0px;
  5508. position:absolute;
  5509. left:369px;
  5510. top:334px;
  5511. width:159px;
  5512. height:25px;
  5513. display:flex;
  5514. font-family:'Microsoft YaHei', sans-serif;
  5515. font-weight:400;
  5516. font-style:normal;
  5517. font-size:10px;
  5518. }
  5519. #u43199 .text {
  5520. position:absolute;
  5521. align-self:center;
  5522. padding:2px 2px 2px 2px;
  5523. box-sizing:border-box;
  5524. width:100%;
  5525. }
  5526. #u43199_div.disabled {
  5527. border-width:0px;
  5528. position:absolute;
  5529. left:0px;
  5530. top:0px;
  5531. width:159px;
  5532. height:25px;
  5533. background:inherit;
  5534. background-color:rgba(240, 240, 240, 1);
  5535. border:none;
  5536. border-radius:0px;
  5537. -moz-box-shadow:none;
  5538. -webkit-box-shadow:none;
  5539. box-shadow:none;
  5540. font-family:'Microsoft YaHei', sans-serif;
  5541. font-weight:400;
  5542. font-style:normal;
  5543. font-size:10px;
  5544. }
  5545. #u43199.disabled {
  5546. }
  5547. #u43200_div {
  5548. border-width:0px;
  5549. position:absolute;
  5550. left:0px;
  5551. top:0px;
  5552. width:25px;
  5553. height:30px;
  5554. background:inherit;
  5555. background-color:rgba(255, 255, 255, 0);
  5556. border:none;
  5557. border-radius:0px;
  5558. -moz-box-shadow:none;
  5559. -webkit-box-shadow:none;
  5560. box-shadow:none;
  5561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5562. font-weight:400;
  5563. font-style:normal;
  5564. font-size:12px;
  5565. color:#3399FF;
  5566. line-height:30px;
  5567. }
  5568. #u43200 {
  5569. border-width:0px;
  5570. position:absolute;
  5571. left:359px;
  5572. top:372px;
  5573. width:25px;
  5574. height:30px;
  5575. display:flex;
  5576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5577. font-weight:400;
  5578. font-style:normal;
  5579. font-size:12px;
  5580. color:#3399FF;
  5581. line-height:30px;
  5582. }
  5583. #u43200 .text {
  5584. position:absolute;
  5585. align-self:flex-start;
  5586. padding:0px 0px 0px 0px;
  5587. box-sizing:border-box;
  5588. width:100%;
  5589. }
  5590. #u43200_text {
  5591. border-width:0px;
  5592. white-space:nowrap;
  5593. text-transform:none;
  5594. }
  5595. #u43201_div {
  5596. border-width:0px;
  5597. position:absolute;
  5598. left:0px;
  5599. top:0px;
  5600. width:25px;
  5601. height:30px;
  5602. background:inherit;
  5603. background-color:rgba(255, 255, 255, 0);
  5604. border:none;
  5605. border-radius:0px;
  5606. -moz-box-shadow:none;
  5607. -webkit-box-shadow:none;
  5608. box-shadow:none;
  5609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5610. font-weight:400;
  5611. font-style:normal;
  5612. font-size:12px;
  5613. color:#7F7F7F;
  5614. line-height:30px;
  5615. }
  5616. #u43201 {
  5617. border-width:0px;
  5618. position:absolute;
  5619. left:396px;
  5620. top:372px;
  5621. width:25px;
  5622. height:30px;
  5623. display:flex;
  5624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5625. font-weight:400;
  5626. font-style:normal;
  5627. font-size:12px;
  5628. color:#7F7F7F;
  5629. line-height:30px;
  5630. }
  5631. #u43201 .text {
  5632. position:absolute;
  5633. align-self:flex-start;
  5634. padding:0px 0px 0px 0px;
  5635. box-sizing:border-box;
  5636. width:100%;
  5637. }
  5638. #u43201_text {
  5639. border-width:0px;
  5640. white-space:nowrap;
  5641. text-transform:none;
  5642. }
  5643. #u43202_div {
  5644. border-width:0px;
  5645. position:absolute;
  5646. left:0px;
  5647. top:0px;
  5648. width:25px;
  5649. height:30px;
  5650. background:inherit;
  5651. background-color:rgba(255, 255, 255, 0);
  5652. border:none;
  5653. border-radius:0px;
  5654. -moz-box-shadow:none;
  5655. -webkit-box-shadow:none;
  5656. box-shadow:none;
  5657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5658. font-weight:400;
  5659. font-style:normal;
  5660. font-size:12px;
  5661. color:#7F7F7F;
  5662. line-height:30px;
  5663. }
  5664. #u43202 {
  5665. border-width:0px;
  5666. position:absolute;
  5667. left:432px;
  5668. top:372px;
  5669. width:25px;
  5670. height:30px;
  5671. display:flex;
  5672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5673. font-weight:400;
  5674. font-style:normal;
  5675. font-size:12px;
  5676. color:#7F7F7F;
  5677. line-height:30px;
  5678. }
  5679. #u43202 .text {
  5680. position:absolute;
  5681. align-self:flex-start;
  5682. padding:0px 0px 0px 0px;
  5683. box-sizing:border-box;
  5684. width:100%;
  5685. }
  5686. #u43202_text {
  5687. border-width:0px;
  5688. white-space:nowrap;
  5689. text-transform:none;
  5690. }
  5691. #u43203_div {
  5692. border-width:0px;
  5693. position:absolute;
  5694. left:0px;
  5695. top:0px;
  5696. width:25px;
  5697. height:30px;
  5698. background:inherit;
  5699. background-color:rgba(255, 255, 255, 0);
  5700. border:none;
  5701. border-radius:0px;
  5702. -moz-box-shadow:none;
  5703. -webkit-box-shadow:none;
  5704. box-shadow:none;
  5705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5706. font-weight:400;
  5707. font-style:normal;
  5708. font-size:12px;
  5709. color:#7F7F7F;
  5710. line-height:30px;
  5711. }
  5712. #u43203 {
  5713. border-width:0px;
  5714. position:absolute;
  5715. left:469px;
  5716. top:372px;
  5717. width:25px;
  5718. height:30px;
  5719. display:flex;
  5720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5721. font-weight:400;
  5722. font-style:normal;
  5723. font-size:12px;
  5724. color:#7F7F7F;
  5725. line-height:30px;
  5726. }
  5727. #u43203 .text {
  5728. position:absolute;
  5729. align-self:flex-start;
  5730. padding:0px 0px 0px 0px;
  5731. box-sizing:border-box;
  5732. width:100%;
  5733. }
  5734. #u43203_text {
  5735. border-width:0px;
  5736. white-space:nowrap;
  5737. text-transform:none;
  5738. }
  5739. #u43204 {
  5740. border-width:0px;
  5741. position:absolute;
  5742. left:0px;
  5743. top:0px;
  5744. width:0px;
  5745. height:0px;
  5746. }
  5747. #u43205_div {
  5748. border-width:0px;
  5749. position:absolute;
  5750. left:0px;
  5751. top:0px;
  5752. width:200px;
  5753. height:1190px;
  5754. background:inherit;
  5755. background-color:rgba(255, 255, 255, 1);
  5756. border:none;
  5757. border-radius:0px;
  5758. -moz-box-shadow:none;
  5759. -webkit-box-shadow:none;
  5760. box-shadow:none;
  5761. }
  5762. #u43205 {
  5763. border-width:0px;
  5764. position:absolute;
  5765. left:120px;
  5766. top:50px;
  5767. width:200px;
  5768. height:1190px;
  5769. display:flex;
  5770. }
  5771. #u43205 .text {
  5772. position:absolute;
  5773. align-self:center;
  5774. padding:2px 2px 2px 2px;
  5775. box-sizing:border-box;
  5776. width:100%;
  5777. }
  5778. #u43205_text {
  5779. border-width:0px;
  5780. word-wrap:break-word;
  5781. text-transform:none;
  5782. visibility:hidden;
  5783. }
  5784. #u43206_div {
  5785. border-width:0px;
  5786. position:absolute;
  5787. left:0px;
  5788. top:0px;
  5789. width:200px;
  5790. height:60px;
  5791. background:inherit;
  5792. background-color:rgba(224, 231, 247, 1);
  5793. border:none;
  5794. border-radius:0px;
  5795. -moz-box-shadow:none;
  5796. -webkit-box-shadow:none;
  5797. box-shadow:none;
  5798. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5799. font-weight:500;
  5800. font-style:normal;
  5801. font-size:18px;
  5802. }
  5803. #u43206 {
  5804. border-width:0px;
  5805. position:absolute;
  5806. left:120px;
  5807. top:50px;
  5808. width:200px;
  5809. height:60px;
  5810. display:flex;
  5811. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5812. font-weight:500;
  5813. font-style:normal;
  5814. font-size:18px;
  5815. }
  5816. #u43206 .text {
  5817. position:absolute;
  5818. align-self:center;
  5819. padding:0px 0px 0px 20px;
  5820. box-sizing:border-box;
  5821. width:100%;
  5822. }
  5823. #u43206_text {
  5824. border-width:0px;
  5825. word-wrap:break-word;
  5826. text-transform:none;
  5827. }
  5828. #u43207_div {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:0px;
  5832. top:0px;
  5833. width:65px;
  5834. height:22px;
  5835. background:inherit;
  5836. background-color:rgba(255, 255, 255, 0);
  5837. border:none;
  5838. border-radius:0px;
  5839. -moz-box-shadow:none;
  5840. -webkit-box-shadow:none;
  5841. box-shadow:none;
  5842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5843. font-weight:400;
  5844. font-style:normal;
  5845. font-size:16px;
  5846. }
  5847. #u43207 {
  5848. border-width:0px;
  5849. position:absolute;
  5850. left:148px;
  5851. top:164px;
  5852. width:65px;
  5853. height:22px;
  5854. display:flex;
  5855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5856. font-weight:400;
  5857. font-style:normal;
  5858. font-size:16px;
  5859. }
  5860. #u43207 .text {
  5861. position:absolute;
  5862. align-self:flex-start;
  5863. padding:0px 0px 0px 0px;
  5864. box-sizing:border-box;
  5865. width:100%;
  5866. }
  5867. #u43207_text {
  5868. border-width:0px;
  5869. white-space:nowrap;
  5870. text-transform:none;
  5871. }
  5872. #u43208_div {
  5873. border-width:0px;
  5874. position:absolute;
  5875. left:0px;
  5876. top:0px;
  5877. width:49px;
  5878. height:17px;
  5879. background:inherit;
  5880. background-color:rgba(255, 255, 255, 0);
  5881. border:none;
  5882. border-radius:0px;
  5883. -moz-box-shadow:none;
  5884. -webkit-box-shadow:none;
  5885. box-shadow:none;
  5886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5887. font-weight:400;
  5888. font-style:normal;
  5889. font-size:12px;
  5890. color:#AAAAAA;
  5891. }
  5892. #u43208 {
  5893. border-width:0px;
  5894. position:absolute;
  5895. left:148px;
  5896. top:128px;
  5897. width:49px;
  5898. height:17px;
  5899. display:flex;
  5900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5901. font-weight:400;
  5902. font-style:normal;
  5903. font-size:12px;
  5904. color:#AAAAAA;
  5905. }
  5906. #u43208 .text {
  5907. position:absolute;
  5908. align-self:flex-start;
  5909. padding:0px 0px 0px 0px;
  5910. box-sizing:border-box;
  5911. width:100%;
  5912. }
  5913. #u43208_text {
  5914. border-width:0px;
  5915. white-space:nowrap;
  5916. text-transform:none;
  5917. }
  5918. #u43209_div {
  5919. border-width:0px;
  5920. position:absolute;
  5921. left:0px;
  5922. top:0px;
  5923. width:65px;
  5924. height:22px;
  5925. background:inherit;
  5926. background-color:rgba(255, 255, 255, 0);
  5927. border:none;
  5928. border-radius:0px;
  5929. -moz-box-shadow:none;
  5930. -webkit-box-shadow:none;
  5931. box-shadow:none;
  5932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5933. font-weight:400;
  5934. font-style:normal;
  5935. font-size:16px;
  5936. }
  5937. #u43209 {
  5938. border-width:0px;
  5939. position:absolute;
  5940. left:148px;
  5941. top:569px;
  5942. width:65px;
  5943. height:22px;
  5944. display:flex;
  5945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5946. font-weight:400;
  5947. font-style:normal;
  5948. font-size:16px;
  5949. }
  5950. #u43209 .text {
  5951. position:absolute;
  5952. align-self:flex-start;
  5953. padding:0px 0px 0px 0px;
  5954. box-sizing:border-box;
  5955. width:100%;
  5956. }
  5957. #u43209_text {
  5958. border-width:0px;
  5959. white-space:nowrap;
  5960. text-transform:none;
  5961. }
  5962. #u43210_div {
  5963. border-width:0px;
  5964. position:absolute;
  5965. left:0px;
  5966. top:0px;
  5967. width:49px;
  5968. height:17px;
  5969. background:inherit;
  5970. background-color:rgba(255, 255, 255, 0);
  5971. border:none;
  5972. border-radius:0px;
  5973. -moz-box-shadow:none;
  5974. -webkit-box-shadow:none;
  5975. box-shadow:none;
  5976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5977. font-weight:400;
  5978. font-style:normal;
  5979. font-size:12px;
  5980. color:#AAAAAA;
  5981. }
  5982. #u43210 {
  5983. border-width:0px;
  5984. position:absolute;
  5985. left:148px;
  5986. top:533px;
  5987. width:49px;
  5988. height:17px;
  5989. display:flex;
  5990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5991. font-weight:400;
  5992. font-style:normal;
  5993. font-size:12px;
  5994. color:#AAAAAA;
  5995. }
  5996. #u43210 .text {
  5997. position:absolute;
  5998. align-self:flex-start;
  5999. padding:0px 0px 0px 0px;
  6000. box-sizing:border-box;
  6001. width:100%;
  6002. }
  6003. #u43210_text {
  6004. border-width:0px;
  6005. white-space:nowrap;
  6006. text-transform:none;
  6007. }
  6008. #u43211_img {
  6009. border-width:0px;
  6010. position:absolute;
  6011. left:0px;
  6012. top:0px;
  6013. width:201px;
  6014. height:2px;
  6015. }
  6016. #u43211 {
  6017. border-width:0px;
  6018. position:absolute;
  6019. left:121px;
  6020. top:511px;
  6021. width:200px;
  6022. height:1px;
  6023. display:flex;
  6024. }
  6025. #u43211 .text {
  6026. position:absolute;
  6027. align-self:center;
  6028. padding:2px 2px 2px 2px;
  6029. box-sizing:border-box;
  6030. width:100%;
  6031. }
  6032. #u43211_text {
  6033. border-width:0px;
  6034. word-wrap:break-word;
  6035. text-transform:none;
  6036. visibility:hidden;
  6037. }
  6038. #u43212_div {
  6039. border-width:0px;
  6040. position:absolute;
  6041. left:0px;
  6042. top:0px;
  6043. width:65px;
  6044. height:22px;
  6045. background:inherit;
  6046. background-color:rgba(255, 255, 255, 0);
  6047. border:none;
  6048. border-radius:0px;
  6049. -moz-box-shadow:none;
  6050. -webkit-box-shadow:none;
  6051. box-shadow:none;
  6052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6053. font-weight:400;
  6054. font-style:normal;
  6055. font-size:16px;
  6056. }
  6057. #u43212 {
  6058. border-width:0px;
  6059. position:absolute;
  6060. left:148px;
  6061. top:385px;
  6062. width:65px;
  6063. height:22px;
  6064. display:flex;
  6065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6066. font-weight:400;
  6067. font-style:normal;
  6068. font-size:16px;
  6069. }
  6070. #u43212 .text {
  6071. position:absolute;
  6072. align-self:flex-start;
  6073. padding:0px 0px 0px 0px;
  6074. box-sizing:border-box;
  6075. width:100%;
  6076. }
  6077. #u43212_text {
  6078. border-width:0px;
  6079. white-space:nowrap;
  6080. text-transform:none;
  6081. }
  6082. #u43213_div {
  6083. border-width:0px;
  6084. position:absolute;
  6085. left:0px;
  6086. top:0px;
  6087. width:49px;
  6088. height:17px;
  6089. background:inherit;
  6090. background-color:rgba(255, 255, 255, 0);
  6091. border:none;
  6092. border-radius:0px;
  6093. -moz-box-shadow:none;
  6094. -webkit-box-shadow:none;
  6095. box-shadow:none;
  6096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6097. font-weight:400;
  6098. font-style:normal;
  6099. font-size:12px;
  6100. color:#AAAAAA;
  6101. }
  6102. #u43213 {
  6103. border-width:0px;
  6104. position:absolute;
  6105. left:148px;
  6106. top:309px;
  6107. width:49px;
  6108. height:17px;
  6109. display:flex;
  6110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6111. font-weight:400;
  6112. font-style:normal;
  6113. font-size:12px;
  6114. color:#AAAAAA;
  6115. }
  6116. #u43213 .text {
  6117. position:absolute;
  6118. align-self:flex-start;
  6119. padding:0px 0px 0px 0px;
  6120. box-sizing:border-box;
  6121. width:100%;
  6122. }
  6123. #u43213_text {
  6124. border-width:0px;
  6125. white-space:nowrap;
  6126. text-transform:none;
  6127. }
  6128. #u43214_img {
  6129. border-width:0px;
  6130. position:absolute;
  6131. left:0px;
  6132. top:0px;
  6133. width:201px;
  6134. height:2px;
  6135. }
  6136. #u43214 {
  6137. border-width:0px;
  6138. position:absolute;
  6139. left:121px;
  6140. top:287px;
  6141. width:200px;
  6142. height:1px;
  6143. display:flex;
  6144. }
  6145. #u43214 .text {
  6146. position:absolute;
  6147. align-self:center;
  6148. padding:2px 2px 2px 2px;
  6149. box-sizing:border-box;
  6150. width:100%;
  6151. }
  6152. #u43214_text {
  6153. border-width:0px;
  6154. word-wrap:break-word;
  6155. text-transform:none;
  6156. visibility:hidden;
  6157. }
  6158. #u43215_div {
  6159. border-width:0px;
  6160. position:absolute;
  6161. left:0px;
  6162. top:0px;
  6163. width:65px;
  6164. height:22px;
  6165. background:inherit;
  6166. background-color:rgba(255, 255, 255, 0);
  6167. border:none;
  6168. border-radius:0px;
  6169. -moz-box-shadow:none;
  6170. -webkit-box-shadow:none;
  6171. box-shadow:none;
  6172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6173. font-weight:400;
  6174. font-style:normal;
  6175. font-size:16px;
  6176. }
  6177. #u43215 {
  6178. border-width:0px;
  6179. position:absolute;
  6180. left:148px;
  6181. top:427px;
  6182. width:65px;
  6183. height:22px;
  6184. display:flex;
  6185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6186. font-weight:400;
  6187. font-style:normal;
  6188. font-size:16px;
  6189. }
  6190. #u43215 .text {
  6191. position:absolute;
  6192. align-self:flex-start;
  6193. padding:0px 0px 0px 0px;
  6194. box-sizing:border-box;
  6195. width:100%;
  6196. }
  6197. #u43215_text {
  6198. border-width:0px;
  6199. white-space:nowrap;
  6200. text-transform:none;
  6201. }
  6202. #u43216_div {
  6203. border-width:0px;
  6204. position:absolute;
  6205. left:0px;
  6206. top:0px;
  6207. width:65px;
  6208. height:22px;
  6209. background:inherit;
  6210. background-color:rgba(255, 255, 255, 0);
  6211. border:none;
  6212. border-radius:0px;
  6213. -moz-box-shadow:none;
  6214. -webkit-box-shadow:none;
  6215. box-shadow:none;
  6216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6217. font-weight:400;
  6218. font-style:normal;
  6219. font-size:16px;
  6220. }
  6221. #u43216 {
  6222. border-width:0px;
  6223. position:absolute;
  6224. left:148px;
  6225. top:469px;
  6226. width:65px;
  6227. height:22px;
  6228. display:flex;
  6229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6230. font-weight:400;
  6231. font-style:normal;
  6232. font-size:16px;
  6233. }
  6234. #u43216 .text {
  6235. position:absolute;
  6236. align-self:flex-start;
  6237. padding:0px 0px 0px 0px;
  6238. box-sizing:border-box;
  6239. width:100%;
  6240. }
  6241. #u43216_text {
  6242. border-width:0px;
  6243. white-space:nowrap;
  6244. text-transform:none;
  6245. }
  6246. #u43217_div {
  6247. border-width:0px;
  6248. position:absolute;
  6249. left:0px;
  6250. top:0px;
  6251. width:65px;
  6252. height:22px;
  6253. background:inherit;
  6254. background-color:rgba(255, 255, 255, 0);
  6255. border:none;
  6256. border-radius:0px;
  6257. -moz-box-shadow:none;
  6258. -webkit-box-shadow:none;
  6259. box-shadow:none;
  6260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6261. font-weight:400;
  6262. font-style:normal;
  6263. font-size:16px;
  6264. }
  6265. #u43217 {
  6266. border-width:0px;
  6267. position:absolute;
  6268. left:148px;
  6269. top:611px;
  6270. width:65px;
  6271. height:22px;
  6272. display:flex;
  6273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6274. font-weight:400;
  6275. font-style:normal;
  6276. font-size:16px;
  6277. }
  6278. #u43217 .text {
  6279. position:absolute;
  6280. align-self:flex-start;
  6281. padding:0px 0px 0px 0px;
  6282. box-sizing:border-box;
  6283. width:100%;
  6284. }
  6285. #u43217_text {
  6286. border-width:0px;
  6287. white-space:nowrap;
  6288. text-transform:none;
  6289. }
  6290. #u43218_div {
  6291. border-width:0px;
  6292. position:absolute;
  6293. left:0px;
  6294. top:0px;
  6295. width:65px;
  6296. height:22px;
  6297. background:inherit;
  6298. background-color:rgba(255, 255, 255, 0);
  6299. border:none;
  6300. border-radius:0px;
  6301. -moz-box-shadow:none;
  6302. -webkit-box-shadow:none;
  6303. box-shadow:none;
  6304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6305. font-weight:400;
  6306. font-style:normal;
  6307. font-size:16px;
  6308. }
  6309. #u43218 {
  6310. border-width:0px;
  6311. position:absolute;
  6312. left:148px;
  6313. top:206px;
  6314. width:65px;
  6315. height:22px;
  6316. display:flex;
  6317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6318. font-weight:400;
  6319. font-style:normal;
  6320. font-size:16px;
  6321. }
  6322. #u43218 .text {
  6323. position:absolute;
  6324. align-self:flex-start;
  6325. padding:0px 0px 0px 0px;
  6326. box-sizing:border-box;
  6327. width:100%;
  6328. }
  6329. #u43218_text {
  6330. border-width:0px;
  6331. white-space:nowrap;
  6332. text-transform:none;
  6333. }
  6334. #u43219_div {
  6335. border-width:0px;
  6336. position:absolute;
  6337. left:0px;
  6338. top:0px;
  6339. width:65px;
  6340. height:22px;
  6341. background:inherit;
  6342. background-color:rgba(255, 255, 255, 0);
  6343. border:none;
  6344. border-radius:0px;
  6345. -moz-box-shadow:none;
  6346. -webkit-box-shadow:none;
  6347. box-shadow:none;
  6348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6349. font-weight:400;
  6350. font-style:normal;
  6351. font-size:16px;
  6352. }
  6353. #u43219 {
  6354. border-width:0px;
  6355. position:absolute;
  6356. left:148px;
  6357. top:248px;
  6358. width:65px;
  6359. height:22px;
  6360. display:flex;
  6361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6362. font-weight:400;
  6363. font-style:normal;
  6364. font-size:16px;
  6365. }
  6366. #u43219 .text {
  6367. position:absolute;
  6368. align-self:flex-start;
  6369. padding:0px 0px 0px 0px;
  6370. box-sizing:border-box;
  6371. width:100%;
  6372. }
  6373. #u43219_text {
  6374. border-width:0px;
  6375. white-space:nowrap;
  6376. text-transform:none;
  6377. }
  6378. #u43220_div {
  6379. border-width:0px;
  6380. position:absolute;
  6381. left:0px;
  6382. top:0px;
  6383. width:65px;
  6384. height:22px;
  6385. background:inherit;
  6386. background-color:rgba(255, 255, 255, 0);
  6387. border:none;
  6388. border-radius:0px;
  6389. -moz-box-shadow:none;
  6390. -webkit-box-shadow:none;
  6391. box-shadow:none;
  6392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6393. font-weight:400;
  6394. font-style:normal;
  6395. font-size:16px;
  6396. }
  6397. #u43220 {
  6398. border-width:0px;
  6399. position:absolute;
  6400. left:148px;
  6401. top:653px;
  6402. width:65px;
  6403. height:22px;
  6404. display:flex;
  6405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6406. font-weight:400;
  6407. font-style:normal;
  6408. font-size:16px;
  6409. }
  6410. #u43220 .text {
  6411. position:absolute;
  6412. align-self:flex-start;
  6413. padding:0px 0px 0px 0px;
  6414. box-sizing:border-box;
  6415. width:100%;
  6416. }
  6417. #u43220_text {
  6418. border-width:0px;
  6419. white-space:nowrap;
  6420. text-transform:none;
  6421. }
  6422. #u43221_div {
  6423. border-width:0px;
  6424. position:absolute;
  6425. left:0px;
  6426. top:0px;
  6427. width:65px;
  6428. height:22px;
  6429. background:inherit;
  6430. background-color:rgba(255, 255, 255, 0);
  6431. border:none;
  6432. border-radius:0px;
  6433. -moz-box-shadow:none;
  6434. -webkit-box-shadow:none;
  6435. box-shadow:none;
  6436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6437. font-weight:400;
  6438. font-style:normal;
  6439. font-size:16px;
  6440. }
  6441. #u43221 {
  6442. border-width:0px;
  6443. position:absolute;
  6444. left:148px;
  6445. top:343px;
  6446. width:65px;
  6447. height:22px;
  6448. display:flex;
  6449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6450. font-weight:400;
  6451. font-style:normal;
  6452. font-size:16px;
  6453. }
  6454. #u43221 .text {
  6455. position:absolute;
  6456. align-self:flex-start;
  6457. padding:0px 0px 0px 0px;
  6458. box-sizing:border-box;
  6459. width:100%;
  6460. }
  6461. #u43221_text {
  6462. border-width:0px;
  6463. white-space:nowrap;
  6464. text-transform:none;
  6465. }