styles.css 178 KB

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