styles.css 184 KB

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