styles.css 217 KB

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