styles.css 154 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:813px;
  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. #u10686 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u10687_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:342px;
  33. height:180px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 1);
  36. border:none;
  37. border-radius:10px;
  38. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  39. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  40. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  41. }
  42. #u10687 {
  43. border-width:0px;
  44. position:absolute;
  45. left:49px;
  46. top:951px;
  47. width:342px;
  48. height:180px;
  49. display:flex;
  50. }
  51. #u10687 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u10687_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u10688_div {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:163px;
  70. height:30px;
  71. background:inherit;
  72. background-color:rgba(255, 255, 255, 0);
  73. border:none;
  74. border-left:0px;
  75. border-top:0px;
  76. border-right:0px;
  77. border-radius:0px;
  78. border-bottom-right-radius:0px;
  79. border-bottom-left-radius:0px;
  80. -moz-box-shadow:none;
  81. -webkit-box-shadow:none;
  82. box-shadow:none;
  83. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  84. font-weight:500;
  85. font-style:normal;
  86. font-size:18px;
  87. text-align:center;
  88. line-height:30px;
  89. }
  90. #u10688 {
  91. border-width:0px;
  92. position:absolute;
  93. left:138px;
  94. top:1000px;
  95. width:163px;
  96. height:30px;
  97. display:flex;
  98. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  99. font-weight:500;
  100. font-style:normal;
  101. font-size:18px;
  102. text-align:center;
  103. line-height:30px;
  104. }
  105. #u10688 .text {
  106. position:absolute;
  107. align-self:flex-start;
  108. padding:0px 0px 0px 0px;
  109. box-sizing:border-box;
  110. width:100%;
  111. }
  112. #u10688_text {
  113. border-width:0px;
  114. white-space:nowrap;
  115. text-transform:none;
  116. }
  117. #u10689_img {
  118. border-width:0px;
  119. position:absolute;
  120. left:0px;
  121. top:0px;
  122. width:343px;
  123. height:2px;
  124. }
  125. #u10689 {
  126. border-width:0px;
  127. position:absolute;
  128. left:49px;
  129. top:1064px;
  130. width:342px;
  131. height:1px;
  132. display:flex;
  133. }
  134. #u10689 .text {
  135. position:absolute;
  136. align-self:center;
  137. padding:2px 2px 2px 2px;
  138. box-sizing:border-box;
  139. width:100%;
  140. }
  141. #u10689_text {
  142. border-width:0px;
  143. word-wrap:break-word;
  144. text-transform:none;
  145. visibility:hidden;
  146. }
  147. #u10690_div {
  148. border-width:0px;
  149. position:absolute;
  150. left:0px;
  151. top:0px;
  152. width:37px;
  153. height:30px;
  154. background:inherit;
  155. background-color:rgba(255, 255, 255, 0);
  156. border:none;
  157. border-left:0px;
  158. border-top:0px;
  159. border-right:0px;
  160. border-radius:0px;
  161. border-bottom-right-radius:0px;
  162. border-bottom-left-radius:0px;
  163. -moz-box-shadow:none;
  164. -webkit-box-shadow:none;
  165. box-shadow:none;
  166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  167. font-weight:400;
  168. font-style:normal;
  169. font-size:18px;
  170. color:#1890FF;
  171. text-align:right;
  172. line-height:30px;
  173. }
  174. #u10690 {
  175. border-width:0px;
  176. position:absolute;
  177. left:294px;
  178. top:1083px;
  179. width:37px;
  180. height:30px;
  181. display:flex;
  182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  183. font-weight:400;
  184. font-style:normal;
  185. font-size:18px;
  186. color:#1890FF;
  187. text-align:right;
  188. line-height:30px;
  189. }
  190. #u10690 .text {
  191. position:absolute;
  192. align-self:flex-start;
  193. padding:0px 0px 0px 0px;
  194. box-sizing:border-box;
  195. width:100%;
  196. }
  197. #u10690_text {
  198. border-width:0px;
  199. white-space:nowrap;
  200. text-transform:none;
  201. }
  202. #u10691_div {
  203. border-width:0px;
  204. position:absolute;
  205. left:0px;
  206. top:0px;
  207. width:37px;
  208. height:30px;
  209. background:inherit;
  210. background-color:rgba(255, 255, 255, 0);
  211. border:none;
  212. border-left:0px;
  213. border-top:0px;
  214. border-right:0px;
  215. border-radius:0px;
  216. border-bottom-right-radius:0px;
  217. border-bottom-left-radius:0px;
  218. -moz-box-shadow:none;
  219. -webkit-box-shadow:none;
  220. box-shadow:none;
  221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  222. font-weight:400;
  223. font-style:normal;
  224. font-size:18px;
  225. color:#1890FF;
  226. text-align:right;
  227. line-height:30px;
  228. }
  229. #u10691 {
  230. border-width:0px;
  231. position:absolute;
  232. left:119px;
  233. top:1083px;
  234. width:37px;
  235. height:30px;
  236. display:flex;
  237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  238. font-weight:400;
  239. font-style:normal;
  240. font-size:18px;
  241. color:#1890FF;
  242. text-align:right;
  243. line-height:30px;
  244. }
  245. #u10691 .text {
  246. position:absolute;
  247. align-self:flex-start;
  248. padding:0px 0px 0px 0px;
  249. box-sizing:border-box;
  250. width:100%;
  251. }
  252. #u10691_text {
  253. border-width:0px;
  254. white-space:nowrap;
  255. text-transform:none;
  256. }
  257. #u10692_img {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:2px;
  263. height:67px;
  264. }
  265. #u10692 {
  266. border-width:0px;
  267. position:absolute;
  268. left:220px;
  269. top:1065px;
  270. width:1px;
  271. height:66px;
  272. display:flex;
  273. }
  274. #u10692 .text {
  275. position:absolute;
  276. align-self:center;
  277. padding:2px 2px 2px 2px;
  278. box-sizing:border-box;
  279. width:100%;
  280. }
  281. #u10692_text {
  282. border-width:0px;
  283. word-wrap:break-word;
  284. text-transform:none;
  285. visibility:hidden;
  286. }
  287. #u10693_div {
  288. border-width:0px;
  289. position:absolute;
  290. left:0px;
  291. top:0px;
  292. width:200px;
  293. height:30px;
  294. background:inherit;
  295. background-color:rgba(51, 51, 51, 0.898039215686275);
  296. border:none;
  297. border-radius:20px;
  298. -moz-box-shadow:none;
  299. -webkit-box-shadow:none;
  300. box-shadow:none;
  301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  302. font-weight:400;
  303. font-style:normal;
  304. font-size:14px;
  305. color:#FFFFFF;
  306. text-align:center;
  307. line-height:30px;
  308. }
  309. #u10693 {
  310. border-width:0px;
  311. position:absolute;
  312. left:140px;
  313. top:1050px;
  314. width:200px;
  315. height:30px;
  316. display:flex;
  317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  318. font-weight:400;
  319. font-style:normal;
  320. font-size:14px;
  321. color:#FFFFFF;
  322. text-align:center;
  323. line-height:30px;
  324. }
  325. #u10693 .text {
  326. position:absolute;
  327. align-self:center;
  328. padding:0px 0px 0px 0px;
  329. box-sizing:border-box;
  330. width:100%;
  331. }
  332. #u10693_text {
  333. border-width:0px;
  334. word-wrap:break-word;
  335. text-transform:none;
  336. }
  337. #u10695_img {
  338. border-width:0px;
  339. position:absolute;
  340. left:0px;
  341. top:0px;
  342. width:433px;
  343. height:865px;
  344. }
  345. #u10695 {
  346. border-width:0px;
  347. position:absolute;
  348. left:453px;
  349. top:0px;
  350. width:433px;
  351. height:865px;
  352. display:flex;
  353. }
  354. #u10695 .text {
  355. position:absolute;
  356. align-self:center;
  357. padding:2px 2px 2px 2px;
  358. box-sizing:border-box;
  359. width:100%;
  360. }
  361. #u10695_text {
  362. border-width:0px;
  363. word-wrap:break-word;
  364. text-transform:none;
  365. visibility:hidden;
  366. }
  367. #u10696_div {
  368. border-width:0px;
  369. position:absolute;
  370. left:0px;
  371. top:0px;
  372. width:375px;
  373. height:40px;
  374. background:inherit;
  375. background-color:rgba(255, 255, 255, 1);
  376. box-sizing:border-box;
  377. border-width:1px;
  378. border-style:solid;
  379. border-color:rgba(215, 215, 215, 1);
  380. border-left:0px;
  381. border-top:0px;
  382. border-right:0px;
  383. border-radius:0px;
  384. border-bottom-right-radius:0px;
  385. border-bottom-left-radius:0px;
  386. -moz-box-shadow:none;
  387. -webkit-box-shadow:none;
  388. box-shadow:none;
  389. }
  390. #u10696 {
  391. border-width:0px;
  392. position:absolute;
  393. left:482px;
  394. top:67px;
  395. width:375px;
  396. height:40px;
  397. display:flex;
  398. }
  399. #u10696 .text {
  400. position:absolute;
  401. align-self:center;
  402. padding:2px 2px 2px 2px;
  403. box-sizing:border-box;
  404. width:100%;
  405. }
  406. #u10696_text {
  407. border-width:0px;
  408. word-wrap:break-word;
  409. text-transform:none;
  410. visibility:hidden;
  411. }
  412. #u10697 {
  413. border-width:0px;
  414. position:absolute;
  415. left:0px;
  416. top:0px;
  417. width:0px;
  418. height:0px;
  419. }
  420. #u10698_div {
  421. border-width:0px;
  422. position:absolute;
  423. left:0px;
  424. top:0px;
  425. width:88px;
  426. height:32px;
  427. background:inherit;
  428. background-color:rgba(255, 255, 255, 1);
  429. box-sizing:border-box;
  430. border-width:1px;
  431. border-style:solid;
  432. border-color:rgba(242, 242, 242, 1);
  433. border-radius:33px;
  434. -moz-box-shadow:none;
  435. -webkit-box-shadow:none;
  436. box-shadow:none;
  437. }
  438. #u10698 {
  439. border-width:0px;
  440. position:absolute;
  441. left:762px;
  442. top:71px;
  443. width:88px;
  444. height:32px;
  445. display:flex;
  446. }
  447. #u10698 .text {
  448. position:absolute;
  449. align-self:center;
  450. padding:2px 2px 2px 2px;
  451. box-sizing:border-box;
  452. width:100%;
  453. }
  454. #u10698_text {
  455. border-width:0px;
  456. word-wrap:break-word;
  457. text-transform:none;
  458. visibility:hidden;
  459. }
  460. #u10699 {
  461. border-width:0px;
  462. position:absolute;
  463. left:0px;
  464. top:0px;
  465. width:0px;
  466. height:0px;
  467. }
  468. #u10700_img {
  469. border-width:0px;
  470. position:absolute;
  471. left:0px;
  472. top:0px;
  473. width:18px;
  474. height:18px;
  475. }
  476. #u10700 {
  477. border-width:0px;
  478. position:absolute;
  479. left:825px;
  480. top:78px;
  481. width:18px;
  482. height:18px;
  483. display:flex;
  484. }
  485. #u10700 .text {
  486. position:absolute;
  487. align-self:center;
  488. padding:2px 2px 2px 2px;
  489. box-sizing:border-box;
  490. width:100%;
  491. }
  492. #u10700_text {
  493. border-width:0px;
  494. word-wrap:break-word;
  495. text-transform:none;
  496. visibility:hidden;
  497. }
  498. #u10701_img {
  499. border-width:0px;
  500. position:absolute;
  501. left:0px;
  502. top:0px;
  503. width:6px;
  504. height:6px;
  505. }
  506. #u10701 {
  507. border-width:0px;
  508. position:absolute;
  509. left:831px;
  510. top:84px;
  511. width:6px;
  512. height:6px;
  513. display:flex;
  514. }
  515. #u10701 .text {
  516. position:absolute;
  517. align-self:center;
  518. padding:2px 2px 2px 2px;
  519. box-sizing:border-box;
  520. width:100%;
  521. }
  522. #u10701_text {
  523. border-width:0px;
  524. word-wrap:break-word;
  525. text-transform:none;
  526. visibility:hidden;
  527. }
  528. #u10702 {
  529. border-width:0px;
  530. position:absolute;
  531. left:0px;
  532. top:0px;
  533. width:0px;
  534. height:0px;
  535. }
  536. #u10703_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:5px;
  542. height:5px;
  543. }
  544. #u10703 {
  545. border-width:0px;
  546. position:absolute;
  547. left:776px;
  548. top:85px;
  549. width:5px;
  550. height:5px;
  551. display:flex;
  552. }
  553. #u10703 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u10703_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u10704_img {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:5px;
  572. height:5px;
  573. }
  574. #u10704 {
  575. border-width:0px;
  576. position:absolute;
  577. left:792px;
  578. top:85px;
  579. width:5px;
  580. height:5px;
  581. display:flex;
  582. }
  583. #u10704 .text {
  584. position:absolute;
  585. align-self:center;
  586. padding:2px 2px 2px 2px;
  587. box-sizing:border-box;
  588. width:100%;
  589. }
  590. #u10704_text {
  591. border-width:0px;
  592. word-wrap:break-word;
  593. text-transform:none;
  594. visibility:hidden;
  595. }
  596. #u10705_img {
  597. border-width:0px;
  598. position:absolute;
  599. left:0px;
  600. top:0px;
  601. width:7px;
  602. height:7px;
  603. }
  604. #u10705 {
  605. border-width:0px;
  606. position:absolute;
  607. left:783px;
  608. top:84px;
  609. width:7px;
  610. height:7px;
  611. display:flex;
  612. }
  613. #u10705 .text {
  614. position:absolute;
  615. align-self:center;
  616. padding:2px 2px 2px 2px;
  617. box-sizing:border-box;
  618. width:100%;
  619. }
  620. #u10705_text {
  621. border-width:0px;
  622. word-wrap:break-word;
  623. text-transform:none;
  624. visibility:hidden;
  625. }
  626. #u10706_img {
  627. border-width:0px;
  628. position:absolute;
  629. left:0px;
  630. top:0px;
  631. width:19px;
  632. height:2px;
  633. }
  634. #u10706 {
  635. border-width:0px;
  636. position:absolute;
  637. left:800px;
  638. top:87px;
  639. width:18px;
  640. height:1px;
  641. display:flex;
  642. -webkit-transform:rotate(90deg);
  643. -moz-transform:rotate(90deg);
  644. -ms-transform:rotate(90deg);
  645. transform:rotate(90deg);
  646. }
  647. #u10706 .text {
  648. position:absolute;
  649. align-self:center;
  650. padding:2px 2px 2px 2px;
  651. box-sizing:border-box;
  652. width:100%;
  653. }
  654. #u10706_text {
  655. border-width:0px;
  656. word-wrap:break-word;
  657. text-transform:none;
  658. visibility:hidden;
  659. }
  660. #u10707_img {
  661. border-width:0px;
  662. position:absolute;
  663. left:0px;
  664. top:0px;
  665. width:375px;
  666. height:44px;
  667. }
  668. #u10707 {
  669. border-width:0px;
  670. position:absolute;
  671. left:482px;
  672. top:24px;
  673. width:375px;
  674. height:44px;
  675. display:flex;
  676. }
  677. #u10707 .text {
  678. position:absolute;
  679. align-self:center;
  680. padding:2px 2px 2px 2px;
  681. box-sizing:border-box;
  682. width:100%;
  683. }
  684. #u10707_text {
  685. border-width:0px;
  686. word-wrap:break-word;
  687. text-transform:none;
  688. visibility:hidden;
  689. }
  690. #u10708_div {
  691. border-width:0px;
  692. position:absolute;
  693. left:0px;
  694. top:0px;
  695. width:375px;
  696. height:50px;
  697. background:inherit;
  698. background-color:rgba(255, 255, 255, 1);
  699. box-sizing:border-box;
  700. border-width:1px;
  701. border-style:solid;
  702. border-color:rgba(242, 242, 242, 1);
  703. border-radius:26px;
  704. border-top-left-radius:0px;
  705. border-top-right-radius:0px;
  706. -moz-box-shadow:none;
  707. -webkit-box-shadow:none;
  708. box-shadow:none;
  709. }
  710. #u10708 {
  711. border-width:0px;
  712. position:absolute;
  713. left:482px;
  714. top:788px;
  715. width:375px;
  716. height:50px;
  717. display:flex;
  718. }
  719. #u10708 .text {
  720. position:absolute;
  721. align-self:center;
  722. padding:2px 2px 2px 2px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u10708_text {
  727. border-width:0px;
  728. word-wrap:break-word;
  729. text-transform:none;
  730. visibility:hidden;
  731. }
  732. #u10709 {
  733. border-width:0px;
  734. position:absolute;
  735. left:0px;
  736. top:0px;
  737. width:0px;
  738. height:0px;
  739. }
  740. #u10710_img {
  741. border-width:0px;
  742. position:absolute;
  743. left:0px;
  744. top:0px;
  745. width:24px;
  746. height:24px;
  747. }
  748. #u10710 {
  749. border-width:0px;
  750. position:absolute;
  751. left:522px;
  752. top:792px;
  753. width:24px;
  754. height:24px;
  755. display:flex;
  756. font-size:8px;
  757. }
  758. #u10710 .text {
  759. position:absolute;
  760. align-self:center;
  761. padding:2px 2px 2px 2px;
  762. box-sizing:border-box;
  763. width:100%;
  764. }
  765. #u10710_text {
  766. border-width:0px;
  767. word-wrap:break-word;
  768. text-transform:none;
  769. }
  770. #u10711_div {
  771. border-width:0px;
  772. position:absolute;
  773. left:0px;
  774. top:0px;
  775. width:25px;
  776. height:17px;
  777. background:inherit;
  778. background-color:rgba(255, 255, 255, 0);
  779. border:none;
  780. border-radius:0px;
  781. -moz-box-shadow:none;
  782. -webkit-box-shadow:none;
  783. box-shadow:none;
  784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  785. font-weight:400;
  786. font-style:normal;
  787. font-size:12px;
  788. }
  789. #u10711 {
  790. border-width:0px;
  791. position:absolute;
  792. left:522px;
  793. top:817px;
  794. width:25px;
  795. height:17px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:12px;
  801. }
  802. #u10711 .text {
  803. position:absolute;
  804. align-self:flex-start;
  805. padding:0px 0px 0px 0px;
  806. box-sizing:border-box;
  807. width:100%;
  808. }
  809. #u10711_text {
  810. border-width:0px;
  811. white-space:nowrap;
  812. text-transform:none;
  813. }
  814. #u10712 {
  815. border-width:0px;
  816. position:absolute;
  817. left:0px;
  818. top:0px;
  819. width:0px;
  820. height:0px;
  821. }
  822. #u10713_img {
  823. border-width:0px;
  824. position:absolute;
  825. left:0px;
  826. top:0px;
  827. width:24px;
  828. height:24px;
  829. }
  830. #u10713 {
  831. border-width:0px;
  832. position:absolute;
  833. left:792px;
  834. top:794px;
  835. width:24px;
  836. height:24px;
  837. display:flex;
  838. font-size:8px;
  839. }
  840. #u10713 .text {
  841. position:absolute;
  842. align-self:center;
  843. padding:2px 2px 2px 2px;
  844. box-sizing:border-box;
  845. width:100%;
  846. }
  847. #u10713_text {
  848. border-width:0px;
  849. word-wrap:break-word;
  850. text-transform:none;
  851. }
  852. #u10714_div {
  853. border-width:0px;
  854. position:absolute;
  855. left:0px;
  856. top:0px;
  857. width:25px;
  858. height:17px;
  859. background:inherit;
  860. background-color:rgba(255, 255, 255, 0);
  861. border:none;
  862. border-radius:0px;
  863. -moz-box-shadow:none;
  864. -webkit-box-shadow:none;
  865. box-shadow:none;
  866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  867. font-weight:400;
  868. font-style:normal;
  869. font-size:12px;
  870. }
  871. #u10714 {
  872. border-width:0px;
  873. position:absolute;
  874. left:792px;
  875. top:819px;
  876. width:25px;
  877. height:17px;
  878. display:flex;
  879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  880. font-weight:400;
  881. font-style:normal;
  882. font-size:12px;
  883. }
  884. #u10714 .text {
  885. position:absolute;
  886. align-self:flex-start;
  887. padding:0px 0px 0px 0px;
  888. box-sizing:border-box;
  889. width:100%;
  890. }
  891. #u10714_text {
  892. border-width:0px;
  893. white-space:nowrap;
  894. text-transform:none;
  895. }
  896. #u10715_div {
  897. border-width:0px;
  898. position:absolute;
  899. left:0px;
  900. top:0px;
  901. width:375px;
  902. height:681px;
  903. background:inherit;
  904. background-color:rgba(242, 242, 242, 0.462745098039216);
  905. border:none;
  906. border-radius:0px;
  907. -moz-box-shadow:none;
  908. -webkit-box-shadow:none;
  909. box-shadow:none;
  910. }
  911. #u10715 {
  912. border-width:0px;
  913. position:absolute;
  914. left:482px;
  915. top:107px;
  916. width:375px;
  917. height:681px;
  918. display:flex;
  919. }
  920. #u10715 .text {
  921. position:absolute;
  922. align-self:center;
  923. padding:2px 2px 2px 2px;
  924. box-sizing:border-box;
  925. width:100%;
  926. }
  927. #u10715_text {
  928. border-width:0px;
  929. word-wrap:break-word;
  930. text-transform:none;
  931. visibility:hidden;
  932. }
  933. #u10716 {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:0px;
  939. height:0px;
  940. }
  941. #u10717_img {
  942. border-width:0px;
  943. position:absolute;
  944. left:0px;
  945. top:0px;
  946. width:24px;
  947. height:24px;
  948. }
  949. #u10717 {
  950. border-width:0px;
  951. position:absolute;
  952. left:704px;
  953. top:792px;
  954. width:24px;
  955. height:24px;
  956. display:flex;
  957. font-size:8px;
  958. }
  959. #u10717 .text {
  960. position:absolute;
  961. align-self:center;
  962. padding:2px 2px 2px 2px;
  963. box-sizing:border-box;
  964. width:100%;
  965. }
  966. #u10717_text {
  967. border-width:0px;
  968. word-wrap:break-word;
  969. text-transform:none;
  970. }
  971. #u10718_div {
  972. border-width:0px;
  973. position:absolute;
  974. left:0px;
  975. top:0px;
  976. width:37px;
  977. height:17px;
  978. background:inherit;
  979. background-color:rgba(255, 255, 255, 0);
  980. border:none;
  981. border-radius:0px;
  982. -moz-box-shadow:none;
  983. -webkit-box-shadow:none;
  984. box-shadow:none;
  985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  986. font-weight:400;
  987. font-style:normal;
  988. font-size:12px;
  989. }
  990. #u10718 {
  991. border-width:0px;
  992. position:absolute;
  993. left:698px;
  994. top:817px;
  995. width:37px;
  996. height:17px;
  997. display:flex;
  998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  999. font-weight:400;
  1000. font-style:normal;
  1001. font-size:12px;
  1002. }
  1003. #u10718 .text {
  1004. position:absolute;
  1005. align-self:flex-start;
  1006. padding:0px 0px 0px 0px;
  1007. box-sizing:border-box;
  1008. width:100%;
  1009. }
  1010. #u10718_text {
  1011. border-width:0px;
  1012. white-space:nowrap;
  1013. text-transform:none;
  1014. }
  1015. #u10719 {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:0px;
  1021. height:0px;
  1022. }
  1023. #u10720_img {
  1024. border-width:0px;
  1025. position:absolute;
  1026. left:0px;
  1027. top:0px;
  1028. width:24px;
  1029. height:24px;
  1030. }
  1031. #u10720 {
  1032. border-width:0px;
  1033. position:absolute;
  1034. left:610px;
  1035. top:792px;
  1036. width:24px;
  1037. height:24px;
  1038. display:flex;
  1039. font-size:8px;
  1040. }
  1041. #u10720 .text {
  1042. position:absolute;
  1043. align-self:center;
  1044. padding:2px 2px 2px 2px;
  1045. box-sizing:border-box;
  1046. width:100%;
  1047. }
  1048. #u10720_text {
  1049. border-width:0px;
  1050. word-wrap:break-word;
  1051. text-transform:none;
  1052. }
  1053. #u10721_div {
  1054. border-width:0px;
  1055. position:absolute;
  1056. left:0px;
  1057. top:0px;
  1058. width:37px;
  1059. height:17px;
  1060. background:inherit;
  1061. background-color:rgba(255, 255, 255, 0);
  1062. border:none;
  1063. border-radius:0px;
  1064. -moz-box-shadow:none;
  1065. -webkit-box-shadow:none;
  1066. box-shadow:none;
  1067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1068. font-weight:400;
  1069. font-style:normal;
  1070. font-size:12px;
  1071. }
  1072. #u10721 {
  1073. border-width:0px;
  1074. position:absolute;
  1075. left:604px;
  1076. top:817px;
  1077. width:37px;
  1078. height:17px;
  1079. display:flex;
  1080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1081. font-weight:400;
  1082. font-style:normal;
  1083. font-size:12px;
  1084. }
  1085. #u10721 .text {
  1086. position:absolute;
  1087. align-self:flex-start;
  1088. padding:0px 0px 0px 0px;
  1089. box-sizing:border-box;
  1090. width:100%;
  1091. }
  1092. #u10721_text {
  1093. border-width:0px;
  1094. white-space:nowrap;
  1095. text-transform:none;
  1096. }
  1097. #u10722_div {
  1098. border-width:0px;
  1099. position:absolute;
  1100. left:0px;
  1101. top:0px;
  1102. width:375px;
  1103. height:784px;
  1104. background:inherit;
  1105. background-color:rgba(242, 242, 242, 1);
  1106. border:none;
  1107. border-top:0px;
  1108. border-radius:28px;
  1109. border-top-left-radius:0px;
  1110. border-top-right-radius:0px;
  1111. -moz-box-shadow:none;
  1112. -webkit-box-shadow:none;
  1113. box-shadow:none;
  1114. }
  1115. #u10722 {
  1116. border-width:0px;
  1117. position:absolute;
  1118. left:482px;
  1119. top:107px;
  1120. width:375px;
  1121. height:784px;
  1122. display:flex;
  1123. }
  1124. #u10722 .text {
  1125. position:absolute;
  1126. align-self:center;
  1127. padding:2px 2px 2px 2px;
  1128. box-sizing:border-box;
  1129. width:100%;
  1130. }
  1131. #u10722_text {
  1132. border-width:0px;
  1133. word-wrap:break-word;
  1134. text-transform:none;
  1135. visibility:hidden;
  1136. }
  1137. #u10723_div {
  1138. border-width:0px;
  1139. position:absolute;
  1140. left:0px;
  1141. top:0px;
  1142. width:12px;
  1143. height:12px;
  1144. background:inherit;
  1145. background-color:rgba(255, 255, 255, 0);
  1146. box-sizing:border-box;
  1147. border-width:2px;
  1148. border-style:solid;
  1149. border-color:rgba(51, 51, 51, 1);
  1150. border-right:0px;
  1151. border-bottom:0px;
  1152. border-radius:0px;
  1153. border-top-right-radius:0px;
  1154. border-bottom-left-radius:0px;
  1155. -moz-box-shadow:none;
  1156. -webkit-box-shadow:none;
  1157. box-shadow:none;
  1158. }
  1159. #u10723 {
  1160. border-width:0px;
  1161. position:absolute;
  1162. left:492px;
  1163. top:81px;
  1164. width:12px;
  1165. height:12px;
  1166. display:flex;
  1167. -webkit-transform:rotate(315deg);
  1168. -moz-transform:rotate(315deg);
  1169. -ms-transform:rotate(315deg);
  1170. transform:rotate(315deg);
  1171. }
  1172. #u10723 .text {
  1173. position:absolute;
  1174. align-self:center;
  1175. padding:2px 2px 2px 2px;
  1176. box-sizing:border-box;
  1177. width:100%;
  1178. }
  1179. #u10723_text {
  1180. border-width:0px;
  1181. word-wrap:break-word;
  1182. text-transform:none;
  1183. visibility:hidden;
  1184. }
  1185. #u10724_div {
  1186. border-width:0px;
  1187. position:absolute;
  1188. left:0px;
  1189. top:0px;
  1190. width:85px;
  1191. height:30px;
  1192. background:inherit;
  1193. background-color:rgba(255, 255, 255, 0);
  1194. border:none;
  1195. border-left:0px;
  1196. border-top:0px;
  1197. border-right:0px;
  1198. border-radius:0px;
  1199. border-bottom-right-radius:0px;
  1200. border-bottom-left-radius:0px;
  1201. -moz-box-shadow:none;
  1202. -webkit-box-shadow:none;
  1203. box-shadow:none;
  1204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1205. font-weight:400;
  1206. font-style:normal;
  1207. font-size:14px;
  1208. line-height:30px;
  1209. }
  1210. #u10724 {
  1211. border-width:0px;
  1212. position:absolute;
  1213. left:627px;
  1214. top:72px;
  1215. width:85px;
  1216. height:30px;
  1217. display:flex;
  1218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1219. font-weight:400;
  1220. font-style:normal;
  1221. font-size:14px;
  1222. line-height:30px;
  1223. }
  1224. #u10724 .text {
  1225. position:absolute;
  1226. align-self:center;
  1227. padding:0px 0px 0px 0px;
  1228. box-sizing:border-box;
  1229. width:100%;
  1230. }
  1231. #u10724_text {
  1232. border-width:0px;
  1233. white-space:nowrap;
  1234. text-transform:none;
  1235. }
  1236. #u10725 {
  1237. border-width:0px;
  1238. position:absolute;
  1239. left:0px;
  1240. top:0px;
  1241. width:0px;
  1242. height:0px;
  1243. }
  1244. #u10726_div {
  1245. border-width:0px;
  1246. position:absolute;
  1247. left:0px;
  1248. top:0px;
  1249. width:375px;
  1250. height:170px;
  1251. background:inherit;
  1252. background-color:rgba(255, 255, 255, 1);
  1253. border:none;
  1254. border-left:0px;
  1255. border-top:0px;
  1256. border-right:0px;
  1257. border-radius:0px;
  1258. border-bottom-right-radius:0px;
  1259. border-bottom-left-radius:0px;
  1260. -moz-box-shadow:none;
  1261. -webkit-box-shadow:none;
  1262. box-shadow:none;
  1263. }
  1264. #u10726 {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:482px;
  1268. top:612px;
  1269. width:375px;
  1270. height:170px;
  1271. display:flex;
  1272. }
  1273. #u10726 .text {
  1274. position:absolute;
  1275. align-self:center;
  1276. padding:2px 2px 2px 2px;
  1277. box-sizing:border-box;
  1278. width:100%;
  1279. }
  1280. #u10726_text {
  1281. border-width:0px;
  1282. word-wrap:break-word;
  1283. text-transform:none;
  1284. visibility:hidden;
  1285. }
  1286. #u10727_div {
  1287. border-width:0px;
  1288. position:absolute;
  1289. left:0px;
  1290. top:0px;
  1291. width:253px;
  1292. height:30px;
  1293. background:inherit;
  1294. background-color:rgba(255, 255, 255, 0);
  1295. border:none;
  1296. border-left:0px;
  1297. border-top:0px;
  1298. border-right:0px;
  1299. border-radius:0px;
  1300. border-bottom-right-radius:0px;
  1301. border-bottom-left-radius:0px;
  1302. -moz-box-shadow:none;
  1303. -webkit-box-shadow:none;
  1304. box-shadow:none;
  1305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1306. font-weight:400;
  1307. font-style:normal;
  1308. font-size:12px;
  1309. line-height:30px;
  1310. }
  1311. #u10727 {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:502px;
  1315. top:652px;
  1316. width:253px;
  1317. height:30px;
  1318. display:flex;
  1319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1320. font-weight:400;
  1321. font-style:normal;
  1322. font-size:12px;
  1323. line-height:30px;
  1324. }
  1325. #u10727 .text {
  1326. position:absolute;
  1327. align-self:flex-start;
  1328. padding:0px 0px 0px 0px;
  1329. box-sizing:border-box;
  1330. width:100%;
  1331. }
  1332. #u10727_text {
  1333. border-width:0px;
  1334. white-space:nowrap;
  1335. text-transform:none;
  1336. }
  1337. #u10728_div {
  1338. border-width:0px;
  1339. position:absolute;
  1340. left:0px;
  1341. top:0px;
  1342. width:57px;
  1343. height:30px;
  1344. background:inherit;
  1345. background-color:rgba(255, 255, 255, 0);
  1346. border:none;
  1347. border-left:0px;
  1348. border-top:0px;
  1349. border-right:0px;
  1350. border-radius:0px;
  1351. border-bottom-right-radius:0px;
  1352. border-bottom-left-radius:0px;
  1353. -moz-box-shadow:none;
  1354. -webkit-box-shadow:none;
  1355. box-shadow:none;
  1356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1357. font-weight:400;
  1358. font-style:normal;
  1359. font-size:14px;
  1360. color:#AAAAAA;
  1361. line-height:30px;
  1362. }
  1363. #u10728 {
  1364. border-width:0px;
  1365. position:absolute;
  1366. left:502px;
  1367. top:622px;
  1368. width:57px;
  1369. height:30px;
  1370. display:flex;
  1371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1372. font-weight:400;
  1373. font-style:normal;
  1374. font-size:14px;
  1375. color:#AAAAAA;
  1376. line-height:30px;
  1377. }
  1378. #u10728 .text {
  1379. position:absolute;
  1380. align-self:center;
  1381. padding:0px 0px 0px 0px;
  1382. box-sizing:border-box;
  1383. width:100%;
  1384. }
  1385. #u10728_text {
  1386. border-width:0px;
  1387. white-space:nowrap;
  1388. text-transform:none;
  1389. }
  1390. #u10729_div {
  1391. border-width:0px;
  1392. position:absolute;
  1393. left:0px;
  1394. top:0px;
  1395. width:375px;
  1396. height:50px;
  1397. background:inherit;
  1398. background-color:rgba(255, 255, 255, 1);
  1399. border:none;
  1400. border-left:0px;
  1401. border-top:0px;
  1402. border-right:0px;
  1403. border-radius:0px;
  1404. border-bottom-right-radius:0px;
  1405. border-bottom-left-radius:0px;
  1406. -moz-box-shadow:none;
  1407. -webkit-box-shadow:none;
  1408. box-shadow:none;
  1409. }
  1410. #u10729 {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:482px;
  1414. top:408px;
  1415. width:375px;
  1416. height:50px;
  1417. display:flex;
  1418. }
  1419. #u10729 .text {
  1420. position:absolute;
  1421. align-self:center;
  1422. padding:2px 2px 2px 2px;
  1423. box-sizing:border-box;
  1424. width:100%;
  1425. }
  1426. #u10729_text {
  1427. border-width:0px;
  1428. word-wrap:break-word;
  1429. text-transform:none;
  1430. visibility:hidden;
  1431. }
  1432. #u10730_div {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:71px;
  1438. height:30px;
  1439. background:inherit;
  1440. background-color:rgba(255, 255, 255, 0);
  1441. border:none;
  1442. border-left:0px;
  1443. border-top:0px;
  1444. border-right:0px;
  1445. border-radius:0px;
  1446. border-bottom-right-radius:0px;
  1447. border-bottom-left-radius:0px;
  1448. -moz-box-shadow:none;
  1449. -webkit-box-shadow:none;
  1450. box-shadow:none;
  1451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1452. font-weight:400;
  1453. font-style:normal;
  1454. font-size:14px;
  1455. color:#AAAAAA;
  1456. line-height:30px;
  1457. }
  1458. #u10730 {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:502px;
  1462. top:418px;
  1463. width:71px;
  1464. height:30px;
  1465. display:flex;
  1466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1467. font-weight:400;
  1468. font-style:normal;
  1469. font-size:14px;
  1470. color:#AAAAAA;
  1471. line-height:30px;
  1472. }
  1473. #u10730 .text {
  1474. position:absolute;
  1475. align-self:center;
  1476. padding:0px 0px 0px 0px;
  1477. box-sizing:border-box;
  1478. width:100%;
  1479. }
  1480. #u10730_text {
  1481. border-width:0px;
  1482. white-space:nowrap;
  1483. text-transform:none;
  1484. }
  1485. #u10731_div {
  1486. border-width:0px;
  1487. position:absolute;
  1488. left:0px;
  1489. top:0px;
  1490. width:57px;
  1491. height:30px;
  1492. background:inherit;
  1493. background-color:rgba(255, 255, 255, 0);
  1494. border:none;
  1495. border-radius:4px;
  1496. -moz-box-shadow:none;
  1497. -webkit-box-shadow:none;
  1498. box-shadow:none;
  1499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1500. font-weight:400;
  1501. font-style:normal;
  1502. font-size:14px;
  1503. text-align:center;
  1504. line-height:30px;
  1505. }
  1506. #u10731 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:583px;
  1510. top:418px;
  1511. width:57px;
  1512. height:30px;
  1513. display:flex;
  1514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1515. font-weight:400;
  1516. font-style:normal;
  1517. font-size:14px;
  1518. text-align:center;
  1519. line-height:30px;
  1520. }
  1521. #u10731 .text {
  1522. position:absolute;
  1523. align-self:center;
  1524. padding:0px 0px 0px 0px;
  1525. box-sizing:border-box;
  1526. width:100%;
  1527. }
  1528. #u10731_text {
  1529. border-width:0px;
  1530. white-space:nowrap;
  1531. text-transform:none;
  1532. }
  1533. #u10732_div {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:0px;
  1537. top:0px;
  1538. width:375px;
  1539. height:50px;
  1540. background:inherit;
  1541. background-color:rgba(255, 255, 255, 1);
  1542. border:none;
  1543. border-left:0px;
  1544. border-top:0px;
  1545. border-right:0px;
  1546. border-radius:0px;
  1547. border-bottom-right-radius:0px;
  1548. border-bottom-left-radius:0px;
  1549. -moz-box-shadow:none;
  1550. -webkit-box-shadow:none;
  1551. box-shadow:none;
  1552. }
  1553. #u10732 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:482px;
  1557. top:561px;
  1558. width:375px;
  1559. height:50px;
  1560. display:flex;
  1561. }
  1562. #u10732 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u10732_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u10733_div {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:71px;
  1581. height:30px;
  1582. background:inherit;
  1583. background-color:rgba(255, 255, 255, 0);
  1584. border:none;
  1585. border-left:0px;
  1586. border-top:0px;
  1587. border-right:0px;
  1588. border-radius:0px;
  1589. border-bottom-right-radius:0px;
  1590. border-bottom-left-radius:0px;
  1591. -moz-box-shadow:none;
  1592. -webkit-box-shadow:none;
  1593. box-shadow:none;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:14px;
  1598. color:#AAAAAA;
  1599. line-height:30px;
  1600. }
  1601. #u10733 {
  1602. border-width:0px;
  1603. position:absolute;
  1604. left:502px;
  1605. top:571px;
  1606. width:71px;
  1607. height:30px;
  1608. display:flex;
  1609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1610. font-weight:400;
  1611. font-style:normal;
  1612. font-size:14px;
  1613. color:#AAAAAA;
  1614. line-height:30px;
  1615. }
  1616. #u10733 .text {
  1617. position:absolute;
  1618. align-self:center;
  1619. padding:0px 0px 0px 0px;
  1620. box-sizing:border-box;
  1621. width:100%;
  1622. }
  1623. #u10733_text {
  1624. border-width:0px;
  1625. white-space:nowrap;
  1626. text-transform:none;
  1627. }
  1628. #u10734_div {
  1629. border-width:0px;
  1630. position:absolute;
  1631. left:0px;
  1632. top:0px;
  1633. width:375px;
  1634. height:50px;
  1635. background:inherit;
  1636. background-color:rgba(255, 255, 255, 1);
  1637. border:none;
  1638. border-left:0px;
  1639. border-top:0px;
  1640. border-right:0px;
  1641. border-radius:0px;
  1642. border-bottom-right-radius:0px;
  1643. border-bottom-left-radius:0px;
  1644. -moz-box-shadow:none;
  1645. -webkit-box-shadow:none;
  1646. box-shadow:none;
  1647. }
  1648. #u10734 {
  1649. border-width:0px;
  1650. position:absolute;
  1651. left:482px;
  1652. top:510px;
  1653. width:375px;
  1654. height:50px;
  1655. display:flex;
  1656. }
  1657. #u10734 .text {
  1658. position:absolute;
  1659. align-self:center;
  1660. padding:2px 2px 2px 2px;
  1661. box-sizing:border-box;
  1662. width:100%;
  1663. }
  1664. #u10734_text {
  1665. border-width:0px;
  1666. word-wrap:break-word;
  1667. text-transform:none;
  1668. visibility:hidden;
  1669. }
  1670. #u10735_div {
  1671. border-width:0px;
  1672. position:absolute;
  1673. left:0px;
  1674. top:0px;
  1675. width:71px;
  1676. height:30px;
  1677. background:inherit;
  1678. background-color:rgba(255, 255, 255, 0);
  1679. border:none;
  1680. border-left:0px;
  1681. border-top:0px;
  1682. border-right:0px;
  1683. border-radius:0px;
  1684. border-bottom-right-radius:0px;
  1685. border-bottom-left-radius:0px;
  1686. -moz-box-shadow:none;
  1687. -webkit-box-shadow:none;
  1688. box-shadow:none;
  1689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1690. font-weight:400;
  1691. font-style:normal;
  1692. font-size:14px;
  1693. color:#AAAAAA;
  1694. line-height:30px;
  1695. }
  1696. #u10735 {
  1697. border-width:0px;
  1698. position:absolute;
  1699. left:502px;
  1700. top:520px;
  1701. width:71px;
  1702. height:30px;
  1703. display:flex;
  1704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1705. font-weight:400;
  1706. font-style:normal;
  1707. font-size:14px;
  1708. color:#AAAAAA;
  1709. line-height:30px;
  1710. }
  1711. #u10735 .text {
  1712. position:absolute;
  1713. align-self:center;
  1714. padding:0px 0px 0px 0px;
  1715. box-sizing:border-box;
  1716. width:100%;
  1717. }
  1718. #u10735_text {
  1719. border-width:0px;
  1720. white-space:nowrap;
  1721. text-transform:none;
  1722. }
  1723. #u10736_div {
  1724. border-width:0px;
  1725. position:absolute;
  1726. left:0px;
  1727. top:0px;
  1728. width:61px;
  1729. height:30px;
  1730. background:inherit;
  1731. background-color:rgba(255, 255, 255, 0);
  1732. border:none;
  1733. border-left:0px;
  1734. border-top:0px;
  1735. border-right:0px;
  1736. border-radius:0px;
  1737. border-bottom-right-radius:0px;
  1738. border-bottom-left-radius:0px;
  1739. -moz-box-shadow:none;
  1740. -webkit-box-shadow:none;
  1741. box-shadow:none;
  1742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1743. font-weight:400;
  1744. font-style:normal;
  1745. font-size:14px;
  1746. text-align:right;
  1747. line-height:30px;
  1748. }
  1749. #u10736 {
  1750. border-width:0px;
  1751. position:absolute;
  1752. left:583px;
  1753. top:520px;
  1754. width:61px;
  1755. height:30px;
  1756. display:flex;
  1757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1758. font-weight:400;
  1759. font-style:normal;
  1760. font-size:14px;
  1761. text-align:right;
  1762. line-height:30px;
  1763. }
  1764. #u10736 .text {
  1765. position:absolute;
  1766. align-self:center;
  1767. padding:0px 0px 0px 0px;
  1768. box-sizing:border-box;
  1769. width:100%;
  1770. }
  1771. #u10736_text {
  1772. border-width:0px;
  1773. white-space:nowrap;
  1774. text-transform:none;
  1775. }
  1776. #u10737_div {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:0px;
  1780. top:0px;
  1781. width:169px;
  1782. height:30px;
  1783. background:inherit;
  1784. background-color:rgba(255, 255, 255, 0);
  1785. border:none;
  1786. border-left:0px;
  1787. border-top:0px;
  1788. border-right:0px;
  1789. border-radius:0px;
  1790. border-bottom-right-radius:0px;
  1791. border-bottom-left-radius:0px;
  1792. -moz-box-shadow:none;
  1793. -webkit-box-shadow:none;
  1794. box-shadow:none;
  1795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1796. font-weight:400;
  1797. font-style:normal;
  1798. font-size:14px;
  1799. line-height:30px;
  1800. }
  1801. #u10737 {
  1802. border-width:0px;
  1803. position:absolute;
  1804. left:583px;
  1805. top:571px;
  1806. width:169px;
  1807. height:30px;
  1808. display:flex;
  1809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1810. font-weight:400;
  1811. font-style:normal;
  1812. font-size:14px;
  1813. line-height:30px;
  1814. }
  1815. #u10737 .text {
  1816. position:absolute;
  1817. align-self:center;
  1818. padding:0px 0px 0px 0px;
  1819. box-sizing:border-box;
  1820. width:100%;
  1821. }
  1822. #u10737_text {
  1823. border-width:0px;
  1824. white-space:nowrap;
  1825. text-transform:none;
  1826. }
  1827. #u10738_img {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:0px;
  1831. top:0px;
  1832. width:100px;
  1833. height:74px;
  1834. }
  1835. #u10738 {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:502px;
  1839. top:692px;
  1840. width:100px;
  1841. height:74px;
  1842. display:flex;
  1843. }
  1844. #u10738 .text {
  1845. position:absolute;
  1846. align-self:center;
  1847. padding:2px 2px 2px 2px;
  1848. box-sizing:border-box;
  1849. width:100%;
  1850. }
  1851. #u10738_text {
  1852. border-width:0px;
  1853. word-wrap:break-word;
  1854. text-transform:none;
  1855. visibility:hidden;
  1856. }
  1857. #u10739_img {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:100px;
  1863. height:74px;
  1864. }
  1865. #u10739 {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:612px;
  1869. top:692px;
  1870. width:100px;
  1871. height:74px;
  1872. display:flex;
  1873. }
  1874. #u10739 .text {
  1875. position:absolute;
  1876. align-self:center;
  1877. padding:2px 2px 2px 2px;
  1878. box-sizing:border-box;
  1879. width:100%;
  1880. }
  1881. #u10739_text {
  1882. border-width:0px;
  1883. word-wrap:break-word;
  1884. text-transform:none;
  1885. visibility:hidden;
  1886. }
  1887. #u10740_div {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:0px;
  1891. top:0px;
  1892. width:335px;
  1893. height:80px;
  1894. background:inherit;
  1895. background-color:rgba(255, 255, 255, 0);
  1896. border:none;
  1897. border-left:0px;
  1898. border-top:0px;
  1899. border-right:0px;
  1900. border-radius:0px;
  1901. border-bottom-right-radius:0px;
  1902. border-bottom-left-radius:0px;
  1903. -moz-box-shadow:none;
  1904. -webkit-box-shadow:none;
  1905. box-shadow:none;
  1906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1907. font-weight:400;
  1908. font-style:normal;
  1909. font-size:10px;
  1910. color:#7F7F7F;
  1911. line-height:20px;
  1912. }
  1913. #u10740 {
  1914. border-width:0px;
  1915. position:absolute;
  1916. left:496px;
  1917. top:791px;
  1918. width:335px;
  1919. height:80px;
  1920. display:flex;
  1921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1922. font-weight:400;
  1923. font-style:normal;
  1924. font-size:10px;
  1925. color:#7F7F7F;
  1926. line-height:20px;
  1927. }
  1928. #u10740 .text {
  1929. position:absolute;
  1930. align-self:flex-start;
  1931. padding:0px 0px 0px 0px;
  1932. box-sizing:border-box;
  1933. width:100%;
  1934. }
  1935. #u10740_text {
  1936. border-width:0px;
  1937. word-wrap:break-word;
  1938. text-transform:none;
  1939. }
  1940. #u10741_div {
  1941. border-width:0px;
  1942. position:absolute;
  1943. left:0px;
  1944. top:0px;
  1945. width:375px;
  1946. height:50px;
  1947. background:inherit;
  1948. background-color:rgba(255, 255, 255, 1);
  1949. border:none;
  1950. border-left:0px;
  1951. border-top:0px;
  1952. border-right:0px;
  1953. border-radius:0px;
  1954. border-bottom-right-radius:0px;
  1955. border-bottom-left-radius:0px;
  1956. -moz-box-shadow:none;
  1957. -webkit-box-shadow:none;
  1958. box-shadow:none;
  1959. }
  1960. #u10741 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:482px;
  1964. top:459px;
  1965. width:375px;
  1966. height:50px;
  1967. display:flex;
  1968. }
  1969. #u10741 .text {
  1970. position:absolute;
  1971. align-self:center;
  1972. padding:2px 2px 2px 2px;
  1973. box-sizing:border-box;
  1974. width:100%;
  1975. }
  1976. #u10741_text {
  1977. border-width:0px;
  1978. word-wrap:break-word;
  1979. text-transform:none;
  1980. visibility:hidden;
  1981. }
  1982. #u10742_div {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:0px;
  1986. top:0px;
  1987. width:71px;
  1988. height:30px;
  1989. background:inherit;
  1990. background-color:rgba(255, 255, 255, 0);
  1991. border:none;
  1992. border-left:0px;
  1993. border-top:0px;
  1994. border-right:0px;
  1995. border-radius:0px;
  1996. border-bottom-right-radius:0px;
  1997. border-bottom-left-radius:0px;
  1998. -moz-box-shadow:none;
  1999. -webkit-box-shadow:none;
  2000. box-shadow:none;
  2001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2002. font-weight:400;
  2003. font-style:normal;
  2004. font-size:14px;
  2005. color:#AAAAAA;
  2006. line-height:30px;
  2007. }
  2008. #u10742 {
  2009. border-width:0px;
  2010. position:absolute;
  2011. left:502px;
  2012. top:469px;
  2013. width:71px;
  2014. height:30px;
  2015. display:flex;
  2016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2017. font-weight:400;
  2018. font-style:normal;
  2019. font-size:14px;
  2020. color:#AAAAAA;
  2021. line-height:30px;
  2022. }
  2023. #u10742 .text {
  2024. position:absolute;
  2025. align-self:center;
  2026. padding:0px 0px 0px 0px;
  2027. box-sizing:border-box;
  2028. width:100%;
  2029. }
  2030. #u10742_text {
  2031. border-width:0px;
  2032. white-space:nowrap;
  2033. text-transform:none;
  2034. }
  2035. #u10743_div {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:0px;
  2039. top:0px;
  2040. width:43px;
  2041. height:30px;
  2042. background:inherit;
  2043. background-color:rgba(255, 255, 255, 0);
  2044. border:none;
  2045. border-radius:4px;
  2046. -moz-box-shadow:none;
  2047. -webkit-box-shadow:none;
  2048. box-shadow:none;
  2049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2050. font-weight:400;
  2051. font-style:normal;
  2052. font-size:14px;
  2053. line-height:30px;
  2054. }
  2055. #u10743 {
  2056. border-width:0px;
  2057. position:absolute;
  2058. left:583px;
  2059. top:469px;
  2060. width:43px;
  2061. height:30px;
  2062. display:flex;
  2063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2064. font-weight:400;
  2065. font-style:normal;
  2066. font-size:14px;
  2067. line-height:30px;
  2068. }
  2069. #u10743 .text {
  2070. position:absolute;
  2071. align-self:center;
  2072. padding:0px 0px 0px 0px;
  2073. box-sizing:border-box;
  2074. width:100%;
  2075. }
  2076. #u10743_text {
  2077. border-width:0px;
  2078. white-space:nowrap;
  2079. text-transform:none;
  2080. }
  2081. #u10744_div {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:0px;
  2085. top:0px;
  2086. width:375px;
  2087. height:236px;
  2088. background:inherit;
  2089. background-color:rgba(255, 255, 255, 1);
  2090. border:none;
  2091. border-left:0px;
  2092. border-top:0px;
  2093. border-right:0px;
  2094. border-radius:0px;
  2095. border-bottom-right-radius:0px;
  2096. border-bottom-left-radius:0px;
  2097. -moz-box-shadow:none;
  2098. -webkit-box-shadow:none;
  2099. box-shadow:none;
  2100. }
  2101. #u10744 {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:-981px;
  2105. top:92px;
  2106. width:375px;
  2107. height:236px;
  2108. display:flex;
  2109. }
  2110. #u10744 .text {
  2111. position:absolute;
  2112. align-self:center;
  2113. padding:2px 2px 2px 2px;
  2114. box-sizing:border-box;
  2115. width:100%;
  2116. }
  2117. #u10744_text {
  2118. border-width:0px;
  2119. word-wrap:break-word;
  2120. text-transform:none;
  2121. visibility:hidden;
  2122. }
  2123. #u10745_div {
  2124. border-width:0px;
  2125. position:absolute;
  2126. left:0px;
  2127. top:0px;
  2128. width:61px;
  2129. height:175px;
  2130. background:inherit;
  2131. background-color:rgba(255, 255, 255, 0);
  2132. border:none;
  2133. border-left:0px;
  2134. border-top:0px;
  2135. border-right:0px;
  2136. border-radius:0px;
  2137. border-bottom-right-radius:0px;
  2138. border-bottom-left-radius:0px;
  2139. -moz-box-shadow:none;
  2140. -webkit-box-shadow:none;
  2141. box-shadow:none;
  2142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2143. font-weight:400;
  2144. font-style:normal;
  2145. font-size:12px;
  2146. color:#AAAAAA;
  2147. line-height:35px;
  2148. }
  2149. #u10745 {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:-961px;
  2153. top:148px;
  2154. width:61px;
  2155. height:175px;
  2156. display:flex;
  2157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2158. font-weight:400;
  2159. font-style:normal;
  2160. font-size:12px;
  2161. color:#AAAAAA;
  2162. line-height:35px;
  2163. }
  2164. #u10745 .text {
  2165. position:absolute;
  2166. align-self:flex-start;
  2167. padding:0px 0px 0px 0px;
  2168. box-sizing:border-box;
  2169. width:100%;
  2170. }
  2171. #u10745_text {
  2172. border-width:0px;
  2173. white-space:nowrap;
  2174. text-transform:none;
  2175. }
  2176. #u10746_div {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:0px;
  2180. top:0px;
  2181. width:109px;
  2182. height:180px;
  2183. background:inherit;
  2184. background-color:rgba(255, 255, 255, 0);
  2185. border:none;
  2186. border-left:0px;
  2187. border-top:0px;
  2188. border-right:0px;
  2189. border-radius:0px;
  2190. border-bottom-right-radius:0px;
  2191. border-bottom-left-radius:0px;
  2192. -moz-box-shadow:none;
  2193. -webkit-box-shadow:none;
  2194. box-shadow:none;
  2195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2196. font-weight:400;
  2197. font-style:normal;
  2198. }
  2199. #u10746 {
  2200. border-width:0px;
  2201. position:absolute;
  2202. left:-890px;
  2203. top:148px;
  2204. width:109px;
  2205. height:180px;
  2206. display:flex;
  2207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2208. font-weight:400;
  2209. font-style:normal;
  2210. }
  2211. #u10746 .text {
  2212. position:absolute;
  2213. align-self:flex-start;
  2214. padding:0px 0px 0px 0px;
  2215. box-sizing:border-box;
  2216. width:100%;
  2217. }
  2218. #u10746_text {
  2219. border-width:0px;
  2220. white-space:nowrap;
  2221. text-transform:none;
  2222. }
  2223. #u10747_div {
  2224. border-width:0px;
  2225. position:absolute;
  2226. left:0px;
  2227. top:0px;
  2228. width:71px;
  2229. height:40px;
  2230. background:inherit;
  2231. background-color:rgba(255, 255, 255, 0);
  2232. border:none;
  2233. border-left:0px;
  2234. border-top:0px;
  2235. border-right:0px;
  2236. border-radius:0px;
  2237. border-bottom-right-radius:0px;
  2238. border-bottom-left-radius:0px;
  2239. -moz-box-shadow:none;
  2240. -webkit-box-shadow:none;
  2241. box-shadow:none;
  2242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2243. font-weight:400;
  2244. font-style:normal;
  2245. font-size:14px;
  2246. line-height:40px;
  2247. }
  2248. #u10747 {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:-961px;
  2252. top:108px;
  2253. width:71px;
  2254. height:40px;
  2255. display:flex;
  2256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2257. font-weight:400;
  2258. font-style:normal;
  2259. font-size:14px;
  2260. line-height:40px;
  2261. }
  2262. #u10747 .text {
  2263. position:absolute;
  2264. align-self:flex-start;
  2265. padding:0px 0px 0px 0px;
  2266. box-sizing:border-box;
  2267. width:100%;
  2268. }
  2269. #u10747_text {
  2270. border-width:0px;
  2271. white-space:nowrap;
  2272. text-transform:none;
  2273. }
  2274. #u10748_div {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:0px;
  2278. top:0px;
  2279. width:71px;
  2280. height:40px;
  2281. background:inherit;
  2282. background-color:rgba(255, 255, 255, 0);
  2283. border:none;
  2284. border-left:0px;
  2285. border-top:0px;
  2286. border-right:0px;
  2287. border-radius:0px;
  2288. border-bottom-right-radius:0px;
  2289. border-bottom-left-radius:0px;
  2290. -moz-box-shadow:none;
  2291. -webkit-box-shadow:none;
  2292. box-shadow:none;
  2293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2294. font-weight:400;
  2295. font-style:normal;
  2296. font-size:14px;
  2297. color:#F59A23;
  2298. line-height:40px;
  2299. }
  2300. #u10748 {
  2301. border-width:0px;
  2302. position:absolute;
  2303. left:-697px;
  2304. top:108px;
  2305. width:71px;
  2306. height:40px;
  2307. display:flex;
  2308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2309. font-weight:400;
  2310. font-style:normal;
  2311. font-size:14px;
  2312. color:#F59A23;
  2313. line-height:40px;
  2314. }
  2315. #u10748 .text {
  2316. position:absolute;
  2317. align-self:flex-start;
  2318. padding:0px 0px 0px 0px;
  2319. box-sizing:border-box;
  2320. width:100%;
  2321. }
  2322. #u10748_text {
  2323. border-width:0px;
  2324. white-space:nowrap;
  2325. text-transform:none;
  2326. }
  2327. #u10750_img {
  2328. border-width:0px;
  2329. position:absolute;
  2330. left:0px;
  2331. top:0px;
  2332. width:433px;
  2333. height:865px;
  2334. }
  2335. #u10750 {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:1361px;
  2339. top:0px;
  2340. width:433px;
  2341. height:865px;
  2342. display:flex;
  2343. }
  2344. #u10750 .text {
  2345. position:absolute;
  2346. align-self:center;
  2347. padding:2px 2px 2px 2px;
  2348. box-sizing:border-box;
  2349. width:100%;
  2350. }
  2351. #u10750_text {
  2352. border-width:0px;
  2353. word-wrap:break-word;
  2354. text-transform:none;
  2355. visibility:hidden;
  2356. }
  2357. #u10751_div {
  2358. border-width:0px;
  2359. position:absolute;
  2360. left:0px;
  2361. top:0px;
  2362. width:375px;
  2363. height:40px;
  2364. background:inherit;
  2365. background-color:rgba(255, 255, 255, 1);
  2366. box-sizing:border-box;
  2367. border-width:1px;
  2368. border-style:solid;
  2369. border-color:rgba(215, 215, 215, 1);
  2370. border-left:0px;
  2371. border-top:0px;
  2372. border-right:0px;
  2373. border-radius:0px;
  2374. border-bottom-right-radius:0px;
  2375. border-bottom-left-radius:0px;
  2376. -moz-box-shadow:none;
  2377. -webkit-box-shadow:none;
  2378. box-shadow:none;
  2379. }
  2380. #u10751 {
  2381. border-width:0px;
  2382. position:absolute;
  2383. left:1390px;
  2384. top:67px;
  2385. width:375px;
  2386. height:40px;
  2387. display:flex;
  2388. }
  2389. #u10751 .text {
  2390. position:absolute;
  2391. align-self:center;
  2392. padding:2px 2px 2px 2px;
  2393. box-sizing:border-box;
  2394. width:100%;
  2395. }
  2396. #u10751_text {
  2397. border-width:0px;
  2398. word-wrap:break-word;
  2399. text-transform:none;
  2400. visibility:hidden;
  2401. }
  2402. #u10752 {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:0px;
  2406. top:0px;
  2407. width:0px;
  2408. height:0px;
  2409. }
  2410. #u10753_div {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:0px;
  2414. top:0px;
  2415. width:88px;
  2416. height:32px;
  2417. background:inherit;
  2418. background-color:rgba(255, 255, 255, 1);
  2419. box-sizing:border-box;
  2420. border-width:1px;
  2421. border-style:solid;
  2422. border-color:rgba(242, 242, 242, 1);
  2423. border-radius:33px;
  2424. -moz-box-shadow:none;
  2425. -webkit-box-shadow:none;
  2426. box-shadow:none;
  2427. }
  2428. #u10753 {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:1670px;
  2432. top:71px;
  2433. width:88px;
  2434. height:32px;
  2435. display:flex;
  2436. }
  2437. #u10753 .text {
  2438. position:absolute;
  2439. align-self:center;
  2440. padding:2px 2px 2px 2px;
  2441. box-sizing:border-box;
  2442. width:100%;
  2443. }
  2444. #u10753_text {
  2445. border-width:0px;
  2446. word-wrap:break-word;
  2447. text-transform:none;
  2448. visibility:hidden;
  2449. }
  2450. #u10754 {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:0px;
  2454. top:0px;
  2455. width:0px;
  2456. height:0px;
  2457. }
  2458. #u10755_img {
  2459. border-width:0px;
  2460. position:absolute;
  2461. left:0px;
  2462. top:0px;
  2463. width:18px;
  2464. height:18px;
  2465. }
  2466. #u10755 {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:1733px;
  2470. top:78px;
  2471. width:18px;
  2472. height:18px;
  2473. display:flex;
  2474. }
  2475. #u10755 .text {
  2476. position:absolute;
  2477. align-self:center;
  2478. padding:2px 2px 2px 2px;
  2479. box-sizing:border-box;
  2480. width:100%;
  2481. }
  2482. #u10755_text {
  2483. border-width:0px;
  2484. word-wrap:break-word;
  2485. text-transform:none;
  2486. visibility:hidden;
  2487. }
  2488. #u10756_img {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:0px;
  2492. top:0px;
  2493. width:6px;
  2494. height:6px;
  2495. }
  2496. #u10756 {
  2497. border-width:0px;
  2498. position:absolute;
  2499. left:1739px;
  2500. top:84px;
  2501. width:6px;
  2502. height:6px;
  2503. display:flex;
  2504. }
  2505. #u10756 .text {
  2506. position:absolute;
  2507. align-self:center;
  2508. padding:2px 2px 2px 2px;
  2509. box-sizing:border-box;
  2510. width:100%;
  2511. }
  2512. #u10756_text {
  2513. border-width:0px;
  2514. word-wrap:break-word;
  2515. text-transform:none;
  2516. visibility:hidden;
  2517. }
  2518. #u10757 {
  2519. border-width:0px;
  2520. position:absolute;
  2521. left:0px;
  2522. top:0px;
  2523. width:0px;
  2524. height:0px;
  2525. }
  2526. #u10758_img {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:0px;
  2530. top:0px;
  2531. width:5px;
  2532. height:5px;
  2533. }
  2534. #u10758 {
  2535. border-width:0px;
  2536. position:absolute;
  2537. left:1684px;
  2538. top:85px;
  2539. width:5px;
  2540. height:5px;
  2541. display:flex;
  2542. }
  2543. #u10758 .text {
  2544. position:absolute;
  2545. align-self:center;
  2546. padding:2px 2px 2px 2px;
  2547. box-sizing:border-box;
  2548. width:100%;
  2549. }
  2550. #u10758_text {
  2551. border-width:0px;
  2552. word-wrap:break-word;
  2553. text-transform:none;
  2554. visibility:hidden;
  2555. }
  2556. #u10759_img {
  2557. border-width:0px;
  2558. position:absolute;
  2559. left:0px;
  2560. top:0px;
  2561. width:5px;
  2562. height:5px;
  2563. }
  2564. #u10759 {
  2565. border-width:0px;
  2566. position:absolute;
  2567. left:1700px;
  2568. top:85px;
  2569. width:5px;
  2570. height:5px;
  2571. display:flex;
  2572. }
  2573. #u10759 .text {
  2574. position:absolute;
  2575. align-self:center;
  2576. padding:2px 2px 2px 2px;
  2577. box-sizing:border-box;
  2578. width:100%;
  2579. }
  2580. #u10759_text {
  2581. border-width:0px;
  2582. word-wrap:break-word;
  2583. text-transform:none;
  2584. visibility:hidden;
  2585. }
  2586. #u10760_img {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:0px;
  2590. top:0px;
  2591. width:7px;
  2592. height:7px;
  2593. }
  2594. #u10760 {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:1691px;
  2598. top:84px;
  2599. width:7px;
  2600. height:7px;
  2601. display:flex;
  2602. }
  2603. #u10760 .text {
  2604. position:absolute;
  2605. align-self:center;
  2606. padding:2px 2px 2px 2px;
  2607. box-sizing:border-box;
  2608. width:100%;
  2609. }
  2610. #u10760_text {
  2611. border-width:0px;
  2612. word-wrap:break-word;
  2613. text-transform:none;
  2614. visibility:hidden;
  2615. }
  2616. #u10761_img {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:0px;
  2620. top:0px;
  2621. width:19px;
  2622. height:2px;
  2623. }
  2624. #u10761 {
  2625. border-width:0px;
  2626. position:absolute;
  2627. left:1708px;
  2628. top:87px;
  2629. width:18px;
  2630. height:1px;
  2631. display:flex;
  2632. -webkit-transform:rotate(90deg);
  2633. -moz-transform:rotate(90deg);
  2634. -ms-transform:rotate(90deg);
  2635. transform:rotate(90deg);
  2636. }
  2637. #u10761 .text {
  2638. position:absolute;
  2639. align-self:center;
  2640. padding:2px 2px 2px 2px;
  2641. box-sizing:border-box;
  2642. width:100%;
  2643. }
  2644. #u10761_text {
  2645. border-width:0px;
  2646. word-wrap:break-word;
  2647. text-transform:none;
  2648. visibility:hidden;
  2649. }
  2650. #u10762_img {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:0px;
  2654. top:0px;
  2655. width:375px;
  2656. height:44px;
  2657. }
  2658. #u10762 {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:1390px;
  2662. top:24px;
  2663. width:375px;
  2664. height:44px;
  2665. display:flex;
  2666. }
  2667. #u10762 .text {
  2668. position:absolute;
  2669. align-self:center;
  2670. padding:2px 2px 2px 2px;
  2671. box-sizing:border-box;
  2672. width:100%;
  2673. }
  2674. #u10762_text {
  2675. border-width:0px;
  2676. word-wrap:break-word;
  2677. text-transform:none;
  2678. visibility:hidden;
  2679. }
  2680. #u10763_div {
  2681. border-width:0px;
  2682. position:absolute;
  2683. left:0px;
  2684. top:0px;
  2685. width:375px;
  2686. height:50px;
  2687. background:inherit;
  2688. background-color:rgba(255, 255, 255, 1);
  2689. box-sizing:border-box;
  2690. border-width:1px;
  2691. border-style:solid;
  2692. border-color:rgba(242, 242, 242, 1);
  2693. border-radius:26px;
  2694. border-top-left-radius:0px;
  2695. border-top-right-radius:0px;
  2696. -moz-box-shadow:none;
  2697. -webkit-box-shadow:none;
  2698. box-shadow:none;
  2699. }
  2700. #u10763 {
  2701. border-width:0px;
  2702. position:absolute;
  2703. left:1390px;
  2704. top:788px;
  2705. width:375px;
  2706. height:50px;
  2707. display:flex;
  2708. }
  2709. #u10763 .text {
  2710. position:absolute;
  2711. align-self:center;
  2712. padding:2px 2px 2px 2px;
  2713. box-sizing:border-box;
  2714. width:100%;
  2715. }
  2716. #u10763_text {
  2717. border-width:0px;
  2718. word-wrap:break-word;
  2719. text-transform:none;
  2720. visibility:hidden;
  2721. }
  2722. #u10764 {
  2723. border-width:0px;
  2724. position:absolute;
  2725. left:0px;
  2726. top:0px;
  2727. width:0px;
  2728. height:0px;
  2729. }
  2730. #u10765_img {
  2731. border-width:0px;
  2732. position:absolute;
  2733. left:0px;
  2734. top:0px;
  2735. width:24px;
  2736. height:24px;
  2737. }
  2738. #u10765 {
  2739. border-width:0px;
  2740. position:absolute;
  2741. left:1430px;
  2742. top:792px;
  2743. width:24px;
  2744. height:24px;
  2745. display:flex;
  2746. font-size:8px;
  2747. }
  2748. #u10765 .text {
  2749. position:absolute;
  2750. align-self:center;
  2751. padding:2px 2px 2px 2px;
  2752. box-sizing:border-box;
  2753. width:100%;
  2754. }
  2755. #u10765_text {
  2756. border-width:0px;
  2757. word-wrap:break-word;
  2758. text-transform:none;
  2759. }
  2760. #u10766_div {
  2761. border-width:0px;
  2762. position:absolute;
  2763. left:0px;
  2764. top:0px;
  2765. width:25px;
  2766. height:17px;
  2767. background:inherit;
  2768. background-color:rgba(255, 255, 255, 0);
  2769. border:none;
  2770. border-radius:0px;
  2771. -moz-box-shadow:none;
  2772. -webkit-box-shadow:none;
  2773. box-shadow:none;
  2774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2775. font-weight:400;
  2776. font-style:normal;
  2777. font-size:12px;
  2778. }
  2779. #u10766 {
  2780. border-width:0px;
  2781. position:absolute;
  2782. left:1430px;
  2783. top:817px;
  2784. width:25px;
  2785. height:17px;
  2786. display:flex;
  2787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2788. font-weight:400;
  2789. font-style:normal;
  2790. font-size:12px;
  2791. }
  2792. #u10766 .text {
  2793. position:absolute;
  2794. align-self:flex-start;
  2795. padding:0px 0px 0px 0px;
  2796. box-sizing:border-box;
  2797. width:100%;
  2798. }
  2799. #u10766_text {
  2800. border-width:0px;
  2801. white-space:nowrap;
  2802. text-transform:none;
  2803. }
  2804. #u10767 {
  2805. border-width:0px;
  2806. position:absolute;
  2807. left:0px;
  2808. top:0px;
  2809. width:0px;
  2810. height:0px;
  2811. }
  2812. #u10768_img {
  2813. border-width:0px;
  2814. position:absolute;
  2815. left:0px;
  2816. top:0px;
  2817. width:24px;
  2818. height:24px;
  2819. }
  2820. #u10768 {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:1700px;
  2824. top:794px;
  2825. width:24px;
  2826. height:24px;
  2827. display:flex;
  2828. font-size:8px;
  2829. }
  2830. #u10768 .text {
  2831. position:absolute;
  2832. align-self:center;
  2833. padding:2px 2px 2px 2px;
  2834. box-sizing:border-box;
  2835. width:100%;
  2836. }
  2837. #u10768_text {
  2838. border-width:0px;
  2839. word-wrap:break-word;
  2840. text-transform:none;
  2841. }
  2842. #u10769_div {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:0px;
  2846. top:0px;
  2847. width:25px;
  2848. height:17px;
  2849. background:inherit;
  2850. background-color:rgba(255, 255, 255, 0);
  2851. border:none;
  2852. border-radius:0px;
  2853. -moz-box-shadow:none;
  2854. -webkit-box-shadow:none;
  2855. box-shadow:none;
  2856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2857. font-weight:400;
  2858. font-style:normal;
  2859. font-size:12px;
  2860. }
  2861. #u10769 {
  2862. border-width:0px;
  2863. position:absolute;
  2864. left:1700px;
  2865. top:819px;
  2866. width:25px;
  2867. height:17px;
  2868. display:flex;
  2869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2870. font-weight:400;
  2871. font-style:normal;
  2872. font-size:12px;
  2873. }
  2874. #u10769 .text {
  2875. position:absolute;
  2876. align-self:flex-start;
  2877. padding:0px 0px 0px 0px;
  2878. box-sizing:border-box;
  2879. width:100%;
  2880. }
  2881. #u10769_text {
  2882. border-width:0px;
  2883. white-space:nowrap;
  2884. text-transform:none;
  2885. }
  2886. #u10770_div {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:0px;
  2890. top:0px;
  2891. width:375px;
  2892. height:681px;
  2893. background:inherit;
  2894. background-color:rgba(242, 242, 242, 0.462745098039216);
  2895. border:none;
  2896. border-radius:0px;
  2897. -moz-box-shadow:none;
  2898. -webkit-box-shadow:none;
  2899. box-shadow:none;
  2900. }
  2901. #u10770 {
  2902. border-width:0px;
  2903. position:absolute;
  2904. left:1390px;
  2905. top:107px;
  2906. width:375px;
  2907. height:681px;
  2908. display:flex;
  2909. }
  2910. #u10770 .text {
  2911. position:absolute;
  2912. align-self:center;
  2913. padding:2px 2px 2px 2px;
  2914. box-sizing:border-box;
  2915. width:100%;
  2916. }
  2917. #u10770_text {
  2918. border-width:0px;
  2919. word-wrap:break-word;
  2920. text-transform:none;
  2921. visibility:hidden;
  2922. }
  2923. #u10771 {
  2924. border-width:0px;
  2925. position:absolute;
  2926. left:0px;
  2927. top:0px;
  2928. width:0px;
  2929. height:0px;
  2930. }
  2931. #u10772_img {
  2932. border-width:0px;
  2933. position:absolute;
  2934. left:0px;
  2935. top:0px;
  2936. width:24px;
  2937. height:24px;
  2938. }
  2939. #u10772 {
  2940. border-width:0px;
  2941. position:absolute;
  2942. left:1612px;
  2943. top:792px;
  2944. width:24px;
  2945. height:24px;
  2946. display:flex;
  2947. font-size:8px;
  2948. }
  2949. #u10772 .text {
  2950. position:absolute;
  2951. align-self:center;
  2952. padding:2px 2px 2px 2px;
  2953. box-sizing:border-box;
  2954. width:100%;
  2955. }
  2956. #u10772_text {
  2957. border-width:0px;
  2958. word-wrap:break-word;
  2959. text-transform:none;
  2960. }
  2961. #u10773_div {
  2962. border-width:0px;
  2963. position:absolute;
  2964. left:0px;
  2965. top:0px;
  2966. width:37px;
  2967. height:17px;
  2968. background:inherit;
  2969. background-color:rgba(255, 255, 255, 0);
  2970. border:none;
  2971. border-radius:0px;
  2972. -moz-box-shadow:none;
  2973. -webkit-box-shadow:none;
  2974. box-shadow:none;
  2975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2976. font-weight:400;
  2977. font-style:normal;
  2978. font-size:12px;
  2979. }
  2980. #u10773 {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:1606px;
  2984. top:817px;
  2985. width:37px;
  2986. height:17px;
  2987. display:flex;
  2988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2989. font-weight:400;
  2990. font-style:normal;
  2991. font-size:12px;
  2992. }
  2993. #u10773 .text {
  2994. position:absolute;
  2995. align-self:flex-start;
  2996. padding:0px 0px 0px 0px;
  2997. box-sizing:border-box;
  2998. width:100%;
  2999. }
  3000. #u10773_text {
  3001. border-width:0px;
  3002. white-space:nowrap;
  3003. text-transform:none;
  3004. }
  3005. #u10774 {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:0px;
  3009. top:0px;
  3010. width:0px;
  3011. height:0px;
  3012. }
  3013. #u10775_img {
  3014. border-width:0px;
  3015. position:absolute;
  3016. left:0px;
  3017. top:0px;
  3018. width:24px;
  3019. height:24px;
  3020. }
  3021. #u10775 {
  3022. border-width:0px;
  3023. position:absolute;
  3024. left:1518px;
  3025. top:792px;
  3026. width:24px;
  3027. height:24px;
  3028. display:flex;
  3029. font-size:8px;
  3030. }
  3031. #u10775 .text {
  3032. position:absolute;
  3033. align-self:center;
  3034. padding:2px 2px 2px 2px;
  3035. box-sizing:border-box;
  3036. width:100%;
  3037. }
  3038. #u10775_text {
  3039. border-width:0px;
  3040. word-wrap:break-word;
  3041. text-transform:none;
  3042. }
  3043. #u10776_div {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:0px;
  3047. top:0px;
  3048. width:37px;
  3049. height:17px;
  3050. background:inherit;
  3051. background-color:rgba(255, 255, 255, 0);
  3052. border:none;
  3053. border-radius:0px;
  3054. -moz-box-shadow:none;
  3055. -webkit-box-shadow:none;
  3056. box-shadow:none;
  3057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3058. font-weight:400;
  3059. font-style:normal;
  3060. font-size:12px;
  3061. }
  3062. #u10776 {
  3063. border-width:0px;
  3064. position:absolute;
  3065. left:1512px;
  3066. top:817px;
  3067. width:37px;
  3068. height:17px;
  3069. display:flex;
  3070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3071. font-weight:400;
  3072. font-style:normal;
  3073. font-size:12px;
  3074. }
  3075. #u10776 .text {
  3076. position:absolute;
  3077. align-self:flex-start;
  3078. padding:0px 0px 0px 0px;
  3079. box-sizing:border-box;
  3080. width:100%;
  3081. }
  3082. #u10776_text {
  3083. border-width:0px;
  3084. white-space:nowrap;
  3085. text-transform:none;
  3086. }
  3087. #u10777_div {
  3088. border-width:0px;
  3089. position:absolute;
  3090. left:0px;
  3091. top:0px;
  3092. width:375px;
  3093. height:827px;
  3094. background:inherit;
  3095. background-color:rgba(242, 242, 242, 1);
  3096. border:none;
  3097. border-top:0px;
  3098. border-radius:28px;
  3099. border-top-left-radius:0px;
  3100. border-top-right-radius:0px;
  3101. -moz-box-shadow:none;
  3102. -webkit-box-shadow:none;
  3103. box-shadow:none;
  3104. }
  3105. #u10777 {
  3106. border-width:0px;
  3107. position:absolute;
  3108. left:1390px;
  3109. top:107px;
  3110. width:375px;
  3111. height:827px;
  3112. display:flex;
  3113. }
  3114. #u10777 .text {
  3115. position:absolute;
  3116. align-self:center;
  3117. padding:2px 2px 2px 2px;
  3118. box-sizing:border-box;
  3119. width:100%;
  3120. }
  3121. #u10777_text {
  3122. border-width:0px;
  3123. word-wrap:break-word;
  3124. text-transform:none;
  3125. visibility:hidden;
  3126. }
  3127. #u10778_div {
  3128. border-width:0px;
  3129. position:absolute;
  3130. left:0px;
  3131. top:0px;
  3132. width:12px;
  3133. height:12px;
  3134. background:inherit;
  3135. background-color:rgba(255, 255, 255, 0);
  3136. box-sizing:border-box;
  3137. border-width:2px;
  3138. border-style:solid;
  3139. border-color:rgba(51, 51, 51, 1);
  3140. border-right:0px;
  3141. border-bottom:0px;
  3142. border-radius:0px;
  3143. border-top-right-radius:0px;
  3144. border-bottom-left-radius:0px;
  3145. -moz-box-shadow:none;
  3146. -webkit-box-shadow:none;
  3147. box-shadow:none;
  3148. }
  3149. #u10778 {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:1400px;
  3153. top:81px;
  3154. width:12px;
  3155. height:12px;
  3156. display:flex;
  3157. -webkit-transform:rotate(315deg);
  3158. -moz-transform:rotate(315deg);
  3159. -ms-transform:rotate(315deg);
  3160. transform:rotate(315deg);
  3161. }
  3162. #u10778 .text {
  3163. position:absolute;
  3164. align-self:center;
  3165. padding:2px 2px 2px 2px;
  3166. box-sizing:border-box;
  3167. width:100%;
  3168. }
  3169. #u10778_text {
  3170. border-width:0px;
  3171. word-wrap:break-word;
  3172. text-transform:none;
  3173. visibility:hidden;
  3174. }
  3175. #u10779_div {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:0px;
  3179. top:0px;
  3180. width:85px;
  3181. height:30px;
  3182. background:inherit;
  3183. background-color:rgba(255, 255, 255, 0);
  3184. border:none;
  3185. border-left:0px;
  3186. border-top:0px;
  3187. border-right:0px;
  3188. border-radius:0px;
  3189. border-bottom-right-radius:0px;
  3190. border-bottom-left-radius:0px;
  3191. -moz-box-shadow:none;
  3192. -webkit-box-shadow:none;
  3193. box-shadow:none;
  3194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3195. font-weight:400;
  3196. font-style:normal;
  3197. font-size:14px;
  3198. line-height:30px;
  3199. }
  3200. #u10779 {
  3201. border-width:0px;
  3202. position:absolute;
  3203. left:1535px;
  3204. top:72px;
  3205. width:85px;
  3206. height:30px;
  3207. display:flex;
  3208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3209. font-weight:400;
  3210. font-style:normal;
  3211. font-size:14px;
  3212. line-height:30px;
  3213. }
  3214. #u10779 .text {
  3215. position:absolute;
  3216. align-self:center;
  3217. padding:0px 0px 0px 0px;
  3218. box-sizing:border-box;
  3219. width:100%;
  3220. }
  3221. #u10779_text {
  3222. border-width:0px;
  3223. white-space:nowrap;
  3224. text-transform:none;
  3225. }
  3226. #u10780_div {
  3227. border-width:0px;
  3228. position:absolute;
  3229. left:0px;
  3230. top:0px;
  3231. width:375px;
  3232. height:170px;
  3233. background:inherit;
  3234. background-color:rgba(255, 255, 255, 1);
  3235. border:none;
  3236. border-left:0px;
  3237. border-top:0px;
  3238. border-right:0px;
  3239. border-radius:0px;
  3240. border-bottom-right-radius:0px;
  3241. border-bottom-left-radius:0px;
  3242. -moz-box-shadow:none;
  3243. -webkit-box-shadow:none;
  3244. box-shadow:none;
  3245. }
  3246. #u10780 {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:1390px;
  3250. top:641px;
  3251. width:375px;
  3252. height:170px;
  3253. display:flex;
  3254. }
  3255. #u10780 .text {
  3256. position:absolute;
  3257. align-self:center;
  3258. padding:2px 2px 2px 2px;
  3259. box-sizing:border-box;
  3260. width:100%;
  3261. }
  3262. #u10780_text {
  3263. border-width:0px;
  3264. word-wrap:break-word;
  3265. text-transform:none;
  3266. visibility:hidden;
  3267. }
  3268. #u10781_div {
  3269. border-width:0px;
  3270. position:absolute;
  3271. left:0px;
  3272. top:0px;
  3273. width:253px;
  3274. height:30px;
  3275. background:inherit;
  3276. background-color:rgba(255, 255, 255, 0);
  3277. border:none;
  3278. border-left:0px;
  3279. border-top:0px;
  3280. border-right:0px;
  3281. border-radius:0px;
  3282. border-bottom-right-radius:0px;
  3283. border-bottom-left-radius:0px;
  3284. -moz-box-shadow:none;
  3285. -webkit-box-shadow:none;
  3286. box-shadow:none;
  3287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3288. font-weight:400;
  3289. font-style:normal;
  3290. font-size:12px;
  3291. line-height:30px;
  3292. }
  3293. #u10781 {
  3294. border-width:0px;
  3295. position:absolute;
  3296. left:1410px;
  3297. top:681px;
  3298. width:253px;
  3299. height:30px;
  3300. display:flex;
  3301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3302. font-weight:400;
  3303. font-style:normal;
  3304. font-size:12px;
  3305. line-height:30px;
  3306. }
  3307. #u10781 .text {
  3308. position:absolute;
  3309. align-self:flex-start;
  3310. padding:0px 0px 0px 0px;
  3311. box-sizing:border-box;
  3312. width:100%;
  3313. }
  3314. #u10781_text {
  3315. border-width:0px;
  3316. white-space:nowrap;
  3317. text-transform:none;
  3318. }
  3319. #u10782_div {
  3320. border-width:0px;
  3321. position:absolute;
  3322. left:0px;
  3323. top:0px;
  3324. width:57px;
  3325. height:30px;
  3326. background:inherit;
  3327. background-color:rgba(255, 255, 255, 0);
  3328. border:none;
  3329. border-left:0px;
  3330. border-top:0px;
  3331. border-right:0px;
  3332. border-radius:0px;
  3333. border-bottom-right-radius:0px;
  3334. border-bottom-left-radius:0px;
  3335. -moz-box-shadow:none;
  3336. -webkit-box-shadow:none;
  3337. box-shadow:none;
  3338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3339. font-weight:400;
  3340. font-style:normal;
  3341. font-size:14px;
  3342. color:#AAAAAA;
  3343. line-height:30px;
  3344. }
  3345. #u10782 {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:1410px;
  3349. top:651px;
  3350. width:57px;
  3351. height:30px;
  3352. display:flex;
  3353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3354. font-weight:400;
  3355. font-style:normal;
  3356. font-size:14px;
  3357. color:#AAAAAA;
  3358. line-height:30px;
  3359. }
  3360. #u10782 .text {
  3361. position:absolute;
  3362. align-self:center;
  3363. padding:0px 0px 0px 0px;
  3364. box-sizing:border-box;
  3365. width:100%;
  3366. }
  3367. #u10782_text {
  3368. border-width:0px;
  3369. white-space:nowrap;
  3370. text-transform:none;
  3371. }
  3372. #u10783_div {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:0px;
  3376. top:0px;
  3377. width:375px;
  3378. height:50px;
  3379. background:inherit;
  3380. background-color:rgba(255, 255, 255, 1);
  3381. border:none;
  3382. border-left:0px;
  3383. border-top:0px;
  3384. border-right:0px;
  3385. border-radius:0px;
  3386. border-bottom-right-radius:0px;
  3387. border-bottom-left-radius:0px;
  3388. -moz-box-shadow:none;
  3389. -webkit-box-shadow:none;
  3390. box-shadow:none;
  3391. }
  3392. #u10783 {
  3393. border-width:0px;
  3394. position:absolute;
  3395. left:1390px;
  3396. top:488px;
  3397. width:375px;
  3398. height:50px;
  3399. display:flex;
  3400. }
  3401. #u10783 .text {
  3402. position:absolute;
  3403. align-self:center;
  3404. padding:2px 2px 2px 2px;
  3405. box-sizing:border-box;
  3406. width:100%;
  3407. }
  3408. #u10783_text {
  3409. border-width:0px;
  3410. word-wrap:break-word;
  3411. text-transform:none;
  3412. visibility:hidden;
  3413. }
  3414. #u10784_div {
  3415. border-width:0px;
  3416. position:absolute;
  3417. left:0px;
  3418. top:0px;
  3419. width:71px;
  3420. height:30px;
  3421. background:inherit;
  3422. background-color:rgba(255, 255, 255, 0);
  3423. border:none;
  3424. border-left:0px;
  3425. border-top:0px;
  3426. border-right:0px;
  3427. border-radius:0px;
  3428. border-bottom-right-radius:0px;
  3429. border-bottom-left-radius:0px;
  3430. -moz-box-shadow:none;
  3431. -webkit-box-shadow:none;
  3432. box-shadow:none;
  3433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3434. font-weight:400;
  3435. font-style:normal;
  3436. font-size:14px;
  3437. color:#AAAAAA;
  3438. line-height:30px;
  3439. }
  3440. #u10784 {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:1410px;
  3444. top:498px;
  3445. width:71px;
  3446. height:30px;
  3447. display:flex;
  3448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3449. font-weight:400;
  3450. font-style:normal;
  3451. font-size:14px;
  3452. color:#AAAAAA;
  3453. line-height:30px;
  3454. }
  3455. #u10784 .text {
  3456. position:absolute;
  3457. align-self:center;
  3458. padding:0px 0px 0px 0px;
  3459. box-sizing:border-box;
  3460. width:100%;
  3461. }
  3462. #u10784_text {
  3463. border-width:0px;
  3464. white-space:nowrap;
  3465. text-transform:none;
  3466. }
  3467. #u10785_div {
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:0px;
  3471. top:0px;
  3472. width:57px;
  3473. height:30px;
  3474. background:inherit;
  3475. background-color:rgba(255, 255, 255, 0);
  3476. border:none;
  3477. border-radius:4px;
  3478. -moz-box-shadow:none;
  3479. -webkit-box-shadow:none;
  3480. box-shadow:none;
  3481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3482. font-weight:400;
  3483. font-style:normal;
  3484. font-size:14px;
  3485. text-align:center;
  3486. line-height:30px;
  3487. }
  3488. #u10785 {
  3489. border-width:0px;
  3490. position:absolute;
  3491. left:1486px;
  3492. top:498px;
  3493. width:57px;
  3494. height:30px;
  3495. display:flex;
  3496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3497. font-weight:400;
  3498. font-style:normal;
  3499. font-size:14px;
  3500. text-align:center;
  3501. line-height:30px;
  3502. }
  3503. #u10785 .text {
  3504. position:absolute;
  3505. align-self:center;
  3506. padding:0px 0px 0px 0px;
  3507. box-sizing:border-box;
  3508. width:100%;
  3509. }
  3510. #u10785_text {
  3511. border-width:0px;
  3512. white-space:nowrap;
  3513. text-transform:none;
  3514. }
  3515. #u10786_div {
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:0px;
  3519. top:0px;
  3520. width:375px;
  3521. height:50px;
  3522. background:inherit;
  3523. background-color:rgba(255, 255, 255, 1);
  3524. border:none;
  3525. border-left:0px;
  3526. border-top:0px;
  3527. border-right:0px;
  3528. border-radius:0px;
  3529. border-bottom-right-radius:0px;
  3530. border-bottom-left-radius:0px;
  3531. -moz-box-shadow:none;
  3532. -webkit-box-shadow:none;
  3533. box-shadow:none;
  3534. }
  3535. #u10786 {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:1390px;
  3539. top:590px;
  3540. width:375px;
  3541. height:50px;
  3542. display:flex;
  3543. }
  3544. #u10786 .text {
  3545. position:absolute;
  3546. align-self:center;
  3547. padding:2px 2px 2px 2px;
  3548. box-sizing:border-box;
  3549. width:100%;
  3550. }
  3551. #u10786_text {
  3552. border-width:0px;
  3553. word-wrap:break-word;
  3554. text-transform:none;
  3555. visibility:hidden;
  3556. }
  3557. #u10787_div {
  3558. border-width:0px;
  3559. position:absolute;
  3560. left:0px;
  3561. top:0px;
  3562. width:71px;
  3563. height:30px;
  3564. background:inherit;
  3565. background-color:rgba(255, 255, 255, 0);
  3566. border:none;
  3567. border-left:0px;
  3568. border-top:0px;
  3569. border-right:0px;
  3570. border-radius:0px;
  3571. border-bottom-right-radius:0px;
  3572. border-bottom-left-radius:0px;
  3573. -moz-box-shadow:none;
  3574. -webkit-box-shadow:none;
  3575. box-shadow:none;
  3576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3577. font-weight:400;
  3578. font-style:normal;
  3579. font-size:14px;
  3580. color:#AAAAAA;
  3581. line-height:30px;
  3582. }
  3583. #u10787 {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:1410px;
  3587. top:600px;
  3588. width:71px;
  3589. height:30px;
  3590. display:flex;
  3591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3592. font-weight:400;
  3593. font-style:normal;
  3594. font-size:14px;
  3595. color:#AAAAAA;
  3596. line-height:30px;
  3597. }
  3598. #u10787 .text {
  3599. position:absolute;
  3600. align-self:center;
  3601. padding:0px 0px 0px 0px;
  3602. box-sizing:border-box;
  3603. width:100%;
  3604. }
  3605. #u10787_text {
  3606. border-width:0px;
  3607. white-space:nowrap;
  3608. text-transform:none;
  3609. }
  3610. #u10788_div {
  3611. border-width:0px;
  3612. position:absolute;
  3613. left:0px;
  3614. top:0px;
  3615. width:375px;
  3616. height:50px;
  3617. background:inherit;
  3618. background-color:rgba(255, 255, 255, 1);
  3619. border:none;
  3620. border-left:0px;
  3621. border-top:0px;
  3622. border-right:0px;
  3623. border-radius:0px;
  3624. border-bottom-right-radius:0px;
  3625. border-bottom-left-radius:0px;
  3626. -moz-box-shadow:none;
  3627. -webkit-box-shadow:none;
  3628. box-shadow:none;
  3629. }
  3630. #u10788 {
  3631. border-width:0px;
  3632. position:absolute;
  3633. left:1390px;
  3634. top:539px;
  3635. width:375px;
  3636. height:50px;
  3637. display:flex;
  3638. }
  3639. #u10788 .text {
  3640. position:absolute;
  3641. align-self:center;
  3642. padding:2px 2px 2px 2px;
  3643. box-sizing:border-box;
  3644. width:100%;
  3645. }
  3646. #u10788_text {
  3647. border-width:0px;
  3648. word-wrap:break-word;
  3649. text-transform:none;
  3650. visibility:hidden;
  3651. }
  3652. #u10789_div {
  3653. border-width:0px;
  3654. position:absolute;
  3655. left:0px;
  3656. top:0px;
  3657. width:71px;
  3658. height:30px;
  3659. background:inherit;
  3660. background-color:rgba(255, 255, 255, 0);
  3661. border:none;
  3662. border-left:0px;
  3663. border-top:0px;
  3664. border-right:0px;
  3665. border-radius:0px;
  3666. border-bottom-right-radius:0px;
  3667. border-bottom-left-radius:0px;
  3668. -moz-box-shadow:none;
  3669. -webkit-box-shadow:none;
  3670. box-shadow:none;
  3671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3672. font-weight:400;
  3673. font-style:normal;
  3674. font-size:14px;
  3675. color:#AAAAAA;
  3676. line-height:30px;
  3677. }
  3678. #u10789 {
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:1410px;
  3682. top:549px;
  3683. width:71px;
  3684. height:30px;
  3685. display:flex;
  3686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3687. font-weight:400;
  3688. font-style:normal;
  3689. font-size:14px;
  3690. color:#AAAAAA;
  3691. line-height:30px;
  3692. }
  3693. #u10789 .text {
  3694. position:absolute;
  3695. align-self:center;
  3696. padding:0px 0px 0px 0px;
  3697. box-sizing:border-box;
  3698. width:100%;
  3699. }
  3700. #u10789_text {
  3701. border-width:0px;
  3702. white-space:nowrap;
  3703. text-transform:none;
  3704. }
  3705. #u10790_div {
  3706. border-width:0px;
  3707. position:absolute;
  3708. left:0px;
  3709. top:0px;
  3710. width:52px;
  3711. height:30px;
  3712. background:inherit;
  3713. background-color:rgba(255, 255, 255, 0);
  3714. border:none;
  3715. border-left:0px;
  3716. border-top:0px;
  3717. border-right:0px;
  3718. border-radius:0px;
  3719. border-bottom-right-radius:0px;
  3720. border-bottom-left-radius:0px;
  3721. -moz-box-shadow:none;
  3722. -webkit-box-shadow:none;
  3723. box-shadow:none;
  3724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3725. font-weight:400;
  3726. font-style:normal;
  3727. font-size:14px;
  3728. text-align:right;
  3729. line-height:30px;
  3730. }
  3731. #u10790 {
  3732. border-width:0px;
  3733. position:absolute;
  3734. left:1484px;
  3735. top:549px;
  3736. width:52px;
  3737. height:30px;
  3738. display:flex;
  3739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3740. font-weight:400;
  3741. font-style:normal;
  3742. font-size:14px;
  3743. text-align:right;
  3744. line-height:30px;
  3745. }
  3746. #u10790 .text {
  3747. position:absolute;
  3748. align-self:center;
  3749. padding:0px 0px 0px 0px;
  3750. box-sizing:border-box;
  3751. width:100%;
  3752. }
  3753. #u10790_text {
  3754. border-width:0px;
  3755. white-space:nowrap;
  3756. text-transform:none;
  3757. }
  3758. #u10791_div {
  3759. border-width:0px;
  3760. position:absolute;
  3761. left:0px;
  3762. top:0px;
  3763. width:57px;
  3764. height:30px;
  3765. background:inherit;
  3766. background-color:rgba(255, 255, 255, 0);
  3767. border:none;
  3768. border-left:0px;
  3769. border-top:0px;
  3770. border-right:0px;
  3771. border-radius:0px;
  3772. border-bottom-right-radius:0px;
  3773. border-bottom-left-radius:0px;
  3774. -moz-box-shadow:none;
  3775. -webkit-box-shadow:none;
  3776. box-shadow:none;
  3777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3778. font-weight:400;
  3779. font-style:normal;
  3780. font-size:14px;
  3781. line-height:30px;
  3782. }
  3783. #u10791 {
  3784. border-width:0px;
  3785. position:absolute;
  3786. left:1486px;
  3787. top:600px;
  3788. width:57px;
  3789. height:30px;
  3790. display:flex;
  3791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3792. font-weight:400;
  3793. font-style:normal;
  3794. font-size:14px;
  3795. line-height:30px;
  3796. }
  3797. #u10791 .text {
  3798. position:absolute;
  3799. align-self:center;
  3800. padding:0px 0px 0px 0px;
  3801. box-sizing:border-box;
  3802. width:100%;
  3803. }
  3804. #u10791_text {
  3805. border-width:0px;
  3806. white-space:nowrap;
  3807. text-transform:none;
  3808. }
  3809. #u10792_img {
  3810. border-width:0px;
  3811. position:absolute;
  3812. left:0px;
  3813. top:0px;
  3814. width:100px;
  3815. height:74px;
  3816. }
  3817. #u10792 {
  3818. border-width:0px;
  3819. position:absolute;
  3820. left:1410px;
  3821. top:721px;
  3822. width:100px;
  3823. height:74px;
  3824. display:flex;
  3825. }
  3826. #u10792 .text {
  3827. position:absolute;
  3828. align-self:center;
  3829. padding:2px 2px 2px 2px;
  3830. box-sizing:border-box;
  3831. width:100%;
  3832. }
  3833. #u10792_text {
  3834. border-width:0px;
  3835. word-wrap:break-word;
  3836. text-transform:none;
  3837. visibility:hidden;
  3838. }
  3839. #u10793_img {
  3840. border-width:0px;
  3841. position:absolute;
  3842. left:0px;
  3843. top:0px;
  3844. width:100px;
  3845. height:74px;
  3846. }
  3847. #u10793 {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:1520px;
  3851. top:721px;
  3852. width:100px;
  3853. height:74px;
  3854. display:flex;
  3855. }
  3856. #u10793 .text {
  3857. position:absolute;
  3858. align-self:center;
  3859. padding:2px 2px 2px 2px;
  3860. box-sizing:border-box;
  3861. width:100%;
  3862. }
  3863. #u10793_text {
  3864. border-width:0px;
  3865. word-wrap:break-word;
  3866. text-transform:none;
  3867. visibility:hidden;
  3868. }
  3869. #u10794_div {
  3870. border-width:0px;
  3871. position:absolute;
  3872. left:0px;
  3873. top:0px;
  3874. width:335px;
  3875. height:80px;
  3876. background:inherit;
  3877. background-color:rgba(255, 255, 255, 0);
  3878. border:none;
  3879. border-left:0px;
  3880. border-top:0px;
  3881. border-right:0px;
  3882. border-radius:0px;
  3883. border-bottom-right-radius:0px;
  3884. border-bottom-left-radius:0px;
  3885. -moz-box-shadow:none;
  3886. -webkit-box-shadow:none;
  3887. box-shadow:none;
  3888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3889. font-weight:400;
  3890. font-style:normal;
  3891. font-size:10px;
  3892. color:#7F7F7F;
  3893. line-height:20px;
  3894. }
  3895. #u10794 {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:1404px;
  3899. top:821px;
  3900. width:335px;
  3901. height:80px;
  3902. display:flex;
  3903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3904. font-weight:400;
  3905. font-style:normal;
  3906. font-size:10px;
  3907. color:#7F7F7F;
  3908. line-height:20px;
  3909. }
  3910. #u10794 .text {
  3911. position:absolute;
  3912. align-self:flex-start;
  3913. padding:0px 0px 0px 0px;
  3914. box-sizing:border-box;
  3915. width:100%;
  3916. }
  3917. #u10794_text {
  3918. border-width:0px;
  3919. word-wrap:break-word;
  3920. text-transform:none;
  3921. }
  3922. #u10795 {
  3923. border-width:0px;
  3924. position:absolute;
  3925. left:0px;
  3926. top:0px;
  3927. width:0px;
  3928. height:0px;
  3929. }
  3930. #u10796_div {
  3931. border-width:0px;
  3932. position:absolute;
  3933. left:0px;
  3934. top:0px;
  3935. width:359px;
  3936. height:60px;
  3937. background:inherit;
  3938. background-color:rgba(255, 255, 255, 1);
  3939. border:none;
  3940. border-left:0px;
  3941. border-top:0px;
  3942. border-right:0px;
  3943. border-radius:4px;
  3944. border-bottom-right-radius:0px;
  3945. border-bottom-left-radius:0px;
  3946. -moz-box-shadow:none;
  3947. -webkit-box-shadow:none;
  3948. box-shadow:none;
  3949. }
  3950. #u10796 {
  3951. border-width:0px;
  3952. position:absolute;
  3953. left:488px;
  3954. top:117px;
  3955. width:359px;
  3956. height:60px;
  3957. display:flex;
  3958. }
  3959. #u10796 .text {
  3960. position:absolute;
  3961. align-self:center;
  3962. padding:2px 2px 2px 2px;
  3963. box-sizing:border-box;
  3964. width:100%;
  3965. }
  3966. #u10796_text {
  3967. border-width:0px;
  3968. word-wrap:break-word;
  3969. text-transform:none;
  3970. }
  3971. #u10797_div {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:0px;
  3975. top:0px;
  3976. width:71px;
  3977. height:40px;
  3978. background:inherit;
  3979. background-color:rgba(255, 255, 255, 0);
  3980. border:none;
  3981. border-left:0px;
  3982. border-top:0px;
  3983. border-right:0px;
  3984. border-radius:0px;
  3985. border-bottom-right-radius:0px;
  3986. border-bottom-left-radius:0px;
  3987. -moz-box-shadow:none;
  3988. -webkit-box-shadow:none;
  3989. box-shadow:none;
  3990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3991. font-weight:400;
  3992. font-style:normal;
  3993. font-size:14px;
  3994. line-height:40px;
  3995. }
  3996. #u10797 {
  3997. border-width:0px;
  3998. position:absolute;
  3999. left:506px;
  4000. top:127px;
  4001. width:71px;
  4002. height:40px;
  4003. display:flex;
  4004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4005. font-weight:400;
  4006. font-style:normal;
  4007. font-size:14px;
  4008. line-height:40px;
  4009. }
  4010. #u10797 .text {
  4011. position:absolute;
  4012. align-self:flex-start;
  4013. padding:0px 0px 0px 0px;
  4014. box-sizing:border-box;
  4015. width:100%;
  4016. }
  4017. #u10797_text {
  4018. border-width:0px;
  4019. white-space:nowrap;
  4020. text-transform:none;
  4021. }
  4022. #u10798_div {
  4023. border-width:0px;
  4024. position:absolute;
  4025. left:0px;
  4026. top:0px;
  4027. width:43px;
  4028. height:40px;
  4029. background:inherit;
  4030. background-color:rgba(255, 255, 255, 0);
  4031. border:none;
  4032. border-left:0px;
  4033. border-top:0px;
  4034. border-right:0px;
  4035. border-radius:0px;
  4036. border-bottom-right-radius:0px;
  4037. border-bottom-left-radius:0px;
  4038. -moz-box-shadow:none;
  4039. -webkit-box-shadow:none;
  4040. box-shadow:none;
  4041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4042. font-weight:400;
  4043. font-style:normal;
  4044. font-size:14px;
  4045. color:#F59A23;
  4046. line-height:40px;
  4047. }
  4048. #u10798 {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:584px;
  4052. top:127px;
  4053. width:43px;
  4054. height:40px;
  4055. display:flex;
  4056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4057. font-weight:400;
  4058. font-style:normal;
  4059. font-size:14px;
  4060. color:#F59A23;
  4061. line-height:40px;
  4062. }
  4063. #u10798 .text {
  4064. position:absolute;
  4065. align-self:flex-start;
  4066. padding:0px 0px 0px 0px;
  4067. box-sizing:border-box;
  4068. width:100%;
  4069. }
  4070. #u10798_text {
  4071. border-width:0px;
  4072. white-space:nowrap;
  4073. text-transform:none;
  4074. }
  4075. #u10799 {
  4076. border-width:0px;
  4077. position:absolute;
  4078. left:0px;
  4079. top:0px;
  4080. width:0px;
  4081. height:0px;
  4082. }
  4083. #u10800_div {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:0px;
  4087. top:0px;
  4088. width:359px;
  4089. height:260px;
  4090. background:inherit;
  4091. background-color:rgba(255, 255, 255, 1);
  4092. border:none;
  4093. border-left:0px;
  4094. border-top:0px;
  4095. border-right:0px;
  4096. border-radius:4px;
  4097. border-bottom-right-radius:0px;
  4098. border-bottom-left-radius:0px;
  4099. -moz-box-shadow:none;
  4100. -webkit-box-shadow:none;
  4101. box-shadow:none;
  4102. }
  4103. #u10800 {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:1398px;
  4107. top:218px;
  4108. width:359px;
  4109. height:260px;
  4110. display:flex;
  4111. }
  4112. #u10800 .text {
  4113. position:absolute;
  4114. align-self:center;
  4115. padding:2px 2px 2px 2px;
  4116. box-sizing:border-box;
  4117. width:100%;
  4118. }
  4119. #u10800_text {
  4120. border-width:0px;
  4121. word-wrap:break-word;
  4122. text-transform:none;
  4123. visibility:hidden;
  4124. }
  4125. #u10801_div {
  4126. border-width:0px;
  4127. position:absolute;
  4128. left:0px;
  4129. top:0px;
  4130. width:71px;
  4131. height:240px;
  4132. background:inherit;
  4133. background-color:rgba(255, 255, 255, 0);
  4134. border:none;
  4135. border-left:0px;
  4136. border-top:0px;
  4137. border-right:0px;
  4138. border-radius:0px;
  4139. border-bottom-right-radius:0px;
  4140. border-bottom-left-radius:0px;
  4141. -moz-box-shadow:none;
  4142. -webkit-box-shadow:none;
  4143. box-shadow:none;
  4144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4145. font-weight:400;
  4146. font-style:normal;
  4147. font-size:14px;
  4148. line-height:40px;
  4149. }
  4150. #u10801 {
  4151. border-width:0px;
  4152. position:absolute;
  4153. left:1416px;
  4154. top:228px;
  4155. width:71px;
  4156. height:240px;
  4157. display:flex;
  4158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4159. font-weight:400;
  4160. font-style:normal;
  4161. font-size:14px;
  4162. line-height:40px;
  4163. }
  4164. #u10801 .text {
  4165. position:absolute;
  4166. align-self:flex-start;
  4167. padding:0px 0px 0px 0px;
  4168. box-sizing:border-box;
  4169. width:100%;
  4170. }
  4171. #u10801_text {
  4172. border-width:0px;
  4173. white-space:nowrap;
  4174. text-transform:none;
  4175. }
  4176. #u10802_div {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:0px;
  4180. top:0px;
  4181. width:265px;
  4182. height:240px;
  4183. background:inherit;
  4184. background-color:rgba(255, 255, 255, 0);
  4185. border:none;
  4186. border-left:0px;
  4187. border-top:0px;
  4188. border-right:0px;
  4189. border-radius:0px;
  4190. border-bottom-right-radius:0px;
  4191. border-bottom-left-radius:0px;
  4192. -moz-box-shadow:none;
  4193. -webkit-box-shadow:none;
  4194. box-shadow:none;
  4195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4196. font-weight:400;
  4197. font-style:normal;
  4198. line-height:40px;
  4199. }
  4200. #u10802 {
  4201. border-width:0px;
  4202. position:absolute;
  4203. left:1494px;
  4204. top:228px;
  4205. width:265px;
  4206. height:240px;
  4207. display:flex;
  4208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4209. font-weight:400;
  4210. font-style:normal;
  4211. line-height:40px;
  4212. }
  4213. #u10802 .text {
  4214. position:absolute;
  4215. align-self:flex-start;
  4216. padding:0px 0px 0px 0px;
  4217. box-sizing:border-box;
  4218. width:100%;
  4219. }
  4220. #u10802_text {
  4221. border-width:0px;
  4222. white-space:nowrap;
  4223. text-transform:none;
  4224. }
  4225. #u10803 {
  4226. border-width:0px;
  4227. position:absolute;
  4228. left:0px;
  4229. top:0px;
  4230. width:0px;
  4231. height:0px;
  4232. }
  4233. #u10804_div {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:0px;
  4237. top:0px;
  4238. width:359px;
  4239. height:220px;
  4240. background:inherit;
  4241. background-color:rgba(255, 255, 255, 1);
  4242. border:none;
  4243. border-left:0px;
  4244. border-top:0px;
  4245. border-right:0px;
  4246. border-radius:4px;
  4247. border-bottom-right-radius:0px;
  4248. border-bottom-left-radius:0px;
  4249. -moz-box-shadow:none;
  4250. -webkit-box-shadow:none;
  4251. box-shadow:none;
  4252. }
  4253. #u10804 {
  4254. border-width:0px;
  4255. position:absolute;
  4256. left:488px;
  4257. top:178px;
  4258. width:359px;
  4259. height:220px;
  4260. display:flex;
  4261. }
  4262. #u10804 .text {
  4263. position:absolute;
  4264. align-self:center;
  4265. padding:2px 2px 2px 2px;
  4266. box-sizing:border-box;
  4267. width:100%;
  4268. }
  4269. #u10804_text {
  4270. border-width:0px;
  4271. word-wrap:break-word;
  4272. text-transform:none;
  4273. }
  4274. #u10805_div {
  4275. border-width:0px;
  4276. position:absolute;
  4277. left:0px;
  4278. top:0px;
  4279. width:85px;
  4280. height:200px;
  4281. background:inherit;
  4282. background-color:rgba(255, 255, 255, 0);
  4283. border:none;
  4284. border-left:0px;
  4285. border-top:0px;
  4286. border-right:0px;
  4287. border-radius:0px;
  4288. border-bottom-right-radius:0px;
  4289. border-bottom-left-radius:0px;
  4290. -moz-box-shadow:none;
  4291. -webkit-box-shadow:none;
  4292. box-shadow:none;
  4293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4294. font-weight:400;
  4295. font-style:normal;
  4296. font-size:14px;
  4297. line-height:40px;
  4298. }
  4299. #u10805 {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:506px;
  4303. top:188px;
  4304. width:85px;
  4305. height:200px;
  4306. display:flex;
  4307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4308. font-weight:400;
  4309. font-style:normal;
  4310. font-size:14px;
  4311. line-height:40px;
  4312. }
  4313. #u10805 .text {
  4314. position:absolute;
  4315. align-self:flex-start;
  4316. padding:0px 0px 0px 0px;
  4317. box-sizing:border-box;
  4318. width:100%;
  4319. }
  4320. #u10805_text {
  4321. border-width:0px;
  4322. white-space:nowrap;
  4323. text-transform:none;
  4324. }
  4325. #u10806_div {
  4326. border-width:0px;
  4327. position:absolute;
  4328. left:0px;
  4329. top:0px;
  4330. width:155px;
  4331. height:200px;
  4332. background:inherit;
  4333. background-color:rgba(255, 255, 255, 0);
  4334. border:none;
  4335. border-left:0px;
  4336. border-top:0px;
  4337. border-right:0px;
  4338. border-radius:0px;
  4339. border-bottom-right-radius:0px;
  4340. border-bottom-left-radius:0px;
  4341. -moz-box-shadow:none;
  4342. -webkit-box-shadow:none;
  4343. box-shadow:none;
  4344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4345. font-weight:400;
  4346. font-style:normal;
  4347. font-size:14px;
  4348. line-height:40px;
  4349. }
  4350. #u10806 {
  4351. border-width:0px;
  4352. position:absolute;
  4353. left:584px;
  4354. top:188px;
  4355. width:155px;
  4356. height:200px;
  4357. display:flex;
  4358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4359. font-weight:400;
  4360. font-style:normal;
  4361. font-size:14px;
  4362. line-height:40px;
  4363. }
  4364. #u10806 .text {
  4365. position:absolute;
  4366. align-self:flex-start;
  4367. padding:0px 0px 0px 0px;
  4368. box-sizing:border-box;
  4369. width:100%;
  4370. }
  4371. #u10806_text {
  4372. border-width:0px;
  4373. white-space:nowrap;
  4374. text-transform:none;
  4375. }
  4376. #u10807 {
  4377. border-width:0px;
  4378. position:absolute;
  4379. left:0px;
  4380. top:0px;
  4381. width:0px;
  4382. height:0px;
  4383. }
  4384. #u10808_div {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:0px;
  4388. top:0px;
  4389. width:359px;
  4390. height:100px;
  4391. background:inherit;
  4392. background-color:rgba(255, 255, 255, 1);
  4393. border:none;
  4394. border-left:0px;
  4395. border-top:0px;
  4396. border-right:0px;
  4397. border-radius:4px;
  4398. border-bottom-right-radius:0px;
  4399. border-bottom-left-radius:0px;
  4400. -moz-box-shadow:none;
  4401. -webkit-box-shadow:none;
  4402. box-shadow:none;
  4403. }
  4404. #u10808 {
  4405. border-width:0px;
  4406. position:absolute;
  4407. left:1398px;
  4408. top:117px;
  4409. width:359px;
  4410. height:100px;
  4411. display:flex;
  4412. }
  4413. #u10808 .text {
  4414. position:absolute;
  4415. align-self:center;
  4416. padding:2px 2px 2px 2px;
  4417. box-sizing:border-box;
  4418. width:100%;
  4419. }
  4420. #u10808_text {
  4421. border-width:0px;
  4422. word-wrap:break-word;
  4423. text-transform:none;
  4424. }
  4425. #u10809_div {
  4426. border-width:0px;
  4427. position:absolute;
  4428. left:0px;
  4429. top:0px;
  4430. width:150px;
  4431. height:80px;
  4432. background:inherit;
  4433. background-color:rgba(255, 255, 255, 0);
  4434. border:none;
  4435. border-left:0px;
  4436. border-top:0px;
  4437. border-right:0px;
  4438. border-radius:0px;
  4439. border-bottom-right-radius:0px;
  4440. border-bottom-left-radius:0px;
  4441. -moz-box-shadow:none;
  4442. -webkit-box-shadow:none;
  4443. box-shadow:none;
  4444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4445. font-weight:400;
  4446. font-style:normal;
  4447. font-size:14px;
  4448. line-height:40px;
  4449. }
  4450. #u10809 {
  4451. border-width:0px;
  4452. position:absolute;
  4453. left:1416px;
  4454. top:127px;
  4455. width:150px;
  4456. height:80px;
  4457. display:flex;
  4458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4459. font-weight:400;
  4460. font-style:normal;
  4461. font-size:14px;
  4462. line-height:40px;
  4463. }
  4464. #u10809 .text {
  4465. position:absolute;
  4466. align-self:flex-start;
  4467. padding:0px 0px 0px 0px;
  4468. box-sizing:border-box;
  4469. width:100%;
  4470. }
  4471. #u10809_text {
  4472. border-width:0px;
  4473. white-space:nowrap;
  4474. text-transform:none;
  4475. }
  4476. #u10810_div {
  4477. border-width:0px;
  4478. position:absolute;
  4479. left:0px;
  4480. top:0px;
  4481. width:43px;
  4482. height:40px;
  4483. background:inherit;
  4484. background-color:rgba(255, 255, 255, 0);
  4485. border:none;
  4486. border-left:0px;
  4487. border-top:0px;
  4488. border-right:0px;
  4489. border-radius:0px;
  4490. border-bottom-right-radius:0px;
  4491. border-bottom-left-radius:0px;
  4492. -moz-box-shadow:none;
  4493. -webkit-box-shadow:none;
  4494. box-shadow:none;
  4495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4496. font-weight:400;
  4497. font-style:normal;
  4498. font-size:14px;
  4499. color:#F59A23;
  4500. line-height:40px;
  4501. }
  4502. #u10810 {
  4503. border-width:0px;
  4504. position:absolute;
  4505. left:1494px;
  4506. top:127px;
  4507. width:43px;
  4508. height:40px;
  4509. display:flex;
  4510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4511. font-weight:400;
  4512. font-style:normal;
  4513. font-size:14px;
  4514. color:#F59A23;
  4515. line-height:40px;
  4516. }
  4517. #u10810 .text {
  4518. position:absolute;
  4519. align-self:flex-start;
  4520. padding:0px 0px 0px 0px;
  4521. box-sizing:border-box;
  4522. width:100%;
  4523. }
  4524. #u10810_text {
  4525. border-width:0px;
  4526. white-space:nowrap;
  4527. text-transform:none;
  4528. }
  4529. #u10812_img {
  4530. border-width:0px;
  4531. position:absolute;
  4532. left:0px;
  4533. top:0px;
  4534. width:433px;
  4535. height:865px;
  4536. }
  4537. #u10812 {
  4538. border-width:0px;
  4539. position:absolute;
  4540. left:0px;
  4541. top:0px;
  4542. width:433px;
  4543. height:865px;
  4544. display:flex;
  4545. }
  4546. #u10812 .text {
  4547. position:absolute;
  4548. align-self:center;
  4549. padding:2px 2px 2px 2px;
  4550. box-sizing:border-box;
  4551. width:100%;
  4552. }
  4553. #u10812_text {
  4554. border-width:0px;
  4555. word-wrap:break-word;
  4556. text-transform:none;
  4557. visibility:hidden;
  4558. }
  4559. #u10813_div {
  4560. border-width:0px;
  4561. position:absolute;
  4562. left:0px;
  4563. top:0px;
  4564. width:375px;
  4565. height:40px;
  4566. background:inherit;
  4567. background-color:rgba(255, 255, 255, 1);
  4568. box-sizing:border-box;
  4569. border-width:1px;
  4570. border-style:solid;
  4571. border-color:rgba(215, 215, 215, 1);
  4572. border-left:0px;
  4573. border-top:0px;
  4574. border-right:0px;
  4575. border-radius:0px;
  4576. border-bottom-right-radius:0px;
  4577. border-bottom-left-radius:0px;
  4578. -moz-box-shadow:none;
  4579. -webkit-box-shadow:none;
  4580. box-shadow:none;
  4581. }
  4582. #u10813 {
  4583. border-width:0px;
  4584. position:absolute;
  4585. left:29px;
  4586. top:67px;
  4587. width:375px;
  4588. height:40px;
  4589. display:flex;
  4590. }
  4591. #u10813 .text {
  4592. position:absolute;
  4593. align-self:center;
  4594. padding:2px 2px 2px 2px;
  4595. box-sizing:border-box;
  4596. width:100%;
  4597. }
  4598. #u10813_text {
  4599. border-width:0px;
  4600. word-wrap:break-word;
  4601. text-transform:none;
  4602. visibility:hidden;
  4603. }
  4604. #u10814 {
  4605. border-width:0px;
  4606. position:absolute;
  4607. left:0px;
  4608. top:0px;
  4609. width:0px;
  4610. height:0px;
  4611. }
  4612. #u10815_div {
  4613. border-width:0px;
  4614. position:absolute;
  4615. left:0px;
  4616. top:0px;
  4617. width:88px;
  4618. height:32px;
  4619. background:inherit;
  4620. background-color:rgba(255, 255, 255, 1);
  4621. box-sizing:border-box;
  4622. border-width:1px;
  4623. border-style:solid;
  4624. border-color:rgba(242, 242, 242, 1);
  4625. border-radius:33px;
  4626. -moz-box-shadow:none;
  4627. -webkit-box-shadow:none;
  4628. box-shadow:none;
  4629. }
  4630. #u10815 {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:309px;
  4634. top:71px;
  4635. width:88px;
  4636. height:32px;
  4637. display:flex;
  4638. }
  4639. #u10815 .text {
  4640. position:absolute;
  4641. align-self:center;
  4642. padding:2px 2px 2px 2px;
  4643. box-sizing:border-box;
  4644. width:100%;
  4645. }
  4646. #u10815_text {
  4647. border-width:0px;
  4648. word-wrap:break-word;
  4649. text-transform:none;
  4650. visibility:hidden;
  4651. }
  4652. #u10816 {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:0px;
  4656. top:0px;
  4657. width:0px;
  4658. height:0px;
  4659. }
  4660. #u10817_img {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:0px;
  4664. top:0px;
  4665. width:18px;
  4666. height:18px;
  4667. }
  4668. #u10817 {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:372px;
  4672. top:78px;
  4673. width:18px;
  4674. height:18px;
  4675. display:flex;
  4676. }
  4677. #u10817 .text {
  4678. position:absolute;
  4679. align-self:center;
  4680. padding:2px 2px 2px 2px;
  4681. box-sizing:border-box;
  4682. width:100%;
  4683. }
  4684. #u10817_text {
  4685. border-width:0px;
  4686. word-wrap:break-word;
  4687. text-transform:none;
  4688. visibility:hidden;
  4689. }
  4690. #u10818_img {
  4691. border-width:0px;
  4692. position:absolute;
  4693. left:0px;
  4694. top:0px;
  4695. width:6px;
  4696. height:6px;
  4697. }
  4698. #u10818 {
  4699. border-width:0px;
  4700. position:absolute;
  4701. left:378px;
  4702. top:84px;
  4703. width:6px;
  4704. height:6px;
  4705. display:flex;
  4706. }
  4707. #u10818 .text {
  4708. position:absolute;
  4709. align-self:center;
  4710. padding:2px 2px 2px 2px;
  4711. box-sizing:border-box;
  4712. width:100%;
  4713. }
  4714. #u10818_text {
  4715. border-width:0px;
  4716. word-wrap:break-word;
  4717. text-transform:none;
  4718. visibility:hidden;
  4719. }
  4720. #u10819 {
  4721. border-width:0px;
  4722. position:absolute;
  4723. left:0px;
  4724. top:0px;
  4725. width:0px;
  4726. height:0px;
  4727. }
  4728. #u10820_img {
  4729. border-width:0px;
  4730. position:absolute;
  4731. left:0px;
  4732. top:0px;
  4733. width:5px;
  4734. height:5px;
  4735. }
  4736. #u10820 {
  4737. border-width:0px;
  4738. position:absolute;
  4739. left:323px;
  4740. top:85px;
  4741. width:5px;
  4742. height:5px;
  4743. display:flex;
  4744. }
  4745. #u10820 .text {
  4746. position:absolute;
  4747. align-self:center;
  4748. padding:2px 2px 2px 2px;
  4749. box-sizing:border-box;
  4750. width:100%;
  4751. }
  4752. #u10820_text {
  4753. border-width:0px;
  4754. word-wrap:break-word;
  4755. text-transform:none;
  4756. visibility:hidden;
  4757. }
  4758. #u10821_img {
  4759. border-width:0px;
  4760. position:absolute;
  4761. left:0px;
  4762. top:0px;
  4763. width:5px;
  4764. height:5px;
  4765. }
  4766. #u10821 {
  4767. border-width:0px;
  4768. position:absolute;
  4769. left:339px;
  4770. top:85px;
  4771. width:5px;
  4772. height:5px;
  4773. display:flex;
  4774. }
  4775. #u10821 .text {
  4776. position:absolute;
  4777. align-self:center;
  4778. padding:2px 2px 2px 2px;
  4779. box-sizing:border-box;
  4780. width:100%;
  4781. }
  4782. #u10821_text {
  4783. border-width:0px;
  4784. word-wrap:break-word;
  4785. text-transform:none;
  4786. visibility:hidden;
  4787. }
  4788. #u10822_img {
  4789. border-width:0px;
  4790. position:absolute;
  4791. left:0px;
  4792. top:0px;
  4793. width:7px;
  4794. height:7px;
  4795. }
  4796. #u10822 {
  4797. border-width:0px;
  4798. position:absolute;
  4799. left:330px;
  4800. top:84px;
  4801. width:7px;
  4802. height:7px;
  4803. display:flex;
  4804. }
  4805. #u10822 .text {
  4806. position:absolute;
  4807. align-self:center;
  4808. padding:2px 2px 2px 2px;
  4809. box-sizing:border-box;
  4810. width:100%;
  4811. }
  4812. #u10822_text {
  4813. border-width:0px;
  4814. word-wrap:break-word;
  4815. text-transform:none;
  4816. visibility:hidden;
  4817. }
  4818. #u10823_img {
  4819. border-width:0px;
  4820. position:absolute;
  4821. left:0px;
  4822. top:0px;
  4823. width:19px;
  4824. height:2px;
  4825. }
  4826. #u10823 {
  4827. border-width:0px;
  4828. position:absolute;
  4829. left:347px;
  4830. top:87px;
  4831. width:18px;
  4832. height:1px;
  4833. display:flex;
  4834. -webkit-transform:rotate(90deg);
  4835. -moz-transform:rotate(90deg);
  4836. -ms-transform:rotate(90deg);
  4837. transform:rotate(90deg);
  4838. }
  4839. #u10823 .text {
  4840. position:absolute;
  4841. align-self:center;
  4842. padding:2px 2px 2px 2px;
  4843. box-sizing:border-box;
  4844. width:100%;
  4845. }
  4846. #u10823_text {
  4847. border-width:0px;
  4848. word-wrap:break-word;
  4849. text-transform:none;
  4850. visibility:hidden;
  4851. }
  4852. #u10824_img {
  4853. border-width:0px;
  4854. position:absolute;
  4855. left:0px;
  4856. top:0px;
  4857. width:375px;
  4858. height:44px;
  4859. }
  4860. #u10824 {
  4861. border-width:0px;
  4862. position:absolute;
  4863. left:29px;
  4864. top:24px;
  4865. width:375px;
  4866. height:44px;
  4867. display:flex;
  4868. }
  4869. #u10824 .text {
  4870. position:absolute;
  4871. align-self:center;
  4872. padding:2px 2px 2px 2px;
  4873. box-sizing:border-box;
  4874. width:100%;
  4875. }
  4876. #u10824_text {
  4877. border-width:0px;
  4878. word-wrap:break-word;
  4879. text-transform:none;
  4880. visibility:hidden;
  4881. }
  4882. #u10825_div {
  4883. border-width:0px;
  4884. position:absolute;
  4885. left:0px;
  4886. top:0px;
  4887. width:375px;
  4888. height:50px;
  4889. background:inherit;
  4890. background-color:rgba(255, 255, 255, 1);
  4891. box-sizing:border-box;
  4892. border-width:1px;
  4893. border-style:solid;
  4894. border-color:rgba(242, 242, 242, 1);
  4895. border-radius:26px;
  4896. border-top-left-radius:0px;
  4897. border-top-right-radius:0px;
  4898. -moz-box-shadow:none;
  4899. -webkit-box-shadow:none;
  4900. box-shadow:none;
  4901. }
  4902. #u10825 {
  4903. border-width:0px;
  4904. position:absolute;
  4905. left:29px;
  4906. top:788px;
  4907. width:375px;
  4908. height:50px;
  4909. display:flex;
  4910. }
  4911. #u10825 .text {
  4912. position:absolute;
  4913. align-self:center;
  4914. padding:2px 2px 2px 2px;
  4915. box-sizing:border-box;
  4916. width:100%;
  4917. }
  4918. #u10825_text {
  4919. border-width:0px;
  4920. word-wrap:break-word;
  4921. text-transform:none;
  4922. visibility:hidden;
  4923. }
  4924. #u10826 {
  4925. border-width:0px;
  4926. position:absolute;
  4927. left:0px;
  4928. top:0px;
  4929. width:0px;
  4930. height:0px;
  4931. }
  4932. #u10827_img {
  4933. border-width:0px;
  4934. position:absolute;
  4935. left:0px;
  4936. top:0px;
  4937. width:24px;
  4938. height:24px;
  4939. }
  4940. #u10827 {
  4941. border-width:0px;
  4942. position:absolute;
  4943. left:69px;
  4944. top:792px;
  4945. width:24px;
  4946. height:24px;
  4947. display:flex;
  4948. font-size:8px;
  4949. }
  4950. #u10827 .text {
  4951. position:absolute;
  4952. align-self:center;
  4953. padding:2px 2px 2px 2px;
  4954. box-sizing:border-box;
  4955. width:100%;
  4956. }
  4957. #u10827_text {
  4958. border-width:0px;
  4959. word-wrap:break-word;
  4960. text-transform:none;
  4961. }
  4962. #u10828_div {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:0px;
  4966. top:0px;
  4967. width:25px;
  4968. height:17px;
  4969. background:inherit;
  4970. background-color:rgba(255, 255, 255, 0);
  4971. border:none;
  4972. border-radius:0px;
  4973. -moz-box-shadow:none;
  4974. -webkit-box-shadow:none;
  4975. box-shadow:none;
  4976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4977. font-weight:400;
  4978. font-style:normal;
  4979. font-size:12px;
  4980. }
  4981. #u10828 {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:69px;
  4985. top:817px;
  4986. width:25px;
  4987. height:17px;
  4988. display:flex;
  4989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4990. font-weight:400;
  4991. font-style:normal;
  4992. font-size:12px;
  4993. }
  4994. #u10828 .text {
  4995. position:absolute;
  4996. align-self:flex-start;
  4997. padding:0px 0px 0px 0px;
  4998. box-sizing:border-box;
  4999. width:100%;
  5000. }
  5001. #u10828_text {
  5002. border-width:0px;
  5003. white-space:nowrap;
  5004. text-transform:none;
  5005. }
  5006. #u10829 {
  5007. border-width:0px;
  5008. position:absolute;
  5009. left:0px;
  5010. top:0px;
  5011. width:0px;
  5012. height:0px;
  5013. }
  5014. #u10830_img {
  5015. border-width:0px;
  5016. position:absolute;
  5017. left:0px;
  5018. top:0px;
  5019. width:24px;
  5020. height:24px;
  5021. }
  5022. #u10830 {
  5023. border-width:0px;
  5024. position:absolute;
  5025. left:339px;
  5026. top:794px;
  5027. width:24px;
  5028. height:24px;
  5029. display:flex;
  5030. font-size:8px;
  5031. }
  5032. #u10830 .text {
  5033. position:absolute;
  5034. align-self:center;
  5035. padding:2px 2px 2px 2px;
  5036. box-sizing:border-box;
  5037. width:100%;
  5038. }
  5039. #u10830_text {
  5040. border-width:0px;
  5041. word-wrap:break-word;
  5042. text-transform:none;
  5043. }
  5044. #u10831_div {
  5045. border-width:0px;
  5046. position:absolute;
  5047. left:0px;
  5048. top:0px;
  5049. width:25px;
  5050. height:17px;
  5051. background:inherit;
  5052. background-color:rgba(255, 255, 255, 0);
  5053. border:none;
  5054. border-radius:0px;
  5055. -moz-box-shadow:none;
  5056. -webkit-box-shadow:none;
  5057. box-shadow:none;
  5058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5059. font-weight:400;
  5060. font-style:normal;
  5061. font-size:12px;
  5062. }
  5063. #u10831 {
  5064. border-width:0px;
  5065. position:absolute;
  5066. left:339px;
  5067. top:819px;
  5068. width:25px;
  5069. height:17px;
  5070. display:flex;
  5071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5072. font-weight:400;
  5073. font-style:normal;
  5074. font-size:12px;
  5075. }
  5076. #u10831 .text {
  5077. position:absolute;
  5078. align-self:flex-start;
  5079. padding:0px 0px 0px 0px;
  5080. box-sizing:border-box;
  5081. width:100%;
  5082. }
  5083. #u10831_text {
  5084. border-width:0px;
  5085. white-space:nowrap;
  5086. text-transform:none;
  5087. }
  5088. #u10832_div {
  5089. border-width:0px;
  5090. position:absolute;
  5091. left:0px;
  5092. top:0px;
  5093. width:375px;
  5094. height:681px;
  5095. background:inherit;
  5096. background-color:rgba(242, 242, 242, 0.462745098039216);
  5097. border:none;
  5098. border-radius:0px;
  5099. -moz-box-shadow:none;
  5100. -webkit-box-shadow:none;
  5101. box-shadow:none;
  5102. }
  5103. #u10832 {
  5104. border-width:0px;
  5105. position:absolute;
  5106. left:29px;
  5107. top:107px;
  5108. width:375px;
  5109. height:681px;
  5110. display:flex;
  5111. }
  5112. #u10832 .text {
  5113. position:absolute;
  5114. align-self:center;
  5115. padding:2px 2px 2px 2px;
  5116. box-sizing:border-box;
  5117. width:100%;
  5118. }
  5119. #u10832_text {
  5120. border-width:0px;
  5121. word-wrap:break-word;
  5122. text-transform:none;
  5123. visibility:hidden;
  5124. }
  5125. #u10833 {
  5126. border-width:0px;
  5127. position:absolute;
  5128. left:0px;
  5129. top:0px;
  5130. width:0px;
  5131. height:0px;
  5132. }
  5133. #u10834_img {
  5134. border-width:0px;
  5135. position:absolute;
  5136. left:0px;
  5137. top:0px;
  5138. width:24px;
  5139. height:24px;
  5140. }
  5141. #u10834 {
  5142. border-width:0px;
  5143. position:absolute;
  5144. left:251px;
  5145. top:792px;
  5146. width:24px;
  5147. height:24px;
  5148. display:flex;
  5149. font-size:8px;
  5150. }
  5151. #u10834 .text {
  5152. position:absolute;
  5153. align-self:center;
  5154. padding:2px 2px 2px 2px;
  5155. box-sizing:border-box;
  5156. width:100%;
  5157. }
  5158. #u10834_text {
  5159. border-width:0px;
  5160. word-wrap:break-word;
  5161. text-transform:none;
  5162. }
  5163. #u10835_div {
  5164. border-width:0px;
  5165. position:absolute;
  5166. left:0px;
  5167. top:0px;
  5168. width:37px;
  5169. height:17px;
  5170. background:inherit;
  5171. background-color:rgba(255, 255, 255, 0);
  5172. border:none;
  5173. border-radius:0px;
  5174. -moz-box-shadow:none;
  5175. -webkit-box-shadow:none;
  5176. box-shadow:none;
  5177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5178. font-weight:400;
  5179. font-style:normal;
  5180. font-size:12px;
  5181. }
  5182. #u10835 {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:245px;
  5186. top:817px;
  5187. width:37px;
  5188. height:17px;
  5189. display:flex;
  5190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5191. font-weight:400;
  5192. font-style:normal;
  5193. font-size:12px;
  5194. }
  5195. #u10835 .text {
  5196. position:absolute;
  5197. align-self:flex-start;
  5198. padding:0px 0px 0px 0px;
  5199. box-sizing:border-box;
  5200. width:100%;
  5201. }
  5202. #u10835_text {
  5203. border-width:0px;
  5204. white-space:nowrap;
  5205. text-transform:none;
  5206. }
  5207. #u10836 {
  5208. border-width:0px;
  5209. position:absolute;
  5210. left:0px;
  5211. top:0px;
  5212. width:0px;
  5213. height:0px;
  5214. }
  5215. #u10837_img {
  5216. border-width:0px;
  5217. position:absolute;
  5218. left:0px;
  5219. top:0px;
  5220. width:24px;
  5221. height:24px;
  5222. }
  5223. #u10837 {
  5224. border-width:0px;
  5225. position:absolute;
  5226. left:157px;
  5227. top:792px;
  5228. width:24px;
  5229. height:24px;
  5230. display:flex;
  5231. font-size:8px;
  5232. }
  5233. #u10837 .text {
  5234. position:absolute;
  5235. align-self:center;
  5236. padding:2px 2px 2px 2px;
  5237. box-sizing:border-box;
  5238. width:100%;
  5239. }
  5240. #u10837_text {
  5241. border-width:0px;
  5242. word-wrap:break-word;
  5243. text-transform:none;
  5244. }
  5245. #u10838_div {
  5246. border-width:0px;
  5247. position:absolute;
  5248. left:0px;
  5249. top:0px;
  5250. width:37px;
  5251. height:17px;
  5252. background:inherit;
  5253. background-color:rgba(255, 255, 255, 0);
  5254. border:none;
  5255. border-radius:0px;
  5256. -moz-box-shadow:none;
  5257. -webkit-box-shadow:none;
  5258. box-shadow:none;
  5259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5260. font-weight:400;
  5261. font-style:normal;
  5262. font-size:12px;
  5263. }
  5264. #u10838 {
  5265. border-width:0px;
  5266. position:absolute;
  5267. left:151px;
  5268. top:817px;
  5269. width:37px;
  5270. height:17px;
  5271. display:flex;
  5272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5273. font-weight:400;
  5274. font-style:normal;
  5275. font-size:12px;
  5276. }
  5277. #u10838 .text {
  5278. position:absolute;
  5279. align-self:flex-start;
  5280. padding:0px 0px 0px 0px;
  5281. box-sizing:border-box;
  5282. width:100%;
  5283. }
  5284. #u10838_text {
  5285. border-width:0px;
  5286. white-space:nowrap;
  5287. text-transform:none;
  5288. }
  5289. #u10839_div {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:0px;
  5293. top:0px;
  5294. width:375px;
  5295. height:827px;
  5296. background:inherit;
  5297. background-color:rgba(242, 242, 242, 1);
  5298. box-sizing:border-box;
  5299. border-width:1px;
  5300. border-style:solid;
  5301. border-color:rgba(121, 121, 121, 1);
  5302. border-top:0px;
  5303. border-radius:28px;
  5304. border-top-left-radius:0px;
  5305. border-top-right-radius:0px;
  5306. -moz-box-shadow:none;
  5307. -webkit-box-shadow:none;
  5308. box-shadow:none;
  5309. }
  5310. #u10839 {
  5311. border-width:0px;
  5312. position:absolute;
  5313. left:29px;
  5314. top:107px;
  5315. width:375px;
  5316. height:827px;
  5317. display:flex;
  5318. }
  5319. #u10839 .text {
  5320. position:absolute;
  5321. align-self:center;
  5322. padding:2px 2px 2px 2px;
  5323. box-sizing:border-box;
  5324. width:100%;
  5325. }
  5326. #u10839_text {
  5327. border-width:0px;
  5328. word-wrap:break-word;
  5329. text-transform:none;
  5330. visibility:hidden;
  5331. }
  5332. #u10840_div {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:0px;
  5336. top:0px;
  5337. width:12px;
  5338. height:12px;
  5339. background:inherit;
  5340. background-color:rgba(255, 255, 255, 0);
  5341. box-sizing:border-box;
  5342. border-width:2px;
  5343. border-style:solid;
  5344. border-color:rgba(51, 51, 51, 1);
  5345. border-right:0px;
  5346. border-bottom:0px;
  5347. border-radius:0px;
  5348. border-top-right-radius:0px;
  5349. border-bottom-left-radius:0px;
  5350. -moz-box-shadow:none;
  5351. -webkit-box-shadow:none;
  5352. box-shadow:none;
  5353. }
  5354. #u10840 {
  5355. border-width:0px;
  5356. position:absolute;
  5357. left:39px;
  5358. top:81px;
  5359. width:12px;
  5360. height:12px;
  5361. display:flex;
  5362. -webkit-transform:rotate(315deg);
  5363. -moz-transform:rotate(315deg);
  5364. -ms-transform:rotate(315deg);
  5365. transform:rotate(315deg);
  5366. }
  5367. #u10840 .text {
  5368. position:absolute;
  5369. align-self:center;
  5370. padding:2px 2px 2px 2px;
  5371. box-sizing:border-box;
  5372. width:100%;
  5373. }
  5374. #u10840_text {
  5375. border-width:0px;
  5376. word-wrap:break-word;
  5377. text-transform:none;
  5378. visibility:hidden;
  5379. }
  5380. #u10841_div {
  5381. border-width:0px;
  5382. position:absolute;
  5383. left:0px;
  5384. top:0px;
  5385. width:85px;
  5386. height:30px;
  5387. background:inherit;
  5388. background-color:rgba(255, 255, 255, 0);
  5389. border:none;
  5390. border-left:0px;
  5391. border-top:0px;
  5392. border-right:0px;
  5393. border-radius:0px;
  5394. border-bottom-right-radius:0px;
  5395. border-bottom-left-radius:0px;
  5396. -moz-box-shadow:none;
  5397. -webkit-box-shadow:none;
  5398. box-shadow:none;
  5399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5400. font-weight:400;
  5401. font-style:normal;
  5402. font-size:14px;
  5403. line-height:30px;
  5404. }
  5405. #u10841 {
  5406. border-width:0px;
  5407. position:absolute;
  5408. left:174px;
  5409. top:72px;
  5410. width:85px;
  5411. height:30px;
  5412. display:flex;
  5413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5414. font-weight:400;
  5415. font-style:normal;
  5416. font-size:14px;
  5417. line-height:30px;
  5418. }
  5419. #u10841 .text {
  5420. position:absolute;
  5421. align-self:center;
  5422. padding:0px 0px 0px 0px;
  5423. box-sizing:border-box;
  5424. width:100%;
  5425. }
  5426. #u10841_text {
  5427. border-width:0px;
  5428. white-space:nowrap;
  5429. text-transform:none;
  5430. }
  5431. #u10842 {
  5432. border-width:0px;
  5433. position:absolute;
  5434. left:0px;
  5435. top:0px;
  5436. width:0px;
  5437. height:0px;
  5438. }
  5439. #u10843_div {
  5440. border-width:0px;
  5441. position:absolute;
  5442. left:0px;
  5443. top:0px;
  5444. width:375px;
  5445. height:170px;
  5446. background:inherit;
  5447. background-color:rgba(255, 255, 255, 1);
  5448. border:none;
  5449. border-left:0px;
  5450. border-top:0px;
  5451. border-right:0px;
  5452. border-radius:0px;
  5453. border-bottom-right-radius:0px;
  5454. border-bottom-left-radius:0px;
  5455. -moz-box-shadow:none;
  5456. -webkit-box-shadow:none;
  5457. box-shadow:none;
  5458. }
  5459. #u10843 {
  5460. border-width:0px;
  5461. position:absolute;
  5462. left:29px;
  5463. top:612px;
  5464. width:375px;
  5465. height:170px;
  5466. display:flex;
  5467. }
  5468. #u10843 .text {
  5469. position:absolute;
  5470. align-self:center;
  5471. padding:2px 2px 2px 2px;
  5472. box-sizing:border-box;
  5473. width:100%;
  5474. }
  5475. #u10843_text {
  5476. border-width:0px;
  5477. word-wrap:break-word;
  5478. text-transform:none;
  5479. visibility:hidden;
  5480. }
  5481. #u10844_div {
  5482. border-width:0px;
  5483. position:absolute;
  5484. left:0px;
  5485. top:0px;
  5486. width:253px;
  5487. height:30px;
  5488. background:inherit;
  5489. background-color:rgba(255, 255, 255, 0);
  5490. border:none;
  5491. border-left:0px;
  5492. border-top:0px;
  5493. border-right:0px;
  5494. border-radius:0px;
  5495. border-bottom-right-radius:0px;
  5496. border-bottom-left-radius:0px;
  5497. -moz-box-shadow:none;
  5498. -webkit-box-shadow:none;
  5499. box-shadow:none;
  5500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5501. font-weight:400;
  5502. font-style:normal;
  5503. font-size:12px;
  5504. line-height:30px;
  5505. }
  5506. #u10844 {
  5507. border-width:0px;
  5508. position:absolute;
  5509. left:49px;
  5510. top:652px;
  5511. width:253px;
  5512. height:30px;
  5513. display:flex;
  5514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5515. font-weight:400;
  5516. font-style:normal;
  5517. font-size:12px;
  5518. line-height:30px;
  5519. }
  5520. #u10844 .text {
  5521. position:absolute;
  5522. align-self:flex-start;
  5523. padding:0px 0px 0px 0px;
  5524. box-sizing:border-box;
  5525. width:100%;
  5526. }
  5527. #u10844_text {
  5528. border-width:0px;
  5529. white-space:nowrap;
  5530. text-transform:none;
  5531. }
  5532. #u10845_div {
  5533. border-width:0px;
  5534. position:absolute;
  5535. left:0px;
  5536. top:0px;
  5537. width:57px;
  5538. height:30px;
  5539. background:inherit;
  5540. background-color:rgba(255, 255, 255, 0);
  5541. border:none;
  5542. border-left:0px;
  5543. border-top:0px;
  5544. border-right:0px;
  5545. border-radius:0px;
  5546. border-bottom-right-radius:0px;
  5547. border-bottom-left-radius:0px;
  5548. -moz-box-shadow:none;
  5549. -webkit-box-shadow:none;
  5550. box-shadow:none;
  5551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5552. font-weight:400;
  5553. font-style:normal;
  5554. font-size:14px;
  5555. color:#AAAAAA;
  5556. line-height:30px;
  5557. }
  5558. #u10845 {
  5559. border-width:0px;
  5560. position:absolute;
  5561. left:49px;
  5562. top:622px;
  5563. width:57px;
  5564. height:30px;
  5565. display:flex;
  5566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5567. font-weight:400;
  5568. font-style:normal;
  5569. font-size:14px;
  5570. color:#AAAAAA;
  5571. line-height:30px;
  5572. }
  5573. #u10845 .text {
  5574. position:absolute;
  5575. align-self:center;
  5576. padding:0px 0px 0px 0px;
  5577. box-sizing:border-box;
  5578. width:100%;
  5579. }
  5580. #u10845_text {
  5581. border-width:0px;
  5582. white-space:nowrap;
  5583. text-transform:none;
  5584. }
  5585. #u10846_div {
  5586. border-width:0px;
  5587. position:absolute;
  5588. left:0px;
  5589. top:0px;
  5590. width:375px;
  5591. height:50px;
  5592. background:inherit;
  5593. background-color:rgba(255, 255, 255, 1);
  5594. border:none;
  5595. border-left:0px;
  5596. border-top:0px;
  5597. border-right:0px;
  5598. border-radius:0px;
  5599. border-bottom-right-radius:0px;
  5600. border-bottom-left-radius:0px;
  5601. -moz-box-shadow:none;
  5602. -webkit-box-shadow:none;
  5603. box-shadow:none;
  5604. }
  5605. #u10846 {
  5606. border-width:0px;
  5607. position:absolute;
  5608. left:29px;
  5609. top:408px;
  5610. width:375px;
  5611. height:50px;
  5612. display:flex;
  5613. }
  5614. #u10846 .text {
  5615. position:absolute;
  5616. align-self:center;
  5617. padding:2px 2px 2px 2px;
  5618. box-sizing:border-box;
  5619. width:100%;
  5620. }
  5621. #u10846_text {
  5622. border-width:0px;
  5623. word-wrap:break-word;
  5624. text-transform:none;
  5625. visibility:hidden;
  5626. }
  5627. #u10847_div {
  5628. border-width:0px;
  5629. position:absolute;
  5630. left:0px;
  5631. top:0px;
  5632. width:71px;
  5633. height:30px;
  5634. background:inherit;
  5635. background-color:rgba(255, 255, 255, 0);
  5636. border:none;
  5637. border-left:0px;
  5638. border-top:0px;
  5639. border-right:0px;
  5640. border-radius:0px;
  5641. border-bottom-right-radius:0px;
  5642. border-bottom-left-radius:0px;
  5643. -moz-box-shadow:none;
  5644. -webkit-box-shadow:none;
  5645. box-shadow:none;
  5646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5647. font-weight:400;
  5648. font-style:normal;
  5649. font-size:14px;
  5650. color:#AAAAAA;
  5651. line-height:30px;
  5652. }
  5653. #u10847 {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:49px;
  5657. top:418px;
  5658. width:71px;
  5659. height:30px;
  5660. display:flex;
  5661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5662. font-weight:400;
  5663. font-style:normal;
  5664. font-size:14px;
  5665. color:#AAAAAA;
  5666. line-height:30px;
  5667. }
  5668. #u10847 .text {
  5669. position:absolute;
  5670. align-self:center;
  5671. padding:0px 0px 0px 0px;
  5672. box-sizing:border-box;
  5673. width:100%;
  5674. }
  5675. #u10847_text {
  5676. border-width:0px;
  5677. white-space:nowrap;
  5678. text-transform:none;
  5679. }
  5680. #u10848_div {
  5681. border-width:0px;
  5682. position:absolute;
  5683. left:0px;
  5684. top:0px;
  5685. width:57px;
  5686. height:30px;
  5687. background:inherit;
  5688. background-color:rgba(255, 255, 255, 0);
  5689. border:none;
  5690. border-radius:4px;
  5691. -moz-box-shadow:none;
  5692. -webkit-box-shadow:none;
  5693. box-shadow:none;
  5694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5695. font-weight:400;
  5696. font-style:normal;
  5697. font-size:14px;
  5698. text-align:center;
  5699. line-height:30px;
  5700. }
  5701. #u10848 {
  5702. border-width:0px;
  5703. position:absolute;
  5704. left:132px;
  5705. top:418px;
  5706. width:57px;
  5707. height:30px;
  5708. display:flex;
  5709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5710. font-weight:400;
  5711. font-style:normal;
  5712. font-size:14px;
  5713. text-align:center;
  5714. line-height:30px;
  5715. }
  5716. #u10848 .text {
  5717. position:absolute;
  5718. align-self:center;
  5719. padding:0px 0px 0px 0px;
  5720. box-sizing:border-box;
  5721. width:100%;
  5722. }
  5723. #u10848_text {
  5724. border-width:0px;
  5725. white-space:nowrap;
  5726. text-transform:none;
  5727. }
  5728. #u10849_div {
  5729. border-width:0px;
  5730. position:absolute;
  5731. left:0px;
  5732. top:0px;
  5733. width:375px;
  5734. height:50px;
  5735. background:inherit;
  5736. background-color:rgba(255, 255, 255, 1);
  5737. border:none;
  5738. border-left:0px;
  5739. border-top:0px;
  5740. border-right:0px;
  5741. border-radius:0px;
  5742. border-bottom-right-radius:0px;
  5743. border-bottom-left-radius:0px;
  5744. -moz-box-shadow:none;
  5745. -webkit-box-shadow:none;
  5746. box-shadow:none;
  5747. }
  5748. #u10849 {
  5749. border-width:0px;
  5750. position:absolute;
  5751. left:29px;
  5752. top:561px;
  5753. width:375px;
  5754. height:50px;
  5755. display:flex;
  5756. }
  5757. #u10849 .text {
  5758. position:absolute;
  5759. align-self:center;
  5760. padding:2px 2px 2px 2px;
  5761. box-sizing:border-box;
  5762. width:100%;
  5763. }
  5764. #u10849_text {
  5765. border-width:0px;
  5766. word-wrap:break-word;
  5767. text-transform:none;
  5768. visibility:hidden;
  5769. }
  5770. #u10850_div {
  5771. border-width:0px;
  5772. position:absolute;
  5773. left:0px;
  5774. top:0px;
  5775. width:71px;
  5776. height:30px;
  5777. background:inherit;
  5778. background-color:rgba(255, 255, 255, 0);
  5779. border:none;
  5780. border-left:0px;
  5781. border-top:0px;
  5782. border-right:0px;
  5783. border-radius:0px;
  5784. border-bottom-right-radius:0px;
  5785. border-bottom-left-radius:0px;
  5786. -moz-box-shadow:none;
  5787. -webkit-box-shadow:none;
  5788. box-shadow:none;
  5789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5790. font-weight:400;
  5791. font-style:normal;
  5792. font-size:14px;
  5793. color:#AAAAAA;
  5794. line-height:30px;
  5795. }
  5796. #u10850 {
  5797. border-width:0px;
  5798. position:absolute;
  5799. left:49px;
  5800. top:571px;
  5801. width:71px;
  5802. height:30px;
  5803. display:flex;
  5804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5805. font-weight:400;
  5806. font-style:normal;
  5807. font-size:14px;
  5808. color:#AAAAAA;
  5809. line-height:30px;
  5810. }
  5811. #u10850 .text {
  5812. position:absolute;
  5813. align-self:center;
  5814. padding:0px 0px 0px 0px;
  5815. box-sizing:border-box;
  5816. width:100%;
  5817. }
  5818. #u10850_text {
  5819. border-width:0px;
  5820. white-space:nowrap;
  5821. text-transform:none;
  5822. }
  5823. #u10851_div {
  5824. border-width:0px;
  5825. position:absolute;
  5826. left:0px;
  5827. top:0px;
  5828. width:375px;
  5829. height:50px;
  5830. background:inherit;
  5831. background-color:rgba(255, 255, 255, 1);
  5832. border:none;
  5833. border-left:0px;
  5834. border-top:0px;
  5835. border-right:0px;
  5836. border-radius:0px;
  5837. border-bottom-right-radius:0px;
  5838. border-bottom-left-radius:0px;
  5839. -moz-box-shadow:none;
  5840. -webkit-box-shadow:none;
  5841. box-shadow:none;
  5842. }
  5843. #u10851 {
  5844. border-width:0px;
  5845. position:absolute;
  5846. left:29px;
  5847. top:510px;
  5848. width:375px;
  5849. height:50px;
  5850. display:flex;
  5851. }
  5852. #u10851 .text {
  5853. position:absolute;
  5854. align-self:center;
  5855. padding:2px 2px 2px 2px;
  5856. box-sizing:border-box;
  5857. width:100%;
  5858. }
  5859. #u10851_text {
  5860. border-width:0px;
  5861. word-wrap:break-word;
  5862. text-transform:none;
  5863. visibility:hidden;
  5864. }
  5865. #u10852_div {
  5866. border-width:0px;
  5867. position:absolute;
  5868. left:0px;
  5869. top:0px;
  5870. width:71px;
  5871. height:30px;
  5872. background:inherit;
  5873. background-color:rgba(255, 255, 255, 0);
  5874. border:none;
  5875. border-left:0px;
  5876. border-top:0px;
  5877. border-right:0px;
  5878. border-radius:0px;
  5879. border-bottom-right-radius:0px;
  5880. border-bottom-left-radius:0px;
  5881. -moz-box-shadow:none;
  5882. -webkit-box-shadow:none;
  5883. box-shadow:none;
  5884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5885. font-weight:400;
  5886. font-style:normal;
  5887. font-size:14px;
  5888. color:#AAAAAA;
  5889. line-height:30px;
  5890. }
  5891. #u10852 {
  5892. border-width:0px;
  5893. position:absolute;
  5894. left:49px;
  5895. top:520px;
  5896. width:71px;
  5897. height:30px;
  5898. display:flex;
  5899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5900. font-weight:400;
  5901. font-style:normal;
  5902. font-size:14px;
  5903. color:#AAAAAA;
  5904. line-height:30px;
  5905. }
  5906. #u10852 .text {
  5907. position:absolute;
  5908. align-self:center;
  5909. padding:0px 0px 0px 0px;
  5910. box-sizing:border-box;
  5911. width:100%;
  5912. }
  5913. #u10852_text {
  5914. border-width:0px;
  5915. white-space:nowrap;
  5916. text-transform:none;
  5917. }
  5918. #u10853_div {
  5919. border-width:0px;
  5920. position:absolute;
  5921. left:0px;
  5922. top:0px;
  5923. width:52px;
  5924. height:30px;
  5925. background:inherit;
  5926. background-color:rgba(255, 255, 255, 0);
  5927. border:none;
  5928. border-left:0px;
  5929. border-top:0px;
  5930. border-right:0px;
  5931. border-radius:0px;
  5932. border-bottom-right-radius:0px;
  5933. border-bottom-left-radius:0px;
  5934. -moz-box-shadow:none;
  5935. -webkit-box-shadow:none;
  5936. box-shadow:none;
  5937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5938. font-weight:400;
  5939. font-style:normal;
  5940. font-size:14px;
  5941. text-align:right;
  5942. line-height:30px;
  5943. }
  5944. #u10853 {
  5945. border-width:0px;
  5946. position:absolute;
  5947. left:130px;
  5948. top:520px;
  5949. width:52px;
  5950. height:30px;
  5951. display:flex;
  5952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5953. font-weight:400;
  5954. font-style:normal;
  5955. font-size:14px;
  5956. text-align:right;
  5957. line-height:30px;
  5958. }
  5959. #u10853 .text {
  5960. position:absolute;
  5961. align-self:center;
  5962. padding:0px 0px 0px 0px;
  5963. box-sizing:border-box;
  5964. width:100%;
  5965. }
  5966. #u10853_text {
  5967. border-width:0px;
  5968. white-space:nowrap;
  5969. text-transform:none;
  5970. }
  5971. #u10854_div {
  5972. border-width:0px;
  5973. position:absolute;
  5974. left:0px;
  5975. top:0px;
  5976. width:57px;
  5977. height:30px;
  5978. background:inherit;
  5979. background-color:rgba(255, 255, 255, 0);
  5980. border:none;
  5981. border-left:0px;
  5982. border-top:0px;
  5983. border-right:0px;
  5984. border-radius:0px;
  5985. border-bottom-right-radius:0px;
  5986. border-bottom-left-radius:0px;
  5987. -moz-box-shadow:none;
  5988. -webkit-box-shadow:none;
  5989. box-shadow:none;
  5990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5991. font-weight:400;
  5992. font-style:normal;
  5993. font-size:14px;
  5994. line-height:30px;
  5995. }
  5996. #u10854 {
  5997. border-width:0px;
  5998. position:absolute;
  5999. left:132px;
  6000. top:571px;
  6001. width:57px;
  6002. height:30px;
  6003. display:flex;
  6004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6005. font-weight:400;
  6006. font-style:normal;
  6007. font-size:14px;
  6008. line-height:30px;
  6009. }
  6010. #u10854 .text {
  6011. position:absolute;
  6012. align-self:center;
  6013. padding:0px 0px 0px 0px;
  6014. box-sizing:border-box;
  6015. width:100%;
  6016. }
  6017. #u10854_text {
  6018. border-width:0px;
  6019. white-space:nowrap;
  6020. text-transform:none;
  6021. }
  6022. #u10855_img {
  6023. border-width:0px;
  6024. position:absolute;
  6025. left:0px;
  6026. top:0px;
  6027. width:100px;
  6028. height:74px;
  6029. }
  6030. #u10855 {
  6031. border-width:0px;
  6032. position:absolute;
  6033. left:49px;
  6034. top:692px;
  6035. width:100px;
  6036. height:74px;
  6037. display:flex;
  6038. }
  6039. #u10855 .text {
  6040. position:absolute;
  6041. align-self:center;
  6042. padding:2px 2px 2px 2px;
  6043. box-sizing:border-box;
  6044. width:100%;
  6045. }
  6046. #u10855_text {
  6047. border-width:0px;
  6048. word-wrap:break-word;
  6049. text-transform:none;
  6050. visibility:hidden;
  6051. }
  6052. #u10856_img {
  6053. border-width:0px;
  6054. position:absolute;
  6055. left:0px;
  6056. top:0px;
  6057. width:100px;
  6058. height:74px;
  6059. }
  6060. #u10856 {
  6061. border-width:0px;
  6062. position:absolute;
  6063. left:159px;
  6064. top:692px;
  6065. width:100px;
  6066. height:74px;
  6067. display:flex;
  6068. }
  6069. #u10856 .text {
  6070. position:absolute;
  6071. align-self:center;
  6072. padding:2px 2px 2px 2px;
  6073. box-sizing:border-box;
  6074. width:100%;
  6075. }
  6076. #u10856_text {
  6077. border-width:0px;
  6078. word-wrap:break-word;
  6079. text-transform:none;
  6080. visibility:hidden;
  6081. }
  6082. #u10857_div {
  6083. border-width:0px;
  6084. position:absolute;
  6085. left:0px;
  6086. top:0px;
  6087. width:335px;
  6088. height:80px;
  6089. background:inherit;
  6090. background-color:rgba(255, 255, 255, 0);
  6091. border:none;
  6092. border-left:0px;
  6093. border-top:0px;
  6094. border-right:0px;
  6095. border-radius:0px;
  6096. border-bottom-right-radius:0px;
  6097. border-bottom-left-radius:0px;
  6098. -moz-box-shadow:none;
  6099. -webkit-box-shadow:none;
  6100. box-shadow:none;
  6101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6102. font-weight:400;
  6103. font-style:normal;
  6104. font-size:10px;
  6105. color:#7F7F7F;
  6106. line-height:20px;
  6107. }
  6108. #u10857 {
  6109. border-width:0px;
  6110. position:absolute;
  6111. left:43px;
  6112. top:791px;
  6113. width:335px;
  6114. height:80px;
  6115. display:flex;
  6116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6117. font-weight:400;
  6118. font-style:normal;
  6119. font-size:10px;
  6120. color:#7F7F7F;
  6121. line-height:20px;
  6122. }
  6123. #u10857 .text {
  6124. position:absolute;
  6125. align-self:flex-start;
  6126. padding:0px 0px 0px 0px;
  6127. box-sizing:border-box;
  6128. width:100%;
  6129. }
  6130. #u10857_text {
  6131. border-width:0px;
  6132. word-wrap:break-word;
  6133. text-transform:none;
  6134. }
  6135. #u10858_div {
  6136. border-width:0px;
  6137. position:absolute;
  6138. left:0px;
  6139. top:0px;
  6140. width:375px;
  6141. height:50px;
  6142. background:inherit;
  6143. background-color:rgba(255, 255, 255, 1);
  6144. border:none;
  6145. border-left:0px;
  6146. border-top:0px;
  6147. border-right:0px;
  6148. border-radius:0px;
  6149. border-bottom-right-radius:0px;
  6150. border-bottom-left-radius:0px;
  6151. -moz-box-shadow:none;
  6152. -webkit-box-shadow:none;
  6153. box-shadow:none;
  6154. }
  6155. #u10858 {
  6156. border-width:0px;
  6157. position:absolute;
  6158. left:29px;
  6159. top:459px;
  6160. width:375px;
  6161. height:50px;
  6162. display:flex;
  6163. }
  6164. #u10858 .text {
  6165. position:absolute;
  6166. align-self:center;
  6167. padding:2px 2px 2px 2px;
  6168. box-sizing:border-box;
  6169. width:100%;
  6170. }
  6171. #u10858_text {
  6172. border-width:0px;
  6173. word-wrap:break-word;
  6174. text-transform:none;
  6175. visibility:hidden;
  6176. }
  6177. #u10859_div {
  6178. border-width:0px;
  6179. position:absolute;
  6180. left:0px;
  6181. top:0px;
  6182. width:71px;
  6183. height:30px;
  6184. background:inherit;
  6185. background-color:rgba(255, 255, 255, 0);
  6186. border:none;
  6187. border-left:0px;
  6188. border-top:0px;
  6189. border-right:0px;
  6190. border-radius:0px;
  6191. border-bottom-right-radius:0px;
  6192. border-bottom-left-radius:0px;
  6193. -moz-box-shadow:none;
  6194. -webkit-box-shadow:none;
  6195. box-shadow:none;
  6196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6197. font-weight:400;
  6198. font-style:normal;
  6199. font-size:14px;
  6200. color:#AAAAAA;
  6201. line-height:30px;
  6202. }
  6203. #u10859 {
  6204. border-width:0px;
  6205. position:absolute;
  6206. left:49px;
  6207. top:469px;
  6208. width:71px;
  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:#AAAAAA;
  6216. line-height:30px;
  6217. }
  6218. #u10859 .text {
  6219. position:absolute;
  6220. align-self:center;
  6221. padding:0px 0px 0px 0px;
  6222. box-sizing:border-box;
  6223. width:100%;
  6224. }
  6225. #u10859_text {
  6226. border-width:0px;
  6227. white-space:nowrap;
  6228. text-transform:none;
  6229. }
  6230. #u10860_div {
  6231. border-width:0px;
  6232. position:absolute;
  6233. left:0px;
  6234. top:0px;
  6235. width:43px;
  6236. height:30px;
  6237. background:inherit;
  6238. background-color:rgba(255, 255, 255, 0);
  6239. border:none;
  6240. border-radius:4px;
  6241. -moz-box-shadow:none;
  6242. -webkit-box-shadow:none;
  6243. box-shadow:none;
  6244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6245. font-weight:400;
  6246. font-style:normal;
  6247. font-size:14px;
  6248. line-height:30px;
  6249. }
  6250. #u10860 {
  6251. border-width:0px;
  6252. position:absolute;
  6253. left:132px;
  6254. top:469px;
  6255. width:43px;
  6256. height:30px;
  6257. display:flex;
  6258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6259. font-weight:400;
  6260. font-style:normal;
  6261. font-size:14px;
  6262. line-height:30px;
  6263. }
  6264. #u10860 .text {
  6265. position:absolute;
  6266. align-self:center;
  6267. padding:0px 0px 0px 0px;
  6268. box-sizing:border-box;
  6269. width:100%;
  6270. }
  6271. #u10860_text {
  6272. border-width:0px;
  6273. white-space:nowrap;
  6274. text-transform:none;
  6275. }
  6276. #u10861 {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:0px;
  6280. top:0px;
  6281. width:0px;
  6282. height:0px;
  6283. }
  6284. #u10862_div {
  6285. border-width:0px;
  6286. position:absolute;
  6287. left:0px;
  6288. top:0px;
  6289. width:359px;
  6290. height:60px;
  6291. background:inherit;
  6292. background-color:rgba(255, 255, 255, 1);
  6293. border:none;
  6294. border-left:0px;
  6295. border-top:0px;
  6296. border-right:0px;
  6297. border-radius:4px;
  6298. border-bottom-right-radius:0px;
  6299. border-bottom-left-radius:0px;
  6300. -moz-box-shadow:none;
  6301. -webkit-box-shadow:none;
  6302. box-shadow:none;
  6303. }
  6304. #u10862 {
  6305. border-width:0px;
  6306. position:absolute;
  6307. left:35px;
  6308. top:117px;
  6309. width:359px;
  6310. height:60px;
  6311. display:flex;
  6312. }
  6313. #u10862 .text {
  6314. position:absolute;
  6315. align-self:center;
  6316. padding:2px 2px 2px 2px;
  6317. box-sizing:border-box;
  6318. width:100%;
  6319. }
  6320. #u10862_text {
  6321. border-width:0px;
  6322. word-wrap:break-word;
  6323. text-transform:none;
  6324. }
  6325. #u10863_div {
  6326. border-width:0px;
  6327. position:absolute;
  6328. left:0px;
  6329. top:0px;
  6330. width:71px;
  6331. height:40px;
  6332. background:inherit;
  6333. background-color:rgba(255, 255, 255, 0);
  6334. border:none;
  6335. border-left:0px;
  6336. border-top:0px;
  6337. border-right:0px;
  6338. border-radius:0px;
  6339. border-bottom-right-radius:0px;
  6340. border-bottom-left-radius:0px;
  6341. -moz-box-shadow:none;
  6342. -webkit-box-shadow:none;
  6343. box-shadow:none;
  6344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6345. font-weight:400;
  6346. font-style:normal;
  6347. font-size:14px;
  6348. line-height:40px;
  6349. }
  6350. #u10863 {
  6351. border-width:0px;
  6352. position:absolute;
  6353. left:53px;
  6354. top:127px;
  6355. width:71px;
  6356. height:40px;
  6357. display:flex;
  6358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6359. font-weight:400;
  6360. font-style:normal;
  6361. font-size:14px;
  6362. line-height:40px;
  6363. }
  6364. #u10863 .text {
  6365. position:absolute;
  6366. align-self:flex-start;
  6367. padding:0px 0px 0px 0px;
  6368. box-sizing:border-box;
  6369. width:100%;
  6370. }
  6371. #u10863_text {
  6372. border-width:0px;
  6373. white-space:nowrap;
  6374. text-transform:none;
  6375. }
  6376. #u10864_div {
  6377. border-width:0px;
  6378. position:absolute;
  6379. left:0px;
  6380. top:0px;
  6381. width:43px;
  6382. height:40px;
  6383. background:inherit;
  6384. background-color:rgba(255, 255, 255, 0);
  6385. border:none;
  6386. border-left:0px;
  6387. border-top:0px;
  6388. border-right:0px;
  6389. border-radius:0px;
  6390. border-bottom-right-radius:0px;
  6391. border-bottom-left-radius:0px;
  6392. -moz-box-shadow:none;
  6393. -webkit-box-shadow:none;
  6394. box-shadow:none;
  6395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6396. font-weight:400;
  6397. font-style:normal;
  6398. font-size:14px;
  6399. color:#F59A23;
  6400. line-height:40px;
  6401. }
  6402. #u10864 {
  6403. border-width:0px;
  6404. position:absolute;
  6405. left:131px;
  6406. top:127px;
  6407. width:43px;
  6408. height:40px;
  6409. display:flex;
  6410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6411. font-weight:400;
  6412. font-style:normal;
  6413. font-size:14px;
  6414. color:#F59A23;
  6415. line-height:40px;
  6416. }
  6417. #u10864 .text {
  6418. position:absolute;
  6419. align-self:flex-start;
  6420. padding:0px 0px 0px 0px;
  6421. box-sizing:border-box;
  6422. width:100%;
  6423. }
  6424. #u10864_text {
  6425. border-width:0px;
  6426. white-space:nowrap;
  6427. text-transform:none;
  6428. }
  6429. #u10865 {
  6430. border-width:0px;
  6431. position:absolute;
  6432. left:0px;
  6433. top:0px;
  6434. width:0px;
  6435. height:0px;
  6436. }
  6437. #u10866_div {
  6438. border-width:0px;
  6439. position:absolute;
  6440. left:0px;
  6441. top:0px;
  6442. width:359px;
  6443. height:220px;
  6444. background:inherit;
  6445. background-color:rgba(255, 255, 255, 1);
  6446. border:none;
  6447. border-left:0px;
  6448. border-top:0px;
  6449. border-right:0px;
  6450. border-radius:4px;
  6451. border-bottom-right-radius:0px;
  6452. border-bottom-left-radius:0px;
  6453. -moz-box-shadow:none;
  6454. -webkit-box-shadow:none;
  6455. box-shadow:none;
  6456. }
  6457. #u10866 {
  6458. border-width:0px;
  6459. position:absolute;
  6460. left:35px;
  6461. top:178px;
  6462. width:359px;
  6463. height:220px;
  6464. display:flex;
  6465. }
  6466. #u10866 .text {
  6467. position:absolute;
  6468. align-self:center;
  6469. padding:2px 2px 2px 2px;
  6470. box-sizing:border-box;
  6471. width:100%;
  6472. }
  6473. #u10866_text {
  6474. border-width:0px;
  6475. word-wrap:break-word;
  6476. text-transform:none;
  6477. }
  6478. #u10867_div {
  6479. border-width:0px;
  6480. position:absolute;
  6481. left:0px;
  6482. top:0px;
  6483. width:71px;
  6484. height:200px;
  6485. background:inherit;
  6486. background-color:rgba(255, 255, 255, 0);
  6487. border:none;
  6488. border-left:0px;
  6489. border-top:0px;
  6490. border-right:0px;
  6491. border-radius:0px;
  6492. border-bottom-right-radius:0px;
  6493. border-bottom-left-radius:0px;
  6494. -moz-box-shadow:none;
  6495. -webkit-box-shadow:none;
  6496. box-shadow:none;
  6497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6498. font-weight:400;
  6499. font-style:normal;
  6500. font-size:14px;
  6501. line-height:40px;
  6502. }
  6503. #u10867 {
  6504. border-width:0px;
  6505. position:absolute;
  6506. left:53px;
  6507. top:188px;
  6508. width:71px;
  6509. height:200px;
  6510. display:flex;
  6511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6512. font-weight:400;
  6513. font-style:normal;
  6514. font-size:14px;
  6515. line-height:40px;
  6516. }
  6517. #u10867 .text {
  6518. position:absolute;
  6519. align-self:flex-start;
  6520. padding:0px 0px 0px 0px;
  6521. box-sizing:border-box;
  6522. width:100%;
  6523. }
  6524. #u10867_text {
  6525. border-width:0px;
  6526. white-space:nowrap;
  6527. text-transform:none;
  6528. }
  6529. #u10868_div {
  6530. border-width:0px;
  6531. position:absolute;
  6532. left:0px;
  6533. top:0px;
  6534. width:260px;
  6535. height:200px;
  6536. background:inherit;
  6537. background-color:rgba(255, 255, 255, 0);
  6538. border:none;
  6539. border-left:0px;
  6540. border-top:0px;
  6541. border-right:0px;
  6542. border-radius:0px;
  6543. border-bottom-right-radius:0px;
  6544. border-bottom-left-radius:0px;
  6545. -moz-box-shadow:none;
  6546. -webkit-box-shadow:none;
  6547. box-shadow:none;
  6548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6549. font-weight:400;
  6550. font-style:normal;
  6551. line-height:40px;
  6552. }
  6553. #u10868 {
  6554. border-width:0px;
  6555. position:absolute;
  6556. left:131px;
  6557. top:188px;
  6558. width:260px;
  6559. height:200px;
  6560. display:flex;
  6561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6562. font-weight:400;
  6563. font-style:normal;
  6564. line-height:40px;
  6565. }
  6566. #u10868 .text {
  6567. position:absolute;
  6568. align-self:flex-start;
  6569. padding:0px 0px 0px 0px;
  6570. box-sizing:border-box;
  6571. width:100%;
  6572. }
  6573. #u10868_text {
  6574. border-width:0px;
  6575. white-space:nowrap;
  6576. text-transform:none;
  6577. }
  6578. #u10869_div {
  6579. border-width:0px;
  6580. position:absolute;
  6581. left:0px;
  6582. top:0px;
  6583. width:376px;
  6584. height:60px;
  6585. background:inherit;
  6586. background-color:rgba(255, 255, 255, 1);
  6587. box-sizing:border-box;
  6588. border-width:1px;
  6589. border-style:solid;
  6590. border-color:rgba(215, 215, 215, 1);
  6591. border-top:0px;
  6592. border-radius:22px;
  6593. border-top-left-radius:0px;
  6594. border-top-right-radius:0px;
  6595. -moz-box-shadow:none;
  6596. -webkit-box-shadow:none;
  6597. box-shadow:none;
  6598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6599. font-weight:400;
  6600. font-style:normal;
  6601. font-size:18px;
  6602. color:#298FFF;
  6603. }
  6604. #u10869 {
  6605. border-width:0px;
  6606. position:absolute;
  6607. left:29px;
  6608. top:874px;
  6609. width:376px;
  6610. height:60px;
  6611. display:flex;
  6612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6613. font-weight:400;
  6614. font-style:normal;
  6615. font-size:18px;
  6616. color:#298FFF;
  6617. }
  6618. #u10869 .text {
  6619. position:absolute;
  6620. align-self:center;
  6621. padding:2px 2px 2px 2px;
  6622. box-sizing:border-box;
  6623. width:100%;
  6624. }
  6625. #u10869_text {
  6626. border-width:0px;
  6627. word-wrap:break-word;
  6628. text-transform:none;
  6629. }
  6630. #u10871_img {
  6631. border-width:0px;
  6632. position:absolute;
  6633. left:0px;
  6634. top:0px;
  6635. width:433px;
  6636. height:865px;
  6637. }
  6638. #u10871 {
  6639. border-width:0px;
  6640. position:absolute;
  6641. left:908px;
  6642. top:0px;
  6643. width:433px;
  6644. height:865px;
  6645. display:flex;
  6646. }
  6647. #u10871 .text {
  6648. position:absolute;
  6649. align-self:center;
  6650. padding:2px 2px 2px 2px;
  6651. box-sizing:border-box;
  6652. width:100%;
  6653. }
  6654. #u10871_text {
  6655. border-width:0px;
  6656. word-wrap:break-word;
  6657. text-transform:none;
  6658. visibility:hidden;
  6659. }
  6660. #u10872_div {
  6661. border-width:0px;
  6662. position:absolute;
  6663. left:0px;
  6664. top:0px;
  6665. width:375px;
  6666. height:40px;
  6667. background:inherit;
  6668. background-color:rgba(255, 255, 255, 1);
  6669. box-sizing:border-box;
  6670. border-width:1px;
  6671. border-style:solid;
  6672. border-color:rgba(215, 215, 215, 1);
  6673. border-left:0px;
  6674. border-top:0px;
  6675. border-right:0px;
  6676. border-radius:0px;
  6677. border-bottom-right-radius:0px;
  6678. border-bottom-left-radius:0px;
  6679. -moz-box-shadow:none;
  6680. -webkit-box-shadow:none;
  6681. box-shadow:none;
  6682. }
  6683. #u10872 {
  6684. border-width:0px;
  6685. position:absolute;
  6686. left:937px;
  6687. top:67px;
  6688. width:375px;
  6689. height:40px;
  6690. display:flex;
  6691. }
  6692. #u10872 .text {
  6693. position:absolute;
  6694. align-self:center;
  6695. padding:2px 2px 2px 2px;
  6696. box-sizing:border-box;
  6697. width:100%;
  6698. }
  6699. #u10872_text {
  6700. border-width:0px;
  6701. word-wrap:break-word;
  6702. text-transform:none;
  6703. visibility:hidden;
  6704. }
  6705. #u10873 {
  6706. border-width:0px;
  6707. position:absolute;
  6708. left:0px;
  6709. top:0px;
  6710. width:0px;
  6711. height:0px;
  6712. }
  6713. #u10874_div {
  6714. border-width:0px;
  6715. position:absolute;
  6716. left:0px;
  6717. top:0px;
  6718. width:88px;
  6719. height:32px;
  6720. background:inherit;
  6721. background-color:rgba(255, 255, 255, 1);
  6722. box-sizing:border-box;
  6723. border-width:1px;
  6724. border-style:solid;
  6725. border-color:rgba(242, 242, 242, 1);
  6726. border-radius:33px;
  6727. -moz-box-shadow:none;
  6728. -webkit-box-shadow:none;
  6729. box-shadow:none;
  6730. }
  6731. #u10874 {
  6732. border-width:0px;
  6733. position:absolute;
  6734. left:1217px;
  6735. top:71px;
  6736. width:88px;
  6737. height:32px;
  6738. display:flex;
  6739. }
  6740. #u10874 .text {
  6741. position:absolute;
  6742. align-self:center;
  6743. padding:2px 2px 2px 2px;
  6744. box-sizing:border-box;
  6745. width:100%;
  6746. }
  6747. #u10874_text {
  6748. border-width:0px;
  6749. word-wrap:break-word;
  6750. text-transform:none;
  6751. visibility:hidden;
  6752. }
  6753. #u10875 {
  6754. border-width:0px;
  6755. position:absolute;
  6756. left:0px;
  6757. top:0px;
  6758. width:0px;
  6759. height:0px;
  6760. }
  6761. #u10876_img {
  6762. border-width:0px;
  6763. position:absolute;
  6764. left:0px;
  6765. top:0px;
  6766. width:18px;
  6767. height:18px;
  6768. }
  6769. #u10876 {
  6770. border-width:0px;
  6771. position:absolute;
  6772. left:1280px;
  6773. top:78px;
  6774. width:18px;
  6775. height:18px;
  6776. display:flex;
  6777. }
  6778. #u10876 .text {
  6779. position:absolute;
  6780. align-self:center;
  6781. padding:2px 2px 2px 2px;
  6782. box-sizing:border-box;
  6783. width:100%;
  6784. }
  6785. #u10876_text {
  6786. border-width:0px;
  6787. word-wrap:break-word;
  6788. text-transform:none;
  6789. visibility:hidden;
  6790. }
  6791. #u10877_img {
  6792. border-width:0px;
  6793. position:absolute;
  6794. left:0px;
  6795. top:0px;
  6796. width:6px;
  6797. height:6px;
  6798. }
  6799. #u10877 {
  6800. border-width:0px;
  6801. position:absolute;
  6802. left:1286px;
  6803. top:84px;
  6804. width:6px;
  6805. height:6px;
  6806. display:flex;
  6807. }
  6808. #u10877 .text {
  6809. position:absolute;
  6810. align-self:center;
  6811. padding:2px 2px 2px 2px;
  6812. box-sizing:border-box;
  6813. width:100%;
  6814. }
  6815. #u10877_text {
  6816. border-width:0px;
  6817. word-wrap:break-word;
  6818. text-transform:none;
  6819. visibility:hidden;
  6820. }
  6821. #u10878 {
  6822. border-width:0px;
  6823. position:absolute;
  6824. left:0px;
  6825. top:0px;
  6826. width:0px;
  6827. height:0px;
  6828. }
  6829. #u10879_img {
  6830. border-width:0px;
  6831. position:absolute;
  6832. left:0px;
  6833. top:0px;
  6834. width:5px;
  6835. height:5px;
  6836. }
  6837. #u10879 {
  6838. border-width:0px;
  6839. position:absolute;
  6840. left:1231px;
  6841. top:85px;
  6842. width:5px;
  6843. height:5px;
  6844. display:flex;
  6845. }
  6846. #u10879 .text {
  6847. position:absolute;
  6848. align-self:center;
  6849. padding:2px 2px 2px 2px;
  6850. box-sizing:border-box;
  6851. width:100%;
  6852. }
  6853. #u10879_text {
  6854. border-width:0px;
  6855. word-wrap:break-word;
  6856. text-transform:none;
  6857. visibility:hidden;
  6858. }
  6859. #u10880_img {
  6860. border-width:0px;
  6861. position:absolute;
  6862. left:0px;
  6863. top:0px;
  6864. width:5px;
  6865. height:5px;
  6866. }
  6867. #u10880 {
  6868. border-width:0px;
  6869. position:absolute;
  6870. left:1247px;
  6871. top:85px;
  6872. width:5px;
  6873. height:5px;
  6874. display:flex;
  6875. }
  6876. #u10880 .text {
  6877. position:absolute;
  6878. align-self:center;
  6879. padding:2px 2px 2px 2px;
  6880. box-sizing:border-box;
  6881. width:100%;
  6882. }
  6883. #u10880_text {
  6884. border-width:0px;
  6885. word-wrap:break-word;
  6886. text-transform:none;
  6887. visibility:hidden;
  6888. }
  6889. #u10881_img {
  6890. border-width:0px;
  6891. position:absolute;
  6892. left:0px;
  6893. top:0px;
  6894. width:7px;
  6895. height:7px;
  6896. }
  6897. #u10881 {
  6898. border-width:0px;
  6899. position:absolute;
  6900. left:1238px;
  6901. top:84px;
  6902. width:7px;
  6903. height:7px;
  6904. display:flex;
  6905. }
  6906. #u10881 .text {
  6907. position:absolute;
  6908. align-self:center;
  6909. padding:2px 2px 2px 2px;
  6910. box-sizing:border-box;
  6911. width:100%;
  6912. }
  6913. #u10881_text {
  6914. border-width:0px;
  6915. word-wrap:break-word;
  6916. text-transform:none;
  6917. visibility:hidden;
  6918. }
  6919. #u10882_img {
  6920. border-width:0px;
  6921. position:absolute;
  6922. left:0px;
  6923. top:0px;
  6924. width:19px;
  6925. height:2px;
  6926. }
  6927. #u10882 {
  6928. border-width:0px;
  6929. position:absolute;
  6930. left:1255px;
  6931. top:87px;
  6932. width:18px;
  6933. height:1px;
  6934. display:flex;
  6935. -webkit-transform:rotate(90deg);
  6936. -moz-transform:rotate(90deg);
  6937. -ms-transform:rotate(90deg);
  6938. transform:rotate(90deg);
  6939. }
  6940. #u10882 .text {
  6941. position:absolute;
  6942. align-self:center;
  6943. padding:2px 2px 2px 2px;
  6944. box-sizing:border-box;
  6945. width:100%;
  6946. }
  6947. #u10882_text {
  6948. border-width:0px;
  6949. word-wrap:break-word;
  6950. text-transform:none;
  6951. visibility:hidden;
  6952. }
  6953. #u10883_img {
  6954. border-width:0px;
  6955. position:absolute;
  6956. left:0px;
  6957. top:0px;
  6958. width:375px;
  6959. height:44px;
  6960. }
  6961. #u10883 {
  6962. border-width:0px;
  6963. position:absolute;
  6964. left:937px;
  6965. top:24px;
  6966. width:375px;
  6967. height:44px;
  6968. display:flex;
  6969. }
  6970. #u10883 .text {
  6971. position:absolute;
  6972. align-self:center;
  6973. padding:2px 2px 2px 2px;
  6974. box-sizing:border-box;
  6975. width:100%;
  6976. }
  6977. #u10883_text {
  6978. border-width:0px;
  6979. word-wrap:break-word;
  6980. text-transform:none;
  6981. visibility:hidden;
  6982. }
  6983. #u10884_div {
  6984. border-width:0px;
  6985. position:absolute;
  6986. left:0px;
  6987. top:0px;
  6988. width:375px;
  6989. height:50px;
  6990. background:inherit;
  6991. background-color:rgba(255, 255, 255, 1);
  6992. box-sizing:border-box;
  6993. border-width:1px;
  6994. border-style:solid;
  6995. border-color:rgba(242, 242, 242, 1);
  6996. border-radius:26px;
  6997. border-top-left-radius:0px;
  6998. border-top-right-radius:0px;
  6999. -moz-box-shadow:none;
  7000. -webkit-box-shadow:none;
  7001. box-shadow:none;
  7002. }
  7003. #u10884 {
  7004. border-width:0px;
  7005. position:absolute;
  7006. left:937px;
  7007. top:788px;
  7008. width:375px;
  7009. height:50px;
  7010. display:flex;
  7011. }
  7012. #u10884 .text {
  7013. position:absolute;
  7014. align-self:center;
  7015. padding:2px 2px 2px 2px;
  7016. box-sizing:border-box;
  7017. width:100%;
  7018. }
  7019. #u10884_text {
  7020. border-width:0px;
  7021. word-wrap:break-word;
  7022. text-transform:none;
  7023. visibility:hidden;
  7024. }
  7025. #u10885 {
  7026. border-width:0px;
  7027. position:absolute;
  7028. left:0px;
  7029. top:0px;
  7030. width:0px;
  7031. height:0px;
  7032. }
  7033. #u10886_img {
  7034. border-width:0px;
  7035. position:absolute;
  7036. left:0px;
  7037. top:0px;
  7038. width:24px;
  7039. height:24px;
  7040. }
  7041. #u10886 {
  7042. border-width:0px;
  7043. position:absolute;
  7044. left:977px;
  7045. top:792px;
  7046. width:24px;
  7047. height:24px;
  7048. display:flex;
  7049. font-size:8px;
  7050. }
  7051. #u10886 .text {
  7052. position:absolute;
  7053. align-self:center;
  7054. padding:2px 2px 2px 2px;
  7055. box-sizing:border-box;
  7056. width:100%;
  7057. }
  7058. #u10886_text {
  7059. border-width:0px;
  7060. word-wrap:break-word;
  7061. text-transform:none;
  7062. }
  7063. #u10887_div {
  7064. border-width:0px;
  7065. position:absolute;
  7066. left:0px;
  7067. top:0px;
  7068. width:25px;
  7069. height:17px;
  7070. background:inherit;
  7071. background-color:rgba(255, 255, 255, 0);
  7072. border:none;
  7073. border-radius:0px;
  7074. -moz-box-shadow:none;
  7075. -webkit-box-shadow:none;
  7076. box-shadow:none;
  7077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7078. font-weight:400;
  7079. font-style:normal;
  7080. font-size:12px;
  7081. }
  7082. #u10887 {
  7083. border-width:0px;
  7084. position:absolute;
  7085. left:977px;
  7086. top:817px;
  7087. width:25px;
  7088. height:17px;
  7089. display:flex;
  7090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7091. font-weight:400;
  7092. font-style:normal;
  7093. font-size:12px;
  7094. }
  7095. #u10887 .text {
  7096. position:absolute;
  7097. align-self:flex-start;
  7098. padding:0px 0px 0px 0px;
  7099. box-sizing:border-box;
  7100. width:100%;
  7101. }
  7102. #u10887_text {
  7103. border-width:0px;
  7104. white-space:nowrap;
  7105. text-transform:none;
  7106. }
  7107. #u10888 {
  7108. border-width:0px;
  7109. position:absolute;
  7110. left:0px;
  7111. top:0px;
  7112. width:0px;
  7113. height:0px;
  7114. }
  7115. #u10889_img {
  7116. border-width:0px;
  7117. position:absolute;
  7118. left:0px;
  7119. top:0px;
  7120. width:24px;
  7121. height:24px;
  7122. }
  7123. #u10889 {
  7124. border-width:0px;
  7125. position:absolute;
  7126. left:1247px;
  7127. top:794px;
  7128. width:24px;
  7129. height:24px;
  7130. display:flex;
  7131. font-size:8px;
  7132. }
  7133. #u10889 .text {
  7134. position:absolute;
  7135. align-self:center;
  7136. padding:2px 2px 2px 2px;
  7137. box-sizing:border-box;
  7138. width:100%;
  7139. }
  7140. #u10889_text {
  7141. border-width:0px;
  7142. word-wrap:break-word;
  7143. text-transform:none;
  7144. }
  7145. #u10890_div {
  7146. border-width:0px;
  7147. position:absolute;
  7148. left:0px;
  7149. top:0px;
  7150. width:25px;
  7151. height:17px;
  7152. background:inherit;
  7153. background-color:rgba(255, 255, 255, 0);
  7154. border:none;
  7155. border-radius:0px;
  7156. -moz-box-shadow:none;
  7157. -webkit-box-shadow:none;
  7158. box-shadow:none;
  7159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7160. font-weight:400;
  7161. font-style:normal;
  7162. font-size:12px;
  7163. }
  7164. #u10890 {
  7165. border-width:0px;
  7166. position:absolute;
  7167. left:1247px;
  7168. top:819px;
  7169. width:25px;
  7170. height:17px;
  7171. display:flex;
  7172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7173. font-weight:400;
  7174. font-style:normal;
  7175. font-size:12px;
  7176. }
  7177. #u10890 .text {
  7178. position:absolute;
  7179. align-self:flex-start;
  7180. padding:0px 0px 0px 0px;
  7181. box-sizing:border-box;
  7182. width:100%;
  7183. }
  7184. #u10890_text {
  7185. border-width:0px;
  7186. white-space:nowrap;
  7187. text-transform:none;
  7188. }
  7189. #u10891_div {
  7190. border-width:0px;
  7191. position:absolute;
  7192. left:0px;
  7193. top:0px;
  7194. width:375px;
  7195. height:681px;
  7196. background:inherit;
  7197. background-color:rgba(242, 242, 242, 0.462745098039216);
  7198. border:none;
  7199. border-radius:0px;
  7200. -moz-box-shadow:none;
  7201. -webkit-box-shadow:none;
  7202. box-shadow:none;
  7203. }
  7204. #u10891 {
  7205. border-width:0px;
  7206. position:absolute;
  7207. left:937px;
  7208. top:107px;
  7209. width:375px;
  7210. height:681px;
  7211. display:flex;
  7212. }
  7213. #u10891 .text {
  7214. position:absolute;
  7215. align-self:center;
  7216. padding:2px 2px 2px 2px;
  7217. box-sizing:border-box;
  7218. width:100%;
  7219. }
  7220. #u10891_text {
  7221. border-width:0px;
  7222. word-wrap:break-word;
  7223. text-transform:none;
  7224. visibility:hidden;
  7225. }
  7226. #u10892 {
  7227. border-width:0px;
  7228. position:absolute;
  7229. left:0px;
  7230. top:0px;
  7231. width:0px;
  7232. height:0px;
  7233. }
  7234. #u10893_img {
  7235. border-width:0px;
  7236. position:absolute;
  7237. left:0px;
  7238. top:0px;
  7239. width:24px;
  7240. height:24px;
  7241. }
  7242. #u10893 {
  7243. border-width:0px;
  7244. position:absolute;
  7245. left:1159px;
  7246. top:792px;
  7247. width:24px;
  7248. height:24px;
  7249. display:flex;
  7250. font-size:8px;
  7251. }
  7252. #u10893 .text {
  7253. position:absolute;
  7254. align-self:center;
  7255. padding:2px 2px 2px 2px;
  7256. box-sizing:border-box;
  7257. width:100%;
  7258. }
  7259. #u10893_text {
  7260. border-width:0px;
  7261. word-wrap:break-word;
  7262. text-transform:none;
  7263. }
  7264. #u10894_div {
  7265. border-width:0px;
  7266. position:absolute;
  7267. left:0px;
  7268. top:0px;
  7269. width:37px;
  7270. height:17px;
  7271. background:inherit;
  7272. background-color:rgba(255, 255, 255, 0);
  7273. border:none;
  7274. border-radius:0px;
  7275. -moz-box-shadow:none;
  7276. -webkit-box-shadow:none;
  7277. box-shadow:none;
  7278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7279. font-weight:400;
  7280. font-style:normal;
  7281. font-size:12px;
  7282. }
  7283. #u10894 {
  7284. border-width:0px;
  7285. position:absolute;
  7286. left:1153px;
  7287. top:817px;
  7288. width:37px;
  7289. height:17px;
  7290. display:flex;
  7291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7292. font-weight:400;
  7293. font-style:normal;
  7294. font-size:12px;
  7295. }
  7296. #u10894 .text {
  7297. position:absolute;
  7298. align-self:flex-start;
  7299. padding:0px 0px 0px 0px;
  7300. box-sizing:border-box;
  7301. width:100%;
  7302. }
  7303. #u10894_text {
  7304. border-width:0px;
  7305. white-space:nowrap;
  7306. text-transform:none;
  7307. }
  7308. #u10895 {
  7309. border-width:0px;
  7310. position:absolute;
  7311. left:0px;
  7312. top:0px;
  7313. width:0px;
  7314. height:0px;
  7315. }
  7316. #u10896_img {
  7317. border-width:0px;
  7318. position:absolute;
  7319. left:0px;
  7320. top:0px;
  7321. width:24px;
  7322. height:24px;
  7323. }
  7324. #u10896 {
  7325. border-width:0px;
  7326. position:absolute;
  7327. left:1065px;
  7328. top:792px;
  7329. width:24px;
  7330. height:24px;
  7331. display:flex;
  7332. font-size:8px;
  7333. }
  7334. #u10896 .text {
  7335. position:absolute;
  7336. align-self:center;
  7337. padding:2px 2px 2px 2px;
  7338. box-sizing:border-box;
  7339. width:100%;
  7340. }
  7341. #u10896_text {
  7342. border-width:0px;
  7343. word-wrap:break-word;
  7344. text-transform:none;
  7345. }
  7346. #u10897_div {
  7347. border-width:0px;
  7348. position:absolute;
  7349. left:0px;
  7350. top:0px;
  7351. width:37px;
  7352. height:17px;
  7353. background:inherit;
  7354. background-color:rgba(255, 255, 255, 0);
  7355. border:none;
  7356. border-radius:0px;
  7357. -moz-box-shadow:none;
  7358. -webkit-box-shadow:none;
  7359. box-shadow:none;
  7360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7361. font-weight:400;
  7362. font-style:normal;
  7363. font-size:12px;
  7364. }
  7365. #u10897 {
  7366. border-width:0px;
  7367. position:absolute;
  7368. left:1059px;
  7369. top:817px;
  7370. width:37px;
  7371. height:17px;
  7372. display:flex;
  7373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7374. font-weight:400;
  7375. font-style:normal;
  7376. font-size:12px;
  7377. }
  7378. #u10897 .text {
  7379. position:absolute;
  7380. align-self:flex-start;
  7381. padding:0px 0px 0px 0px;
  7382. box-sizing:border-box;
  7383. width:100%;
  7384. }
  7385. #u10897_text {
  7386. border-width:0px;
  7387. white-space:nowrap;
  7388. text-transform:none;
  7389. }
  7390. #u10898_div {
  7391. border-width:0px;
  7392. position:absolute;
  7393. left:0px;
  7394. top:0px;
  7395. width:375px;
  7396. height:827px;
  7397. background:inherit;
  7398. background-color:rgba(242, 242, 242, 1);
  7399. border:none;
  7400. border-top:0px;
  7401. border-radius:28px;
  7402. border-top-left-radius:0px;
  7403. border-top-right-radius:0px;
  7404. -moz-box-shadow:none;
  7405. -webkit-box-shadow:none;
  7406. box-shadow:none;
  7407. }
  7408. #u10898 {
  7409. border-width:0px;
  7410. position:absolute;
  7411. left:937px;
  7412. top:107px;
  7413. width:375px;
  7414. height:827px;
  7415. display:flex;
  7416. }
  7417. #u10898 .text {
  7418. position:absolute;
  7419. align-self:center;
  7420. padding:2px 2px 2px 2px;
  7421. box-sizing:border-box;
  7422. width:100%;
  7423. }
  7424. #u10898_text {
  7425. border-width:0px;
  7426. word-wrap:break-word;
  7427. text-transform:none;
  7428. visibility:hidden;
  7429. }
  7430. #u10899_div {
  7431. border-width:0px;
  7432. position:absolute;
  7433. left:0px;
  7434. top:0px;
  7435. width:12px;
  7436. height:12px;
  7437. background:inherit;
  7438. background-color:rgba(255, 255, 255, 0);
  7439. box-sizing:border-box;
  7440. border-width:2px;
  7441. border-style:solid;
  7442. border-color:rgba(51, 51, 51, 1);
  7443. border-right:0px;
  7444. border-bottom:0px;
  7445. border-radius:0px;
  7446. border-top-right-radius:0px;
  7447. border-bottom-left-radius:0px;
  7448. -moz-box-shadow:none;
  7449. -webkit-box-shadow:none;
  7450. box-shadow:none;
  7451. }
  7452. #u10899 {
  7453. border-width:0px;
  7454. position:absolute;
  7455. left:947px;
  7456. top:81px;
  7457. width:12px;
  7458. height:12px;
  7459. display:flex;
  7460. -webkit-transform:rotate(315deg);
  7461. -moz-transform:rotate(315deg);
  7462. -ms-transform:rotate(315deg);
  7463. transform:rotate(315deg);
  7464. }
  7465. #u10899 .text {
  7466. position:absolute;
  7467. align-self:center;
  7468. padding:2px 2px 2px 2px;
  7469. box-sizing:border-box;
  7470. width:100%;
  7471. }
  7472. #u10899_text {
  7473. border-width:0px;
  7474. word-wrap:break-word;
  7475. text-transform:none;
  7476. visibility:hidden;
  7477. }
  7478. #u10900_div {
  7479. border-width:0px;
  7480. position:absolute;
  7481. left:0px;
  7482. top:0px;
  7483. width:85px;
  7484. height:30px;
  7485. background:inherit;
  7486. background-color:rgba(255, 255, 255, 0);
  7487. border:none;
  7488. border-left:0px;
  7489. border-top:0px;
  7490. border-right:0px;
  7491. border-radius:0px;
  7492. border-bottom-right-radius:0px;
  7493. border-bottom-left-radius:0px;
  7494. -moz-box-shadow:none;
  7495. -webkit-box-shadow:none;
  7496. box-shadow:none;
  7497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7498. font-weight:400;
  7499. font-style:normal;
  7500. font-size:14px;
  7501. line-height:30px;
  7502. }
  7503. #u10900 {
  7504. border-width:0px;
  7505. position:absolute;
  7506. left:1082px;
  7507. top:72px;
  7508. width:85px;
  7509. height:30px;
  7510. display:flex;
  7511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7512. font-weight:400;
  7513. font-style:normal;
  7514. font-size:14px;
  7515. line-height:30px;
  7516. }
  7517. #u10900 .text {
  7518. position:absolute;
  7519. align-self:center;
  7520. padding:0px 0px 0px 0px;
  7521. box-sizing:border-box;
  7522. width:100%;
  7523. }
  7524. #u10900_text {
  7525. border-width:0px;
  7526. white-space:nowrap;
  7527. text-transform:none;
  7528. }
  7529. #u10901_div {
  7530. border-width:0px;
  7531. position:absolute;
  7532. left:0px;
  7533. top:0px;
  7534. width:375px;
  7535. height:170px;
  7536. background:inherit;
  7537. background-color:rgba(255, 255, 255, 1);
  7538. border:none;
  7539. border-left:0px;
  7540. border-top:0px;
  7541. border-right:0px;
  7542. border-radius:0px;
  7543. border-bottom-right-radius:0px;
  7544. border-bottom-left-radius:0px;
  7545. -moz-box-shadow:none;
  7546. -webkit-box-shadow:none;
  7547. box-shadow:none;
  7548. }
  7549. #u10901 {
  7550. border-width:0px;
  7551. position:absolute;
  7552. left:937px;
  7553. top:641px;
  7554. width:375px;
  7555. height:170px;
  7556. display:flex;
  7557. }
  7558. #u10901 .text {
  7559. position:absolute;
  7560. align-self:center;
  7561. padding:2px 2px 2px 2px;
  7562. box-sizing:border-box;
  7563. width:100%;
  7564. }
  7565. #u10901_text {
  7566. border-width:0px;
  7567. word-wrap:break-word;
  7568. text-transform:none;
  7569. visibility:hidden;
  7570. }
  7571. #u10902_div {
  7572. border-width:0px;
  7573. position:absolute;
  7574. left:0px;
  7575. top:0px;
  7576. width:253px;
  7577. height:30px;
  7578. background:inherit;
  7579. background-color:rgba(255, 255, 255, 0);
  7580. border:none;
  7581. border-left:0px;
  7582. border-top:0px;
  7583. border-right:0px;
  7584. border-radius:0px;
  7585. border-bottom-right-radius:0px;
  7586. border-bottom-left-radius:0px;
  7587. -moz-box-shadow:none;
  7588. -webkit-box-shadow:none;
  7589. box-shadow:none;
  7590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7591. font-weight:400;
  7592. font-style:normal;
  7593. font-size:12px;
  7594. line-height:30px;
  7595. }
  7596. #u10902 {
  7597. border-width:0px;
  7598. position:absolute;
  7599. left:957px;
  7600. top:681px;
  7601. width:253px;
  7602. height:30px;
  7603. display:flex;
  7604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7605. font-weight:400;
  7606. font-style:normal;
  7607. font-size:12px;
  7608. line-height:30px;
  7609. }
  7610. #u10902 .text {
  7611. position:absolute;
  7612. align-self:flex-start;
  7613. padding:0px 0px 0px 0px;
  7614. box-sizing:border-box;
  7615. width:100%;
  7616. }
  7617. #u10902_text {
  7618. border-width:0px;
  7619. white-space:nowrap;
  7620. text-transform:none;
  7621. }
  7622. #u10903_div {
  7623. border-width:0px;
  7624. position:absolute;
  7625. left:0px;
  7626. top:0px;
  7627. width:57px;
  7628. height:30px;
  7629. background:inherit;
  7630. background-color:rgba(255, 255, 255, 0);
  7631. border:none;
  7632. border-left:0px;
  7633. border-top:0px;
  7634. border-right:0px;
  7635. border-radius:0px;
  7636. border-bottom-right-radius:0px;
  7637. border-bottom-left-radius:0px;
  7638. -moz-box-shadow:none;
  7639. -webkit-box-shadow:none;
  7640. box-shadow:none;
  7641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7642. font-weight:400;
  7643. font-style:normal;
  7644. font-size:14px;
  7645. color:#AAAAAA;
  7646. line-height:30px;
  7647. }
  7648. #u10903 {
  7649. border-width:0px;
  7650. position:absolute;
  7651. left:957px;
  7652. top:651px;
  7653. width:57px;
  7654. height:30px;
  7655. display:flex;
  7656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7657. font-weight:400;
  7658. font-style:normal;
  7659. font-size:14px;
  7660. color:#AAAAAA;
  7661. line-height:30px;
  7662. }
  7663. #u10903 .text {
  7664. position:absolute;
  7665. align-self:center;
  7666. padding:0px 0px 0px 0px;
  7667. box-sizing:border-box;
  7668. width:100%;
  7669. }
  7670. #u10903_text {
  7671. border-width:0px;
  7672. white-space:nowrap;
  7673. text-transform:none;
  7674. }
  7675. #u10904_div {
  7676. border-width:0px;
  7677. position:absolute;
  7678. left:0px;
  7679. top:0px;
  7680. width:375px;
  7681. height:50px;
  7682. background:inherit;
  7683. background-color:rgba(255, 255, 255, 1);
  7684. border:none;
  7685. border-left:0px;
  7686. border-top:0px;
  7687. border-right:0px;
  7688. border-radius:0px;
  7689. border-bottom-right-radius:0px;
  7690. border-bottom-left-radius:0px;
  7691. -moz-box-shadow:none;
  7692. -webkit-box-shadow:none;
  7693. box-shadow:none;
  7694. }
  7695. #u10904 {
  7696. border-width:0px;
  7697. position:absolute;
  7698. left:937px;
  7699. top:488px;
  7700. width:375px;
  7701. height:50px;
  7702. display:flex;
  7703. }
  7704. #u10904 .text {
  7705. position:absolute;
  7706. align-self:center;
  7707. padding:2px 2px 2px 2px;
  7708. box-sizing:border-box;
  7709. width:100%;
  7710. }
  7711. #u10904_text {
  7712. border-width:0px;
  7713. word-wrap:break-word;
  7714. text-transform:none;
  7715. visibility:hidden;
  7716. }
  7717. #u10905_div {
  7718. border-width:0px;
  7719. position:absolute;
  7720. left:0px;
  7721. top:0px;
  7722. width:71px;
  7723. height:30px;
  7724. background:inherit;
  7725. background-color:rgba(255, 255, 255, 0);
  7726. border:none;
  7727. border-left:0px;
  7728. border-top:0px;
  7729. border-right:0px;
  7730. border-radius:0px;
  7731. border-bottom-right-radius:0px;
  7732. border-bottom-left-radius:0px;
  7733. -moz-box-shadow:none;
  7734. -webkit-box-shadow:none;
  7735. box-shadow:none;
  7736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7737. font-weight:400;
  7738. font-style:normal;
  7739. font-size:14px;
  7740. color:#AAAAAA;
  7741. line-height:30px;
  7742. }
  7743. #u10905 {
  7744. border-width:0px;
  7745. position:absolute;
  7746. left:957px;
  7747. top:498px;
  7748. width:71px;
  7749. height:30px;
  7750. display:flex;
  7751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7752. font-weight:400;
  7753. font-style:normal;
  7754. font-size:14px;
  7755. color:#AAAAAA;
  7756. line-height:30px;
  7757. }
  7758. #u10905 .text {
  7759. position:absolute;
  7760. align-self:center;
  7761. padding:0px 0px 0px 0px;
  7762. box-sizing:border-box;
  7763. width:100%;
  7764. }
  7765. #u10905_text {
  7766. border-width:0px;
  7767. white-space:nowrap;
  7768. text-transform:none;
  7769. }
  7770. #u10906_div {
  7771. border-width:0px;
  7772. position:absolute;
  7773. left:0px;
  7774. top:0px;
  7775. width:57px;
  7776. height:30px;
  7777. background:inherit;
  7778. background-color:rgba(255, 255, 255, 0);
  7779. border:none;
  7780. border-radius:4px;
  7781. -moz-box-shadow:none;
  7782. -webkit-box-shadow:none;
  7783. box-shadow:none;
  7784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7785. font-weight:400;
  7786. font-style:normal;
  7787. font-size:14px;
  7788. text-align:center;
  7789. line-height:30px;
  7790. }
  7791. #u10906 {
  7792. border-width:0px;
  7793. position:absolute;
  7794. left:1033px;
  7795. top:498px;
  7796. width:57px;
  7797. height:30px;
  7798. display:flex;
  7799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7800. font-weight:400;
  7801. font-style:normal;
  7802. font-size:14px;
  7803. text-align:center;
  7804. line-height:30px;
  7805. }
  7806. #u10906 .text {
  7807. position:absolute;
  7808. align-self:center;
  7809. padding:0px 0px 0px 0px;
  7810. box-sizing:border-box;
  7811. width:100%;
  7812. }
  7813. #u10906_text {
  7814. border-width:0px;
  7815. white-space:nowrap;
  7816. text-transform:none;
  7817. }
  7818. #u10907_div {
  7819. border-width:0px;
  7820. position:absolute;
  7821. left:0px;
  7822. top:0px;
  7823. width:375px;
  7824. height:50px;
  7825. background:inherit;
  7826. background-color:rgba(255, 255, 255, 1);
  7827. border:none;
  7828. border-left:0px;
  7829. border-top:0px;
  7830. border-right:0px;
  7831. border-radius:0px;
  7832. border-bottom-right-radius:0px;
  7833. border-bottom-left-radius:0px;
  7834. -moz-box-shadow:none;
  7835. -webkit-box-shadow:none;
  7836. box-shadow:none;
  7837. }
  7838. #u10907 {
  7839. border-width:0px;
  7840. position:absolute;
  7841. left:937px;
  7842. top:590px;
  7843. width:375px;
  7844. height:50px;
  7845. display:flex;
  7846. }
  7847. #u10907 .text {
  7848. position:absolute;
  7849. align-self:center;
  7850. padding:2px 2px 2px 2px;
  7851. box-sizing:border-box;
  7852. width:100%;
  7853. }
  7854. #u10907_text {
  7855. border-width:0px;
  7856. word-wrap:break-word;
  7857. text-transform:none;
  7858. visibility:hidden;
  7859. }
  7860. #u10908_div {
  7861. border-width:0px;
  7862. position:absolute;
  7863. left:0px;
  7864. top:0px;
  7865. width:71px;
  7866. height:30px;
  7867. background:inherit;
  7868. background-color:rgba(255, 255, 255, 0);
  7869. border:none;
  7870. border-left:0px;
  7871. border-top:0px;
  7872. border-right:0px;
  7873. border-radius:0px;
  7874. border-bottom-right-radius:0px;
  7875. border-bottom-left-radius:0px;
  7876. -moz-box-shadow:none;
  7877. -webkit-box-shadow:none;
  7878. box-shadow:none;
  7879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7880. font-weight:400;
  7881. font-style:normal;
  7882. font-size:14px;
  7883. color:#AAAAAA;
  7884. line-height:30px;
  7885. }
  7886. #u10908 {
  7887. border-width:0px;
  7888. position:absolute;
  7889. left:957px;
  7890. top:600px;
  7891. width:71px;
  7892. height:30px;
  7893. display:flex;
  7894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7895. font-weight:400;
  7896. font-style:normal;
  7897. font-size:14px;
  7898. color:#AAAAAA;
  7899. line-height:30px;
  7900. }
  7901. #u10908 .text {
  7902. position:absolute;
  7903. align-self:center;
  7904. padding:0px 0px 0px 0px;
  7905. box-sizing:border-box;
  7906. width:100%;
  7907. }
  7908. #u10908_text {
  7909. border-width:0px;
  7910. white-space:nowrap;
  7911. text-transform:none;
  7912. }
  7913. #u10909_div {
  7914. border-width:0px;
  7915. position:absolute;
  7916. left:0px;
  7917. top:0px;
  7918. width:375px;
  7919. height:50px;
  7920. background:inherit;
  7921. background-color:rgba(255, 255, 255, 1);
  7922. border:none;
  7923. border-left:0px;
  7924. border-top:0px;
  7925. border-right:0px;
  7926. border-radius:0px;
  7927. border-bottom-right-radius:0px;
  7928. border-bottom-left-radius:0px;
  7929. -moz-box-shadow:none;
  7930. -webkit-box-shadow:none;
  7931. box-shadow:none;
  7932. }
  7933. #u10909 {
  7934. border-width:0px;
  7935. position:absolute;
  7936. left:937px;
  7937. top:539px;
  7938. width:375px;
  7939. height:50px;
  7940. display:flex;
  7941. }
  7942. #u10909 .text {
  7943. position:absolute;
  7944. align-self:center;
  7945. padding:2px 2px 2px 2px;
  7946. box-sizing:border-box;
  7947. width:100%;
  7948. }
  7949. #u10909_text {
  7950. border-width:0px;
  7951. word-wrap:break-word;
  7952. text-transform:none;
  7953. visibility:hidden;
  7954. }
  7955. #u10910_div {
  7956. border-width:0px;
  7957. position:absolute;
  7958. left:0px;
  7959. top:0px;
  7960. width:71px;
  7961. height:30px;
  7962. background:inherit;
  7963. background-color:rgba(255, 255, 255, 0);
  7964. border:none;
  7965. border-left:0px;
  7966. border-top:0px;
  7967. border-right:0px;
  7968. border-radius:0px;
  7969. border-bottom-right-radius:0px;
  7970. border-bottom-left-radius:0px;
  7971. -moz-box-shadow:none;
  7972. -webkit-box-shadow:none;
  7973. box-shadow:none;
  7974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7975. font-weight:400;
  7976. font-style:normal;
  7977. font-size:14px;
  7978. color:#AAAAAA;
  7979. line-height:30px;
  7980. }
  7981. #u10910 {
  7982. border-width:0px;
  7983. position:absolute;
  7984. left:957px;
  7985. top:549px;
  7986. width:71px;
  7987. height:30px;
  7988. display:flex;
  7989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7990. font-weight:400;
  7991. font-style:normal;
  7992. font-size:14px;
  7993. color:#AAAAAA;
  7994. line-height:30px;
  7995. }
  7996. #u10910 .text {
  7997. position:absolute;
  7998. align-self:center;
  7999. padding:0px 0px 0px 0px;
  8000. box-sizing:border-box;
  8001. width:100%;
  8002. }
  8003. #u10910_text {
  8004. border-width:0px;
  8005. white-space:nowrap;
  8006. text-transform:none;
  8007. }
  8008. #u10911_div {
  8009. border-width:0px;
  8010. position:absolute;
  8011. left:0px;
  8012. top:0px;
  8013. width:52px;
  8014. height:30px;
  8015. background:inherit;
  8016. background-color:rgba(255, 255, 255, 0);
  8017. border:none;
  8018. border-left:0px;
  8019. border-top:0px;
  8020. border-right:0px;
  8021. border-radius:0px;
  8022. border-bottom-right-radius:0px;
  8023. border-bottom-left-radius:0px;
  8024. -moz-box-shadow:none;
  8025. -webkit-box-shadow:none;
  8026. box-shadow:none;
  8027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8028. font-weight:400;
  8029. font-style:normal;
  8030. font-size:14px;
  8031. text-align:right;
  8032. line-height:30px;
  8033. }
  8034. #u10911 {
  8035. border-width:0px;
  8036. position:absolute;
  8037. left:1031px;
  8038. top:549px;
  8039. width:52px;
  8040. height:30px;
  8041. display:flex;
  8042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8043. font-weight:400;
  8044. font-style:normal;
  8045. font-size:14px;
  8046. text-align:right;
  8047. line-height:30px;
  8048. }
  8049. #u10911 .text {
  8050. position:absolute;
  8051. align-self:center;
  8052. padding:0px 0px 0px 0px;
  8053. box-sizing:border-box;
  8054. width:100%;
  8055. }
  8056. #u10911_text {
  8057. border-width:0px;
  8058. white-space:nowrap;
  8059. text-transform:none;
  8060. }
  8061. #u10912_div {
  8062. border-width:0px;
  8063. position:absolute;
  8064. left:0px;
  8065. top:0px;
  8066. width:57px;
  8067. height:30px;
  8068. background:inherit;
  8069. background-color:rgba(255, 255, 255, 0);
  8070. border:none;
  8071. border-left:0px;
  8072. border-top:0px;
  8073. border-right:0px;
  8074. border-radius:0px;
  8075. border-bottom-right-radius:0px;
  8076. border-bottom-left-radius:0px;
  8077. -moz-box-shadow:none;
  8078. -webkit-box-shadow:none;
  8079. box-shadow:none;
  8080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8081. font-weight:400;
  8082. font-style:normal;
  8083. font-size:14px;
  8084. line-height:30px;
  8085. }
  8086. #u10912 {
  8087. border-width:0px;
  8088. position:absolute;
  8089. left:1033px;
  8090. top:600px;
  8091. width:57px;
  8092. height:30px;
  8093. display:flex;
  8094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8095. font-weight:400;
  8096. font-style:normal;
  8097. font-size:14px;
  8098. line-height:30px;
  8099. }
  8100. #u10912 .text {
  8101. position:absolute;
  8102. align-self:center;
  8103. padding:0px 0px 0px 0px;
  8104. box-sizing:border-box;
  8105. width:100%;
  8106. }
  8107. #u10912_text {
  8108. border-width:0px;
  8109. white-space:nowrap;
  8110. text-transform:none;
  8111. }
  8112. #u10913_img {
  8113. border-width:0px;
  8114. position:absolute;
  8115. left:0px;
  8116. top:0px;
  8117. width:100px;
  8118. height:74px;
  8119. }
  8120. #u10913 {
  8121. border-width:0px;
  8122. position:absolute;
  8123. left:957px;
  8124. top:721px;
  8125. width:100px;
  8126. height:74px;
  8127. display:flex;
  8128. }
  8129. #u10913 .text {
  8130. position:absolute;
  8131. align-self:center;
  8132. padding:2px 2px 2px 2px;
  8133. box-sizing:border-box;
  8134. width:100%;
  8135. }
  8136. #u10913_text {
  8137. border-width:0px;
  8138. word-wrap:break-word;
  8139. text-transform:none;
  8140. visibility:hidden;
  8141. }
  8142. #u10914_img {
  8143. border-width:0px;
  8144. position:absolute;
  8145. left:0px;
  8146. top:0px;
  8147. width:100px;
  8148. height:74px;
  8149. }
  8150. #u10914 {
  8151. border-width:0px;
  8152. position:absolute;
  8153. left:1067px;
  8154. top:721px;
  8155. width:100px;
  8156. height:74px;
  8157. display:flex;
  8158. }
  8159. #u10914 .text {
  8160. position:absolute;
  8161. align-self:center;
  8162. padding:2px 2px 2px 2px;
  8163. box-sizing:border-box;
  8164. width:100%;
  8165. }
  8166. #u10914_text {
  8167. border-width:0px;
  8168. word-wrap:break-word;
  8169. text-transform:none;
  8170. visibility:hidden;
  8171. }
  8172. #u10915_div {
  8173. border-width:0px;
  8174. position:absolute;
  8175. left:0px;
  8176. top:0px;
  8177. width:335px;
  8178. height:80px;
  8179. background:inherit;
  8180. background-color:rgba(255, 255, 255, 0);
  8181. border:none;
  8182. border-left:0px;
  8183. border-top:0px;
  8184. border-right:0px;
  8185. border-radius:0px;
  8186. border-bottom-right-radius:0px;
  8187. border-bottom-left-radius:0px;
  8188. -moz-box-shadow:none;
  8189. -webkit-box-shadow:none;
  8190. box-shadow:none;
  8191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8192. font-weight:400;
  8193. font-style:normal;
  8194. font-size:10px;
  8195. color:#7F7F7F;
  8196. line-height:20px;
  8197. }
  8198. #u10915 {
  8199. border-width:0px;
  8200. position:absolute;
  8201. left:951px;
  8202. top:821px;
  8203. width:335px;
  8204. height:80px;
  8205. display:flex;
  8206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8207. font-weight:400;
  8208. font-style:normal;
  8209. font-size:10px;
  8210. color:#7F7F7F;
  8211. line-height:20px;
  8212. }
  8213. #u10915 .text {
  8214. position:absolute;
  8215. align-self:flex-start;
  8216. padding:0px 0px 0px 0px;
  8217. box-sizing:border-box;
  8218. width:100%;
  8219. }
  8220. #u10915_text {
  8221. border-width:0px;
  8222. word-wrap:break-word;
  8223. text-transform:none;
  8224. }
  8225. #u10916 {
  8226. border-width:0px;
  8227. position:absolute;
  8228. left:0px;
  8229. top:0px;
  8230. width:0px;
  8231. height:0px;
  8232. }
  8233. #u10917_div {
  8234. border-width:0px;
  8235. position:absolute;
  8236. left:0px;
  8237. top:0px;
  8238. width:359px;
  8239. height:260px;
  8240. background:inherit;
  8241. background-color:rgba(255, 255, 255, 1);
  8242. border:none;
  8243. border-left:0px;
  8244. border-top:0px;
  8245. border-right:0px;
  8246. border-radius:4px;
  8247. border-bottom-right-radius:0px;
  8248. border-bottom-left-radius:0px;
  8249. -moz-box-shadow:none;
  8250. -webkit-box-shadow:none;
  8251. box-shadow:none;
  8252. }
  8253. #u10917 {
  8254. border-width:0px;
  8255. position:absolute;
  8256. left:945px;
  8257. top:218px;
  8258. width:359px;
  8259. height:260px;
  8260. display:flex;
  8261. }
  8262. #u10917 .text {
  8263. position:absolute;
  8264. align-self:center;
  8265. padding:2px 2px 2px 2px;
  8266. box-sizing:border-box;
  8267. width:100%;
  8268. }
  8269. #u10917_text {
  8270. border-width:0px;
  8271. word-wrap:break-word;
  8272. text-transform:none;
  8273. visibility:hidden;
  8274. }
  8275. #u10918_div {
  8276. border-width:0px;
  8277. position:absolute;
  8278. left:0px;
  8279. top:0px;
  8280. width:71px;
  8281. height:240px;
  8282. background:inherit;
  8283. background-color:rgba(255, 255, 255, 0);
  8284. border:none;
  8285. border-left:0px;
  8286. border-top:0px;
  8287. border-right:0px;
  8288. border-radius:0px;
  8289. border-bottom-right-radius:0px;
  8290. border-bottom-left-radius:0px;
  8291. -moz-box-shadow:none;
  8292. -webkit-box-shadow:none;
  8293. box-shadow:none;
  8294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8295. font-weight:400;
  8296. font-style:normal;
  8297. font-size:14px;
  8298. line-height:40px;
  8299. }
  8300. #u10918 {
  8301. border-width:0px;
  8302. position:absolute;
  8303. left:963px;
  8304. top:228px;
  8305. width:71px;
  8306. height:240px;
  8307. display:flex;
  8308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8309. font-weight:400;
  8310. font-style:normal;
  8311. font-size:14px;
  8312. line-height:40px;
  8313. }
  8314. #u10918 .text {
  8315. position:absolute;
  8316. align-self:flex-start;
  8317. padding:0px 0px 0px 0px;
  8318. box-sizing:border-box;
  8319. width:100%;
  8320. }
  8321. #u10918_text {
  8322. border-width:0px;
  8323. white-space:nowrap;
  8324. text-transform:none;
  8325. }
  8326. #u10919_div {
  8327. border-width:0px;
  8328. position:absolute;
  8329. left:0px;
  8330. top:0px;
  8331. width:265px;
  8332. height:240px;
  8333. background:inherit;
  8334. background-color:rgba(255, 255, 255, 0);
  8335. border:none;
  8336. border-left:0px;
  8337. border-top:0px;
  8338. border-right:0px;
  8339. border-radius:0px;
  8340. border-bottom-right-radius:0px;
  8341. border-bottom-left-radius:0px;
  8342. -moz-box-shadow:none;
  8343. -webkit-box-shadow:none;
  8344. box-shadow:none;
  8345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8346. font-weight:400;
  8347. font-style:normal;
  8348. line-height:40px;
  8349. }
  8350. #u10919 {
  8351. border-width:0px;
  8352. position:absolute;
  8353. left:1041px;
  8354. top:228px;
  8355. width:265px;
  8356. height:240px;
  8357. display:flex;
  8358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8359. font-weight:400;
  8360. font-style:normal;
  8361. line-height:40px;
  8362. }
  8363. #u10919 .text {
  8364. position:absolute;
  8365. align-self:flex-start;
  8366. padding:0px 0px 0px 0px;
  8367. box-sizing:border-box;
  8368. width:100%;
  8369. }
  8370. #u10919_text {
  8371. border-width:0px;
  8372. white-space:nowrap;
  8373. text-transform:none;
  8374. }
  8375. #u10920 {
  8376. border-width:0px;
  8377. position:absolute;
  8378. left:0px;
  8379. top:0px;
  8380. width:0px;
  8381. height:0px;
  8382. }
  8383. #u10921_div {
  8384. border-width:0px;
  8385. position:absolute;
  8386. left:0px;
  8387. top:0px;
  8388. width:359px;
  8389. height:100px;
  8390. background:inherit;
  8391. background-color:rgba(255, 255, 255, 1);
  8392. border:none;
  8393. border-left:0px;
  8394. border-top:0px;
  8395. border-right:0px;
  8396. border-radius:4px;
  8397. border-bottom-right-radius:0px;
  8398. border-bottom-left-radius:0px;
  8399. -moz-box-shadow:none;
  8400. -webkit-box-shadow:none;
  8401. box-shadow:none;
  8402. }
  8403. #u10921 {
  8404. border-width:0px;
  8405. position:absolute;
  8406. left:945px;
  8407. top:117px;
  8408. width:359px;
  8409. height:100px;
  8410. display:flex;
  8411. }
  8412. #u10921 .text {
  8413. position:absolute;
  8414. align-self:center;
  8415. padding:2px 2px 2px 2px;
  8416. box-sizing:border-box;
  8417. width:100%;
  8418. }
  8419. #u10921_text {
  8420. border-width:0px;
  8421. word-wrap:break-word;
  8422. text-transform:none;
  8423. }
  8424. #u10922_div {
  8425. border-width:0px;
  8426. position:absolute;
  8427. left:0px;
  8428. top:0px;
  8429. width:150px;
  8430. height:80px;
  8431. background:inherit;
  8432. background-color:rgba(255, 255, 255, 0);
  8433. border:none;
  8434. border-left:0px;
  8435. border-top:0px;
  8436. border-right:0px;
  8437. border-radius:0px;
  8438. border-bottom-right-radius:0px;
  8439. border-bottom-left-radius:0px;
  8440. -moz-box-shadow:none;
  8441. -webkit-box-shadow:none;
  8442. box-shadow:none;
  8443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8444. font-weight:400;
  8445. font-style:normal;
  8446. font-size:14px;
  8447. line-height:40px;
  8448. }
  8449. #u10922 {
  8450. border-width:0px;
  8451. position:absolute;
  8452. left:963px;
  8453. top:127px;
  8454. width:150px;
  8455. height:80px;
  8456. display:flex;
  8457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8458. font-weight:400;
  8459. font-style:normal;
  8460. font-size:14px;
  8461. line-height:40px;
  8462. }
  8463. #u10922 .text {
  8464. position:absolute;
  8465. align-self:flex-start;
  8466. padding:0px 0px 0px 0px;
  8467. box-sizing:border-box;
  8468. width:100%;
  8469. }
  8470. #u10922_text {
  8471. border-width:0px;
  8472. white-space:nowrap;
  8473. text-transform:none;
  8474. }
  8475. #u10923_div {
  8476. border-width:0px;
  8477. position:absolute;
  8478. left:0px;
  8479. top:0px;
  8480. width:43px;
  8481. height:40px;
  8482. background:inherit;
  8483. background-color:rgba(255, 255, 255, 0);
  8484. border:none;
  8485. border-left:0px;
  8486. border-top:0px;
  8487. border-right:0px;
  8488. border-radius:0px;
  8489. border-bottom-right-radius:0px;
  8490. border-bottom-left-radius:0px;
  8491. -moz-box-shadow:none;
  8492. -webkit-box-shadow:none;
  8493. box-shadow:none;
  8494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8495. font-weight:400;
  8496. font-style:normal;
  8497. font-size:14px;
  8498. color:#F59A23;
  8499. line-height:40px;
  8500. }
  8501. #u10923 {
  8502. border-width:0px;
  8503. position:absolute;
  8504. left:1041px;
  8505. top:127px;
  8506. width:43px;
  8507. height:40px;
  8508. display:flex;
  8509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8510. font-weight:400;
  8511. font-style:normal;
  8512. font-size:14px;
  8513. color:#F59A23;
  8514. line-height:40px;
  8515. }
  8516. #u10923 .text {
  8517. position:absolute;
  8518. align-self:flex-start;
  8519. padding:0px 0px 0px 0px;
  8520. box-sizing:border-box;
  8521. width:100%;
  8522. }
  8523. #u10923_text {
  8524. border-width:0px;
  8525. white-space:nowrap;
  8526. text-transform:none;
  8527. }
  8528. #u10924_div {
  8529. border-width:0px;
  8530. position:absolute;
  8531. left:0px;
  8532. top:0px;
  8533. width:56px;
  8534. height:30px;
  8535. background:inherit;
  8536. background-color:rgba(255, 255, 255, 0);
  8537. border:none;
  8538. border-left:0px;
  8539. border-top:0px;
  8540. border-right:0px;
  8541. border-radius:0px;
  8542. border-bottom-right-radius:0px;
  8543. border-bottom-left-radius:0px;
  8544. -moz-box-shadow:none;
  8545. -webkit-box-shadow:none;
  8546. box-shadow:none;
  8547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8548. font-weight:400;
  8549. font-style:normal;
  8550. font-size:12px;
  8551. color:#1890FF;
  8552. line-height:30px;
  8553. }
  8554. #u10924 {
  8555. border-width:0px;
  8556. position:absolute;
  8557. left:1696px;
  8558. top:549px;
  8559. width:56px;
  8560. height:30px;
  8561. display:flex;
  8562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8563. font-weight:400;
  8564. font-style:normal;
  8565. font-size:12px;
  8566. color:#1890FF;
  8567. line-height:30px;
  8568. }
  8569. #u10924 .text {
  8570. position:absolute;
  8571. align-self:center;
  8572. padding:0px 0px 0px 0px;
  8573. box-sizing:border-box;
  8574. width:100%;
  8575. }
  8576. #u10924_text {
  8577. border-width:0px;
  8578. white-space:nowrap;
  8579. text-transform:none;
  8580. }