styles.css 136 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2604px;
  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. #u12427_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u12427 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u12427 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u12427_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u12428_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. box-sizing:border-box;
  59. border-width:1px;
  60. border-style:solid;
  61. border-color:rgba(215, 215, 215, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. }
  72. #u12428 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u12428 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u12428_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u12429 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u12430_div {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:88px;
  108. height:32px;
  109. background:inherit;
  110. background-color:rgba(255, 255, 255, 1);
  111. box-sizing:border-box;
  112. border-width:1px;
  113. border-style:solid;
  114. border-color:rgba(242, 242, 242, 1);
  115. border-radius:33px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. }
  120. #u12430 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u12430 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u12430_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u12431 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u12432_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u12432 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u12432 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u12432_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u12433_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u12433 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u12433 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u12433_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u12434 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u12435_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u12435 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u12435 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u12435_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u12436_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u12436 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u12436 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u12436_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u12437_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u12437 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u12437 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u12437_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u12438_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u12438 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u12438 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u12438_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u12439_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u12439 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u12439 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u12439_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u12440_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:50px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 1);
  381. box-sizing:border-box;
  382. border-width:1px;
  383. border-style:solid;
  384. border-color:rgba(242, 242, 242, 1);
  385. border-radius:26px;
  386. border-top-left-radius:0px;
  387. border-top-right-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. }
  392. #u12440 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u12440 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u12440_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u12441 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u12442_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u12442 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u12442 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u12442_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u12443_div {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:25px;
  458. height:17px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:12px;
  470. }
  471. #u12443 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u12443 .text {
  485. position:absolute;
  486. align-self:flex-start;
  487. padding:0px 0px 0px 0px;
  488. box-sizing:border-box;
  489. width:100%;
  490. }
  491. #u12443_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u12444 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u12445_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u12445 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u12445 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u12445_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u12446_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:25px;
  540. height:17px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:12px;
  552. }
  553. #u12446 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u12446 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 0px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u12446_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u12447_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:375px;
  584. height:681px;
  585. background:inherit;
  586. background-color:rgba(242, 242, 242, 0.462745098039216);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u12447 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u12447 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u12447_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u12448 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u12449_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u12449 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u12449 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u12449_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u12450_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:37px;
  659. height:17px;
  660. background:inherit;
  661. background-color:rgba(255, 255, 255, 0);
  662. border:none;
  663. border-radius:0px;
  664. -moz-box-shadow:none;
  665. -webkit-box-shadow:none;
  666. box-shadow:none;
  667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:12px;
  671. }
  672. #u12450 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u12450 .text {
  686. position:absolute;
  687. align-self:flex-start;
  688. padding:0px 0px 0px 0px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u12450_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u12451 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u12452_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u12452 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u12452 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u12452_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u12453_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:37px;
  741. height:17px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. }
  754. #u12453 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u12453 .text {
  768. position:absolute;
  769. align-self:flex-start;
  770. padding:0px 0px 0px 0px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u12453_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u12454_img {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:949px;
  786. }
  787. #u12454 {
  788. border-width:0px;
  789. position:absolute;
  790. left:29px;
  791. top:106px;
  792. width:375px;
  793. height:949px;
  794. display:flex;
  795. }
  796. #u12454 .text {
  797. position:absolute;
  798. align-self:center;
  799. padding:2px 2px 2px 2px;
  800. box-sizing:border-box;
  801. width:100%;
  802. }
  803. #u12454_text {
  804. border-width:0px;
  805. word-wrap:break-word;
  806. text-transform:none;
  807. visibility:hidden;
  808. }
  809. #u12455 {
  810. border-width:0px;
  811. position:absolute;
  812. left:0px;
  813. top:0px;
  814. width:0px;
  815. height:0px;
  816. }
  817. #u12456_img {
  818. border-width:0px;
  819. position:absolute;
  820. left:0px;
  821. top:0px;
  822. width:11px;
  823. height:18px;
  824. }
  825. #u12456 {
  826. border-width:0px;
  827. position:absolute;
  828. left:40px;
  829. top:79px;
  830. width:11px;
  831. height:18px;
  832. display:flex;
  833. }
  834. #u12456 .text {
  835. position:absolute;
  836. align-self:center;
  837. padding:2px 2px 2px 2px;
  838. box-sizing:border-box;
  839. width:100%;
  840. }
  841. #u12456_text {
  842. border-width:0px;
  843. word-wrap:break-word;
  844. text-transform:none;
  845. visibility:hidden;
  846. }
  847. #u12457 {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:0px;
  853. height:0px;
  854. }
  855. #u12458_div {
  856. border-width:0px;
  857. position:absolute;
  858. left:0px;
  859. top:0px;
  860. width:349px;
  861. height:180px;
  862. background:inherit;
  863. background-color:rgba(255, 255, 255, 1);
  864. border:none;
  865. border-radius:4px;
  866. -moz-box-shadow:none;
  867. -webkit-box-shadow:none;
  868. box-shadow:none;
  869. }
  870. #u12458 {
  871. border-width:0px;
  872. position:absolute;
  873. left:42px;
  874. top:116px;
  875. width:349px;
  876. height:180px;
  877. display:flex;
  878. }
  879. #u12458 .text {
  880. position:absolute;
  881. align-self:center;
  882. padding:2px 2px 2px 2px;
  883. box-sizing:border-box;
  884. width:100%;
  885. }
  886. #u12458_text {
  887. border-width:0px;
  888. word-wrap:break-word;
  889. text-transform:none;
  890. visibility:hidden;
  891. }
  892. #u12459_div {
  893. border-width:0px;
  894. position:absolute;
  895. left:0px;
  896. top:0px;
  897. width:95px;
  898. height:25px;
  899. background:inherit;
  900. background-color:rgba(255, 255, 255, 0);
  901. border:none;
  902. border-radius:0px;
  903. -moz-box-shadow:none;
  904. -webkit-box-shadow:none;
  905. box-shadow:none;
  906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  907. font-weight:400;
  908. font-style:normal;
  909. font-size:18px;
  910. }
  911. #u12459 {
  912. border-width:0px;
  913. position:absolute;
  914. left:62px;
  915. top:130px;
  916. width:95px;
  917. height:25px;
  918. display:flex;
  919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  920. font-weight:400;
  921. font-style:normal;
  922. font-size:18px;
  923. }
  924. #u12459 .text {
  925. position:absolute;
  926. align-self:flex-start;
  927. padding:0px 0px 0px 0px;
  928. box-sizing:border-box;
  929. width:100%;
  930. }
  931. #u12459_text {
  932. border-width:0px;
  933. white-space:nowrap;
  934. text-transform:none;
  935. }
  936. #u12460_div {
  937. border-width:0px;
  938. position:absolute;
  939. left:0px;
  940. top:0px;
  941. width:134px;
  942. height:40px;
  943. background:inherit;
  944. background-color:rgba(0, 191, 191, 0);
  945. border:none;
  946. border-radius:0px;
  947. -moz-box-shadow:none;
  948. -webkit-box-shadow:none;
  949. box-shadow:none;
  950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  951. font-weight:400;
  952. font-style:normal;
  953. font-size:12px;
  954. color:#555555;
  955. line-height:20px;
  956. }
  957. #u12460 {
  958. border-width:0px;
  959. position:absolute;
  960. left:62px;
  961. top:155px;
  962. width:134px;
  963. height:40px;
  964. display:flex;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:12px;
  969. color:#555555;
  970. line-height:20px;
  971. }
  972. #u12460 .text {
  973. position:absolute;
  974. align-self:flex-start;
  975. padding:0px 2px 0px 2px;
  976. box-sizing:border-box;
  977. width:100%;
  978. }
  979. #u12460_text {
  980. border-width:0px;
  981. white-space:nowrap;
  982. text-transform:none;
  983. }
  984. #u12461_img {
  985. border-width:0px;
  986. position:absolute;
  987. left:0px;
  988. top:0px;
  989. width:67px;
  990. height:52px;
  991. }
  992. #u12461 {
  993. border-width:0px;
  994. position:absolute;
  995. left:298px;
  996. top:134px;
  997. width:67px;
  998. height:52px;
  999. display:flex;
  1000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1001. font-weight:400;
  1002. font-style:normal;
  1003. }
  1004. #u12461 .text {
  1005. position:absolute;
  1006. align-self:center;
  1007. padding:2px 2px 2px 2px;
  1008. box-sizing:border-box;
  1009. width:100%;
  1010. }
  1011. #u12461_text {
  1012. border-width:0px;
  1013. word-wrap:break-word;
  1014. text-transform:none;
  1015. }
  1016. #u12462_img {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:0px;
  1020. top:0px;
  1021. width:310px;
  1022. height:2px;
  1023. }
  1024. #u12462 {
  1025. border-width:0px;
  1026. position:absolute;
  1027. left:62px;
  1028. top:210px;
  1029. width:309px;
  1030. height:1px;
  1031. display:flex;
  1032. }
  1033. #u12462 .text {
  1034. position:absolute;
  1035. align-self:center;
  1036. padding:2px 2px 2px 2px;
  1037. box-sizing:border-box;
  1038. width:100%;
  1039. }
  1040. #u12462_text {
  1041. border-width:0px;
  1042. word-wrap:break-word;
  1043. text-transform:none;
  1044. visibility:hidden;
  1045. }
  1046. #u12463_div {
  1047. border-width:0px;
  1048. position:absolute;
  1049. left:0px;
  1050. top:0px;
  1051. width:75px;
  1052. height:20px;
  1053. background:inherit;
  1054. background-color:rgba(255, 255, 255, 0);
  1055. border:none;
  1056. border-radius:0px;
  1057. -moz-box-shadow:none;
  1058. -webkit-box-shadow:none;
  1059. box-shadow:none;
  1060. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1061. font-weight:500;
  1062. font-style:normal;
  1063. font-size:14px;
  1064. text-align:center;
  1065. }
  1066. #u12463 {
  1067. border-width:0px;
  1068. position:absolute;
  1069. left:62px;
  1070. top:226px;
  1071. width:75px;
  1072. height:20px;
  1073. display:flex;
  1074. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1075. font-weight:500;
  1076. font-style:normal;
  1077. font-size:14px;
  1078. text-align:center;
  1079. }
  1080. #u12463 .text {
  1081. position:absolute;
  1082. align-self:flex-start;
  1083. padding:0px 0px 0px 0px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u12463_text {
  1088. border-width:0px;
  1089. white-space:nowrap;
  1090. text-transform:none;
  1091. }
  1092. #u12464_div {
  1093. border-width:0px;
  1094. position:absolute;
  1095. left:0px;
  1096. top:0px;
  1097. width:49px;
  1098. height:17px;
  1099. background:inherit;
  1100. background-color:rgba(255, 255, 255, 0);
  1101. border:none;
  1102. border-radius:0px;
  1103. -moz-box-shadow:none;
  1104. -webkit-box-shadow:none;
  1105. box-shadow:none;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:12px;
  1110. color:#555555;
  1111. text-align:center;
  1112. }
  1113. #u12464 {
  1114. border-width:0px;
  1115. position:absolute;
  1116. left:72px;
  1117. top:256px;
  1118. width:49px;
  1119. height:17px;
  1120. display:flex;
  1121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1122. font-weight:400;
  1123. font-style:normal;
  1124. font-size:12px;
  1125. color:#555555;
  1126. text-align:center;
  1127. }
  1128. #u12464 .text {
  1129. position:absolute;
  1130. align-self:flex-start;
  1131. padding:0px 0px 0px 0px;
  1132. box-sizing:border-box;
  1133. width:100%;
  1134. }
  1135. #u12464_text {
  1136. border-width:0px;
  1137. white-space:nowrap;
  1138. text-transform:none;
  1139. }
  1140. #u12465_div {
  1141. border-width:0px;
  1142. position:absolute;
  1143. left:0px;
  1144. top:0px;
  1145. width:35px;
  1146. height:20px;
  1147. background:inherit;
  1148. background-color:rgba(255, 255, 255, 0);
  1149. border:none;
  1150. border-radius:0px;
  1151. -moz-box-shadow:none;
  1152. -webkit-box-shadow:none;
  1153. box-shadow:none;
  1154. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1155. font-weight:500;
  1156. font-style:normal;
  1157. font-size:14px;
  1158. text-align:center;
  1159. }
  1160. #u12465 {
  1161. border-width:0px;
  1162. position:absolute;
  1163. left:202px;
  1164. top:226px;
  1165. width:35px;
  1166. height:20px;
  1167. display:flex;
  1168. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1169. font-weight:500;
  1170. font-style:normal;
  1171. font-size:14px;
  1172. text-align:center;
  1173. }
  1174. #u12465 .text {
  1175. position:absolute;
  1176. align-self:flex-start;
  1177. padding:0px 0px 0px 0px;
  1178. box-sizing:border-box;
  1179. width:100%;
  1180. }
  1181. #u12465_text {
  1182. border-width:0px;
  1183. white-space:nowrap;
  1184. text-transform:none;
  1185. }
  1186. #u12466_div {
  1187. border-width:0px;
  1188. position:absolute;
  1189. left:0px;
  1190. top:0px;
  1191. width:49px;
  1192. height:17px;
  1193. background:inherit;
  1194. background-color:rgba(255, 255, 255, 0);
  1195. border:none;
  1196. border-radius:0px;
  1197. -moz-box-shadow:none;
  1198. -webkit-box-shadow:none;
  1199. box-shadow:none;
  1200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1201. font-weight:400;
  1202. font-style:normal;
  1203. font-size:12px;
  1204. color:#555555;
  1205. text-align:center;
  1206. }
  1207. #u12466 {
  1208. border-width:0px;
  1209. position:absolute;
  1210. left:192px;
  1211. top:256px;
  1212. width:49px;
  1213. height:17px;
  1214. display:flex;
  1215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1216. font-weight:400;
  1217. font-style:normal;
  1218. font-size:12px;
  1219. color:#555555;
  1220. text-align:center;
  1221. }
  1222. #u12466 .text {
  1223. position:absolute;
  1224. align-self:flex-start;
  1225. padding:0px 0px 0px 0px;
  1226. box-sizing:border-box;
  1227. width:100%;
  1228. }
  1229. #u12466_text {
  1230. border-width:0px;
  1231. white-space:nowrap;
  1232. text-transform:none;
  1233. }
  1234. #u12467_div {
  1235. border-width:0px;
  1236. position:absolute;
  1237. left:0px;
  1238. top:0px;
  1239. width:48px;
  1240. height:20px;
  1241. background:inherit;
  1242. background-color:rgba(255, 255, 255, 0);
  1243. border:none;
  1244. border-radius:0px;
  1245. -moz-box-shadow:none;
  1246. -webkit-box-shadow:none;
  1247. box-shadow:none;
  1248. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1249. font-weight:500;
  1250. font-style:normal;
  1251. font-size:14px;
  1252. text-align:center;
  1253. }
  1254. #u12467 {
  1255. border-width:0px;
  1256. position:absolute;
  1257. left:317px;
  1258. top:226px;
  1259. width:48px;
  1260. height:20px;
  1261. display:flex;
  1262. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1263. font-weight:500;
  1264. font-style:normal;
  1265. font-size:14px;
  1266. text-align:center;
  1267. }
  1268. #u12467 .text {
  1269. position:absolute;
  1270. align-self:flex-start;
  1271. padding:0px 0px 0px 0px;
  1272. box-sizing:border-box;
  1273. width:100%;
  1274. }
  1275. #u12467_text {
  1276. border-width:0px;
  1277. white-space:nowrap;
  1278. text-transform:none;
  1279. }
  1280. #u12468_div {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:49px;
  1286. height:17px;
  1287. background:inherit;
  1288. background-color:rgba(255, 255, 255, 0);
  1289. border:none;
  1290. border-radius:0px;
  1291. -moz-box-shadow:none;
  1292. -webkit-box-shadow:none;
  1293. box-shadow:none;
  1294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1295. font-weight:400;
  1296. font-style:normal;
  1297. font-size:12px;
  1298. color:#555555;
  1299. text-align:center;
  1300. }
  1301. #u12468 {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:314px;
  1305. top:256px;
  1306. width:49px;
  1307. height:17px;
  1308. display:flex;
  1309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1310. font-weight:400;
  1311. font-style:normal;
  1312. font-size:12px;
  1313. color:#555555;
  1314. text-align:center;
  1315. }
  1316. #u12468 .text {
  1317. position:absolute;
  1318. align-self:flex-start;
  1319. padding:0px 0px 0px 0px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u12468_text {
  1324. border-width:0px;
  1325. white-space:nowrap;
  1326. text-transform:none;
  1327. }
  1328. #u12469_div {
  1329. border-width:0px;
  1330. position:absolute;
  1331. left:0px;
  1332. top:0px;
  1333. width:349px;
  1334. height:253px;
  1335. background:inherit;
  1336. background-color:rgba(255, 255, 255, 1);
  1337. border:none;
  1338. border-radius:4px;
  1339. -moz-box-shadow:none;
  1340. -webkit-box-shadow:none;
  1341. box-shadow:none;
  1342. }
  1343. #u12469 {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:42px;
  1347. top:306px;
  1348. width:349px;
  1349. height:253px;
  1350. display:flex;
  1351. }
  1352. #u12469 .text {
  1353. position:absolute;
  1354. align-self:center;
  1355. padding:2px 2px 2px 2px;
  1356. box-sizing:border-box;
  1357. width:100%;
  1358. }
  1359. #u12469_text {
  1360. border-width:0px;
  1361. word-wrap:break-word;
  1362. text-transform:none;
  1363. visibility:hidden;
  1364. }
  1365. #u12470_div {
  1366. border-width:0px;
  1367. position:absolute;
  1368. left:0px;
  1369. top:0px;
  1370. width:57px;
  1371. height:30px;
  1372. background:inherit;
  1373. background-color:rgba(255, 255, 255, 0);
  1374. border:none;
  1375. border-left:0px;
  1376. border-top:0px;
  1377. border-right:0px;
  1378. border-radius:0px;
  1379. border-bottom-right-radius:0px;
  1380. border-bottom-left-radius:0px;
  1381. -moz-box-shadow:none;
  1382. -webkit-box-shadow:none;
  1383. box-shadow:none;
  1384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1385. font-weight:400;
  1386. font-style:normal;
  1387. font-size:14px;
  1388. line-height:30px;
  1389. }
  1390. #u12470 {
  1391. border-width:0px;
  1392. position:absolute;
  1393. left:56px;
  1394. top:316px;
  1395. width:57px;
  1396. height:30px;
  1397. display:flex;
  1398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1399. font-weight:400;
  1400. font-style:normal;
  1401. font-size:14px;
  1402. line-height:30px;
  1403. }
  1404. #u12470 .text {
  1405. position:absolute;
  1406. align-self:flex-start;
  1407. padding:0px 0px 0px 0px;
  1408. box-sizing:border-box;
  1409. width:100%;
  1410. }
  1411. #u12470_text {
  1412. border-width:0px;
  1413. white-space:nowrap;
  1414. text-transform:none;
  1415. }
  1416. #u12471_div {
  1417. border-width:0px;
  1418. position:absolute;
  1419. left:0px;
  1420. top:0px;
  1421. width:64px;
  1422. height:30px;
  1423. background:inherit;
  1424. background-color:rgba(255, 255, 255, 0);
  1425. border:none;
  1426. border-left:0px;
  1427. border-top:0px;
  1428. border-right:0px;
  1429. border-radius:0px;
  1430. border-bottom-right-radius:0px;
  1431. border-bottom-left-radius:0px;
  1432. -moz-box-shadow:none;
  1433. -webkit-box-shadow:none;
  1434. box-shadow:none;
  1435. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1436. font-weight:500;
  1437. font-style:normal;
  1438. font-size:14px;
  1439. color:#0089FE;
  1440. line-height:30px;
  1441. }
  1442. #u12471 {
  1443. border-width:0px;
  1444. position:absolute;
  1445. left:56px;
  1446. top:383px;
  1447. width:64px;
  1448. height:30px;
  1449. display:flex;
  1450. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1451. font-weight:500;
  1452. font-style:normal;
  1453. font-size:14px;
  1454. color:#0089FE;
  1455. line-height:30px;
  1456. }
  1457. #u12471 .text {
  1458. position:absolute;
  1459. align-self:flex-start;
  1460. padding:0px 0px 0px 0px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u12471_text {
  1465. border-width:0px;
  1466. white-space:nowrap;
  1467. text-transform:none;
  1468. }
  1469. #u12472_div {
  1470. border-width:0px;
  1471. position:absolute;
  1472. left:0px;
  1473. top:0px;
  1474. width:37px;
  1475. height:30px;
  1476. background:inherit;
  1477. background-color:rgba(255, 255, 255, 0);
  1478. border:none;
  1479. border-left:0px;
  1480. border-top:0px;
  1481. border-right:0px;
  1482. border-radius:0px;
  1483. border-bottom-right-radius:0px;
  1484. border-bottom-left-radius:0px;
  1485. -moz-box-shadow:none;
  1486. -webkit-box-shadow:none;
  1487. box-shadow:none;
  1488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1489. font-weight:400;
  1490. font-style:normal;
  1491. font-size:12px;
  1492. color:#7F7F7F;
  1493. line-height:30px;
  1494. }
  1495. #u12472 {
  1496. border-width:0px;
  1497. position:absolute;
  1498. left:56px;
  1499. top:352px;
  1500. width:37px;
  1501. height:30px;
  1502. display:flex;
  1503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1504. font-weight:400;
  1505. font-style:normal;
  1506. font-size:12px;
  1507. color:#7F7F7F;
  1508. line-height:30px;
  1509. }
  1510. #u12472 .text {
  1511. position:absolute;
  1512. align-self:flex-start;
  1513. padding:0px 0px 0px 0px;
  1514. box-sizing:border-box;
  1515. width:100%;
  1516. }
  1517. #u12472_text {
  1518. border-width:0px;
  1519. white-space:nowrap;
  1520. text-transform:none;
  1521. }
  1522. #u12473 {
  1523. border-width:0px;
  1524. position:absolute;
  1525. left:0px;
  1526. top:0px;
  1527. width:0px;
  1528. height:0px;
  1529. }
  1530. #u12474_div {
  1531. border-width:0px;
  1532. position:absolute;
  1533. left:0px;
  1534. top:0px;
  1535. width:49px;
  1536. height:30px;
  1537. background:inherit;
  1538. background-color:rgba(255, 255, 255, 0);
  1539. border:none;
  1540. border-left:0px;
  1541. border-top:0px;
  1542. border-right:0px;
  1543. border-radius:0px;
  1544. border-bottom-right-radius:0px;
  1545. border-bottom-left-radius:0px;
  1546. -moz-box-shadow:none;
  1547. -webkit-box-shadow:none;
  1548. box-shadow:none;
  1549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1550. font-weight:400;
  1551. font-style:normal;
  1552. font-size:12px;
  1553. color:#7F7F7F;
  1554. line-height:30px;
  1555. }
  1556. #u12474 {
  1557. border-width:0px;
  1558. position:absolute;
  1559. left:56px;
  1560. top:422px;
  1561. width:49px;
  1562. height:30px;
  1563. display:flex;
  1564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1565. font-weight:400;
  1566. font-style:normal;
  1567. font-size:12px;
  1568. color:#7F7F7F;
  1569. line-height:30px;
  1570. }
  1571. #u12474 .text {
  1572. position:absolute;
  1573. align-self:flex-start;
  1574. padding:0px 0px 0px 0px;
  1575. box-sizing:border-box;
  1576. width:100%;
  1577. }
  1578. #u12474_text {
  1579. border-width:0px;
  1580. white-space:nowrap;
  1581. text-transform:none;
  1582. }
  1583. #u12475 {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:0px;
  1587. top:0px;
  1588. width:0px;
  1589. height:0px;
  1590. }
  1591. #u12476_img {
  1592. border-width:0px;
  1593. position:absolute;
  1594. left:0px;
  1595. top:0px;
  1596. width:8px;
  1597. height:13px;
  1598. }
  1599. #u12476 {
  1600. border-width:0px;
  1601. position:absolute;
  1602. left:367px;
  1603. top:431px;
  1604. width:8px;
  1605. height:13px;
  1606. display:flex;
  1607. -webkit-transform:rotate(180deg);
  1608. -moz-transform:rotate(180deg);
  1609. -ms-transform:rotate(180deg);
  1610. transform:rotate(180deg);
  1611. }
  1612. #u12476 .text {
  1613. position:absolute;
  1614. align-self:center;
  1615. padding:2px 2px 2px 2px;
  1616. box-sizing:border-box;
  1617. width:100%;
  1618. }
  1619. #u12476_text {
  1620. border-width:0px;
  1621. word-wrap:break-word;
  1622. text-transform:none;
  1623. visibility:hidden;
  1624. }
  1625. #u12477 {
  1626. border-width:0px;
  1627. position:absolute;
  1628. left:0px;
  1629. top:0px;
  1630. width:0px;
  1631. height:0px;
  1632. }
  1633. #u12478_div {
  1634. border-width:0px;
  1635. position:absolute;
  1636. left:0px;
  1637. top:0px;
  1638. width:349px;
  1639. height:400px;
  1640. background:inherit;
  1641. background-color:rgba(255, 255, 255, 1);
  1642. border:none;
  1643. border-radius:4px;
  1644. -moz-box-shadow:none;
  1645. -webkit-box-shadow:none;
  1646. box-shadow:none;
  1647. }
  1648. #u12478 {
  1649. border-width:0px;
  1650. position:absolute;
  1651. left:42px;
  1652. top:569px;
  1653. width:349px;
  1654. height:400px;
  1655. display:flex;
  1656. }
  1657. #u12478 .text {
  1658. position:absolute;
  1659. align-self:center;
  1660. padding:2px 2px 2px 2px;
  1661. box-sizing:border-box;
  1662. width:100%;
  1663. }
  1664. #u12478_text {
  1665. border-width:0px;
  1666. word-wrap:break-word;
  1667. text-transform:none;
  1668. visibility:hidden;
  1669. }
  1670. #u12479_div {
  1671. border-width:0px;
  1672. position:absolute;
  1673. left:0px;
  1674. top:0px;
  1675. width:57px;
  1676. height:20px;
  1677. background:inherit;
  1678. background-color:rgba(255, 255, 255, 0);
  1679. border:none;
  1680. border-radius:0px;
  1681. -moz-box-shadow:none;
  1682. -webkit-box-shadow:none;
  1683. box-shadow:none;
  1684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1685. font-weight:400;
  1686. font-style:normal;
  1687. font-size:14px;
  1688. }
  1689. #u12479 {
  1690. border-width:0px;
  1691. position:absolute;
  1692. left:57px;
  1693. top:583px;
  1694. width:57px;
  1695. height:20px;
  1696. display:flex;
  1697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1698. font-weight:400;
  1699. font-style:normal;
  1700. font-size:14px;
  1701. }
  1702. #u12479 .text {
  1703. position:absolute;
  1704. align-self:flex-start;
  1705. padding:0px 0px 0px 0px;
  1706. box-sizing:border-box;
  1707. width:100%;
  1708. }
  1709. #u12479_text {
  1710. border-width:0px;
  1711. white-space:nowrap;
  1712. text-transform:none;
  1713. }
  1714. #u12480_div {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:0px;
  1718. top:0px;
  1719. width:128px;
  1720. height:18px;
  1721. background:inherit;
  1722. background-color:rgba(0, 137, 254, 0.12156862745098);
  1723. border:none;
  1724. border-radius:4px;
  1725. -moz-box-shadow:none;
  1726. -webkit-box-shadow:none;
  1727. box-shadow:none;
  1728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1729. font-weight:400;
  1730. font-style:normal;
  1731. font-size:10px;
  1732. color:#0089FE;
  1733. }
  1734. #u12480 {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:167px;
  1738. top:655px;
  1739. width:128px;
  1740. height:18px;
  1741. display:flex;
  1742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1743. font-weight:400;
  1744. font-style:normal;
  1745. font-size:10px;
  1746. color:#0089FE;
  1747. }
  1748. #u12480 .text {
  1749. position:absolute;
  1750. align-self:flex-start;
  1751. padding:2px 5px 2px 5px;
  1752. box-sizing:border-box;
  1753. width:100%;
  1754. }
  1755. #u12480_text {
  1756. border-width:0px;
  1757. white-space:nowrap;
  1758. text-transform:none;
  1759. }
  1760. #u12481_div {
  1761. border-width:0px;
  1762. position:absolute;
  1763. left:0px;
  1764. top:0px;
  1765. width:92px;
  1766. height:25px;
  1767. background:inherit;
  1768. background-color:rgba(255, 255, 255, 0);
  1769. border:none;
  1770. border-radius:0px;
  1771. -moz-box-shadow:none;
  1772. -webkit-box-shadow:none;
  1773. box-shadow:none;
  1774. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1775. font-style:normal;
  1776. line-height:25px;
  1777. }
  1778. #u12481 {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:57px;
  1782. top:651px;
  1783. width:92px;
  1784. height:25px;
  1785. display:flex;
  1786. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1787. font-style:normal;
  1788. line-height:25px;
  1789. }
  1790. #u12481 .text {
  1791. position:absolute;
  1792. align-self:flex-start;
  1793. padding:0px 0px 0px 0px;
  1794. box-sizing:border-box;
  1795. width:100%;
  1796. }
  1797. #u12481_text {
  1798. border-width:0px;
  1799. white-space:nowrap;
  1800. text-transform:none;
  1801. }
  1802. #u12482_div {
  1803. border-width:0px;
  1804. position:absolute;
  1805. left:0px;
  1806. top:0px;
  1807. width:284px;
  1808. height:60px;
  1809. background:inherit;
  1810. background-color:rgba(0, 191, 191, 0);
  1811. border:none;
  1812. border-radius:0px;
  1813. -moz-box-shadow:none;
  1814. -webkit-box-shadow:none;
  1815. box-shadow:none;
  1816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1817. font-weight:400;
  1818. font-style:normal;
  1819. font-size:12px;
  1820. line-height:20px;
  1821. }
  1822. #u12482 {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:72px;
  1826. top:693px;
  1827. width:284px;
  1828. height:60px;
  1829. display:flex;
  1830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1831. font-weight:400;
  1832. font-style:normal;
  1833. font-size:12px;
  1834. line-height:20px;
  1835. }
  1836. #u12482 .text {
  1837. position:absolute;
  1838. align-self:flex-start;
  1839. padding:0px 2px 0px 2px;
  1840. box-sizing:border-box;
  1841. width:100%;
  1842. }
  1843. #u12482_text {
  1844. border-width:0px;
  1845. word-wrap:break-word;
  1846. text-transform:none;
  1847. }
  1848. #u12483_div {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:0px;
  1852. top:0px;
  1853. width:71px;
  1854. height:18px;
  1855. background:inherit;
  1856. background-color:rgba(242, 242, 242, 0.803921568627451);
  1857. border:none;
  1858. border-radius:4px;
  1859. -moz-box-shadow:none;
  1860. -webkit-box-shadow:none;
  1861. box-shadow:none;
  1862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1863. font-weight:400;
  1864. font-style:normal;
  1865. font-size:10px;
  1866. color:#7F7F7F;
  1867. }
  1868. #u12483 {
  1869. border-width:0px;
  1870. position:absolute;
  1871. left:57px;
  1872. top:613px;
  1873. width:71px;
  1874. height:18px;
  1875. display:flex;
  1876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1877. font-weight:400;
  1878. font-style:normal;
  1879. font-size:10px;
  1880. color:#7F7F7F;
  1881. }
  1882. #u12483 .text {
  1883. position:absolute;
  1884. align-self:flex-start;
  1885. padding:2px 5px 2px 5px;
  1886. box-sizing:border-box;
  1887. width:100%;
  1888. }
  1889. #u12483_text {
  1890. border-width:0px;
  1891. white-space:nowrap;
  1892. text-transform:none;
  1893. }
  1894. #u12484_div {
  1895. border-width:0px;
  1896. position:absolute;
  1897. left:0px;
  1898. top:0px;
  1899. width:13px;
  1900. height:15px;
  1901. background:inherit;
  1902. background-color:rgba(0, 137, 254, 1);
  1903. border:none;
  1904. border-radius:4px;
  1905. -moz-box-shadow:none;
  1906. -webkit-box-shadow:none;
  1907. box-shadow:none;
  1908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1909. font-weight:400;
  1910. font-style:normal;
  1911. font-size:12px;
  1912. color:#FFFFFF;
  1913. }
  1914. #u12484 {
  1915. border-width:0px;
  1916. position:absolute;
  1917. left:57px;
  1918. top:696px;
  1919. width:13px;
  1920. height:15px;
  1921. display:flex;
  1922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1923. font-weight:400;
  1924. font-style:normal;
  1925. font-size:12px;
  1926. color:#FFFFFF;
  1927. }
  1928. #u12484 .text {
  1929. position:absolute;
  1930. align-self:flex-start;
  1931. padding:0px 2px 0px 2px;
  1932. box-sizing:border-box;
  1933. width:100%;
  1934. }
  1935. #u12484_text {
  1936. border-width:0px;
  1937. white-space:nowrap;
  1938. text-transform:none;
  1939. }
  1940. #u12485_div {
  1941. border-width:0px;
  1942. position:absolute;
  1943. left:0px;
  1944. top:0px;
  1945. width:284px;
  1946. height:100px;
  1947. background:inherit;
  1948. background-color:rgba(0, 191, 191, 0);
  1949. border:none;
  1950. border-radius:0px;
  1951. -moz-box-shadow:none;
  1952. -webkit-box-shadow:none;
  1953. box-shadow:none;
  1954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1955. font-weight:400;
  1956. font-style:normal;
  1957. font-size:12px;
  1958. line-height:20px;
  1959. }
  1960. #u12485 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:81px;
  1964. top:773px;
  1965. width:284px;
  1966. height:100px;
  1967. display:flex;
  1968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1969. font-weight:400;
  1970. font-style:normal;
  1971. font-size:12px;
  1972. line-height:20px;
  1973. }
  1974. #u12485 .text {
  1975. position:absolute;
  1976. align-self:flex-start;
  1977. padding:0px 2px 0px 2px;
  1978. box-sizing:border-box;
  1979. width:100%;
  1980. }
  1981. #u12485_text {
  1982. border-width:0px;
  1983. word-wrap:break-word;
  1984. text-transform:none;
  1985. }
  1986. #u12486_div {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:0px;
  1990. top:0px;
  1991. width:17px;
  1992. height:15px;
  1993. background:inherit;
  1994. background-color:rgba(217, 0, 27, 1);
  1995. border:none;
  1996. border-radius:4px;
  1997. -moz-box-shadow:none;
  1998. -webkit-box-shadow:none;
  1999. box-shadow:none;
  2000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2001. font-weight:400;
  2002. font-style:normal;
  2003. font-size:12px;
  2004. color:#FFFFFF;
  2005. }
  2006. #u12486 {
  2007. border-width:0px;
  2008. position:absolute;
  2009. left:57px;
  2010. top:776px;
  2011. width:17px;
  2012. height:15px;
  2013. display:flex;
  2014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2015. font-weight:400;
  2016. font-style:normal;
  2017. font-size:12px;
  2018. color:#FFFFFF;
  2019. }
  2020. #u12486 .text {
  2021. position:absolute;
  2022. align-self:flex-start;
  2023. padding:0px 2px 0px 2px;
  2024. box-sizing:border-box;
  2025. width:100%;
  2026. }
  2027. #u12486_text {
  2028. border-width:0px;
  2029. white-space:nowrap;
  2030. text-transform:none;
  2031. }
  2032. #u12487_img {
  2033. border-width:0px;
  2034. position:absolute;
  2035. left:0px;
  2036. top:0px;
  2037. width:315px;
  2038. height:2px;
  2039. }
  2040. #u12487 {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:57px;
  2044. top:758px;
  2045. width:314px;
  2046. height:1px;
  2047. display:flex;
  2048. }
  2049. #u12487 .text {
  2050. position:absolute;
  2051. align-self:center;
  2052. padding:2px 2px 2px 2px;
  2053. box-sizing:border-box;
  2054. width:100%;
  2055. }
  2056. #u12487_text {
  2057. border-width:0px;
  2058. word-wrap:break-word;
  2059. text-transform:none;
  2060. visibility:hidden;
  2061. }
  2062. #u12488_div {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:0px;
  2066. top:0px;
  2067. width:284px;
  2068. height:60px;
  2069. background:inherit;
  2070. background-color:rgba(0, 191, 191, 0);
  2071. border:none;
  2072. border-radius:0px;
  2073. -moz-box-shadow:none;
  2074. -webkit-box-shadow:none;
  2075. box-shadow:none;
  2076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2077. font-weight:400;
  2078. font-style:normal;
  2079. font-size:12px;
  2080. line-height:20px;
  2081. }
  2082. #u12488 {
  2083. border-width:0px;
  2084. position:absolute;
  2085. left:81px;
  2086. top:896px;
  2087. width:284px;
  2088. height:60px;
  2089. display:flex;
  2090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2091. font-weight:400;
  2092. font-style:normal;
  2093. font-size:12px;
  2094. line-height:20px;
  2095. }
  2096. #u12488 .text {
  2097. position:absolute;
  2098. align-self:flex-start;
  2099. padding:0px 2px 0px 2px;
  2100. box-sizing:border-box;
  2101. width:100%;
  2102. }
  2103. #u12488_text {
  2104. border-width:0px;
  2105. word-wrap:break-word;
  2106. text-transform:none;
  2107. }
  2108. #u12489_div {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:0px;
  2112. top:0px;
  2113. width:17px;
  2114. height:15px;
  2115. background:inherit;
  2116. background-color:rgba(245, 154, 35, 1);
  2117. border:none;
  2118. border-radius:4px;
  2119. -moz-box-shadow:none;
  2120. -webkit-box-shadow:none;
  2121. box-shadow:none;
  2122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2123. font-weight:400;
  2124. font-style:normal;
  2125. font-size:12px;
  2126. color:#FFFFFF;
  2127. }
  2128. #u12489 {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:57px;
  2132. top:898px;
  2133. width:17px;
  2134. height:15px;
  2135. display:flex;
  2136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2137. font-weight:400;
  2138. font-style:normal;
  2139. font-size:12px;
  2140. color:#FFFFFF;
  2141. }
  2142. #u12489 .text {
  2143. position:absolute;
  2144. align-self:flex-start;
  2145. padding:0px 2px 0px 2px;
  2146. box-sizing:border-box;
  2147. width:100%;
  2148. }
  2149. #u12489_text {
  2150. border-width:0px;
  2151. white-space:nowrap;
  2152. text-transform:none;
  2153. }
  2154. #u12490_img {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:0px;
  2158. top:0px;
  2159. width:315px;
  2160. height:2px;
  2161. }
  2162. #u12490 {
  2163. border-width:0px;
  2164. position:absolute;
  2165. left:57px;
  2166. top:885px;
  2167. width:314px;
  2168. height:1px;
  2169. display:flex;
  2170. }
  2171. #u12490 .text {
  2172. position:absolute;
  2173. align-self:center;
  2174. padding:2px 2px 2px 2px;
  2175. box-sizing:border-box;
  2176. width:100%;
  2177. }
  2178. #u12490_text {
  2179. border-width:0px;
  2180. word-wrap:break-word;
  2181. text-transform:none;
  2182. visibility:hidden;
  2183. }
  2184. #u12491 {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:0px;
  2188. top:0px;
  2189. width:0px;
  2190. height:0px;
  2191. }
  2192. #u12492_div {
  2193. border-width:0px;
  2194. position:absolute;
  2195. left:0px;
  2196. top:0px;
  2197. width:375px;
  2198. height:60px;
  2199. background:inherit;
  2200. background-color:rgba(255, 255, 255, 1);
  2201. border:none;
  2202. border-top:0px;
  2203. border-radius:22px;
  2204. border-top-left-radius:0px;
  2205. border-top-right-radius:0px;
  2206. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2207. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2208. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2209. }
  2210. #u12492 {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:29px;
  2214. top:995px;
  2215. width:375px;
  2216. height:60px;
  2217. display:flex;
  2218. }
  2219. #u12492 .text {
  2220. position:absolute;
  2221. align-self:center;
  2222. padding:2px 2px 2px 2px;
  2223. box-sizing:border-box;
  2224. width:100%;
  2225. }
  2226. #u12492_text {
  2227. border-width:0px;
  2228. word-wrap:break-word;
  2229. text-transform:none;
  2230. visibility:hidden;
  2231. }
  2232. #u12493_div {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:0px;
  2236. top:0px;
  2237. width:120px;
  2238. height:40px;
  2239. background:inherit;
  2240. background-color:rgba(0, 137, 254, 1);
  2241. border:none;
  2242. border-radius:82px;
  2243. -moz-box-shadow:none;
  2244. -webkit-box-shadow:none;
  2245. box-shadow:none;
  2246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2247. font-weight:400;
  2248. font-style:normal;
  2249. font-size:14px;
  2250. color:#FFFFFF;
  2251. }
  2252. #u12493 {
  2253. border-width:0px;
  2254. position:absolute;
  2255. left:266px;
  2256. top:1005px;
  2257. width:120px;
  2258. height:40px;
  2259. display:flex;
  2260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2261. font-weight:400;
  2262. font-style:normal;
  2263. font-size:14px;
  2264. color:#FFFFFF;
  2265. }
  2266. #u12493 .text {
  2267. position:absolute;
  2268. align-self:center;
  2269. padding:2px 2px 2px 2px;
  2270. box-sizing:border-box;
  2271. width:100%;
  2272. }
  2273. #u12493_text {
  2274. border-width:0px;
  2275. word-wrap:break-word;
  2276. text-transform:none;
  2277. }
  2278. #u12494_div {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:0px;
  2282. top:0px;
  2283. width:76px;
  2284. height:25px;
  2285. background:inherit;
  2286. background-color:rgba(255, 255, 255, 0);
  2287. border:none;
  2288. border-radius:0px;
  2289. -moz-box-shadow:none;
  2290. -webkit-box-shadow:none;
  2291. box-shadow:none;
  2292. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2293. font-style:normal;
  2294. line-height:25px;
  2295. }
  2296. #u12494 {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:58px;
  2300. top:1013px;
  2301. width:76px;
  2302. height:25px;
  2303. display:flex;
  2304. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2305. font-style:normal;
  2306. line-height:25px;
  2307. }
  2308. #u12494 .text {
  2309. position:absolute;
  2310. align-self:flex-start;
  2311. padding:0px 0px 0px 0px;
  2312. box-sizing:border-box;
  2313. width:100%;
  2314. }
  2315. #u12494_text {
  2316. border-width:0px;
  2317. white-space:nowrap;
  2318. text-transform:none;
  2319. }
  2320. #u12495_div {
  2321. border-width:0px;
  2322. position:absolute;
  2323. left:0px;
  2324. top:0px;
  2325. width:80px;
  2326. height:30px;
  2327. background:inherit;
  2328. background-color:rgba(0, 137, 254, 0);
  2329. box-sizing:border-box;
  2330. border-width:1px;
  2331. border-style:solid;
  2332. border-color:rgba(0, 137, 254, 1);
  2333. border-radius:26px;
  2334. -moz-box-shadow:none;
  2335. -webkit-box-shadow:none;
  2336. box-shadow:none;
  2337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2338. font-weight:400;
  2339. font-style:normal;
  2340. font-size:14px;
  2341. color:#0089FE;
  2342. text-align:center;
  2343. }
  2344. #u12495 {
  2345. border-width:0px;
  2346. position:absolute;
  2347. left:299px;
  2348. top:383px;
  2349. width:80px;
  2350. height:30px;
  2351. display:flex;
  2352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2353. font-weight:400;
  2354. font-style:normal;
  2355. font-size:14px;
  2356. color:#0089FE;
  2357. text-align:center;
  2358. }
  2359. #u12495 .text {
  2360. position:absolute;
  2361. align-self:center;
  2362. padding:2px 5px 2px 5px;
  2363. box-sizing:border-box;
  2364. width:100%;
  2365. }
  2366. #u12495_text {
  2367. border-width:0px;
  2368. word-wrap:break-word;
  2369. text-transform:none;
  2370. }
  2371. #u12496 {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:0px;
  2375. top:0px;
  2376. width:0px;
  2377. height:0px;
  2378. }
  2379. #u12497_div {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:0px;
  2383. top:0px;
  2384. width:250px;
  2385. height:150px;
  2386. background:inherit;
  2387. background-color:rgba(255, 255, 255, 1);
  2388. border:none;
  2389. border-radius:4px;
  2390. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2391. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2392. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2393. }
  2394. #u12497 {
  2395. border-width:0px;
  2396. position:absolute;
  2397. left:912px;
  2398. top:555px;
  2399. width:250px;
  2400. height:150px;
  2401. display:flex;
  2402. }
  2403. #u12497 .text {
  2404. position:absolute;
  2405. align-self:center;
  2406. padding:2px 2px 2px 2px;
  2407. box-sizing:border-box;
  2408. width:100%;
  2409. }
  2410. #u12497_text {
  2411. border-width:0px;
  2412. word-wrap:break-word;
  2413. text-transform:none;
  2414. visibility:hidden;
  2415. }
  2416. #u12498_div {
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:0px;
  2420. top:0px;
  2421. width:37px;
  2422. height:25px;
  2423. background:inherit;
  2424. background-color:rgba(255, 255, 255, 0);
  2425. border:none;
  2426. border-radius:0px;
  2427. -moz-box-shadow:none;
  2428. -webkit-box-shadow:none;
  2429. box-shadow:none;
  2430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2431. font-weight:400;
  2432. font-style:normal;
  2433. font-size:18px;
  2434. color:#555555;
  2435. }
  2436. #u12498 {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:1019px;
  2440. top:571px;
  2441. width:37px;
  2442. height:25px;
  2443. display:flex;
  2444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2445. font-weight:400;
  2446. font-style:normal;
  2447. font-size:18px;
  2448. color:#555555;
  2449. }
  2450. #u12498 .text {
  2451. position:absolute;
  2452. align-self:flex-start;
  2453. padding:0px 0px 0px 0px;
  2454. box-sizing:border-box;
  2455. width:100%;
  2456. }
  2457. #u12498_text {
  2458. border-width:0px;
  2459. white-space:nowrap;
  2460. text-transform:none;
  2461. }
  2462. #u12499_div {
  2463. border-width:0px;
  2464. position:absolute;
  2465. left:0px;
  2466. top:0px;
  2467. width:109px;
  2468. height:25px;
  2469. background:inherit;
  2470. background-color:rgba(255, 255, 255, 0);
  2471. border:none;
  2472. border-radius:0px;
  2473. -moz-box-shadow:none;
  2474. -webkit-box-shadow:none;
  2475. box-shadow:none;
  2476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2477. font-weight:400;
  2478. font-style:normal;
  2479. font-size:18px;
  2480. }
  2481. #u12499 {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:983px;
  2485. top:616px;
  2486. width:109px;
  2487. height:25px;
  2488. display:flex;
  2489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2490. font-weight:400;
  2491. font-style:normal;
  2492. font-size:18px;
  2493. }
  2494. #u12499 .text {
  2495. position:absolute;
  2496. align-self:flex-start;
  2497. padding:0px 0px 0px 0px;
  2498. box-sizing:border-box;
  2499. width:100%;
  2500. }
  2501. #u12499_text {
  2502. border-width:0px;
  2503. white-space:nowrap;
  2504. text-transform:none;
  2505. }
  2506. #u12500_div {
  2507. border-width:0px;
  2508. position:absolute;
  2509. left:0px;
  2510. top:0px;
  2511. width:37px;
  2512. height:25px;
  2513. background:inherit;
  2514. background-color:rgba(255, 255, 255, 0);
  2515. border:none;
  2516. border-radius:0px;
  2517. -moz-box-shadow:none;
  2518. -webkit-box-shadow:none;
  2519. box-shadow:none;
  2520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2521. font-weight:400;
  2522. font-style:normal;
  2523. font-size:18px;
  2524. color:#298FFF;
  2525. }
  2526. #u12500 {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:1019px;
  2530. top:661px;
  2531. width:37px;
  2532. height:25px;
  2533. display:flex;
  2534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2535. font-weight:400;
  2536. font-style:normal;
  2537. font-size:18px;
  2538. color:#298FFF;
  2539. }
  2540. #u12500 .text {
  2541. position:absolute;
  2542. align-self:flex-start;
  2543. padding:0px 0px 0px 0px;
  2544. box-sizing:border-box;
  2545. width:100%;
  2546. }
  2547. #u12500_text {
  2548. border-width:0px;
  2549. white-space:nowrap;
  2550. text-transform:none;
  2551. }
  2552. #u12501 {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:0px;
  2556. top:0px;
  2557. width:0px;
  2558. height:0px;
  2559. }
  2560. #u12502_div {
  2561. border-width:0px;
  2562. position:absolute;
  2563. left:0px;
  2564. top:0px;
  2565. width:250px;
  2566. height:160px;
  2567. background:inherit;
  2568. background-color:rgba(255, 255, 255, 1);
  2569. border:none;
  2570. border-radius:4px;
  2571. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2572. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2573. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2574. }
  2575. #u12502 {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:912px;
  2579. top:20px;
  2580. width:250px;
  2581. height:160px;
  2582. display:flex;
  2583. }
  2584. #u12502 .text {
  2585. position:absolute;
  2586. align-self:center;
  2587. padding:2px 2px 2px 2px;
  2588. box-sizing:border-box;
  2589. width:100%;
  2590. }
  2591. #u12502_text {
  2592. border-width:0px;
  2593. word-wrap:break-word;
  2594. text-transform:none;
  2595. visibility:hidden;
  2596. }
  2597. #u12503_div {
  2598. border-width:0px;
  2599. position:absolute;
  2600. left:0px;
  2601. top:0px;
  2602. width:43px;
  2603. height:20px;
  2604. background:inherit;
  2605. background-color:rgba(255, 255, 255, 0);
  2606. border:none;
  2607. border-radius:0px;
  2608. -moz-box-shadow:none;
  2609. -webkit-box-shadow:none;
  2610. box-shadow:none;
  2611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2612. font-weight:400;
  2613. font-style:normal;
  2614. font-size:14px;
  2615. color:#555555;
  2616. }
  2617. #u12503 {
  2618. border-width:0px;
  2619. position:absolute;
  2620. left:1016px;
  2621. top:36px;
  2622. width:43px;
  2623. height:20px;
  2624. display:flex;
  2625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2626. font-weight:400;
  2627. font-style:normal;
  2628. font-size:14px;
  2629. color:#555555;
  2630. }
  2631. #u12503 .text {
  2632. position:absolute;
  2633. align-self:flex-start;
  2634. padding:0px 0px 0px 0px;
  2635. box-sizing:border-box;
  2636. width:100%;
  2637. }
  2638. #u12503_text {
  2639. border-width:0px;
  2640. white-space:nowrap;
  2641. text-transform:none;
  2642. }
  2643. #u12504_div {
  2644. border-width:0px;
  2645. position:absolute;
  2646. left:0px;
  2647. top:0px;
  2648. width:141px;
  2649. height:20px;
  2650. background:inherit;
  2651. background-color:rgba(255, 255, 255, 0);
  2652. border:none;
  2653. border-radius:0px;
  2654. -moz-box-shadow:none;
  2655. -webkit-box-shadow:none;
  2656. box-shadow:none;
  2657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2658. font-weight:400;
  2659. font-style:normal;
  2660. font-size:14px;
  2661. }
  2662. #u12504 {
  2663. border-width:0px;
  2664. position:absolute;
  2665. left:967px;
  2666. top:136px;
  2667. width:141px;
  2668. height:20px;
  2669. display:flex;
  2670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2671. font-weight:400;
  2672. font-style:normal;
  2673. font-size:14px;
  2674. }
  2675. #u12504 .text {
  2676. position:absolute;
  2677. align-self:flex-start;
  2678. padding:0px 0px 0px 0px;
  2679. box-sizing:border-box;
  2680. width:100%;
  2681. }
  2682. #u12504_text {
  2683. border-width:0px;
  2684. white-space:nowrap;
  2685. text-transform:none;
  2686. }
  2687. #u12505_div {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:0px;
  2691. top:0px;
  2692. width:49px;
  2693. height:40px;
  2694. background:inherit;
  2695. background-color:rgba(255, 255, 255, 0);
  2696. border:none;
  2697. border-radius:0px;
  2698. -moz-box-shadow:none;
  2699. -webkit-box-shadow:none;
  2700. box-shadow:none;
  2701. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2702. font-weight:500;
  2703. font-style:normal;
  2704. font-size:28px;
  2705. color:#298FFF;
  2706. }
  2707. #u12505 {
  2708. border-width:0px;
  2709. position:absolute;
  2710. left:1013px;
  2711. top:76px;
  2712. width:49px;
  2713. height:40px;
  2714. display:flex;
  2715. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2716. font-weight:500;
  2717. font-style:normal;
  2718. font-size:28px;
  2719. color:#298FFF;
  2720. }
  2721. #u12505 .text {
  2722. position:absolute;
  2723. align-self:flex-start;
  2724. padding:0px 0px 0px 0px;
  2725. box-sizing:border-box;
  2726. width:100%;
  2727. }
  2728. #u12505_text {
  2729. border-width:0px;
  2730. white-space:nowrap;
  2731. text-transform:none;
  2732. }
  2733. #u12506 {
  2734. border-width:0px;
  2735. position:absolute;
  2736. left:0px;
  2737. top:0px;
  2738. width:0px;
  2739. height:0px;
  2740. }
  2741. #u12507_div {
  2742. border-width:0px;
  2743. position:absolute;
  2744. left:0px;
  2745. top:0px;
  2746. width:250px;
  2747. height:160px;
  2748. background:inherit;
  2749. background-color:rgba(255, 255, 255, 1);
  2750. border:none;
  2751. border-radius:4px;
  2752. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2753. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2754. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2755. }
  2756. #u12507 {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:912px;
  2760. top:200px;
  2761. width:250px;
  2762. height:160px;
  2763. display:flex;
  2764. }
  2765. #u12507 .text {
  2766. position:absolute;
  2767. align-self:center;
  2768. padding:2px 2px 2px 2px;
  2769. box-sizing:border-box;
  2770. width:100%;
  2771. }
  2772. #u12507_text {
  2773. border-width:0px;
  2774. word-wrap:break-word;
  2775. text-transform:none;
  2776. visibility:hidden;
  2777. }
  2778. #u12508_div {
  2779. border-width:0px;
  2780. position:absolute;
  2781. left:0px;
  2782. top:0px;
  2783. width:197px;
  2784. height:20px;
  2785. background:inherit;
  2786. background-color:rgba(255, 255, 255, 0);
  2787. border:none;
  2788. border-radius:0px;
  2789. -moz-box-shadow:none;
  2790. -webkit-box-shadow:none;
  2791. box-shadow:none;
  2792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2793. font-weight:400;
  2794. font-style:normal;
  2795. font-size:14px;
  2796. color:#555555;
  2797. }
  2798. #u12508 {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:939px;
  2802. top:260px;
  2803. width:197px;
  2804. height:20px;
  2805. display:flex;
  2806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2807. font-weight:400;
  2808. font-style:normal;
  2809. font-size:14px;
  2810. color:#555555;
  2811. }
  2812. #u12508 .text {
  2813. position:absolute;
  2814. align-self:flex-start;
  2815. padding:0px 0px 0px 0px;
  2816. box-sizing:border-box;
  2817. width:100%;
  2818. }
  2819. #u12508_text {
  2820. border-width:0px;
  2821. white-space:nowrap;
  2822. text-transform:none;
  2823. }
  2824. #u12509_div {
  2825. border-width:0px;
  2826. position:absolute;
  2827. left:0px;
  2828. top:0px;
  2829. width:73px;
  2830. height:25px;
  2831. background:inherit;
  2832. background-color:rgba(255, 255, 255, 0);
  2833. border:none;
  2834. border-radius:0px;
  2835. -moz-box-shadow:none;
  2836. -webkit-box-shadow:none;
  2837. box-shadow:none;
  2838. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2839. font-weight:500;
  2840. font-style:normal;
  2841. font-size:18px;
  2842. color:#F59A23;
  2843. }
  2844. #u12509 {
  2845. border-width:0px;
  2846. position:absolute;
  2847. left:1001px;
  2848. top:220px;
  2849. width:73px;
  2850. height:25px;
  2851. display:flex;
  2852. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2853. font-weight:500;
  2854. font-style:normal;
  2855. font-size:18px;
  2856. color:#F59A23;
  2857. }
  2858. #u12509 .text {
  2859. position:absolute;
  2860. align-self:flex-start;
  2861. padding:0px 0px 0px 0px;
  2862. box-sizing:border-box;
  2863. width:100%;
  2864. }
  2865. #u12509_text {
  2866. border-width:0px;
  2867. white-space:nowrap;
  2868. text-transform:none;
  2869. }
  2870. #u12510_div {
  2871. border-width:0px;
  2872. position:absolute;
  2873. left:0px;
  2874. top:0px;
  2875. width:100px;
  2876. height:30px;
  2877. background:inherit;
  2878. background-color:rgba(0, 137, 254, 0);
  2879. box-sizing:border-box;
  2880. border-width:1px;
  2881. border-style:solid;
  2882. border-color:rgba(170, 170, 170, 1);
  2883. border-radius:26px;
  2884. -moz-box-shadow:none;
  2885. -webkit-box-shadow:none;
  2886. box-shadow:none;
  2887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2888. font-weight:400;
  2889. font-style:normal;
  2890. font-size:14px;
  2891. color:#7F7F7F;
  2892. text-align:center;
  2893. }
  2894. #u12510 {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:987px;
  2898. top:305px;
  2899. width:100px;
  2900. height:30px;
  2901. display:flex;
  2902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2903. font-weight:400;
  2904. font-style:normal;
  2905. font-size:14px;
  2906. color:#7F7F7F;
  2907. text-align:center;
  2908. }
  2909. #u12510 .text {
  2910. position:absolute;
  2911. align-self:center;
  2912. padding:2px 5px 2px 5px;
  2913. box-sizing:border-box;
  2914. width:100%;
  2915. }
  2916. #u12510_text {
  2917. border-width:0px;
  2918. word-wrap:break-word;
  2919. text-transform:none;
  2920. }
  2921. #u12511 {
  2922. border-width:0px;
  2923. position:absolute;
  2924. left:0px;
  2925. top:0px;
  2926. width:0px;
  2927. height:0px;
  2928. }
  2929. #u12512_div {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:0px;
  2933. top:0px;
  2934. width:250px;
  2935. height:160px;
  2936. background:inherit;
  2937. background-color:rgba(255, 255, 255, 1);
  2938. border:none;
  2939. border-radius:4px;
  2940. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2941. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2942. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2943. }
  2944. #u12512 {
  2945. border-width:0px;
  2946. position:absolute;
  2947. left:912px;
  2948. top:371px;
  2949. width:250px;
  2950. height:160px;
  2951. display:flex;
  2952. }
  2953. #u12512 .text {
  2954. position:absolute;
  2955. align-self:center;
  2956. padding:2px 2px 2px 2px;
  2957. box-sizing:border-box;
  2958. width:100%;
  2959. }
  2960. #u12512_text {
  2961. border-width:0px;
  2962. word-wrap:break-word;
  2963. text-transform:none;
  2964. visibility:hidden;
  2965. }
  2966. #u12513_div {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:0px;
  2970. top:0px;
  2971. width:85px;
  2972. height:20px;
  2973. background:inherit;
  2974. background-color:rgba(255, 255, 255, 0);
  2975. border:none;
  2976. border-radius:0px;
  2977. -moz-box-shadow:none;
  2978. -webkit-box-shadow:none;
  2979. box-shadow:none;
  2980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2981. font-weight:400;
  2982. font-style:normal;
  2983. font-size:14px;
  2984. color:#555555;
  2985. }
  2986. #u12513 {
  2987. border-width:0px;
  2988. position:absolute;
  2989. left:989px;
  2990. top:431px;
  2991. width:85px;
  2992. height:20px;
  2993. display:flex;
  2994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2995. font-weight:400;
  2996. font-style:normal;
  2997. font-size:14px;
  2998. color:#555555;
  2999. }
  3000. #u12513 .text {
  3001. position:absolute;
  3002. align-self:flex-start;
  3003. padding:0px 0px 0px 0px;
  3004. box-sizing:border-box;
  3005. width:100%;
  3006. }
  3007. #u12513_text {
  3008. border-width:0px;
  3009. white-space:nowrap;
  3010. text-transform:none;
  3011. }
  3012. #u12514_div {
  3013. border-width:0px;
  3014. position:absolute;
  3015. left:0px;
  3016. top:0px;
  3017. width:73px;
  3018. height:25px;
  3019. background:inherit;
  3020. background-color:rgba(255, 255, 255, 0);
  3021. border:none;
  3022. border-radius:0px;
  3023. -moz-box-shadow:none;
  3024. -webkit-box-shadow:none;
  3025. box-shadow:none;
  3026. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3027. font-weight:500;
  3028. font-style:normal;
  3029. font-size:18px;
  3030. color:#0089FE;
  3031. }
  3032. #u12514 {
  3033. border-width:0px;
  3034. position:absolute;
  3035. left:1001px;
  3036. top:391px;
  3037. width:73px;
  3038. height:25px;
  3039. display:flex;
  3040. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3041. font-weight:500;
  3042. font-style:normal;
  3043. font-size:18px;
  3044. color:#0089FE;
  3045. }
  3046. #u12514 .text {
  3047. position:absolute;
  3048. align-self:flex-start;
  3049. padding:0px 0px 0px 0px;
  3050. box-sizing:border-box;
  3051. width:100%;
  3052. }
  3053. #u12514_text {
  3054. border-width:0px;
  3055. white-space:nowrap;
  3056. text-transform:none;
  3057. }
  3058. #u12515_div {
  3059. border-width:0px;
  3060. position:absolute;
  3061. left:0px;
  3062. top:0px;
  3063. width:100px;
  3064. height:30px;
  3065. background:inherit;
  3066. background-color:rgba(0, 137, 254, 0);
  3067. box-sizing:border-box;
  3068. border-width:1px;
  3069. border-style:solid;
  3070. border-color:rgba(170, 170, 170, 1);
  3071. border-radius:26px;
  3072. -moz-box-shadow:none;
  3073. -webkit-box-shadow:none;
  3074. box-shadow:none;
  3075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3076. font-weight:400;
  3077. font-style:normal;
  3078. font-size:14px;
  3079. color:#7F7F7F;
  3080. text-align:center;
  3081. }
  3082. #u12515 {
  3083. border-width:0px;
  3084. position:absolute;
  3085. left:987px;
  3086. top:480px;
  3087. width:100px;
  3088. height:30px;
  3089. display:flex;
  3090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3091. font-weight:400;
  3092. font-style:normal;
  3093. font-size:14px;
  3094. color:#7F7F7F;
  3095. text-align:center;
  3096. }
  3097. #u12515 .text {
  3098. position:absolute;
  3099. align-self:center;
  3100. padding:2px 5px 2px 5px;
  3101. box-sizing:border-box;
  3102. width:100%;
  3103. }
  3104. #u12515_text {
  3105. border-width:0px;
  3106. word-wrap:break-word;
  3107. text-transform:none;
  3108. }
  3109. #u12516 {
  3110. border-width:0px;
  3111. position:absolute;
  3112. left:0px;
  3113. top:0px;
  3114. width:0px;
  3115. height:0px;
  3116. }
  3117. #u12517_div {
  3118. border-width:0px;
  3119. position:absolute;
  3120. left:0px;
  3121. top:0px;
  3122. width:250px;
  3123. height:150px;
  3124. background:inherit;
  3125. background-color:rgba(255, 255, 255, 1);
  3126. border:none;
  3127. border-radius:4px;
  3128. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3129. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3130. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3131. }
  3132. #u12517 {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:912px;
  3136. top:722px;
  3137. width:250px;
  3138. height:150px;
  3139. display:flex;
  3140. }
  3141. #u12517 .text {
  3142. position:absolute;
  3143. align-self:center;
  3144. padding:2px 2px 2px 2px;
  3145. box-sizing:border-box;
  3146. width:100%;
  3147. }
  3148. #u12517_text {
  3149. border-width:0px;
  3150. word-wrap:break-word;
  3151. text-transform:none;
  3152. visibility:hidden;
  3153. }
  3154. #u12518_div {
  3155. border-width:0px;
  3156. position:absolute;
  3157. left:0px;
  3158. top:0px;
  3159. width:37px;
  3160. height:25px;
  3161. background:inherit;
  3162. background-color:rgba(255, 255, 255, 0);
  3163. border:none;
  3164. border-radius:0px;
  3165. -moz-box-shadow:none;
  3166. -webkit-box-shadow:none;
  3167. box-shadow:none;
  3168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3169. font-weight:400;
  3170. font-style:normal;
  3171. font-size:18px;
  3172. color:#555555;
  3173. }
  3174. #u12518 {
  3175. border-width:0px;
  3176. position:absolute;
  3177. left:1019px;
  3178. top:738px;
  3179. width:37px;
  3180. height:25px;
  3181. display:flex;
  3182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3183. font-weight:400;
  3184. font-style:normal;
  3185. font-size:18px;
  3186. color:#555555;
  3187. }
  3188. #u12518 .text {
  3189. position:absolute;
  3190. align-self:flex-start;
  3191. padding:0px 0px 0px 0px;
  3192. box-sizing:border-box;
  3193. width:100%;
  3194. }
  3195. #u12518_text {
  3196. border-width:0px;
  3197. white-space:nowrap;
  3198. text-transform:none;
  3199. }
  3200. #u12519_div {
  3201. border-width:0px;
  3202. position:absolute;
  3203. left:0px;
  3204. top:0px;
  3205. width:127px;
  3206. height:25px;
  3207. background:inherit;
  3208. background-color:rgba(255, 255, 255, 0);
  3209. border:none;
  3210. border-radius:0px;
  3211. -moz-box-shadow:none;
  3212. -webkit-box-shadow:none;
  3213. box-shadow:none;
  3214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3215. font-weight:400;
  3216. font-style:normal;
  3217. font-size:18px;
  3218. }
  3219. #u12519 {
  3220. border-width:0px;
  3221. position:absolute;
  3222. left:983px;
  3223. top:783px;
  3224. width:127px;
  3225. height:25px;
  3226. display:flex;
  3227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3228. font-weight:400;
  3229. font-style:normal;
  3230. font-size:18px;
  3231. }
  3232. #u12519 .text {
  3233. position:absolute;
  3234. align-self:flex-start;
  3235. padding:0px 0px 0px 0px;
  3236. box-sizing:border-box;
  3237. width:100%;
  3238. }
  3239. #u12519_text {
  3240. border-width:0px;
  3241. white-space:nowrap;
  3242. text-transform:none;
  3243. }
  3244. #u12520_div {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:0px;
  3248. top:0px;
  3249. width:37px;
  3250. height:25px;
  3251. background:inherit;
  3252. background-color:rgba(255, 255, 255, 0);
  3253. border:none;
  3254. border-radius:0px;
  3255. -moz-box-shadow:none;
  3256. -webkit-box-shadow:none;
  3257. box-shadow:none;
  3258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3259. font-weight:400;
  3260. font-style:normal;
  3261. font-size:18px;
  3262. color:#298FFF;
  3263. }
  3264. #u12520 {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:1019px;
  3268. top:828px;
  3269. width:37px;
  3270. height:25px;
  3271. display:flex;
  3272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3273. font-weight:400;
  3274. font-style:normal;
  3275. font-size:18px;
  3276. color:#298FFF;
  3277. }
  3278. #u12520 .text {
  3279. position:absolute;
  3280. align-self:flex-start;
  3281. padding:0px 0px 0px 0px;
  3282. box-sizing:border-box;
  3283. width:100%;
  3284. }
  3285. #u12520_text {
  3286. border-width:0px;
  3287. white-space:nowrap;
  3288. text-transform:none;
  3289. }
  3290. #u12521_img {
  3291. border-width:0px;
  3292. position:absolute;
  3293. left:0px;
  3294. top:0px;
  3295. width:1400px;
  3296. height:483px;
  3297. }
  3298. #u12521 {
  3299. border-width:0px;
  3300. position:absolute;
  3301. left:1204px;
  3302. top:27px;
  3303. width:1400px;
  3304. height:483px;
  3305. display:flex;
  3306. }
  3307. #u12521 .text {
  3308. position:absolute;
  3309. align-self:center;
  3310. padding:2px 2px 2px 2px;
  3311. box-sizing:border-box;
  3312. width:100%;
  3313. }
  3314. #u12521_text {
  3315. border-width:0px;
  3316. word-wrap:break-word;
  3317. text-transform:none;
  3318. visibility:hidden;
  3319. }
  3320. #u12522 {
  3321. border-width:0px;
  3322. position:absolute;
  3323. left:0px;
  3324. top:0px;
  3325. width:0px;
  3326. height:0px;
  3327. }
  3328. #u12523_div {
  3329. border-width:0px;
  3330. position:absolute;
  3331. left:0px;
  3332. top:0px;
  3333. width:250px;
  3334. height:246px;
  3335. background:inherit;
  3336. background-color:rgba(255, 255, 255, 1);
  3337. border:none;
  3338. border-radius:4px;
  3339. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3340. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3341. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3342. }
  3343. #u12523 {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:912px;
  3347. top:975px;
  3348. width:250px;
  3349. height:246px;
  3350. display:flex;
  3351. }
  3352. #u12523 .text {
  3353. position:absolute;
  3354. align-self:center;
  3355. padding:2px 2px 2px 2px;
  3356. box-sizing:border-box;
  3357. width:100%;
  3358. }
  3359. #u12523_text {
  3360. border-width:0px;
  3361. word-wrap:break-word;
  3362. text-transform:none;
  3363. visibility:hidden;
  3364. }
  3365. #u12524_div {
  3366. border-width:0px;
  3367. position:absolute;
  3368. left:0px;
  3369. top:0px;
  3370. width:163px;
  3371. height:25px;
  3372. background:inherit;
  3373. background-color:rgba(255, 255, 255, 0);
  3374. border:none;
  3375. border-radius:0px;
  3376. -moz-box-shadow:none;
  3377. -webkit-box-shadow:none;
  3378. box-shadow:none;
  3379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3380. font-weight:400;
  3381. font-style:normal;
  3382. font-size:18px;
  3383. color:#1890FF;
  3384. }
  3385. #u12524 {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:956px;
  3389. top:992px;
  3390. width:163px;
  3391. height:25px;
  3392. display:flex;
  3393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3394. font-weight:400;
  3395. font-style:normal;
  3396. font-size:18px;
  3397. color:#1890FF;
  3398. }
  3399. #u12524 .text {
  3400. position:absolute;
  3401. align-self:flex-start;
  3402. padding:0px 0px 0px 0px;
  3403. box-sizing:border-box;
  3404. width:100%;
  3405. }
  3406. #u12524_text {
  3407. border-width:0px;
  3408. white-space:nowrap;
  3409. text-transform:none;
  3410. }
  3411. #u12525_div {
  3412. border-width:0px;
  3413. position:absolute;
  3414. left:0px;
  3415. top:0px;
  3416. width:226px;
  3417. height:140px;
  3418. background:inherit;
  3419. background-color:rgba(255, 255, 255, 0);
  3420. border:none;
  3421. border-radius:0px;
  3422. -moz-box-shadow:none;
  3423. -webkit-box-shadow:none;
  3424. box-shadow:none;
  3425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3426. font-weight:400;
  3427. font-style:normal;
  3428. font-size:12px;
  3429. line-height:20px;
  3430. }
  3431. #u12525 {
  3432. border-width:0px;
  3433. position:absolute;
  3434. left:924px;
  3435. top:1028px;
  3436. width:226px;
  3437. height:140px;
  3438. display:flex;
  3439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3440. font-weight:400;
  3441. font-style:normal;
  3442. font-size:12px;
  3443. line-height:20px;
  3444. }
  3445. #u12525 .text {
  3446. position:absolute;
  3447. align-self:flex-start;
  3448. padding:0px 0px 0px 0px;
  3449. box-sizing:border-box;
  3450. width:100%;
  3451. }
  3452. #u12525_text {
  3453. border-width:0px;
  3454. word-wrap:break-word;
  3455. text-transform:none;
  3456. }
  3457. #u12526_div {
  3458. border-width:0px;
  3459. position:absolute;
  3460. left:0px;
  3461. top:0px;
  3462. width:37px;
  3463. height:25px;
  3464. background:inherit;
  3465. background-color:rgba(255, 255, 255, 0);
  3466. border:none;
  3467. border-radius:0px;
  3468. -moz-box-shadow:none;
  3469. -webkit-box-shadow:none;
  3470. box-shadow:none;
  3471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3472. font-weight:400;
  3473. font-style:normal;
  3474. font-size:18px;
  3475. color:#298FFF;
  3476. }
  3477. #u12526 {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:1010px;
  3481. top:1184px;
  3482. width:37px;
  3483. height:25px;
  3484. display:flex;
  3485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3486. font-weight:400;
  3487. font-style:normal;
  3488. font-size:18px;
  3489. color:#298FFF;
  3490. }
  3491. #u12526 .text {
  3492. position:absolute;
  3493. align-self:flex-start;
  3494. padding:0px 0px 0px 0px;
  3495. box-sizing:border-box;
  3496. width:100%;
  3497. }
  3498. #u12526_text {
  3499. border-width:0px;
  3500. white-space:nowrap;
  3501. text-transform:none;
  3502. }
  3503. #u12527 {
  3504. border-width:0px;
  3505. position:absolute;
  3506. left:0px;
  3507. top:0px;
  3508. width:0px;
  3509. height:0px;
  3510. }
  3511. #u12528_div {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:0px;
  3515. top:0px;
  3516. width:250px;
  3517. height:160px;
  3518. background:inherit;
  3519. background-color:rgba(255, 255, 255, 1);
  3520. border:none;
  3521. border-radius:4px;
  3522. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3523. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3524. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3525. }
  3526. #u12528 {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:1180px;
  3530. top:975px;
  3531. width:250px;
  3532. height:160px;
  3533. display:flex;
  3534. }
  3535. #u12528 .text {
  3536. position:absolute;
  3537. align-self:center;
  3538. padding:2px 2px 2px 2px;
  3539. box-sizing:border-box;
  3540. width:100%;
  3541. }
  3542. #u12528_text {
  3543. border-width:0px;
  3544. word-wrap:break-word;
  3545. text-transform:none;
  3546. visibility:hidden;
  3547. }
  3548. #u12529_div {
  3549. border-width:0px;
  3550. position:absolute;
  3551. left:0px;
  3552. top:0px;
  3553. width:145px;
  3554. height:25px;
  3555. background:inherit;
  3556. background-color:rgba(255, 255, 255, 0);
  3557. border:none;
  3558. border-radius:0px;
  3559. -moz-box-shadow:none;
  3560. -webkit-box-shadow:none;
  3561. box-shadow:none;
  3562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3563. font-weight:400;
  3564. font-style:normal;
  3565. font-size:18px;
  3566. color:#D9001B;
  3567. }
  3568. #u12529 {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:1232px;
  3572. top:992px;
  3573. width:145px;
  3574. height:25px;
  3575. display:flex;
  3576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3577. font-weight:400;
  3578. font-style:normal;
  3579. font-size:18px;
  3580. color:#D9001B;
  3581. }
  3582. #u12529 .text {
  3583. position:absolute;
  3584. align-self:flex-start;
  3585. padding:0px 0px 0px 0px;
  3586. box-sizing:border-box;
  3587. width:100%;
  3588. }
  3589. #u12529_text {
  3590. border-width:0px;
  3591. white-space:nowrap;
  3592. text-transform:none;
  3593. }
  3594. #u12530_div {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:0px;
  3598. top:0px;
  3599. width:226px;
  3600. height:50px;
  3601. background:inherit;
  3602. background-color:rgba(255, 255, 255, 0);
  3603. border:none;
  3604. border-radius:0px;
  3605. -moz-box-shadow:none;
  3606. -webkit-box-shadow:none;
  3607. box-shadow:none;
  3608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3609. font-weight:400;
  3610. font-style:normal;
  3611. font-size:12px;
  3612. line-height:25px;
  3613. }
  3614. #u12530 {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:1200px;
  3618. top:1028px;
  3619. width:226px;
  3620. height:50px;
  3621. display:flex;
  3622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3623. font-weight:400;
  3624. font-style:normal;
  3625. font-size:12px;
  3626. line-height:25px;
  3627. }
  3628. #u12530 .text {
  3629. position:absolute;
  3630. align-self:flex-start;
  3631. padding:0px 0px 0px 0px;
  3632. box-sizing:border-box;
  3633. width:100%;
  3634. }
  3635. #u12530_text {
  3636. border-width:0px;
  3637. word-wrap:break-word;
  3638. text-transform:none;
  3639. }
  3640. #u12531_div {
  3641. border-width:0px;
  3642. position:absolute;
  3643. left:0px;
  3644. top:0px;
  3645. width:55px;
  3646. height:25px;
  3647. background:inherit;
  3648. background-color:rgba(255, 255, 255, 0);
  3649. border:none;
  3650. border-radius:0px;
  3651. -moz-box-shadow:none;
  3652. -webkit-box-shadow:none;
  3653. box-shadow:none;
  3654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3655. font-weight:400;
  3656. font-style:normal;
  3657. font-size:18px;
  3658. color:#298FFF;
  3659. }
  3660. #u12531 {
  3661. border-width:0px;
  3662. position:absolute;
  3663. left:1340px;
  3664. top:1098px;
  3665. width:55px;
  3666. height:25px;
  3667. display:flex;
  3668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3669. font-weight:400;
  3670. font-style:normal;
  3671. font-size:18px;
  3672. color:#298FFF;
  3673. }
  3674. #u12531 .text {
  3675. position:absolute;
  3676. align-self:flex-start;
  3677. padding:0px 0px 0px 0px;
  3678. box-sizing:border-box;
  3679. width:100%;
  3680. }
  3681. #u12531_text {
  3682. border-width:0px;
  3683. white-space:nowrap;
  3684. text-transform:none;
  3685. }
  3686. #u12532_div {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:0px;
  3690. top:0px;
  3691. width:37px;
  3692. height:25px;
  3693. background:inherit;
  3694. background-color:rgba(255, 255, 255, 0);
  3695. border:none;
  3696. border-radius:0px;
  3697. -moz-box-shadow:none;
  3698. -webkit-box-shadow:none;
  3699. box-shadow:none;
  3700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3701. font-weight:400;
  3702. font-style:normal;
  3703. font-size:18px;
  3704. color:#298FFF;
  3705. }
  3706. #u12532 {
  3707. border-width:0px;
  3708. position:absolute;
  3709. left:1223px;
  3710. top:1098px;
  3711. width:37px;
  3712. height:25px;
  3713. display:flex;
  3714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3715. font-weight:400;
  3716. font-style:normal;
  3717. font-size:18px;
  3718. color:#298FFF;
  3719. }
  3720. #u12532 .text {
  3721. position:absolute;
  3722. align-self:flex-start;
  3723. padding:0px 0px 0px 0px;
  3724. box-sizing:border-box;
  3725. width:100%;
  3726. }
  3727. #u12532_text {
  3728. border-width:0px;
  3729. white-space:nowrap;
  3730. text-transform:none;
  3731. }
  3732. #u12533_img {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:0px;
  3736. top:0px;
  3737. width:251px;
  3738. height:2px;
  3739. }
  3740. #u12533 {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:1180px;
  3744. top:1088px;
  3745. width:250px;
  3746. height:1px;
  3747. display:flex;
  3748. }
  3749. #u12533 .text {
  3750. position:absolute;
  3751. align-self:center;
  3752. padding:2px 2px 2px 2px;
  3753. box-sizing:border-box;
  3754. width:100%;
  3755. }
  3756. #u12533_text {
  3757. border-width:0px;
  3758. word-wrap:break-word;
  3759. text-transform:none;
  3760. visibility:hidden;
  3761. }
  3762. #u12534_img {
  3763. border-width:0px;
  3764. position:absolute;
  3765. left:0px;
  3766. top:0px;
  3767. width:2px;
  3768. height:46px;
  3769. }
  3770. #u12534 {
  3771. border-width:0px;
  3772. position:absolute;
  3773. left:1304px;
  3774. top:1090px;
  3775. width:1px;
  3776. height:45px;
  3777. display:flex;
  3778. }
  3779. #u12534 .text {
  3780. position:absolute;
  3781. align-self:center;
  3782. padding:2px 2px 2px 2px;
  3783. box-sizing:border-box;
  3784. width:100%;
  3785. }
  3786. #u12534_text {
  3787. border-width:0px;
  3788. word-wrap:break-word;
  3789. text-transform:none;
  3790. visibility:hidden;
  3791. }
  3792. #u12535_div {
  3793. border-width:0px;
  3794. position:absolute;
  3795. left:0px;
  3796. top:0px;
  3797. width:691px;
  3798. height:50px;
  3799. background:inherit;
  3800. background-color:rgba(255, 255, 255, 0);
  3801. border:none;
  3802. border-radius:0px;
  3803. -moz-box-shadow:none;
  3804. -webkit-box-shadow:none;
  3805. box-shadow:none;
  3806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3807. font-weight:400;
  3808. font-style:normal;
  3809. font-size:12px;
  3810. color:#1890FF;
  3811. line-height:25px;
  3812. }
  3813. #u12535 {
  3814. border-width:0px;
  3815. position:absolute;
  3816. left:912px;
  3817. top:907px;
  3818. width:691px;
  3819. height:50px;
  3820. display:flex;
  3821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3822. font-weight:400;
  3823. font-style:normal;
  3824. font-size:12px;
  3825. color:#1890FF;
  3826. line-height:25px;
  3827. }
  3828. #u12535 .text {
  3829. position:absolute;
  3830. align-self:flex-start;
  3831. padding:0px 0px 0px 0px;
  3832. box-sizing:border-box;
  3833. width:100%;
  3834. }
  3835. #u12535_text {
  3836. border-width:0px;
  3837. white-space:nowrap;
  3838. text-transform:none;
  3839. }
  3840. #u12537_img {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:0px;
  3844. top:0px;
  3845. width:433px;
  3846. height:865px;
  3847. }
  3848. #u12537 {
  3849. border-width:0px;
  3850. position:absolute;
  3851. left:453px;
  3852. top:0px;
  3853. width:433px;
  3854. height:865px;
  3855. display:flex;
  3856. }
  3857. #u12537 .text {
  3858. position:absolute;
  3859. align-self:center;
  3860. padding:2px 2px 2px 2px;
  3861. box-sizing:border-box;
  3862. width:100%;
  3863. }
  3864. #u12537_text {
  3865. border-width:0px;
  3866. word-wrap:break-word;
  3867. text-transform:none;
  3868. visibility:hidden;
  3869. }
  3870. #u12538_div {
  3871. border-width:0px;
  3872. position:absolute;
  3873. left:0px;
  3874. top:0px;
  3875. width:375px;
  3876. height:40px;
  3877. background:inherit;
  3878. background-color:rgba(255, 255, 255, 1);
  3879. box-sizing:border-box;
  3880. border-width:1px;
  3881. border-style:solid;
  3882. border-color:rgba(215, 215, 215, 1);
  3883. border-left:0px;
  3884. border-top:0px;
  3885. border-right:0px;
  3886. border-radius:0px;
  3887. border-bottom-right-radius:0px;
  3888. border-bottom-left-radius:0px;
  3889. -moz-box-shadow:none;
  3890. -webkit-box-shadow:none;
  3891. box-shadow:none;
  3892. }
  3893. #u12538 {
  3894. border-width:0px;
  3895. position:absolute;
  3896. left:482px;
  3897. top:67px;
  3898. width:375px;
  3899. height:40px;
  3900. display:flex;
  3901. }
  3902. #u12538 .text {
  3903. position:absolute;
  3904. align-self:center;
  3905. padding:2px 2px 2px 2px;
  3906. box-sizing:border-box;
  3907. width:100%;
  3908. }
  3909. #u12538_text {
  3910. border-width:0px;
  3911. word-wrap:break-word;
  3912. text-transform:none;
  3913. visibility:hidden;
  3914. }
  3915. #u12539 {
  3916. border-width:0px;
  3917. position:absolute;
  3918. left:0px;
  3919. top:0px;
  3920. width:0px;
  3921. height:0px;
  3922. }
  3923. #u12540_div {
  3924. border-width:0px;
  3925. position:absolute;
  3926. left:0px;
  3927. top:0px;
  3928. width:88px;
  3929. height:32px;
  3930. background:inherit;
  3931. background-color:rgba(255, 255, 255, 1);
  3932. box-sizing:border-box;
  3933. border-width:1px;
  3934. border-style:solid;
  3935. border-color:rgba(242, 242, 242, 1);
  3936. border-radius:33px;
  3937. -moz-box-shadow:none;
  3938. -webkit-box-shadow:none;
  3939. box-shadow:none;
  3940. }
  3941. #u12540 {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:762px;
  3945. top:71px;
  3946. width:88px;
  3947. height:32px;
  3948. display:flex;
  3949. }
  3950. #u12540 .text {
  3951. position:absolute;
  3952. align-self:center;
  3953. padding:2px 2px 2px 2px;
  3954. box-sizing:border-box;
  3955. width:100%;
  3956. }
  3957. #u12540_text {
  3958. border-width:0px;
  3959. word-wrap:break-word;
  3960. text-transform:none;
  3961. visibility:hidden;
  3962. }
  3963. #u12541 {
  3964. border-width:0px;
  3965. position:absolute;
  3966. left:0px;
  3967. top:0px;
  3968. width:0px;
  3969. height:0px;
  3970. }
  3971. #u12542_img {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:0px;
  3975. top:0px;
  3976. width:18px;
  3977. height:18px;
  3978. }
  3979. #u12542 {
  3980. border-width:0px;
  3981. position:absolute;
  3982. left:825px;
  3983. top:78px;
  3984. width:18px;
  3985. height:18px;
  3986. display:flex;
  3987. }
  3988. #u12542 .text {
  3989. position:absolute;
  3990. align-self:center;
  3991. padding:2px 2px 2px 2px;
  3992. box-sizing:border-box;
  3993. width:100%;
  3994. }
  3995. #u12542_text {
  3996. border-width:0px;
  3997. word-wrap:break-word;
  3998. text-transform:none;
  3999. visibility:hidden;
  4000. }
  4001. #u12543_img {
  4002. border-width:0px;
  4003. position:absolute;
  4004. left:0px;
  4005. top:0px;
  4006. width:6px;
  4007. height:6px;
  4008. }
  4009. #u12543 {
  4010. border-width:0px;
  4011. position:absolute;
  4012. left:831px;
  4013. top:84px;
  4014. width:6px;
  4015. height:6px;
  4016. display:flex;
  4017. }
  4018. #u12543 .text {
  4019. position:absolute;
  4020. align-self:center;
  4021. padding:2px 2px 2px 2px;
  4022. box-sizing:border-box;
  4023. width:100%;
  4024. }
  4025. #u12543_text {
  4026. border-width:0px;
  4027. word-wrap:break-word;
  4028. text-transform:none;
  4029. visibility:hidden;
  4030. }
  4031. #u12544 {
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:0px;
  4035. top:0px;
  4036. width:0px;
  4037. height:0px;
  4038. }
  4039. #u12545_img {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:0px;
  4043. top:0px;
  4044. width:5px;
  4045. height:5px;
  4046. }
  4047. #u12545 {
  4048. border-width:0px;
  4049. position:absolute;
  4050. left:776px;
  4051. top:85px;
  4052. width:5px;
  4053. height:5px;
  4054. display:flex;
  4055. }
  4056. #u12545 .text {
  4057. position:absolute;
  4058. align-self:center;
  4059. padding:2px 2px 2px 2px;
  4060. box-sizing:border-box;
  4061. width:100%;
  4062. }
  4063. #u12545_text {
  4064. border-width:0px;
  4065. word-wrap:break-word;
  4066. text-transform:none;
  4067. visibility:hidden;
  4068. }
  4069. #u12546_img {
  4070. border-width:0px;
  4071. position:absolute;
  4072. left:0px;
  4073. top:0px;
  4074. width:5px;
  4075. height:5px;
  4076. }
  4077. #u12546 {
  4078. border-width:0px;
  4079. position:absolute;
  4080. left:792px;
  4081. top:85px;
  4082. width:5px;
  4083. height:5px;
  4084. display:flex;
  4085. }
  4086. #u12546 .text {
  4087. position:absolute;
  4088. align-self:center;
  4089. padding:2px 2px 2px 2px;
  4090. box-sizing:border-box;
  4091. width:100%;
  4092. }
  4093. #u12546_text {
  4094. border-width:0px;
  4095. word-wrap:break-word;
  4096. text-transform:none;
  4097. visibility:hidden;
  4098. }
  4099. #u12547_img {
  4100. border-width:0px;
  4101. position:absolute;
  4102. left:0px;
  4103. top:0px;
  4104. width:7px;
  4105. height:7px;
  4106. }
  4107. #u12547 {
  4108. border-width:0px;
  4109. position:absolute;
  4110. left:783px;
  4111. top:84px;
  4112. width:7px;
  4113. height:7px;
  4114. display:flex;
  4115. }
  4116. #u12547 .text {
  4117. position:absolute;
  4118. align-self:center;
  4119. padding:2px 2px 2px 2px;
  4120. box-sizing:border-box;
  4121. width:100%;
  4122. }
  4123. #u12547_text {
  4124. border-width:0px;
  4125. word-wrap:break-word;
  4126. text-transform:none;
  4127. visibility:hidden;
  4128. }
  4129. #u12548_img {
  4130. border-width:0px;
  4131. position:absolute;
  4132. left:0px;
  4133. top:0px;
  4134. width:19px;
  4135. height:2px;
  4136. }
  4137. #u12548 {
  4138. border-width:0px;
  4139. position:absolute;
  4140. left:800px;
  4141. top:87px;
  4142. width:18px;
  4143. height:1px;
  4144. display:flex;
  4145. -webkit-transform:rotate(90deg);
  4146. -moz-transform:rotate(90deg);
  4147. -ms-transform:rotate(90deg);
  4148. transform:rotate(90deg);
  4149. }
  4150. #u12548 .text {
  4151. position:absolute;
  4152. align-self:center;
  4153. padding:2px 2px 2px 2px;
  4154. box-sizing:border-box;
  4155. width:100%;
  4156. }
  4157. #u12548_text {
  4158. border-width:0px;
  4159. word-wrap:break-word;
  4160. text-transform:none;
  4161. visibility:hidden;
  4162. }
  4163. #u12549_img {
  4164. border-width:0px;
  4165. position:absolute;
  4166. left:0px;
  4167. top:0px;
  4168. width:375px;
  4169. height:44px;
  4170. }
  4171. #u12549 {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:482px;
  4175. top:24px;
  4176. width:375px;
  4177. height:44px;
  4178. display:flex;
  4179. }
  4180. #u12549 .text {
  4181. position:absolute;
  4182. align-self:center;
  4183. padding:2px 2px 2px 2px;
  4184. box-sizing:border-box;
  4185. width:100%;
  4186. }
  4187. #u12549_text {
  4188. border-width:0px;
  4189. word-wrap:break-word;
  4190. text-transform:none;
  4191. visibility:hidden;
  4192. }
  4193. #u12550_div {
  4194. border-width:0px;
  4195. position:absolute;
  4196. left:0px;
  4197. top:0px;
  4198. width:375px;
  4199. height:50px;
  4200. background:inherit;
  4201. background-color:rgba(255, 255, 255, 1);
  4202. box-sizing:border-box;
  4203. border-width:1px;
  4204. border-style:solid;
  4205. border-color:rgba(242, 242, 242, 1);
  4206. border-radius:26px;
  4207. border-top-left-radius:0px;
  4208. border-top-right-radius:0px;
  4209. -moz-box-shadow:none;
  4210. -webkit-box-shadow:none;
  4211. box-shadow:none;
  4212. }
  4213. #u12550 {
  4214. border-width:0px;
  4215. position:absolute;
  4216. left:482px;
  4217. top:788px;
  4218. width:375px;
  4219. height:50px;
  4220. display:flex;
  4221. }
  4222. #u12550 .text {
  4223. position:absolute;
  4224. align-self:center;
  4225. padding:2px 2px 2px 2px;
  4226. box-sizing:border-box;
  4227. width:100%;
  4228. }
  4229. #u12550_text {
  4230. border-width:0px;
  4231. word-wrap:break-word;
  4232. text-transform:none;
  4233. visibility:hidden;
  4234. }
  4235. #u12551 {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:0px;
  4239. top:0px;
  4240. width:0px;
  4241. height:0px;
  4242. }
  4243. #u12552_img {
  4244. border-width:0px;
  4245. position:absolute;
  4246. left:0px;
  4247. top:0px;
  4248. width:24px;
  4249. height:24px;
  4250. }
  4251. #u12552 {
  4252. border-width:0px;
  4253. position:absolute;
  4254. left:522px;
  4255. top:792px;
  4256. width:24px;
  4257. height:24px;
  4258. display:flex;
  4259. font-size:8px;
  4260. }
  4261. #u12552 .text {
  4262. position:absolute;
  4263. align-self:center;
  4264. padding:2px 2px 2px 2px;
  4265. box-sizing:border-box;
  4266. width:100%;
  4267. }
  4268. #u12552_text {
  4269. border-width:0px;
  4270. word-wrap:break-word;
  4271. text-transform:none;
  4272. }
  4273. #u12553_div {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:0px;
  4277. top:0px;
  4278. width:25px;
  4279. height:17px;
  4280. background:inherit;
  4281. background-color:rgba(255, 255, 255, 0);
  4282. border:none;
  4283. border-radius:0px;
  4284. -moz-box-shadow:none;
  4285. -webkit-box-shadow:none;
  4286. box-shadow:none;
  4287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4288. font-weight:400;
  4289. font-style:normal;
  4290. font-size:12px;
  4291. }
  4292. #u12553 {
  4293. border-width:0px;
  4294. position:absolute;
  4295. left:522px;
  4296. top:817px;
  4297. width:25px;
  4298. height:17px;
  4299. display:flex;
  4300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4301. font-weight:400;
  4302. font-style:normal;
  4303. font-size:12px;
  4304. }
  4305. #u12553 .text {
  4306. position:absolute;
  4307. align-self:flex-start;
  4308. padding:0px 0px 0px 0px;
  4309. box-sizing:border-box;
  4310. width:100%;
  4311. }
  4312. #u12553_text {
  4313. border-width:0px;
  4314. white-space:nowrap;
  4315. text-transform:none;
  4316. }
  4317. #u12554 {
  4318. border-width:0px;
  4319. position:absolute;
  4320. left:0px;
  4321. top:0px;
  4322. width:0px;
  4323. height:0px;
  4324. }
  4325. #u12555_img {
  4326. border-width:0px;
  4327. position:absolute;
  4328. left:0px;
  4329. top:0px;
  4330. width:24px;
  4331. height:24px;
  4332. }
  4333. #u12555 {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:792px;
  4337. top:794px;
  4338. width:24px;
  4339. height:24px;
  4340. display:flex;
  4341. font-size:8px;
  4342. }
  4343. #u12555 .text {
  4344. position:absolute;
  4345. align-self:center;
  4346. padding:2px 2px 2px 2px;
  4347. box-sizing:border-box;
  4348. width:100%;
  4349. }
  4350. #u12555_text {
  4351. border-width:0px;
  4352. word-wrap:break-word;
  4353. text-transform:none;
  4354. }
  4355. #u12556_div {
  4356. border-width:0px;
  4357. position:absolute;
  4358. left:0px;
  4359. top:0px;
  4360. width:25px;
  4361. height:17px;
  4362. background:inherit;
  4363. background-color:rgba(255, 255, 255, 0);
  4364. border:none;
  4365. border-radius:0px;
  4366. -moz-box-shadow:none;
  4367. -webkit-box-shadow:none;
  4368. box-shadow:none;
  4369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4370. font-weight:400;
  4371. font-style:normal;
  4372. font-size:12px;
  4373. }
  4374. #u12556 {
  4375. border-width:0px;
  4376. position:absolute;
  4377. left:792px;
  4378. top:819px;
  4379. width:25px;
  4380. height:17px;
  4381. display:flex;
  4382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4383. font-weight:400;
  4384. font-style:normal;
  4385. font-size:12px;
  4386. }
  4387. #u12556 .text {
  4388. position:absolute;
  4389. align-self:flex-start;
  4390. padding:0px 0px 0px 0px;
  4391. box-sizing:border-box;
  4392. width:100%;
  4393. }
  4394. #u12556_text {
  4395. border-width:0px;
  4396. white-space:nowrap;
  4397. text-transform:none;
  4398. }
  4399. #u12557_div {
  4400. border-width:0px;
  4401. position:absolute;
  4402. left:0px;
  4403. top:0px;
  4404. width:375px;
  4405. height:681px;
  4406. background:inherit;
  4407. background-color:rgba(242, 242, 242, 0.462745098039216);
  4408. border:none;
  4409. border-radius:0px;
  4410. -moz-box-shadow:none;
  4411. -webkit-box-shadow:none;
  4412. box-shadow:none;
  4413. }
  4414. #u12557 {
  4415. border-width:0px;
  4416. position:absolute;
  4417. left:482px;
  4418. top:107px;
  4419. width:375px;
  4420. height:681px;
  4421. display:flex;
  4422. }
  4423. #u12557 .text {
  4424. position:absolute;
  4425. align-self:center;
  4426. padding:2px 2px 2px 2px;
  4427. box-sizing:border-box;
  4428. width:100%;
  4429. }
  4430. #u12557_text {
  4431. border-width:0px;
  4432. word-wrap:break-word;
  4433. text-transform:none;
  4434. visibility:hidden;
  4435. }
  4436. #u12558 {
  4437. border-width:0px;
  4438. position:absolute;
  4439. left:0px;
  4440. top:0px;
  4441. width:0px;
  4442. height:0px;
  4443. }
  4444. #u12559_img {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:0px;
  4448. top:0px;
  4449. width:24px;
  4450. height:24px;
  4451. }
  4452. #u12559 {
  4453. border-width:0px;
  4454. position:absolute;
  4455. left:704px;
  4456. top:792px;
  4457. width:24px;
  4458. height:24px;
  4459. display:flex;
  4460. font-size:8px;
  4461. }
  4462. #u12559 .text {
  4463. position:absolute;
  4464. align-self:center;
  4465. padding:2px 2px 2px 2px;
  4466. box-sizing:border-box;
  4467. width:100%;
  4468. }
  4469. #u12559_text {
  4470. border-width:0px;
  4471. word-wrap:break-word;
  4472. text-transform:none;
  4473. }
  4474. #u12560_div {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:0px;
  4478. top:0px;
  4479. width:37px;
  4480. height:17px;
  4481. background:inherit;
  4482. background-color:rgba(255, 255, 255, 0);
  4483. border:none;
  4484. border-radius:0px;
  4485. -moz-box-shadow:none;
  4486. -webkit-box-shadow:none;
  4487. box-shadow:none;
  4488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4489. font-weight:400;
  4490. font-style:normal;
  4491. font-size:12px;
  4492. }
  4493. #u12560 {
  4494. border-width:0px;
  4495. position:absolute;
  4496. left:698px;
  4497. top:817px;
  4498. width:37px;
  4499. height:17px;
  4500. display:flex;
  4501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4502. font-weight:400;
  4503. font-style:normal;
  4504. font-size:12px;
  4505. }
  4506. #u12560 .text {
  4507. position:absolute;
  4508. align-self:flex-start;
  4509. padding:0px 0px 0px 0px;
  4510. box-sizing:border-box;
  4511. width:100%;
  4512. }
  4513. #u12560_text {
  4514. border-width:0px;
  4515. white-space:nowrap;
  4516. text-transform:none;
  4517. }
  4518. #u12561 {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:0px;
  4522. top:0px;
  4523. width:0px;
  4524. height:0px;
  4525. }
  4526. #u12562_img {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:0px;
  4530. top:0px;
  4531. width:24px;
  4532. height:24px;
  4533. }
  4534. #u12562 {
  4535. border-width:0px;
  4536. position:absolute;
  4537. left:610px;
  4538. top:792px;
  4539. width:24px;
  4540. height:24px;
  4541. display:flex;
  4542. font-size:8px;
  4543. }
  4544. #u12562 .text {
  4545. position:absolute;
  4546. align-self:center;
  4547. padding:2px 2px 2px 2px;
  4548. box-sizing:border-box;
  4549. width:100%;
  4550. }
  4551. #u12562_text {
  4552. border-width:0px;
  4553. word-wrap:break-word;
  4554. text-transform:none;
  4555. }
  4556. #u12563_div {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:0px;
  4560. top:0px;
  4561. width:37px;
  4562. height:17px;
  4563. background:inherit;
  4564. background-color:rgba(255, 255, 255, 0);
  4565. border:none;
  4566. border-radius:0px;
  4567. -moz-box-shadow:none;
  4568. -webkit-box-shadow:none;
  4569. box-shadow:none;
  4570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4571. font-weight:400;
  4572. font-style:normal;
  4573. font-size:12px;
  4574. }
  4575. #u12563 {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:604px;
  4579. top:817px;
  4580. width:37px;
  4581. height:17px;
  4582. display:flex;
  4583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4584. font-weight:400;
  4585. font-style:normal;
  4586. font-size:12px;
  4587. }
  4588. #u12563 .text {
  4589. position:absolute;
  4590. align-self:flex-start;
  4591. padding:0px 0px 0px 0px;
  4592. box-sizing:border-box;
  4593. width:100%;
  4594. }
  4595. #u12563_text {
  4596. border-width:0px;
  4597. white-space:nowrap;
  4598. text-transform:none;
  4599. }
  4600. #u12564_img {
  4601. border-width:0px;
  4602. position:absolute;
  4603. left:0px;
  4604. top:0px;
  4605. width:375px;
  4606. height:949px;
  4607. }
  4608. #u12564 {
  4609. border-width:0px;
  4610. position:absolute;
  4611. left:482px;
  4612. top:106px;
  4613. width:375px;
  4614. height:949px;
  4615. display:flex;
  4616. }
  4617. #u12564 .text {
  4618. position:absolute;
  4619. align-self:center;
  4620. padding:2px 2px 2px 2px;
  4621. box-sizing:border-box;
  4622. width:100%;
  4623. }
  4624. #u12564_text {
  4625. border-width:0px;
  4626. word-wrap:break-word;
  4627. text-transform:none;
  4628. visibility:hidden;
  4629. }
  4630. #u12565 {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:0px;
  4634. top:0px;
  4635. width:0px;
  4636. height:0px;
  4637. }
  4638. #u12566_img {
  4639. border-width:0px;
  4640. position:absolute;
  4641. left:0px;
  4642. top:0px;
  4643. width:11px;
  4644. height:18px;
  4645. }
  4646. #u12566 {
  4647. border-width:0px;
  4648. position:absolute;
  4649. left:493px;
  4650. top:79px;
  4651. width:11px;
  4652. height:18px;
  4653. display:flex;
  4654. }
  4655. #u12566 .text {
  4656. position:absolute;
  4657. align-self:center;
  4658. padding:2px 2px 2px 2px;
  4659. box-sizing:border-box;
  4660. width:100%;
  4661. }
  4662. #u12566_text {
  4663. border-width:0px;
  4664. word-wrap:break-word;
  4665. text-transform:none;
  4666. visibility:hidden;
  4667. }
  4668. #u12567 {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:0px;
  4672. top:0px;
  4673. width:0px;
  4674. height:0px;
  4675. }
  4676. #u12568_div {
  4677. border-width:0px;
  4678. position:absolute;
  4679. left:0px;
  4680. top:0px;
  4681. width:349px;
  4682. height:180px;
  4683. background:inherit;
  4684. background-color:rgba(255, 255, 255, 1);
  4685. border:none;
  4686. border-radius:4px;
  4687. -moz-box-shadow:none;
  4688. -webkit-box-shadow:none;
  4689. box-shadow:none;
  4690. }
  4691. #u12568 {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:495px;
  4695. top:116px;
  4696. width:349px;
  4697. height:180px;
  4698. display:flex;
  4699. }
  4700. #u12568 .text {
  4701. position:absolute;
  4702. align-self:center;
  4703. padding:2px 2px 2px 2px;
  4704. box-sizing:border-box;
  4705. width:100%;
  4706. }
  4707. #u12568_text {
  4708. border-width:0px;
  4709. word-wrap:break-word;
  4710. text-transform:none;
  4711. visibility:hidden;
  4712. }
  4713. #u12569_div {
  4714. border-width:0px;
  4715. position:absolute;
  4716. left:0px;
  4717. top:0px;
  4718. width:95px;
  4719. height:25px;
  4720. background:inherit;
  4721. background-color:rgba(255, 255, 255, 0);
  4722. border:none;
  4723. border-radius:0px;
  4724. -moz-box-shadow:none;
  4725. -webkit-box-shadow:none;
  4726. box-shadow:none;
  4727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4728. font-weight:400;
  4729. font-style:normal;
  4730. font-size:18px;
  4731. }
  4732. #u12569 {
  4733. border-width:0px;
  4734. position:absolute;
  4735. left:515px;
  4736. top:130px;
  4737. width:95px;
  4738. height:25px;
  4739. display:flex;
  4740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4741. font-weight:400;
  4742. font-style:normal;
  4743. font-size:18px;
  4744. }
  4745. #u12569 .text {
  4746. position:absolute;
  4747. align-self:flex-start;
  4748. padding:0px 0px 0px 0px;
  4749. box-sizing:border-box;
  4750. width:100%;
  4751. }
  4752. #u12569_text {
  4753. border-width:0px;
  4754. white-space:nowrap;
  4755. text-transform:none;
  4756. }
  4757. #u12570_div {
  4758. border-width:0px;
  4759. position:absolute;
  4760. left:0px;
  4761. top:0px;
  4762. width:134px;
  4763. height:40px;
  4764. background:inherit;
  4765. background-color:rgba(0, 191, 191, 0);
  4766. border:none;
  4767. border-radius:0px;
  4768. -moz-box-shadow:none;
  4769. -webkit-box-shadow:none;
  4770. box-shadow:none;
  4771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4772. font-weight:400;
  4773. font-style:normal;
  4774. font-size:12px;
  4775. color:#555555;
  4776. line-height:20px;
  4777. }
  4778. #u12570 {
  4779. border-width:0px;
  4780. position:absolute;
  4781. left:515px;
  4782. top:155px;
  4783. width:134px;
  4784. height:40px;
  4785. display:flex;
  4786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4787. font-weight:400;
  4788. font-style:normal;
  4789. font-size:12px;
  4790. color:#555555;
  4791. line-height:20px;
  4792. }
  4793. #u12570 .text {
  4794. position:absolute;
  4795. align-self:flex-start;
  4796. padding:0px 2px 0px 2px;
  4797. box-sizing:border-box;
  4798. width:100%;
  4799. }
  4800. #u12570_text {
  4801. border-width:0px;
  4802. white-space:nowrap;
  4803. text-transform:none;
  4804. }
  4805. #u12571_img {
  4806. border-width:0px;
  4807. position:absolute;
  4808. left:0px;
  4809. top:0px;
  4810. width:67px;
  4811. height:52px;
  4812. }
  4813. #u12571 {
  4814. border-width:0px;
  4815. position:absolute;
  4816. left:751px;
  4817. top:134px;
  4818. width:67px;
  4819. height:52px;
  4820. display:flex;
  4821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4822. font-weight:400;
  4823. font-style:normal;
  4824. }
  4825. #u12571 .text {
  4826. position:absolute;
  4827. align-self:center;
  4828. padding:2px 2px 2px 2px;
  4829. box-sizing:border-box;
  4830. width:100%;
  4831. }
  4832. #u12571_text {
  4833. border-width:0px;
  4834. word-wrap:break-word;
  4835. text-transform:none;
  4836. }
  4837. #u12572_img {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:0px;
  4841. top:0px;
  4842. width:310px;
  4843. height:2px;
  4844. }
  4845. #u12572 {
  4846. border-width:0px;
  4847. position:absolute;
  4848. left:515px;
  4849. top:210px;
  4850. width:309px;
  4851. height:1px;
  4852. display:flex;
  4853. }
  4854. #u12572 .text {
  4855. position:absolute;
  4856. align-self:center;
  4857. padding:2px 2px 2px 2px;
  4858. box-sizing:border-box;
  4859. width:100%;
  4860. }
  4861. #u12572_text {
  4862. border-width:0px;
  4863. word-wrap:break-word;
  4864. text-transform:none;
  4865. visibility:hidden;
  4866. }
  4867. #u12573_div {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:0px;
  4871. top:0px;
  4872. width:75px;
  4873. height:20px;
  4874. background:inherit;
  4875. background-color:rgba(255, 255, 255, 0);
  4876. border:none;
  4877. border-radius:0px;
  4878. -moz-box-shadow:none;
  4879. -webkit-box-shadow:none;
  4880. box-shadow:none;
  4881. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4882. font-weight:500;
  4883. font-style:normal;
  4884. font-size:14px;
  4885. text-align:center;
  4886. }
  4887. #u12573 {
  4888. border-width:0px;
  4889. position:absolute;
  4890. left:515px;
  4891. top:226px;
  4892. width:75px;
  4893. height:20px;
  4894. display:flex;
  4895. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4896. font-weight:500;
  4897. font-style:normal;
  4898. font-size:14px;
  4899. text-align:center;
  4900. }
  4901. #u12573 .text {
  4902. position:absolute;
  4903. align-self:flex-start;
  4904. padding:0px 0px 0px 0px;
  4905. box-sizing:border-box;
  4906. width:100%;
  4907. }
  4908. #u12573_text {
  4909. border-width:0px;
  4910. white-space:nowrap;
  4911. text-transform:none;
  4912. }
  4913. #u12574_div {
  4914. border-width:0px;
  4915. position:absolute;
  4916. left:0px;
  4917. top:0px;
  4918. width:49px;
  4919. height:17px;
  4920. background:inherit;
  4921. background-color:rgba(255, 255, 255, 0);
  4922. border:none;
  4923. border-radius:0px;
  4924. -moz-box-shadow:none;
  4925. -webkit-box-shadow:none;
  4926. box-shadow:none;
  4927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4928. font-weight:400;
  4929. font-style:normal;
  4930. font-size:12px;
  4931. color:#555555;
  4932. text-align:center;
  4933. }
  4934. #u12574 {
  4935. border-width:0px;
  4936. position:absolute;
  4937. left:525px;
  4938. top:256px;
  4939. width:49px;
  4940. height:17px;
  4941. display:flex;
  4942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4943. font-weight:400;
  4944. font-style:normal;
  4945. font-size:12px;
  4946. color:#555555;
  4947. text-align:center;
  4948. }
  4949. #u12574 .text {
  4950. position:absolute;
  4951. align-self:flex-start;
  4952. padding:0px 0px 0px 0px;
  4953. box-sizing:border-box;
  4954. width:100%;
  4955. }
  4956. #u12574_text {
  4957. border-width:0px;
  4958. white-space:nowrap;
  4959. text-transform:none;
  4960. }
  4961. #u12575_div {
  4962. border-width:0px;
  4963. position:absolute;
  4964. left:0px;
  4965. top:0px;
  4966. width:35px;
  4967. height:20px;
  4968. background:inherit;
  4969. background-color:rgba(255, 255, 255, 0);
  4970. border:none;
  4971. border-radius:0px;
  4972. -moz-box-shadow:none;
  4973. -webkit-box-shadow:none;
  4974. box-shadow:none;
  4975. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4976. font-weight:500;
  4977. font-style:normal;
  4978. font-size:14px;
  4979. text-align:center;
  4980. }
  4981. #u12575 {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:655px;
  4985. top:226px;
  4986. width:35px;
  4987. height:20px;
  4988. display:flex;
  4989. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4990. font-weight:500;
  4991. font-style:normal;
  4992. font-size:14px;
  4993. text-align:center;
  4994. }
  4995. #u12575 .text {
  4996. position:absolute;
  4997. align-self:flex-start;
  4998. padding:0px 0px 0px 0px;
  4999. box-sizing:border-box;
  5000. width:100%;
  5001. }
  5002. #u12575_text {
  5003. border-width:0px;
  5004. white-space:nowrap;
  5005. text-transform:none;
  5006. }
  5007. #u12576_div {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:0px;
  5011. top:0px;
  5012. width:49px;
  5013. height:17px;
  5014. background:inherit;
  5015. background-color:rgba(255, 255, 255, 0);
  5016. border:none;
  5017. border-radius:0px;
  5018. -moz-box-shadow:none;
  5019. -webkit-box-shadow:none;
  5020. box-shadow:none;
  5021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5022. font-weight:400;
  5023. font-style:normal;
  5024. font-size:12px;
  5025. color:#555555;
  5026. text-align:center;
  5027. }
  5028. #u12576 {
  5029. border-width:0px;
  5030. position:absolute;
  5031. left:645px;
  5032. top:256px;
  5033. width:49px;
  5034. height:17px;
  5035. display:flex;
  5036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5037. font-weight:400;
  5038. font-style:normal;
  5039. font-size:12px;
  5040. color:#555555;
  5041. text-align:center;
  5042. }
  5043. #u12576 .text {
  5044. position:absolute;
  5045. align-self:flex-start;
  5046. padding:0px 0px 0px 0px;
  5047. box-sizing:border-box;
  5048. width:100%;
  5049. }
  5050. #u12576_text {
  5051. border-width:0px;
  5052. white-space:nowrap;
  5053. text-transform:none;
  5054. }
  5055. #u12577_div {
  5056. border-width:0px;
  5057. position:absolute;
  5058. left:0px;
  5059. top:0px;
  5060. width:48px;
  5061. height:20px;
  5062. background:inherit;
  5063. background-color:rgba(255, 255, 255, 0);
  5064. border:none;
  5065. border-radius:0px;
  5066. -moz-box-shadow:none;
  5067. -webkit-box-shadow:none;
  5068. box-shadow:none;
  5069. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5070. font-weight:500;
  5071. font-style:normal;
  5072. font-size:14px;
  5073. text-align:center;
  5074. }
  5075. #u12577 {
  5076. border-width:0px;
  5077. position:absolute;
  5078. left:770px;
  5079. top:226px;
  5080. width:48px;
  5081. height:20px;
  5082. display:flex;
  5083. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5084. font-weight:500;
  5085. font-style:normal;
  5086. font-size:14px;
  5087. text-align:center;
  5088. }
  5089. #u12577 .text {
  5090. position:absolute;
  5091. align-self:flex-start;
  5092. padding:0px 0px 0px 0px;
  5093. box-sizing:border-box;
  5094. width:100%;
  5095. }
  5096. #u12577_text {
  5097. border-width:0px;
  5098. white-space:nowrap;
  5099. text-transform:none;
  5100. }
  5101. #u12578_div {
  5102. border-width:0px;
  5103. position:absolute;
  5104. left:0px;
  5105. top:0px;
  5106. width:49px;
  5107. height:17px;
  5108. background:inherit;
  5109. background-color:rgba(255, 255, 255, 0);
  5110. border:none;
  5111. border-radius:0px;
  5112. -moz-box-shadow:none;
  5113. -webkit-box-shadow:none;
  5114. box-shadow:none;
  5115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5116. font-weight:400;
  5117. font-style:normal;
  5118. font-size:12px;
  5119. color:#555555;
  5120. text-align:center;
  5121. }
  5122. #u12578 {
  5123. border-width:0px;
  5124. position:absolute;
  5125. left:767px;
  5126. top:256px;
  5127. width:49px;
  5128. height:17px;
  5129. display:flex;
  5130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5131. font-weight:400;
  5132. font-style:normal;
  5133. font-size:12px;
  5134. color:#555555;
  5135. text-align:center;
  5136. }
  5137. #u12578 .text {
  5138. position:absolute;
  5139. align-self:flex-start;
  5140. padding:0px 0px 0px 0px;
  5141. box-sizing:border-box;
  5142. width:100%;
  5143. }
  5144. #u12578_text {
  5145. border-width:0px;
  5146. white-space:nowrap;
  5147. text-transform:none;
  5148. }
  5149. #u12579_div {
  5150. border-width:0px;
  5151. position:absolute;
  5152. left:0px;
  5153. top:0px;
  5154. width:349px;
  5155. height:253px;
  5156. background:inherit;
  5157. background-color:rgba(255, 255, 255, 1);
  5158. border:none;
  5159. border-radius:4px;
  5160. -moz-box-shadow:none;
  5161. -webkit-box-shadow:none;
  5162. box-shadow:none;
  5163. }
  5164. #u12579 {
  5165. border-width:0px;
  5166. position:absolute;
  5167. left:495px;
  5168. top:306px;
  5169. width:349px;
  5170. height:253px;
  5171. display:flex;
  5172. }
  5173. #u12579 .text {
  5174. position:absolute;
  5175. align-self:center;
  5176. padding:2px 2px 2px 2px;
  5177. box-sizing:border-box;
  5178. width:100%;
  5179. }
  5180. #u12579_text {
  5181. border-width:0px;
  5182. word-wrap:break-word;
  5183. text-transform:none;
  5184. visibility:hidden;
  5185. }
  5186. #u12580_div {
  5187. border-width:0px;
  5188. position:absolute;
  5189. left:0px;
  5190. top:0px;
  5191. width:57px;
  5192. height:30px;
  5193. background:inherit;
  5194. background-color:rgba(255, 255, 255, 0);
  5195. border:none;
  5196. border-left:0px;
  5197. border-top:0px;
  5198. border-right:0px;
  5199. border-radius:0px;
  5200. border-bottom-right-radius:0px;
  5201. border-bottom-left-radius:0px;
  5202. -moz-box-shadow:none;
  5203. -webkit-box-shadow:none;
  5204. box-shadow:none;
  5205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5206. font-weight:400;
  5207. font-style:normal;
  5208. font-size:14px;
  5209. line-height:30px;
  5210. }
  5211. #u12580 {
  5212. border-width:0px;
  5213. position:absolute;
  5214. left:509px;
  5215. top:316px;
  5216. width:57px;
  5217. height:30px;
  5218. display:flex;
  5219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5220. font-weight:400;
  5221. font-style:normal;
  5222. font-size:14px;
  5223. line-height:30px;
  5224. }
  5225. #u12580 .text {
  5226. position:absolute;
  5227. align-self:flex-start;
  5228. padding:0px 0px 0px 0px;
  5229. box-sizing:border-box;
  5230. width:100%;
  5231. }
  5232. #u12580_text {
  5233. border-width:0px;
  5234. white-space:nowrap;
  5235. text-transform:none;
  5236. }
  5237. #u12581_div {
  5238. border-width:0px;
  5239. position:absolute;
  5240. left:0px;
  5241. top:0px;
  5242. width:85px;
  5243. height:30px;
  5244. background:inherit;
  5245. background-color:rgba(255, 255, 255, 0);
  5246. border:none;
  5247. border-left:0px;
  5248. border-top:0px;
  5249. border-right:0px;
  5250. border-radius:0px;
  5251. border-bottom-right-radius:0px;
  5252. border-bottom-left-radius:0px;
  5253. -moz-box-shadow:none;
  5254. -webkit-box-shadow:none;
  5255. box-shadow:none;
  5256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5257. font-weight:400;
  5258. font-style:normal;
  5259. font-size:14px;
  5260. color:#AAAAAA;
  5261. line-height:30px;
  5262. }
  5263. #u12581 {
  5264. border-width:0px;
  5265. position:absolute;
  5266. left:509px;
  5267. top:383px;
  5268. width:85px;
  5269. height:30px;
  5270. display:flex;
  5271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5272. font-weight:400;
  5273. font-style:normal;
  5274. font-size:14px;
  5275. color:#AAAAAA;
  5276. line-height:30px;
  5277. }
  5278. #u12581 .text {
  5279. position:absolute;
  5280. align-self:flex-start;
  5281. padding:0px 0px 0px 0px;
  5282. box-sizing:border-box;
  5283. width:100%;
  5284. }
  5285. #u12581_text {
  5286. border-width:0px;
  5287. white-space:nowrap;
  5288. text-transform:none;
  5289. }
  5290. #u12582_div {
  5291. border-width:0px;
  5292. position:absolute;
  5293. left:0px;
  5294. top:0px;
  5295. width:37px;
  5296. height:30px;
  5297. background:inherit;
  5298. background-color:rgba(255, 255, 255, 0);
  5299. border:none;
  5300. border-left:0px;
  5301. border-top:0px;
  5302. border-right:0px;
  5303. border-radius:0px;
  5304. border-bottom-right-radius:0px;
  5305. border-bottom-left-radius:0px;
  5306. -moz-box-shadow:none;
  5307. -webkit-box-shadow:none;
  5308. box-shadow:none;
  5309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5310. font-weight:400;
  5311. font-style:normal;
  5312. font-size:12px;
  5313. line-height:30px;
  5314. }
  5315. #u12582 {
  5316. border-width:0px;
  5317. position:absolute;
  5318. left:509px;
  5319. top:352px;
  5320. width:37px;
  5321. height:30px;
  5322. display:flex;
  5323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5324. font-weight:400;
  5325. font-style:normal;
  5326. font-size:12px;
  5327. line-height:30px;
  5328. }
  5329. #u12582 .text {
  5330. position:absolute;
  5331. align-self:flex-start;
  5332. padding:0px 0px 0px 0px;
  5333. box-sizing:border-box;
  5334. width:100%;
  5335. }
  5336. #u12582_text {
  5337. border-width:0px;
  5338. white-space:nowrap;
  5339. text-transform:none;
  5340. }
  5341. #u12583 {
  5342. border-width:0px;
  5343. position:absolute;
  5344. left:0px;
  5345. top:0px;
  5346. width:0px;
  5347. height:0px;
  5348. }
  5349. #u12584_div {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:0px;
  5353. top:0px;
  5354. width:375px;
  5355. height:60px;
  5356. background:inherit;
  5357. background-color:rgba(255, 255, 255, 1);
  5358. border:none;
  5359. border-top:0px;
  5360. border-radius:22px;
  5361. border-top-left-radius:0px;
  5362. border-top-right-radius:0px;
  5363. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5364. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5365. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5366. }
  5367. #u12584 {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:482px;
  5371. top:995px;
  5372. width:375px;
  5373. height:60px;
  5374. display:flex;
  5375. }
  5376. #u12584 .text {
  5377. position:absolute;
  5378. align-self:center;
  5379. padding:2px 2px 2px 2px;
  5380. box-sizing:border-box;
  5381. width:100%;
  5382. }
  5383. #u12584_text {
  5384. border-width:0px;
  5385. word-wrap:break-word;
  5386. text-transform:none;
  5387. visibility:hidden;
  5388. }
  5389. #u12585_div {
  5390. border-width:0px;
  5391. position:absolute;
  5392. left:0px;
  5393. top:0px;
  5394. width:120px;
  5395. height:40px;
  5396. background:inherit;
  5397. background-color:rgba(0, 137, 254, 1);
  5398. border:none;
  5399. border-radius:82px;
  5400. -moz-box-shadow:none;
  5401. -webkit-box-shadow:none;
  5402. box-shadow:none;
  5403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5404. font-weight:400;
  5405. font-style:normal;
  5406. font-size:14px;
  5407. color:#FFFFFF;
  5408. }
  5409. #u12585 {
  5410. border-width:0px;
  5411. position:absolute;
  5412. left:719px;
  5413. top:1005px;
  5414. width:120px;
  5415. height:40px;
  5416. display:flex;
  5417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5418. font-weight:400;
  5419. font-style:normal;
  5420. font-size:14px;
  5421. color:#FFFFFF;
  5422. }
  5423. #u12585 .text {
  5424. position:absolute;
  5425. align-self:center;
  5426. padding:2px 2px 2px 2px;
  5427. box-sizing:border-box;
  5428. width:100%;
  5429. }
  5430. #u12585_text {
  5431. border-width:0px;
  5432. word-wrap:break-word;
  5433. text-transform:none;
  5434. }
  5435. #u12586_div {
  5436. border-width:0px;
  5437. position:absolute;
  5438. left:0px;
  5439. top:0px;
  5440. width:76px;
  5441. height:25px;
  5442. background:inherit;
  5443. background-color:rgba(255, 255, 255, 0);
  5444. border:none;
  5445. border-radius:0px;
  5446. -moz-box-shadow:none;
  5447. -webkit-box-shadow:none;
  5448. box-shadow:none;
  5449. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5450. font-style:normal;
  5451. line-height:25px;
  5452. }
  5453. #u12586 {
  5454. border-width:0px;
  5455. position:absolute;
  5456. left:511px;
  5457. top:1013px;
  5458. width:76px;
  5459. height:25px;
  5460. display:flex;
  5461. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5462. font-style:normal;
  5463. line-height:25px;
  5464. }
  5465. #u12586 .text {
  5466. position:absolute;
  5467. align-self:flex-start;
  5468. padding:0px 0px 0px 0px;
  5469. box-sizing:border-box;
  5470. width:100%;
  5471. }
  5472. #u12586_text {
  5473. border-width:0px;
  5474. white-space:nowrap;
  5475. text-transform:none;
  5476. }
  5477. #u12587_div {
  5478. border-width:0px;
  5479. position:absolute;
  5480. left:0px;
  5481. top:0px;
  5482. width:53px;
  5483. height:30px;
  5484. background:inherit;
  5485. background-color:rgba(0, 137, 254, 0);
  5486. box-sizing:border-box;
  5487. border-width:1px;
  5488. border-style:solid;
  5489. border-color:rgba(0, 137, 254, 1);
  5490. border-radius:26px;
  5491. -moz-box-shadow:none;
  5492. -webkit-box-shadow:none;
  5493. box-shadow:none;
  5494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5495. font-weight:400;
  5496. font-style:normal;
  5497. font-size:14px;
  5498. color:#0089FE;
  5499. text-align:center;
  5500. }
  5501. #u12587 {
  5502. border-width:0px;
  5503. position:absolute;
  5504. left:779px;
  5505. top:383px;
  5506. width:53px;
  5507. height:30px;
  5508. display:flex;
  5509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5510. font-weight:400;
  5511. font-style:normal;
  5512. font-size:14px;
  5513. color:#0089FE;
  5514. text-align:center;
  5515. }
  5516. #u12587 .text {
  5517. position:absolute;
  5518. align-self:center;
  5519. padding:2px 5px 2px 5px;
  5520. box-sizing:border-box;
  5521. width:100%;
  5522. }
  5523. #u12587_text {
  5524. border-width:0px;
  5525. word-wrap:break-word;
  5526. text-transform:none;
  5527. }
  5528. #u12588 {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:0px;
  5532. top:0px;
  5533. width:0px;
  5534. height:0px;
  5535. }
  5536. #u12589_div {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:0px;
  5540. top:0px;
  5541. width:349px;
  5542. height:400px;
  5543. background:inherit;
  5544. background-color:rgba(255, 255, 255, 1);
  5545. border:none;
  5546. border-radius:4px;
  5547. -moz-box-shadow:none;
  5548. -webkit-box-shadow:none;
  5549. box-shadow:none;
  5550. }
  5551. #u12589 {
  5552. border-width:0px;
  5553. position:absolute;
  5554. left:495px;
  5555. top:569px;
  5556. width:349px;
  5557. height:400px;
  5558. display:flex;
  5559. }
  5560. #u12589 .text {
  5561. position:absolute;
  5562. align-self:center;
  5563. padding:2px 2px 2px 2px;
  5564. box-sizing:border-box;
  5565. width:100%;
  5566. }
  5567. #u12589_text {
  5568. border-width:0px;
  5569. word-wrap:break-word;
  5570. text-transform:none;
  5571. visibility:hidden;
  5572. }
  5573. #u12590_div {
  5574. border-width:0px;
  5575. position:absolute;
  5576. left:0px;
  5577. top:0px;
  5578. width:57px;
  5579. height:20px;
  5580. background:inherit;
  5581. background-color:rgba(255, 255, 255, 0);
  5582. border:none;
  5583. border-radius:0px;
  5584. -moz-box-shadow:none;
  5585. -webkit-box-shadow:none;
  5586. box-shadow:none;
  5587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5588. font-weight:400;
  5589. font-style:normal;
  5590. font-size:14px;
  5591. }
  5592. #u12590 {
  5593. border-width:0px;
  5594. position:absolute;
  5595. left:510px;
  5596. top:583px;
  5597. width:57px;
  5598. height:20px;
  5599. display:flex;
  5600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5601. font-weight:400;
  5602. font-style:normal;
  5603. font-size:14px;
  5604. }
  5605. #u12590 .text {
  5606. position:absolute;
  5607. align-self:flex-start;
  5608. padding:0px 0px 0px 0px;
  5609. box-sizing:border-box;
  5610. width:100%;
  5611. }
  5612. #u12590_text {
  5613. border-width:0px;
  5614. white-space:nowrap;
  5615. text-transform:none;
  5616. }
  5617. #u12591_div {
  5618. border-width:0px;
  5619. position:absolute;
  5620. left:0px;
  5621. top:0px;
  5622. width:128px;
  5623. height:18px;
  5624. background:inherit;
  5625. background-color:rgba(0, 137, 254, 0.12156862745098);
  5626. border:none;
  5627. border-radius:4px;
  5628. -moz-box-shadow:none;
  5629. -webkit-box-shadow:none;
  5630. box-shadow:none;
  5631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5632. font-weight:400;
  5633. font-style:normal;
  5634. font-size:10px;
  5635. color:#0089FE;
  5636. }
  5637. #u12591 {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:620px;
  5641. top:655px;
  5642. width:128px;
  5643. height:18px;
  5644. display:flex;
  5645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5646. font-weight:400;
  5647. font-style:normal;
  5648. font-size:10px;
  5649. color:#0089FE;
  5650. }
  5651. #u12591 .text {
  5652. position:absolute;
  5653. align-self:flex-start;
  5654. padding:2px 5px 2px 5px;
  5655. box-sizing:border-box;
  5656. width:100%;
  5657. }
  5658. #u12591_text {
  5659. border-width:0px;
  5660. white-space:nowrap;
  5661. text-transform:none;
  5662. }
  5663. #u12592_div {
  5664. border-width:0px;
  5665. position:absolute;
  5666. left:0px;
  5667. top:0px;
  5668. width:92px;
  5669. height:25px;
  5670. background:inherit;
  5671. background-color:rgba(255, 255, 255, 0);
  5672. border:none;
  5673. border-radius:0px;
  5674. -moz-box-shadow:none;
  5675. -webkit-box-shadow:none;
  5676. box-shadow:none;
  5677. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5678. font-style:normal;
  5679. line-height:25px;
  5680. }
  5681. #u12592 {
  5682. border-width:0px;
  5683. position:absolute;
  5684. left:510px;
  5685. top:651px;
  5686. width:92px;
  5687. height:25px;
  5688. display:flex;
  5689. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5690. font-style:normal;
  5691. line-height:25px;
  5692. }
  5693. #u12592 .text {
  5694. position:absolute;
  5695. align-self:flex-start;
  5696. padding:0px 0px 0px 0px;
  5697. box-sizing:border-box;
  5698. width:100%;
  5699. }
  5700. #u12592_text {
  5701. border-width:0px;
  5702. white-space:nowrap;
  5703. text-transform:none;
  5704. }
  5705. #u12593_div {
  5706. border-width:0px;
  5707. position:absolute;
  5708. left:0px;
  5709. top:0px;
  5710. width:284px;
  5711. height:60px;
  5712. background:inherit;
  5713. background-color:rgba(0, 191, 191, 0);
  5714. border:none;
  5715. border-radius:0px;
  5716. -moz-box-shadow:none;
  5717. -webkit-box-shadow:none;
  5718. box-shadow:none;
  5719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5720. font-weight:400;
  5721. font-style:normal;
  5722. font-size:12px;
  5723. line-height:20px;
  5724. }
  5725. #u12593 {
  5726. border-width:0px;
  5727. position:absolute;
  5728. left:525px;
  5729. top:693px;
  5730. width:284px;
  5731. height:60px;
  5732. display:flex;
  5733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5734. font-weight:400;
  5735. font-style:normal;
  5736. font-size:12px;
  5737. line-height:20px;
  5738. }
  5739. #u12593 .text {
  5740. position:absolute;
  5741. align-self:flex-start;
  5742. padding:0px 2px 0px 2px;
  5743. box-sizing:border-box;
  5744. width:100%;
  5745. }
  5746. #u12593_text {
  5747. border-width:0px;
  5748. word-wrap:break-word;
  5749. text-transform:none;
  5750. }
  5751. #u12594_div {
  5752. border-width:0px;
  5753. position:absolute;
  5754. left:0px;
  5755. top:0px;
  5756. width:71px;
  5757. height:18px;
  5758. background:inherit;
  5759. background-color:rgba(242, 242, 242, 0.803921568627451);
  5760. border:none;
  5761. border-radius:4px;
  5762. -moz-box-shadow:none;
  5763. -webkit-box-shadow:none;
  5764. box-shadow:none;
  5765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5766. font-weight:400;
  5767. font-style:normal;
  5768. font-size:10px;
  5769. color:#7F7F7F;
  5770. }
  5771. #u12594 {
  5772. border-width:0px;
  5773. position:absolute;
  5774. left:510px;
  5775. top:613px;
  5776. width:71px;
  5777. height:18px;
  5778. display:flex;
  5779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5780. font-weight:400;
  5781. font-style:normal;
  5782. font-size:10px;
  5783. color:#7F7F7F;
  5784. }
  5785. #u12594 .text {
  5786. position:absolute;
  5787. align-self:flex-start;
  5788. padding:2px 5px 2px 5px;
  5789. box-sizing:border-box;
  5790. width:100%;
  5791. }
  5792. #u12594_text {
  5793. border-width:0px;
  5794. white-space:nowrap;
  5795. text-transform:none;
  5796. }
  5797. #u12595_div {
  5798. border-width:0px;
  5799. position:absolute;
  5800. left:0px;
  5801. top:0px;
  5802. width:13px;
  5803. height:15px;
  5804. background:inherit;
  5805. background-color:rgba(0, 137, 254, 1);
  5806. border:none;
  5807. border-radius:4px;
  5808. -moz-box-shadow:none;
  5809. -webkit-box-shadow:none;
  5810. box-shadow:none;
  5811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5812. font-weight:400;
  5813. font-style:normal;
  5814. font-size:12px;
  5815. color:#FFFFFF;
  5816. }
  5817. #u12595 {
  5818. border-width:0px;
  5819. position:absolute;
  5820. left:510px;
  5821. top:696px;
  5822. width:13px;
  5823. height:15px;
  5824. display:flex;
  5825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5826. font-weight:400;
  5827. font-style:normal;
  5828. font-size:12px;
  5829. color:#FFFFFF;
  5830. }
  5831. #u12595 .text {
  5832. position:absolute;
  5833. align-self:flex-start;
  5834. padding:0px 2px 0px 2px;
  5835. box-sizing:border-box;
  5836. width:100%;
  5837. }
  5838. #u12595_text {
  5839. border-width:0px;
  5840. white-space:nowrap;
  5841. text-transform:none;
  5842. }
  5843. #u12596_div {
  5844. border-width:0px;
  5845. position:absolute;
  5846. left:0px;
  5847. top:0px;
  5848. width:284px;
  5849. height:100px;
  5850. background:inherit;
  5851. background-color:rgba(0, 191, 191, 0);
  5852. border:none;
  5853. border-radius:0px;
  5854. -moz-box-shadow:none;
  5855. -webkit-box-shadow:none;
  5856. box-shadow:none;
  5857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5858. font-weight:400;
  5859. font-style:normal;
  5860. font-size:12px;
  5861. line-height:20px;
  5862. }
  5863. #u12596 {
  5864. border-width:0px;
  5865. position:absolute;
  5866. left:534px;
  5867. top:773px;
  5868. width:284px;
  5869. height:100px;
  5870. display:flex;
  5871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5872. font-weight:400;
  5873. font-style:normal;
  5874. font-size:12px;
  5875. line-height:20px;
  5876. }
  5877. #u12596 .text {
  5878. position:absolute;
  5879. align-self:flex-start;
  5880. padding:0px 2px 0px 2px;
  5881. box-sizing:border-box;
  5882. width:100%;
  5883. }
  5884. #u12596_text {
  5885. border-width:0px;
  5886. word-wrap:break-word;
  5887. text-transform:none;
  5888. }
  5889. #u12597_div {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:0px;
  5893. top:0px;
  5894. width:17px;
  5895. height:15px;
  5896. background:inherit;
  5897. background-color:rgba(217, 0, 27, 1);
  5898. border:none;
  5899. border-radius:4px;
  5900. -moz-box-shadow:none;
  5901. -webkit-box-shadow:none;
  5902. box-shadow:none;
  5903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5904. font-weight:400;
  5905. font-style:normal;
  5906. font-size:12px;
  5907. color:#FFFFFF;
  5908. }
  5909. #u12597 {
  5910. border-width:0px;
  5911. position:absolute;
  5912. left:510px;
  5913. top:776px;
  5914. width:17px;
  5915. height:15px;
  5916. display:flex;
  5917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5918. font-weight:400;
  5919. font-style:normal;
  5920. font-size:12px;
  5921. color:#FFFFFF;
  5922. }
  5923. #u12597 .text {
  5924. position:absolute;
  5925. align-self:flex-start;
  5926. padding:0px 2px 0px 2px;
  5927. box-sizing:border-box;
  5928. width:100%;
  5929. }
  5930. #u12597_text {
  5931. border-width:0px;
  5932. white-space:nowrap;
  5933. text-transform:none;
  5934. }
  5935. #u12598_img {
  5936. border-width:0px;
  5937. position:absolute;
  5938. left:0px;
  5939. top:0px;
  5940. width:315px;
  5941. height:2px;
  5942. }
  5943. #u12598 {
  5944. border-width:0px;
  5945. position:absolute;
  5946. left:510px;
  5947. top:758px;
  5948. width:314px;
  5949. height:1px;
  5950. display:flex;
  5951. }
  5952. #u12598 .text {
  5953. position:absolute;
  5954. align-self:center;
  5955. padding:2px 2px 2px 2px;
  5956. box-sizing:border-box;
  5957. width:100%;
  5958. }
  5959. #u12598_text {
  5960. border-width:0px;
  5961. word-wrap:break-word;
  5962. text-transform:none;
  5963. visibility:hidden;
  5964. }
  5965. #u12599_div {
  5966. border-width:0px;
  5967. position:absolute;
  5968. left:0px;
  5969. top:0px;
  5970. width:284px;
  5971. height:60px;
  5972. background:inherit;
  5973. background-color:rgba(0, 191, 191, 0);
  5974. border:none;
  5975. border-radius:0px;
  5976. -moz-box-shadow:none;
  5977. -webkit-box-shadow:none;
  5978. box-shadow:none;
  5979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5980. font-weight:400;
  5981. font-style:normal;
  5982. font-size:12px;
  5983. line-height:20px;
  5984. }
  5985. #u12599 {
  5986. border-width:0px;
  5987. position:absolute;
  5988. left:534px;
  5989. top:896px;
  5990. width:284px;
  5991. height:60px;
  5992. display:flex;
  5993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5994. font-weight:400;
  5995. font-style:normal;
  5996. font-size:12px;
  5997. line-height:20px;
  5998. }
  5999. #u12599 .text {
  6000. position:absolute;
  6001. align-self:flex-start;
  6002. padding:0px 2px 0px 2px;
  6003. box-sizing:border-box;
  6004. width:100%;
  6005. }
  6006. #u12599_text {
  6007. border-width:0px;
  6008. word-wrap:break-word;
  6009. text-transform:none;
  6010. }
  6011. #u12600_div {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:0px;
  6015. top:0px;
  6016. width:17px;
  6017. height:15px;
  6018. background:inherit;
  6019. background-color:rgba(245, 154, 35, 1);
  6020. border:none;
  6021. border-radius:4px;
  6022. -moz-box-shadow:none;
  6023. -webkit-box-shadow:none;
  6024. box-shadow:none;
  6025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6026. font-weight:400;
  6027. font-style:normal;
  6028. font-size:12px;
  6029. color:#FFFFFF;
  6030. }
  6031. #u12600 {
  6032. border-width:0px;
  6033. position:absolute;
  6034. left:510px;
  6035. top:898px;
  6036. width:17px;
  6037. height:15px;
  6038. display:flex;
  6039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6040. font-weight:400;
  6041. font-style:normal;
  6042. font-size:12px;
  6043. color:#FFFFFF;
  6044. }
  6045. #u12600 .text {
  6046. position:absolute;
  6047. align-self:flex-start;
  6048. padding:0px 2px 0px 2px;
  6049. box-sizing:border-box;
  6050. width:100%;
  6051. }
  6052. #u12600_text {
  6053. border-width:0px;
  6054. white-space:nowrap;
  6055. text-transform:none;
  6056. }
  6057. #u12601_img {
  6058. border-width:0px;
  6059. position:absolute;
  6060. left:0px;
  6061. top:0px;
  6062. width:315px;
  6063. height:2px;
  6064. }
  6065. #u12601 {
  6066. border-width:0px;
  6067. position:absolute;
  6068. left:510px;
  6069. top:885px;
  6070. width:314px;
  6071. height:1px;
  6072. display:flex;
  6073. }
  6074. #u12601 .text {
  6075. position:absolute;
  6076. align-self:center;
  6077. padding:2px 2px 2px 2px;
  6078. box-sizing:border-box;
  6079. width:100%;
  6080. }
  6081. #u12601_text {
  6082. border-width:0px;
  6083. word-wrap:break-word;
  6084. text-transform:none;
  6085. visibility:hidden;
  6086. }
  6087. #u12602 {
  6088. border-width:0px;
  6089. position:absolute;
  6090. left:0px;
  6091. top:0px;
  6092. width:0px;
  6093. height:0px;
  6094. }
  6095. #u12603_div {
  6096. border-width:0px;
  6097. position:absolute;
  6098. left:0px;
  6099. top:0px;
  6100. width:317px;
  6101. height:191px;
  6102. background:inherit;
  6103. background-color:rgba(255, 255, 255, 1);
  6104. border:none;
  6105. border-radius:4px;
  6106. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6107. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6108. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6109. }
  6110. #u12603 {
  6111. border-width:0px;
  6112. position:absolute;
  6113. left:81px;
  6114. top:1098px;
  6115. width:317px;
  6116. height:191px;
  6117. display:flex;
  6118. }
  6119. #u12603 .text {
  6120. position:absolute;
  6121. align-self:center;
  6122. padding:2px 2px 2px 2px;
  6123. box-sizing:border-box;
  6124. width:100%;
  6125. }
  6126. #u12603_text {
  6127. border-width:0px;
  6128. word-wrap:break-word;
  6129. text-transform:none;
  6130. visibility:hidden;
  6131. }
  6132. #u12604_div {
  6133. border-width:0px;
  6134. position:absolute;
  6135. left:0px;
  6136. top:0px;
  6137. width:73px;
  6138. height:25px;
  6139. background:inherit;
  6140. background-color:rgba(255, 255, 255, 0);
  6141. border:none;
  6142. border-radius:0px;
  6143. -moz-box-shadow:none;
  6144. -webkit-box-shadow:none;
  6145. box-shadow:none;
  6146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6147. font-weight:400;
  6148. font-style:normal;
  6149. font-size:18px;
  6150. }
  6151. #u12604 {
  6152. border-width:0px;
  6153. position:absolute;
  6154. left:207px;
  6155. top:1115px;
  6156. width:73px;
  6157. height:25px;
  6158. display:flex;
  6159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6160. font-weight:400;
  6161. font-style:normal;
  6162. font-size:18px;
  6163. }
  6164. #u12604 .text {
  6165. position:absolute;
  6166. align-self:flex-start;
  6167. padding:0px 0px 0px 0px;
  6168. box-sizing:border-box;
  6169. width:100%;
  6170. }
  6171. #u12604_text {
  6172. border-width:0px;
  6173. white-space:nowrap;
  6174. text-transform:none;
  6175. }
  6176. #u12605_div {
  6177. border-width:0px;
  6178. position:absolute;
  6179. left:0px;
  6180. top:0px;
  6181. width:290px;
  6182. height:75px;
  6183. background:inherit;
  6184. background-color:rgba(255, 255, 255, 0);
  6185. border:none;
  6186. border-radius:0px;
  6187. -moz-box-shadow:none;
  6188. -webkit-box-shadow:none;
  6189. box-shadow:none;
  6190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6191. font-weight:400;
  6192. font-style:normal;
  6193. font-size:12px;
  6194. text-align:center;
  6195. line-height:25px;
  6196. }
  6197. #u12605 {
  6198. border-width:0px;
  6199. position:absolute;
  6200. left:95px;
  6201. top:1152px;
  6202. width:290px;
  6203. height:75px;
  6204. display:flex;
  6205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6206. font-weight:400;
  6207. font-style:normal;
  6208. font-size:12px;
  6209. text-align:center;
  6210. line-height:25px;
  6211. }
  6212. #u12605 .text {
  6213. position:absolute;
  6214. align-self:flex-start;
  6215. padding:0px 0px 0px 0px;
  6216. box-sizing:border-box;
  6217. width:100%;
  6218. }
  6219. #u12605_text {
  6220. border-width:0px;
  6221. word-wrap:break-word;
  6222. text-transform:none;
  6223. }
  6224. #u12606_div {
  6225. border-width:0px;
  6226. position:absolute;
  6227. left:0px;
  6228. top:0px;
  6229. width:73px;
  6230. height:25px;
  6231. background:inherit;
  6232. background-color:rgba(255, 255, 255, 0);
  6233. border:none;
  6234. border-radius:0px;
  6235. -moz-box-shadow:none;
  6236. -webkit-box-shadow:none;
  6237. box-shadow:none;
  6238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6239. font-weight:400;
  6240. font-style:normal;
  6241. font-size:18px;
  6242. color:#0089FE;
  6243. }
  6244. #u12606 {
  6245. border-width:0px;
  6246. position:absolute;
  6247. left:293px;
  6248. top:1250px;
  6249. width:73px;
  6250. height:25px;
  6251. display:flex;
  6252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6253. font-weight:400;
  6254. font-style:normal;
  6255. font-size:18px;
  6256. color:#0089FE;
  6257. }
  6258. #u12606 .text {
  6259. position:absolute;
  6260. align-self:flex-start;
  6261. padding:0px 0px 0px 0px;
  6262. box-sizing:border-box;
  6263. width:100%;
  6264. }
  6265. #u12606_text {
  6266. border-width:0px;
  6267. white-space:nowrap;
  6268. text-transform:none;
  6269. }
  6270. #u12607_img {
  6271. border-width:0px;
  6272. position:absolute;
  6273. left:0px;
  6274. top:0px;
  6275. width:22px;
  6276. height:22px;
  6277. }
  6278. #u12607 {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:173px;
  6282. top:1116px;
  6283. width:22px;
  6284. height:22px;
  6285. display:flex;
  6286. }
  6287. #u12607 .text {
  6288. position:absolute;
  6289. align-self:center;
  6290. padding:2px 2px 2px 2px;
  6291. box-sizing:border-box;
  6292. width:100%;
  6293. }
  6294. #u12607_text {
  6295. border-width:0px;
  6296. word-wrap:break-word;
  6297. text-transform:none;
  6298. visibility:hidden;
  6299. }
  6300. #u12608_div {
  6301. border-width:0px;
  6302. position:absolute;
  6303. left:0px;
  6304. top:0px;
  6305. width:55px;
  6306. height:25px;
  6307. background:inherit;
  6308. background-color:rgba(255, 255, 255, 0);
  6309. border:none;
  6310. border-radius:0px;
  6311. -moz-box-shadow:none;
  6312. -webkit-box-shadow:none;
  6313. box-shadow:none;
  6314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6315. font-weight:400;
  6316. font-style:normal;
  6317. font-size:18px;
  6318. color:#0089FE;
  6319. }
  6320. #u12608 {
  6321. border-width:0px;
  6322. position:absolute;
  6323. left:133px;
  6324. top:1250px;
  6325. width:55px;
  6326. height:25px;
  6327. display:flex;
  6328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6329. font-weight:400;
  6330. font-style:normal;
  6331. font-size:18px;
  6332. color:#0089FE;
  6333. }
  6334. #u12608 .text {
  6335. position:absolute;
  6336. align-self:flex-start;
  6337. padding:0px 0px 0px 0px;
  6338. box-sizing:border-box;
  6339. width:100%;
  6340. }
  6341. #u12608_text {
  6342. border-width:0px;
  6343. white-space:nowrap;
  6344. text-transform:none;
  6345. }
  6346. #u12609_img {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:0px;
  6350. top:0px;
  6351. width:2px;
  6352. height:54px;
  6353. }
  6354. #u12609 {
  6355. border-width:0px;
  6356. position:absolute;
  6357. left:239px;
  6358. top:1236px;
  6359. width:1px;
  6360. height:53px;
  6361. display:flex;
  6362. }
  6363. #u12609 .text {
  6364. position:absolute;
  6365. align-self:center;
  6366. padding:2px 2px 2px 2px;
  6367. box-sizing:border-box;
  6368. width:100%;
  6369. }
  6370. #u12609_text {
  6371. border-width:0px;
  6372. word-wrap:break-word;
  6373. text-transform:none;
  6374. visibility:hidden;
  6375. }
  6376. #u12610_img {
  6377. border-width:0px;
  6378. position:absolute;
  6379. left:0px;
  6380. top:0px;
  6381. width:291px;
  6382. height:2px;
  6383. }
  6384. #u12610 {
  6385. border-width:0px;
  6386. position:absolute;
  6387. left:95px;
  6388. top:1236px;
  6389. width:290px;
  6390. height:1px;
  6391. display:flex;
  6392. }
  6393. #u12610 .text {
  6394. position:absolute;
  6395. align-self:center;
  6396. padding:2px 2px 2px 2px;
  6397. box-sizing:border-box;
  6398. width:100%;
  6399. }
  6400. #u12610_text {
  6401. border-width:0px;
  6402. word-wrap:break-word;
  6403. text-transform:none;
  6404. visibility:hidden;
  6405. }
  6406. #u12611 {
  6407. border-width:0px;
  6408. position:absolute;
  6409. left:0px;
  6410. top:0px;
  6411. width:0px;
  6412. height:0px;
  6413. }
  6414. #u12612_div {
  6415. border-width:0px;
  6416. position:absolute;
  6417. left:0px;
  6418. top:0px;
  6419. width:317px;
  6420. height:321px;
  6421. background:inherit;
  6422. background-color:rgba(255, 255, 255, 1);
  6423. border:none;
  6424. border-radius:4px;
  6425. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6426. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6427. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6428. }
  6429. #u12612 {
  6430. border-width:0px;
  6431. position:absolute;
  6432. left:433px;
  6433. top:1098px;
  6434. width:317px;
  6435. height:321px;
  6436. display:flex;
  6437. }
  6438. #u12612 .text {
  6439. position:absolute;
  6440. align-self:center;
  6441. padding:2px 2px 2px 2px;
  6442. box-sizing:border-box;
  6443. width:100%;
  6444. }
  6445. #u12612_text {
  6446. border-width:0px;
  6447. word-wrap:break-word;
  6448. text-transform:none;
  6449. visibility:hidden;
  6450. }
  6451. #u12613_div {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:0px;
  6455. top:0px;
  6456. width:73px;
  6457. height:25px;
  6458. background:inherit;
  6459. background-color:rgba(255, 255, 255, 0);
  6460. border:none;
  6461. border-radius:0px;
  6462. -moz-box-shadow:none;
  6463. -webkit-box-shadow:none;
  6464. box-shadow:none;
  6465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6466. font-weight:400;
  6467. font-style:normal;
  6468. font-size:18px;
  6469. }
  6470. #u12613 {
  6471. border-width:0px;
  6472. position:absolute;
  6473. left:559px;
  6474. top:1115px;
  6475. width:73px;
  6476. height:25px;
  6477. display:flex;
  6478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6479. font-weight:400;
  6480. font-style:normal;
  6481. font-size:18px;
  6482. }
  6483. #u12613 .text {
  6484. position:absolute;
  6485. align-self:flex-start;
  6486. padding:0px 0px 0px 0px;
  6487. box-sizing:border-box;
  6488. width:100%;
  6489. }
  6490. #u12613_text {
  6491. border-width:0px;
  6492. white-space:nowrap;
  6493. text-transform:none;
  6494. }
  6495. #u12614_div {
  6496. border-width:0px;
  6497. position:absolute;
  6498. left:0px;
  6499. top:0px;
  6500. width:271px;
  6501. height:50px;
  6502. background:inherit;
  6503. background-color:rgba(255, 255, 255, 0);
  6504. border:none;
  6505. border-radius:0px;
  6506. -moz-box-shadow:none;
  6507. -webkit-box-shadow:none;
  6508. box-shadow:none;
  6509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6510. font-weight:400;
  6511. font-style:normal;
  6512. font-size:14px;
  6513. text-align:center;
  6514. line-height:25px;
  6515. }
  6516. #u12614 {
  6517. border-width:0px;
  6518. position:absolute;
  6519. left:456px;
  6520. top:1153px;
  6521. width:271px;
  6522. height:50px;
  6523. display:flex;
  6524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6525. font-weight:400;
  6526. font-style:normal;
  6527. font-size:14px;
  6528. text-align:center;
  6529. line-height:25px;
  6530. }
  6531. #u12614 .text {
  6532. position:absolute;
  6533. align-self:flex-start;
  6534. padding:0px 0px 0px 0px;
  6535. box-sizing:border-box;
  6536. width:100%;
  6537. }
  6538. #u12614_text {
  6539. border-width:0px;
  6540. word-wrap:break-word;
  6541. text-transform:none;
  6542. }
  6543. #u12615_div {
  6544. border-width:0px;
  6545. position:absolute;
  6546. left:0px;
  6547. top:0px;
  6548. width:73px;
  6549. height:25px;
  6550. background:inherit;
  6551. background-color:rgba(255, 255, 255, 0);
  6552. border:none;
  6553. border-radius:0px;
  6554. -moz-box-shadow:none;
  6555. -webkit-box-shadow:none;
  6556. box-shadow:none;
  6557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6558. font-weight:400;
  6559. font-style:normal;
  6560. font-size:18px;
  6561. color:#0089FE;
  6562. }
  6563. #u12615 {
  6564. border-width:0px;
  6565. position:absolute;
  6566. left:645px;
  6567. top:1380px;
  6568. width:73px;
  6569. height:25px;
  6570. display:flex;
  6571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6572. font-weight:400;
  6573. font-style:normal;
  6574. font-size:18px;
  6575. color:#0089FE;
  6576. }
  6577. #u12615 .text {
  6578. position:absolute;
  6579. align-self:flex-start;
  6580. padding:0px 0px 0px 0px;
  6581. box-sizing:border-box;
  6582. width:100%;
  6583. }
  6584. #u12615_text {
  6585. border-width:0px;
  6586. white-space:nowrap;
  6587. text-transform:none;
  6588. }
  6589. #u12616_img {
  6590. border-width:0px;
  6591. position:absolute;
  6592. left:0px;
  6593. top:0px;
  6594. width:22px;
  6595. height:22px;
  6596. }
  6597. #u12616 {
  6598. border-width:0px;
  6599. position:absolute;
  6600. left:525px;
  6601. top:1116px;
  6602. width:22px;
  6603. height:22px;
  6604. display:flex;
  6605. }
  6606. #u12616 .text {
  6607. position:absolute;
  6608. align-self:center;
  6609. padding:2px 2px 2px 2px;
  6610. box-sizing:border-box;
  6611. width:100%;
  6612. }
  6613. #u12616_text {
  6614. border-width:0px;
  6615. word-wrap:break-word;
  6616. text-transform:none;
  6617. visibility:hidden;
  6618. }
  6619. #u12617_div {
  6620. border-width:0px;
  6621. position:absolute;
  6622. left:0px;
  6623. top:0px;
  6624. width:55px;
  6625. height:25px;
  6626. background:inherit;
  6627. background-color:rgba(255, 255, 255, 0);
  6628. border:none;
  6629. border-radius:0px;
  6630. -moz-box-shadow:none;
  6631. -webkit-box-shadow:none;
  6632. box-shadow:none;
  6633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6634. font-weight:400;
  6635. font-style:normal;
  6636. font-size:18px;
  6637. color:#0089FE;
  6638. }
  6639. #u12617 {
  6640. border-width:0px;
  6641. position:absolute;
  6642. left:485px;
  6643. top:1380px;
  6644. width:55px;
  6645. height:25px;
  6646. display:flex;
  6647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6648. font-weight:400;
  6649. font-style:normal;
  6650. font-size:18px;
  6651. color:#0089FE;
  6652. }
  6653. #u12617 .text {
  6654. position:absolute;
  6655. align-self:flex-start;
  6656. padding:0px 0px 0px 0px;
  6657. box-sizing:border-box;
  6658. width:100%;
  6659. }
  6660. #u12617_text {
  6661. border-width:0px;
  6662. white-space:nowrap;
  6663. text-transform:none;
  6664. }
  6665. #u12618_img {
  6666. border-width:0px;
  6667. position:absolute;
  6668. left:0px;
  6669. top:0px;
  6670. width:2px;
  6671. height:54px;
  6672. }
  6673. #u12618 {
  6674. border-width:0px;
  6675. position:absolute;
  6676. left:591px;
  6677. top:1366px;
  6678. width:1px;
  6679. height:53px;
  6680. display:flex;
  6681. }
  6682. #u12618 .text {
  6683. position:absolute;
  6684. align-self:center;
  6685. padding:2px 2px 2px 2px;
  6686. box-sizing:border-box;
  6687. width:100%;
  6688. }
  6689. #u12618_text {
  6690. border-width:0px;
  6691. word-wrap:break-word;
  6692. text-transform:none;
  6693. visibility:hidden;
  6694. }
  6695. #u12619_img {
  6696. border-width:0px;
  6697. position:absolute;
  6698. left:0px;
  6699. top:0px;
  6700. width:318px;
  6701. height:2px;
  6702. }
  6703. #u12619 {
  6704. border-width:0px;
  6705. position:absolute;
  6706. left:433px;
  6707. top:1366px;
  6708. width:317px;
  6709. height:1px;
  6710. display:flex;
  6711. }
  6712. #u12619 .text {
  6713. position:absolute;
  6714. align-self:center;
  6715. padding:2px 2px 2px 2px;
  6716. box-sizing:border-box;
  6717. width:100%;
  6718. }
  6719. #u12619_text {
  6720. border-width:0px;
  6721. word-wrap:break-word;
  6722. text-transform:none;
  6723. visibility:hidden;
  6724. }
  6725. #u12620_div {
  6726. border-width:0px;
  6727. position:absolute;
  6728. left:0px;
  6729. top:0px;
  6730. width:158px;
  6731. height:30px;
  6732. background:inherit;
  6733. background-color:rgba(255, 255, 255, 0);
  6734. border:none;
  6735. border-radius:0px;
  6736. -moz-box-shadow:none;
  6737. -webkit-box-shadow:none;
  6738. box-shadow:none;
  6739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6740. font-weight:400;
  6741. font-style:normal;
  6742. line-height:30px;
  6743. }
  6744. #u12620 {
  6745. border-width:0px;
  6746. position:absolute;
  6747. left:461px;
  6748. top:1212px;
  6749. width:158px;
  6750. height:30px;
  6751. display:flex;
  6752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6753. font-weight:400;
  6754. font-style:normal;
  6755. line-height:30px;
  6756. }
  6757. #u12620 .text {
  6758. position:absolute;
  6759. align-self:flex-start;
  6760. padding:0px 0px 0px 0px;
  6761. box-sizing:border-box;
  6762. width:100%;
  6763. }
  6764. #u12620_text {
  6765. border-width:0px;
  6766. white-space:nowrap;
  6767. text-transform:none;
  6768. }
  6769. #u12621_div {
  6770. border-width:0px;
  6771. position:absolute;
  6772. left:0px;
  6773. top:0px;
  6774. width:93px;
  6775. height:30px;
  6776. background:inherit;
  6777. background-color:rgba(255, 255, 255, 0);
  6778. border:none;
  6779. border-radius:0px;
  6780. -moz-box-shadow:none;
  6781. -webkit-box-shadow:none;
  6782. box-shadow:none;
  6783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6784. font-weight:400;
  6785. font-style:normal;
  6786. font-size:14px;
  6787. line-height:30px;
  6788. }
  6789. #u12621 {
  6790. border-width:0px;
  6791. position:absolute;
  6792. left:461px;
  6793. top:1242px;
  6794. width:93px;
  6795. height:30px;
  6796. display:flex;
  6797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6798. font-weight:400;
  6799. font-style:normal;
  6800. font-size:14px;
  6801. line-height:30px;
  6802. }
  6803. #u12621 .text {
  6804. position:absolute;
  6805. align-self:flex-start;
  6806. padding:0px 0px 0px 0px;
  6807. box-sizing:border-box;
  6808. width:100%;
  6809. }
  6810. #u12621_text {
  6811. border-width:0px;
  6812. white-space:nowrap;
  6813. text-transform:none;
  6814. }
  6815. #u12622_div {
  6816. border-width:0px;
  6817. position:absolute;
  6818. left:0px;
  6819. top:0px;
  6820. width:183px;
  6821. height:30px;
  6822. background:inherit;
  6823. background-color:rgba(255, 255, 255, 0);
  6824. border:none;
  6825. border-radius:0px;
  6826. -moz-box-shadow:none;
  6827. -webkit-box-shadow:none;
  6828. box-shadow:none;
  6829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6830. font-weight:400;
  6831. font-style:normal;
  6832. font-size:14px;
  6833. line-height:30px;
  6834. }
  6835. #u12622 {
  6836. border-width:0px;
  6837. position:absolute;
  6838. left:461px;
  6839. top:1272px;
  6840. width:183px;
  6841. height:30px;
  6842. display:flex;
  6843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6844. font-weight:400;
  6845. font-style:normal;
  6846. font-size:14px;
  6847. line-height:30px;
  6848. }
  6849. #u12622 .text {
  6850. position:absolute;
  6851. align-self:flex-start;
  6852. padding:0px 0px 0px 0px;
  6853. box-sizing:border-box;
  6854. width:100%;
  6855. }
  6856. #u12622_text {
  6857. border-width:0px;
  6858. white-space:nowrap;
  6859. text-transform:none;
  6860. }
  6861. #u12623_div {
  6862. border-width:0px;
  6863. position:absolute;
  6864. left:0px;
  6865. top:0px;
  6866. width:293px;
  6867. height:50px;
  6868. background:inherit;
  6869. background-color:rgba(255, 255, 128, 0.0980392156862745);
  6870. border:none;
  6871. border-radius:0px;
  6872. -moz-box-shadow:none;
  6873. -webkit-box-shadow:none;
  6874. box-shadow:none;
  6875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6876. font-weight:400;
  6877. font-style:normal;
  6878. font-size:10px;
  6879. color:#F59A23;
  6880. line-height:20px;
  6881. }
  6882. #u12623 {
  6883. border-width:0px;
  6884. position:absolute;
  6885. left:445px;
  6886. top:1307px;
  6887. width:293px;
  6888. height:50px;
  6889. display:flex;
  6890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6891. font-weight:400;
  6892. font-style:normal;
  6893. font-size:10px;
  6894. color:#F59A23;
  6895. line-height:20px;
  6896. }
  6897. #u12623 .text {
  6898. position:absolute;
  6899. align-self:flex-start;
  6900. padding:5px 5px 5px 5px;
  6901. box-sizing:border-box;
  6902. width:100%;
  6903. }
  6904. #u12623_text {
  6905. border-width:0px;
  6906. word-wrap:break-word;
  6907. text-transform:none;
  6908. }
  6909. #u12624_div {
  6910. border-width:0px;
  6911. position:absolute;
  6912. left:0px;
  6913. top:0px;
  6914. width:71px;
  6915. height:20px;
  6916. background:inherit;
  6917. background-color:rgba(255, 255, 255, 0);
  6918. border:none;
  6919. border-radius:0px;
  6920. -moz-box-shadow:none;
  6921. -webkit-box-shadow:none;
  6922. box-shadow:none;
  6923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6924. font-weight:400;
  6925. font-style:normal;
  6926. font-size:14px;
  6927. }
  6928. #u12624 {
  6929. border-width:0px;
  6930. position:absolute;
  6931. left:56px;
  6932. top:454px;
  6933. width:71px;
  6934. height:20px;
  6935. display:flex;
  6936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6937. font-weight:400;
  6938. font-style:normal;
  6939. font-size:14px;
  6940. }
  6941. #u12624 .text {
  6942. position:absolute;
  6943. align-self:flex-start;
  6944. padding:0px 0px 0px 0px;
  6945. box-sizing:border-box;
  6946. width:100%;
  6947. }
  6948. #u12624_text {
  6949. border-width:0px;
  6950. white-space:nowrap;
  6951. text-transform:none;
  6952. }
  6953. #u12625_div {
  6954. border-width:0px;
  6955. position:absolute;
  6956. left:0px;
  6957. top:0px;
  6958. width:67px;
  6959. height:25px;
  6960. background:inherit;
  6961. background-color:rgba(255, 255, 255, 0);
  6962. border:none;
  6963. border-radius:0px;
  6964. -moz-box-shadow:none;
  6965. -webkit-box-shadow:none;
  6966. box-shadow:none;
  6967. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6968. font-style:normal;
  6969. line-height:25px;
  6970. }
  6971. #u12625 {
  6972. border-width:0px;
  6973. position:absolute;
  6974. left:127px;
  6975. top:454px;
  6976. width:67px;
  6977. height:25px;
  6978. display:flex;
  6979. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6980. font-style:normal;
  6981. line-height:25px;
  6982. }
  6983. #u12625 .text {
  6984. position:absolute;
  6985. align-self:flex-start;
  6986. padding:0px 0px 0px 0px;
  6987. box-sizing:border-box;
  6988. width:100%;
  6989. }
  6990. #u12625_text {
  6991. border-width:0px;
  6992. white-space:nowrap;
  6993. text-transform:none;
  6994. }
  6995. #u12626_div {
  6996. border-width:0px;
  6997. position:absolute;
  6998. left:0px;
  6999. top:0px;
  7000. width:37px;
  7001. height:30px;
  7002. background:inherit;
  7003. background-color:rgba(255, 255, 255, 0);
  7004. border:none;
  7005. border-left:0px;
  7006. border-top:0px;
  7007. border-right:0px;
  7008. border-radius:0px;
  7009. border-bottom-right-radius:0px;
  7010. border-bottom-left-radius:0px;
  7011. -moz-box-shadow:none;
  7012. -webkit-box-shadow:none;
  7013. box-shadow:none;
  7014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7015. font-weight:400;
  7016. font-style:normal;
  7017. font-size:12px;
  7018. color:#00BFBF;
  7019. line-height:30px;
  7020. }
  7021. #u12626 {
  7022. border-width:0px;
  7023. position:absolute;
  7024. left:338px;
  7025. top:452px;
  7026. width:37px;
  7027. height:30px;
  7028. display:flex;
  7029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7030. font-weight:400;
  7031. font-style:normal;
  7032. font-size:12px;
  7033. color:#00BFBF;
  7034. line-height:30px;
  7035. }
  7036. #u12626 .text {
  7037. position:absolute;
  7038. align-self:flex-start;
  7039. padding:0px 0px 0px 0px;
  7040. box-sizing:border-box;
  7041. width:100%;
  7042. }
  7043. #u12626_text {
  7044. border-width:0px;
  7045. white-space:nowrap;
  7046. text-transform:none;
  7047. }
  7048. #u12627_div {
  7049. border-width:0px;
  7050. position:absolute;
  7051. left:0px;
  7052. top:0px;
  7053. width:68px;
  7054. height:30px;
  7055. background:inherit;
  7056. background-color:rgba(255, 255, 255, 0);
  7057. border:none;
  7058. border-left:0px;
  7059. border-top:0px;
  7060. border-right:0px;
  7061. border-radius:0px;
  7062. border-bottom-right-radius:0px;
  7063. border-bottom-left-radius:0px;
  7064. -moz-box-shadow:none;
  7065. -webkit-box-shadow:none;
  7066. box-shadow:none;
  7067. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7068. font-style:normal;
  7069. line-height:30px;
  7070. }
  7071. #u12627 {
  7072. border-width:0px;
  7073. position:absolute;
  7074. left:57px;
  7075. top:517px;
  7076. width:68px;
  7077. height:30px;
  7078. display:flex;
  7079. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7080. font-style:normal;
  7081. line-height:30px;
  7082. }
  7083. #u12627 .text {
  7084. position:absolute;
  7085. align-self:flex-start;
  7086. padding:0px 0px 0px 0px;
  7087. box-sizing:border-box;
  7088. width:100%;
  7089. }
  7090. #u12627_text {
  7091. border-width:0px;
  7092. white-space:nowrap;
  7093. text-transform:none;
  7094. }
  7095. #u12628 {
  7096. border-width:0px;
  7097. position:absolute;
  7098. left:0px;
  7099. top:0px;
  7100. width:0px;
  7101. height:0px;
  7102. }
  7103. #u12629_div {
  7104. border-width:0px;
  7105. position:absolute;
  7106. left:0px;
  7107. top:0px;
  7108. width:49px;
  7109. height:30px;
  7110. background:inherit;
  7111. background-color:rgba(255, 255, 255, 0);
  7112. border:none;
  7113. border-left:0px;
  7114. border-top:0px;
  7115. border-right:0px;
  7116. border-radius:0px;
  7117. border-bottom-right-radius:0px;
  7118. border-bottom-left-radius:0px;
  7119. -moz-box-shadow:none;
  7120. -webkit-box-shadow:none;
  7121. box-shadow:none;
  7122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7123. font-weight:400;
  7124. font-style:normal;
  7125. font-size:12px;
  7126. color:#7F7F7F;
  7127. line-height:30px;
  7128. }
  7129. #u12629 {
  7130. border-width:0px;
  7131. position:absolute;
  7132. left:56px;
  7133. top:487px;
  7134. width:49px;
  7135. height:30px;
  7136. display:flex;
  7137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7138. font-weight:400;
  7139. font-style:normal;
  7140. font-size:12px;
  7141. color:#7F7F7F;
  7142. line-height:30px;
  7143. }
  7144. #u12629 .text {
  7145. position:absolute;
  7146. align-self:flex-start;
  7147. padding:0px 0px 0px 0px;
  7148. box-sizing:border-box;
  7149. width:100%;
  7150. }
  7151. #u12629_text {
  7152. border-width:0px;
  7153. white-space:nowrap;
  7154. text-transform:none;
  7155. }
  7156. #u12630 {
  7157. border-width:0px;
  7158. position:absolute;
  7159. left:0px;
  7160. top:0px;
  7161. width:0px;
  7162. height:0px;
  7163. }
  7164. #u12631_img {
  7165. border-width:0px;
  7166. position:absolute;
  7167. left:0px;
  7168. top:0px;
  7169. width:8px;
  7170. height:13px;
  7171. }
  7172. #u12631 {
  7173. border-width:0px;
  7174. position:absolute;
  7175. left:367px;
  7176. top:495px;
  7177. width:8px;
  7178. height:13px;
  7179. display:flex;
  7180. -webkit-transform:rotate(180deg);
  7181. -moz-transform:rotate(180deg);
  7182. -ms-transform:rotate(180deg);
  7183. transform:rotate(180deg);
  7184. }
  7185. #u12631 .text {
  7186. position:absolute;
  7187. align-self:center;
  7188. padding:2px 2px 2px 2px;
  7189. box-sizing:border-box;
  7190. width:100%;
  7191. }
  7192. #u12631_text {
  7193. border-width:0px;
  7194. word-wrap:break-word;
  7195. text-transform:none;
  7196. visibility:hidden;
  7197. }
  7198. #u12632 {
  7199. border-width:0px;
  7200. position:absolute;
  7201. left:0px;
  7202. top:0px;
  7203. width:0px;
  7204. height:0px;
  7205. }
  7206. #u12633_div {
  7207. border-width:0px;
  7208. position:absolute;
  7209. left:0px;
  7210. top:0px;
  7211. width:49px;
  7212. height:30px;
  7213. background:inherit;
  7214. background-color:rgba(255, 255, 255, 0);
  7215. border:none;
  7216. border-left:0px;
  7217. border-top:0px;
  7218. border-right:0px;
  7219. border-radius:0px;
  7220. border-bottom-right-radius:0px;
  7221. border-bottom-left-radius:0px;
  7222. -moz-box-shadow:none;
  7223. -webkit-box-shadow:none;
  7224. box-shadow:none;
  7225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7226. font-weight:400;
  7227. font-style:normal;
  7228. font-size:12px;
  7229. color:#7F7F7F;
  7230. line-height:30px;
  7231. }
  7232. #u12633 {
  7233. border-width:0px;
  7234. position:absolute;
  7235. left:509px;
  7236. top:422px;
  7237. width:49px;
  7238. height:30px;
  7239. display:flex;
  7240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7241. font-weight:400;
  7242. font-style:normal;
  7243. font-size:12px;
  7244. color:#7F7F7F;
  7245. line-height:30px;
  7246. }
  7247. #u12633 .text {
  7248. position:absolute;
  7249. align-self:flex-start;
  7250. padding:0px 0px 0px 0px;
  7251. box-sizing:border-box;
  7252. width:100%;
  7253. }
  7254. #u12633_text {
  7255. border-width:0px;
  7256. white-space:nowrap;
  7257. text-transform:none;
  7258. }
  7259. #u12634 {
  7260. border-width:0px;
  7261. position:absolute;
  7262. left:0px;
  7263. top:0px;
  7264. width:0px;
  7265. height:0px;
  7266. }
  7267. #u12635_img {
  7268. border-width:0px;
  7269. position:absolute;
  7270. left:0px;
  7271. top:0px;
  7272. width:8px;
  7273. height:13px;
  7274. }
  7275. #u12635 {
  7276. border-width:0px;
  7277. position:absolute;
  7278. left:820px;
  7279. top:431px;
  7280. width:8px;
  7281. height:13px;
  7282. display:flex;
  7283. -webkit-transform:rotate(180deg);
  7284. -moz-transform:rotate(180deg);
  7285. -ms-transform:rotate(180deg);
  7286. transform:rotate(180deg);
  7287. }
  7288. #u12635 .text {
  7289. position:absolute;
  7290. align-self:center;
  7291. padding:2px 2px 2px 2px;
  7292. box-sizing:border-box;
  7293. width:100%;
  7294. }
  7295. #u12635_text {
  7296. border-width:0px;
  7297. word-wrap:break-word;
  7298. text-transform:none;
  7299. visibility:hidden;
  7300. }
  7301. #u12636_div {
  7302. border-width:0px;
  7303. position:absolute;
  7304. left:0px;
  7305. top:0px;
  7306. width:71px;
  7307. height:20px;
  7308. background:inherit;
  7309. background-color:rgba(255, 255, 255, 0);
  7310. border:none;
  7311. border-radius:0px;
  7312. -moz-box-shadow:none;
  7313. -webkit-box-shadow:none;
  7314. box-shadow:none;
  7315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7316. font-weight:400;
  7317. font-style:normal;
  7318. font-size:14px;
  7319. }
  7320. #u12636 {
  7321. border-width:0px;
  7322. position:absolute;
  7323. left:509px;
  7324. top:454px;
  7325. width:71px;
  7326. height:20px;
  7327. display:flex;
  7328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7329. font-weight:400;
  7330. font-style:normal;
  7331. font-size:14px;
  7332. }
  7333. #u12636 .text {
  7334. position:absolute;
  7335. align-self:flex-start;
  7336. padding:0px 0px 0px 0px;
  7337. box-sizing:border-box;
  7338. width:100%;
  7339. }
  7340. #u12636_text {
  7341. border-width:0px;
  7342. white-space:nowrap;
  7343. text-transform:none;
  7344. }
  7345. #u12637_div {
  7346. border-width:0px;
  7347. position:absolute;
  7348. left:0px;
  7349. top:0px;
  7350. width:68px;
  7351. height:30px;
  7352. background:inherit;
  7353. background-color:rgba(255, 255, 255, 0);
  7354. border:none;
  7355. border-left:0px;
  7356. border-top:0px;
  7357. border-right:0px;
  7358. border-radius:0px;
  7359. border-bottom-right-radius:0px;
  7360. border-bottom-left-radius:0px;
  7361. -moz-box-shadow:none;
  7362. -webkit-box-shadow:none;
  7363. box-shadow:none;
  7364. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7365. font-style:normal;
  7366. line-height:30px;
  7367. }
  7368. #u12637 {
  7369. border-width:0px;
  7370. position:absolute;
  7371. left:510px;
  7372. top:517px;
  7373. width:68px;
  7374. height:30px;
  7375. display:flex;
  7376. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7377. font-style:normal;
  7378. line-height:30px;
  7379. }
  7380. #u12637 .text {
  7381. position:absolute;
  7382. align-self:flex-start;
  7383. padding:0px 0px 0px 0px;
  7384. box-sizing:border-box;
  7385. width:100%;
  7386. }
  7387. #u12637_text {
  7388. border-width:0px;
  7389. white-space:nowrap;
  7390. text-transform:none;
  7391. }
  7392. #u12638 {
  7393. border-width:0px;
  7394. position:absolute;
  7395. left:0px;
  7396. top:0px;
  7397. width:0px;
  7398. height:0px;
  7399. }
  7400. #u12639_div {
  7401. border-width:0px;
  7402. position:absolute;
  7403. left:0px;
  7404. top:0px;
  7405. width:49px;
  7406. height:30px;
  7407. background:inherit;
  7408. background-color:rgba(255, 255, 255, 0);
  7409. border:none;
  7410. border-left:0px;
  7411. border-top:0px;
  7412. border-right:0px;
  7413. border-radius:0px;
  7414. border-bottom-right-radius:0px;
  7415. border-bottom-left-radius:0px;
  7416. -moz-box-shadow:none;
  7417. -webkit-box-shadow:none;
  7418. box-shadow:none;
  7419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7420. font-weight:400;
  7421. font-style:normal;
  7422. font-size:12px;
  7423. color:#7F7F7F;
  7424. line-height:30px;
  7425. }
  7426. #u12639 {
  7427. border-width:0px;
  7428. position:absolute;
  7429. left:509px;
  7430. top:487px;
  7431. width:49px;
  7432. height:30px;
  7433. display:flex;
  7434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7435. font-weight:400;
  7436. font-style:normal;
  7437. font-size:12px;
  7438. color:#7F7F7F;
  7439. line-height:30px;
  7440. }
  7441. #u12639 .text {
  7442. position:absolute;
  7443. align-self:flex-start;
  7444. padding:0px 0px 0px 0px;
  7445. box-sizing:border-box;
  7446. width:100%;
  7447. }
  7448. #u12639_text {
  7449. border-width:0px;
  7450. white-space:nowrap;
  7451. text-transform:none;
  7452. }
  7453. #u12640 {
  7454. border-width:0px;
  7455. position:absolute;
  7456. left:0px;
  7457. top:0px;
  7458. width:0px;
  7459. height:0px;
  7460. }
  7461. #u12641_img {
  7462. border-width:0px;
  7463. position:absolute;
  7464. left:0px;
  7465. top:0px;
  7466. width:8px;
  7467. height:13px;
  7468. }
  7469. #u12641 {
  7470. border-width:0px;
  7471. position:absolute;
  7472. left:820px;
  7473. top:495px;
  7474. width:8px;
  7475. height:13px;
  7476. display:flex;
  7477. -webkit-transform:rotate(180deg);
  7478. -moz-transform:rotate(180deg);
  7479. -ms-transform:rotate(180deg);
  7480. transform:rotate(180deg);
  7481. }
  7482. #u12641 .text {
  7483. position:absolute;
  7484. align-self:center;
  7485. padding:2px 2px 2px 2px;
  7486. box-sizing:border-box;
  7487. width:100%;
  7488. }
  7489. #u12641_text {
  7490. border-width:0px;
  7491. word-wrap:break-word;
  7492. text-transform:none;
  7493. visibility:hidden;
  7494. }