styles.css 261 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941139421394313944139451394613947139481394913950139511395213953139541395513956139571395813959139601396113962139631396413965139661396713968139691397013971139721397313974139751397613977139781397913980139811398213983139841398513986139871398813989139901399113992139931399413995139961399713998139991400014001140021400314004140051400614007140081400914010140111401214013140141401514016140171401814019140201402114022140231402414025140261402714028140291403014031140321403314034140351403614037140381403914040140411404214043140441404514046140471404814049140501405114052140531405414055140561405714058140591406014061140621406314064140651406614067140681406914070140711407214073140741407514076140771407814079140801408114082140831408414085140861408714088140891409014091140921409314094140951409614097140981409914100141011410214103141041410514106141071410814109141101411114112141131411414115141161411714118141191412014121141221412314124141251412614127141281412914130141311413214133141341413514136141371413814139141401414114142141431414414145141461414714148141491415014151141521415314154141551415614157141581415914160141611416214163141641416514166141671416814169141701417114172141731417414175141761417714178141791418014181141821418314184141851418614187141881418914190141911419214193141941419514196141971419814199142001420114202142031420414205142061420714208142091421014211142121421314214142151421614217142181421914220142211422214223142241422514226142271422814229142301423114232142331423414235142361423714238142391424014241142421424314244142451424614247142481424914250142511425214253142541425514256142571425814259142601426114262142631426414265142661426714268142691427014271142721427314274142751427614277142781427914280142811428214283142841428514286142871428814289142901429114292142931429414295142961429714298142991430014301143021430314304143051430614307143081430914310143111431214313143141431514316143171431814319143201432114322143231432414325143261432714328143291433014331143321433314334143351433614337143381433914340143411434214343143441434514346143471434814349143501435114352143531435414355143561435714358143591436014361143621436314364143651436614367143681436914370
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3082px;
  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. #u12915_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u12915 {
  28. border-width:0px;
  29. position:absolute;
  30. left:906px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u12915 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u12915_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u12916_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. #u12916 {
  73. border-width:0px;
  74. position:absolute;
  75. left:935px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u12916 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u12916_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u12917 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u12918_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. #u12918 {
  121. border-width:0px;
  122. position:absolute;
  123. left:1215px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u12918 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u12918_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u12919 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u12920_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u12920 {
  159. border-width:0px;
  160. position:absolute;
  161. left:1278px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u12920 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u12920_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u12921_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u12921 {
  189. border-width:0px;
  190. position:absolute;
  191. left:1284px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u12921 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u12921_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u12922 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u12923_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u12923 {
  227. border-width:0px;
  228. position:absolute;
  229. left:1229px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u12923 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u12923_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u12924_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u12924 {
  257. border-width:0px;
  258. position:absolute;
  259. left:1245px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u12924 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u12924_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u12925_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u12925 {
  287. border-width:0px;
  288. position:absolute;
  289. left:1236px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u12925 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u12925_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u12926_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u12926 {
  317. border-width:0px;
  318. position:absolute;
  319. left:1253px;
  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. #u12926 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u12926_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u12927_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u12927 {
  351. border-width:0px;
  352. position:absolute;
  353. left:935px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u12927 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u12927_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u12928_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. #u12928 {
  393. border-width:0px;
  394. position:absolute;
  395. left:935px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u12928 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u12928_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u12929 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u12930_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u12930 {
  431. border-width:0px;
  432. position:absolute;
  433. left:975px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u12930 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u12930_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u12931_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. #u12931 {
  472. border-width:0px;
  473. position:absolute;
  474. left:975px;
  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. #u12931 .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. #u12931_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u12932 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u12933_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u12933 {
  513. border-width:0px;
  514. position:absolute;
  515. left:1245px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u12933 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u12933_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u12934_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. #u12934 {
  554. border-width:0px;
  555. position:absolute;
  556. left:1245px;
  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. #u12934 .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. #u12934_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u12935_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. #u12935 {
  594. border-width:0px;
  595. position:absolute;
  596. left:935px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u12935 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u12935_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u12936 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u12937_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u12937 {
  632. border-width:0px;
  633. position:absolute;
  634. left:1157px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u12937 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u12937_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u12938_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. #u12938 {
  673. border-width:0px;
  674. position:absolute;
  675. left:1151px;
  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. #u12938 .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. #u12938_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u12939 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u12940_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u12940 {
  714. border-width:0px;
  715. position:absolute;
  716. left:1063px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u12940 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u12940_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u12941_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. #u12941 {
  755. border-width:0px;
  756. position:absolute;
  757. left:1057px;
  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. #u12941 .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. #u12941_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u12942_img {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:769px;
  786. }
  787. #u12942 {
  788. border-width:0px;
  789. position:absolute;
  790. left:935px;
  791. top:70px;
  792. width:375px;
  793. height:769px;
  794. display:flex;
  795. }
  796. #u12942 .text {
  797. position:absolute;
  798. align-self:center;
  799. padding:2px 2px 2px 2px;
  800. box-sizing:border-box;
  801. width:100%;
  802. }
  803. #u12942_text {
  804. border-width:0px;
  805. word-wrap:break-word;
  806. text-transform:none;
  807. visibility:hidden;
  808. }
  809. #u12943_div {
  810. border-width:0px;
  811. position:absolute;
  812. left:0px;
  813. top:0px;
  814. width:375px;
  815. height:769px;
  816. background:inherit;
  817. background-color:rgba(255, 255, 255, 1);
  818. border:none;
  819. border-top:0px;
  820. border-radius:24px;
  821. border-top-left-radius:0px;
  822. border-top-right-radius:0px;
  823. -moz-box-shadow:none;
  824. -webkit-box-shadow:none;
  825. box-shadow:none;
  826. }
  827. #u12943 {
  828. border-width:0px;
  829. position:absolute;
  830. left:935px;
  831. top:70px;
  832. width:375px;
  833. height:769px;
  834. display:flex;
  835. }
  836. #u12943 .text {
  837. position:absolute;
  838. align-self:center;
  839. padding:2px 2px 2px 2px;
  840. box-sizing:border-box;
  841. width:100%;
  842. }
  843. #u12943_text {
  844. border-width:0px;
  845. word-wrap:break-word;
  846. text-transform:none;
  847. visibility:hidden;
  848. }
  849. #u12944 {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:0px;
  855. height:0px;
  856. }
  857. #u12945_div {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:241px;
  863. height:17px;
  864. background:inherit;
  865. background-color:rgba(255, 255, 255, 0);
  866. border:none;
  867. border-radius:0px;
  868. -moz-box-shadow:none;
  869. -webkit-box-shadow:none;
  870. box-shadow:none;
  871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  872. font-weight:400;
  873. font-style:normal;
  874. font-size:12px;
  875. color:#AAAAAA;
  876. }
  877. #u12945 {
  878. border-width:0px;
  879. position:absolute;
  880. left:1003px;
  881. top:815px;
  882. width:241px;
  883. height:17px;
  884. display:flex;
  885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  886. font-weight:400;
  887. font-style:normal;
  888. font-size:12px;
  889. color:#AAAAAA;
  890. }
  891. #u12945 .text {
  892. position:absolute;
  893. align-self:flex-start;
  894. padding:0px 0px 0px 0px;
  895. box-sizing:border-box;
  896. width:100%;
  897. }
  898. #u12945_text {
  899. border-width:0px;
  900. white-space:nowrap;
  901. text-transform:none;
  902. }
  903. #u12946_div {
  904. border-width:0px;
  905. position:absolute;
  906. left:0px;
  907. top:0px;
  908. width:334px;
  909. height:40px;
  910. background:inherit;
  911. background-color:rgba(0, 137, 254, 1);
  912. border:none;
  913. border-radius:82px;
  914. -moz-box-shadow:none;
  915. -webkit-box-shadow:none;
  916. box-shadow:none;
  917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  918. font-weight:400;
  919. font-style:normal;
  920. font-size:14px;
  921. color:#FFFFFF;
  922. }
  923. #u12946 {
  924. border-width:0px;
  925. position:absolute;
  926. left:950px;
  927. top:768px;
  928. width:334px;
  929. height:40px;
  930. display:flex;
  931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  932. font-weight:400;
  933. font-style:normal;
  934. font-size:14px;
  935. color:#FFFFFF;
  936. }
  937. #u12946 .text {
  938. position:absolute;
  939. align-self:center;
  940. padding:2px 2px 2px 2px;
  941. box-sizing:border-box;
  942. width:100%;
  943. }
  944. #u12946_text {
  945. border-width:0px;
  946. word-wrap:break-word;
  947. text-transform:none;
  948. }
  949. #u12947_div {
  950. border-width:0px;
  951. position:absolute;
  952. left:0px;
  953. top:0px;
  954. width:82px;
  955. height:25px;
  956. background:inherit;
  957. background-color:rgba(255, 255, 255, 0);
  958. border:none;
  959. border-radius:0px;
  960. -moz-box-shadow:none;
  961. -webkit-box-shadow:none;
  962. box-shadow:none;
  963. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  964. font-weight:500;
  965. font-style:normal;
  966. font-size:18px;
  967. }
  968. #u12947 {
  969. border-width:0px;
  970. position:absolute;
  971. left:1080px;
  972. top:473px;
  973. width:82px;
  974. height:25px;
  975. display:flex;
  976. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  977. font-weight:500;
  978. font-style:normal;
  979. font-size:18px;
  980. }
  981. #u12947 .text {
  982. position:absolute;
  983. align-self:flex-start;
  984. padding:0px 0px 0px 0px;
  985. box-sizing:border-box;
  986. width:100%;
  987. }
  988. #u12947_text {
  989. border-width:0px;
  990. white-space:nowrap;
  991. text-transform:none;
  992. }
  993. #u12948 {
  994. border-width:0px;
  995. position:absolute;
  996. left:0px;
  997. top:0px;
  998. width:0px;
  999. height:0px;
  1000. }
  1001. #u12949_img {
  1002. border-width:0px;
  1003. position:absolute;
  1004. left:0px;
  1005. top:0px;
  1006. width:220px;
  1007. height:220px;
  1008. }
  1009. #u12949 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:1008px;
  1013. top:247px;
  1014. width:220px;
  1015. height:220px;
  1016. display:flex;
  1017. }
  1018. #u12949 .text {
  1019. position:absolute;
  1020. align-self:center;
  1021. padding:2px 2px 2px 2px;
  1022. box-sizing:border-box;
  1023. width:100%;
  1024. }
  1025. #u12949_text {
  1026. border-width:0px;
  1027. word-wrap:break-word;
  1028. text-transform:none;
  1029. visibility:hidden;
  1030. }
  1031. #u12950_div {
  1032. border-width:0px;
  1033. position:absolute;
  1034. left:0px;
  1035. top:0px;
  1036. width:104px;
  1037. height:67px;
  1038. background:inherit;
  1039. background-color:rgba(255, 255, 255, 0);
  1040. border:none;
  1041. border-radius:0px;
  1042. -moz-box-shadow:none;
  1043. -webkit-box-shadow:none;
  1044. box-shadow:none;
  1045. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1046. font-weight:500;
  1047. font-style:normal;
  1048. font-size:48px;
  1049. color:#FFFFFF;
  1050. }
  1051. #u12950 {
  1052. border-width:0px;
  1053. position:absolute;
  1054. left:1076px;
  1055. top:294px;
  1056. width:104px;
  1057. height:67px;
  1058. display:flex;
  1059. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1060. font-weight:500;
  1061. font-style:normal;
  1062. font-size:48px;
  1063. color:#FFFFFF;
  1064. }
  1065. #u12950 .text {
  1066. position:absolute;
  1067. align-self:flex-start;
  1068. padding:0px 0px 0px 0px;
  1069. box-sizing:border-box;
  1070. width:100%;
  1071. }
  1072. #u12950_text {
  1073. border-width:0px;
  1074. white-space:nowrap;
  1075. text-transform:none;
  1076. }
  1077. #u12951_div {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:0px;
  1081. top:0px;
  1082. width:88px;
  1083. height:60px;
  1084. background:inherit;
  1085. background-color:rgba(255, 255, 255, 0);
  1086. border:none;
  1087. border-left:0px;
  1088. border-top:0px;
  1089. border-right:0px;
  1090. border-radius:0px;
  1091. border-bottom-right-radius:0px;
  1092. border-bottom-left-radius:0px;
  1093. -moz-box-shadow:none;
  1094. -webkit-box-shadow:none;
  1095. box-shadow:none;
  1096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1097. font-weight:400;
  1098. font-style:normal;
  1099. color:#FFFFFF;
  1100. text-align:center;
  1101. line-height:30px;
  1102. }
  1103. #u12951 {
  1104. border-width:0px;
  1105. position:absolute;
  1106. left:1074px;
  1107. top:361px;
  1108. width:88px;
  1109. height:60px;
  1110. display:flex;
  1111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1112. font-weight:400;
  1113. font-style:normal;
  1114. color:#FFFFFF;
  1115. text-align:center;
  1116. line-height:30px;
  1117. }
  1118. #u12951 .text {
  1119. position:absolute;
  1120. align-self:flex-start;
  1121. padding:0px 0px 0px 0px;
  1122. box-sizing:border-box;
  1123. width:100%;
  1124. }
  1125. #u12951_text {
  1126. border-width:0px;
  1127. white-space:nowrap;
  1128. text-transform:none;
  1129. }
  1130. #u12952 {
  1131. border-width:0px;
  1132. position:absolute;
  1133. left:0px;
  1134. top:0px;
  1135. width:0px;
  1136. height:0px;
  1137. }
  1138. #u12953_div {
  1139. border-width:0px;
  1140. position:absolute;
  1141. left:0px;
  1142. top:0px;
  1143. width:80px;
  1144. height:30px;
  1145. background:inherit;
  1146. background-color:rgba(255, 255, 255, 0);
  1147. border:none;
  1148. border-left:0px;
  1149. border-top:0px;
  1150. border-right:0px;
  1151. border-radius:0px;
  1152. border-bottom-right-radius:0px;
  1153. border-bottom-left-radius:0px;
  1154. -moz-box-shadow:none;
  1155. -webkit-box-shadow:none;
  1156. box-shadow:none;
  1157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1158. font-weight:400;
  1159. font-style:normal;
  1160. font-size:14px;
  1161. color:#7F7F7F;
  1162. text-align:center;
  1163. line-height:30px;
  1164. }
  1165. #u12953 {
  1166. border-width:0px;
  1167. position:absolute;
  1168. left:968px;
  1169. top:197px;
  1170. width:80px;
  1171. height:30px;
  1172. display:flex;
  1173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1174. font-weight:400;
  1175. font-style:normal;
  1176. font-size:14px;
  1177. color:#7F7F7F;
  1178. text-align:center;
  1179. line-height:30px;
  1180. }
  1181. #u12953 .text {
  1182. position:absolute;
  1183. align-self:flex-start;
  1184. padding:0px 0px 0px 0px;
  1185. box-sizing:border-box;
  1186. width:100%;
  1187. }
  1188. #u12953_text {
  1189. border-width:0px;
  1190. white-space:nowrap;
  1191. text-transform:none;
  1192. }
  1193. #u12954_div {
  1194. border-width:0px;
  1195. position:absolute;
  1196. left:0px;
  1197. top:0px;
  1198. width:60px;
  1199. height:30px;
  1200. background:inherit;
  1201. background-color:rgba(255, 255, 255, 0);
  1202. border:none;
  1203. border-left:0px;
  1204. border-top:0px;
  1205. border-right:0px;
  1206. border-radius:0px;
  1207. border-bottom-right-radius:0px;
  1208. border-bottom-left-radius:0px;
  1209. -moz-box-shadow:none;
  1210. -webkit-box-shadow:none;
  1211. box-shadow:none;
  1212. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1213. font-weight:650;
  1214. font-style:normal;
  1215. font-size:18px;
  1216. color:#298FFF;
  1217. text-align:center;
  1218. line-height:30px;
  1219. }
  1220. #u12954 {
  1221. border-width:0px;
  1222. position:absolute;
  1223. left:978px;
  1224. top:167px;
  1225. width:60px;
  1226. height:30px;
  1227. display:flex;
  1228. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1229. font-weight:650;
  1230. font-style:normal;
  1231. font-size:18px;
  1232. color:#298FFF;
  1233. text-align:center;
  1234. line-height:30px;
  1235. }
  1236. #u12954 .text {
  1237. position:absolute;
  1238. align-self:flex-start;
  1239. padding:0px 0px 0px 0px;
  1240. box-sizing:border-box;
  1241. width:100%;
  1242. }
  1243. #u12954_text {
  1244. border-width:0px;
  1245. white-space:nowrap;
  1246. text-transform:none;
  1247. }
  1248. #u12955_div {
  1249. border-width:0px;
  1250. position:absolute;
  1251. left:0px;
  1252. top:0px;
  1253. width:57px;
  1254. height:30px;
  1255. background:inherit;
  1256. background-color:rgba(255, 255, 255, 0);
  1257. border:none;
  1258. border-left:0px;
  1259. border-top:0px;
  1260. border-right:0px;
  1261. border-radius:0px;
  1262. border-bottom-right-radius:0px;
  1263. border-bottom-left-radius:0px;
  1264. -moz-box-shadow:none;
  1265. -webkit-box-shadow:none;
  1266. box-shadow:none;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:14px;
  1271. color:#7F7F7F;
  1272. text-align:center;
  1273. line-height:30px;
  1274. }
  1275. #u12955 {
  1276. border-width:0px;
  1277. position:absolute;
  1278. left:1104px;
  1279. top:197px;
  1280. width:57px;
  1281. height:30px;
  1282. display:flex;
  1283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1284. font-weight:400;
  1285. font-style:normal;
  1286. font-size:14px;
  1287. color:#7F7F7F;
  1288. text-align:center;
  1289. line-height:30px;
  1290. }
  1291. #u12955 .text {
  1292. position:absolute;
  1293. align-self:flex-start;
  1294. padding:0px 0px 0px 0px;
  1295. box-sizing:border-box;
  1296. width:100%;
  1297. }
  1298. #u12955_text {
  1299. border-width:0px;
  1300. white-space:nowrap;
  1301. text-transform:none;
  1302. }
  1303. #u12956_div {
  1304. border-width:0px;
  1305. position:absolute;
  1306. left:0px;
  1307. top:0px;
  1308. width:80px;
  1309. height:30px;
  1310. background:inherit;
  1311. background-color:rgba(255, 255, 255, 0);
  1312. border:none;
  1313. border-left:0px;
  1314. border-top:0px;
  1315. border-right:0px;
  1316. border-radius:0px;
  1317. border-bottom-right-radius:0px;
  1318. border-bottom-left-radius:0px;
  1319. -moz-box-shadow:none;
  1320. -webkit-box-shadow:none;
  1321. box-shadow:none;
  1322. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1323. font-weight:650;
  1324. font-style:normal;
  1325. font-size:18px;
  1326. color:#298FFF;
  1327. line-height:30px;
  1328. }
  1329. #u12956 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:1093px;
  1333. top:167px;
  1334. width:80px;
  1335. height:30px;
  1336. display:flex;
  1337. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1338. font-weight:650;
  1339. font-style:normal;
  1340. font-size:18px;
  1341. color:#298FFF;
  1342. line-height:30px;
  1343. }
  1344. #u12956 .text {
  1345. position:absolute;
  1346. align-self:flex-start;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u12956_text {
  1352. border-width:0px;
  1353. white-space:nowrap;
  1354. text-transform:none;
  1355. }
  1356. #u12957_div {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:80px;
  1362. height:30px;
  1363. background:inherit;
  1364. background-color:rgba(255, 255, 255, 0);
  1365. border:none;
  1366. border-left:0px;
  1367. border-top:0px;
  1368. border-right:0px;
  1369. border-radius:0px;
  1370. border-bottom-right-radius:0px;
  1371. border-bottom-left-radius:0px;
  1372. -moz-box-shadow:none;
  1373. -webkit-box-shadow:none;
  1374. box-shadow:none;
  1375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1376. font-weight:400;
  1377. font-style:normal;
  1378. font-size:14px;
  1379. color:#7F7F7F;
  1380. text-align:center;
  1381. line-height:30px;
  1382. }
  1383. #u12957 {
  1384. border-width:0px;
  1385. position:absolute;
  1386. left:1202px;
  1387. top:197px;
  1388. width:80px;
  1389. height:30px;
  1390. display:flex;
  1391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1392. font-weight:400;
  1393. font-style:normal;
  1394. font-size:14px;
  1395. color:#7F7F7F;
  1396. text-align:center;
  1397. line-height:30px;
  1398. }
  1399. #u12957 .text {
  1400. position:absolute;
  1401. align-self:flex-start;
  1402. padding:0px 0px 0px 0px;
  1403. box-sizing:border-box;
  1404. width:100%;
  1405. }
  1406. #u12957_text {
  1407. border-width:0px;
  1408. white-space:nowrap;
  1409. text-transform:none;
  1410. }
  1411. #u12958_div {
  1412. border-width:0px;
  1413. position:absolute;
  1414. left:0px;
  1415. top:0px;
  1416. width:35px;
  1417. height:30px;
  1418. background:inherit;
  1419. background-color:rgba(255, 255, 255, 0);
  1420. border:none;
  1421. border-left:0px;
  1422. border-top:0px;
  1423. border-right:0px;
  1424. border-radius:0px;
  1425. border-bottom-right-radius:0px;
  1426. border-bottom-left-radius:0px;
  1427. -moz-box-shadow:none;
  1428. -webkit-box-shadow:none;
  1429. box-shadow:none;
  1430. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1431. font-weight:650;
  1432. font-style:normal;
  1433. font-size:18px;
  1434. color:#298FFF;
  1435. text-align:center;
  1436. line-height:30px;
  1437. }
  1438. #u12958 {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:1225px;
  1442. top:167px;
  1443. width:35px;
  1444. height:30px;
  1445. display:flex;
  1446. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1447. font-weight:650;
  1448. font-style:normal;
  1449. font-size:18px;
  1450. color:#298FFF;
  1451. text-align:center;
  1452. line-height:30px;
  1453. }
  1454. #u12958 .text {
  1455. position:absolute;
  1456. align-self:flex-start;
  1457. padding:0px 0px 0px 0px;
  1458. box-sizing:border-box;
  1459. width:100%;
  1460. }
  1461. #u12958_text {
  1462. border-width:0px;
  1463. white-space:nowrap;
  1464. text-transform:none;
  1465. }
  1466. #u12959 {
  1467. border-width:0px;
  1468. position:absolute;
  1469. left:0px;
  1470. top:0px;
  1471. width:0px;
  1472. height:0px;
  1473. }
  1474. #u12960_div {
  1475. border-width:0px;
  1476. position:absolute;
  1477. left:0px;
  1478. top:0px;
  1479. width:150px;
  1480. height:71px;
  1481. background:inherit;
  1482. background-color:rgba(242, 242, 242, 0.498039215686275);
  1483. border:none;
  1484. border-radius:4px;
  1485. -moz-box-shadow:none;
  1486. -webkit-box-shadow:none;
  1487. box-shadow:none;
  1488. }
  1489. #u12960 {
  1490. border-width:0px;
  1491. position:absolute;
  1492. left:961px;
  1493. top:527px;
  1494. width:150px;
  1495. height:71px;
  1496. display:flex;
  1497. }
  1498. #u12960 .text {
  1499. position:absolute;
  1500. align-self:center;
  1501. padding:2px 2px 2px 2px;
  1502. box-sizing:border-box;
  1503. width:100%;
  1504. }
  1505. #u12960_text {
  1506. border-width:0px;
  1507. word-wrap:break-word;
  1508. text-transform:none;
  1509. visibility:hidden;
  1510. }
  1511. #u12961_div {
  1512. border-width:0px;
  1513. position:absolute;
  1514. left:0px;
  1515. top:0px;
  1516. width:122px;
  1517. height:27px;
  1518. background:inherit;
  1519. background-color:rgba(255, 255, 255, 0);
  1520. border:none;
  1521. border-left:0px;
  1522. border-top:0px;
  1523. border-right:0px;
  1524. border-radius:0px;
  1525. border-bottom-right-radius:0px;
  1526. border-bottom-left-radius:0px;
  1527. -moz-box-shadow:none;
  1528. -webkit-box-shadow:none;
  1529. box-shadow:none;
  1530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1531. font-weight:400;
  1532. font-style:normal;
  1533. font-size:12px;
  1534. color:#7F7F7F;
  1535. text-align:center;
  1536. line-height:30px;
  1537. }
  1538. #u12961 {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:976px;
  1542. top:562px;
  1543. width:122px;
  1544. height:27px;
  1545. display:flex;
  1546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1547. font-weight:400;
  1548. font-style:normal;
  1549. font-size:12px;
  1550. color:#7F7F7F;
  1551. text-align:center;
  1552. line-height:30px;
  1553. }
  1554. #u12961 .text {
  1555. position:absolute;
  1556. align-self:flex-start;
  1557. padding:0px 0px 0px 0px;
  1558. box-sizing:border-box;
  1559. width:100%;
  1560. }
  1561. #u12961_text {
  1562. border-width:0px;
  1563. word-wrap:break-word;
  1564. text-transform:none;
  1565. }
  1566. #u12962_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:105px;
  1572. height:27px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. border:none;
  1576. border-left:0px;
  1577. border-top:0px;
  1578. border-right:0px;
  1579. border-radius:0px;
  1580. border-bottom-right-radius:0px;
  1581. border-bottom-left-radius:0px;
  1582. -moz-box-shadow:none;
  1583. -webkit-box-shadow:none;
  1584. box-shadow:none;
  1585. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1586. font-weight:500;
  1587. font-style:normal;
  1588. font-size:18px;
  1589. color:#298FFF;
  1590. text-align:center;
  1591. line-height:30px;
  1592. }
  1593. #u12962 {
  1594. border-width:0px;
  1595. position:absolute;
  1596. left:984px;
  1597. top:535px;
  1598. width:105px;
  1599. height:27px;
  1600. display:flex;
  1601. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1602. font-weight:500;
  1603. font-style:normal;
  1604. font-size:18px;
  1605. color:#298FFF;
  1606. text-align:center;
  1607. line-height:30px;
  1608. }
  1609. #u12962 .text {
  1610. position:absolute;
  1611. align-self:flex-start;
  1612. padding:0px 0px 0px 0px;
  1613. box-sizing:border-box;
  1614. width:100%;
  1615. }
  1616. #u12962_text {
  1617. border-width:0px;
  1618. word-wrap:break-word;
  1619. text-transform:none;
  1620. }
  1621. #u12963_div {
  1622. border-width:0px;
  1623. position:absolute;
  1624. left:0px;
  1625. top:0px;
  1626. width:323px;
  1627. height:30px;
  1628. background:inherit;
  1629. background-color:rgba(255, 255, 255, 0);
  1630. border:none;
  1631. border-left:0px;
  1632. border-top:0px;
  1633. border-right:0px;
  1634. border-radius:0px;
  1635. border-bottom-right-radius:0px;
  1636. border-bottom-left-radius:0px;
  1637. -moz-box-shadow:none;
  1638. -webkit-box-shadow:none;
  1639. box-shadow:none;
  1640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1641. font-weight:400;
  1642. font-style:normal;
  1643. font-size:14px;
  1644. line-height:30px;
  1645. }
  1646. #u12963 {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:965px;
  1650. top:116px;
  1651. width:323px;
  1652. height:30px;
  1653. display:flex;
  1654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1655. font-weight:400;
  1656. font-style:normal;
  1657. font-size:14px;
  1658. line-height:30px;
  1659. }
  1660. #u12963 .text {
  1661. position:absolute;
  1662. align-self:flex-start;
  1663. padding:0px 0px 0px 0px;
  1664. box-sizing:border-box;
  1665. width:100%;
  1666. }
  1667. #u12963_text {
  1668. border-width:0px;
  1669. white-space:nowrap;
  1670. text-transform:none;
  1671. }
  1672. #u12964_div {
  1673. border-width:0px;
  1674. position:absolute;
  1675. left:0px;
  1676. top:0px;
  1677. width:73px;
  1678. height:30px;
  1679. background:inherit;
  1680. background-color:rgba(255, 255, 255, 0);
  1681. border:none;
  1682. border-left:0px;
  1683. border-top:0px;
  1684. border-right:0px;
  1685. border-radius:0px;
  1686. border-bottom-right-radius:0px;
  1687. border-bottom-left-radius:0px;
  1688. -moz-box-shadow:none;
  1689. -webkit-box-shadow:none;
  1690. box-shadow:none;
  1691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1692. font-weight:400;
  1693. font-style:normal;
  1694. font-size:18px;
  1695. line-height:30px;
  1696. }
  1697. #u12964 {
  1698. border-width:0px;
  1699. position:absolute;
  1700. left:1093px;
  1701. top:77px;
  1702. width:73px;
  1703. height:30px;
  1704. display:flex;
  1705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1706. font-weight:400;
  1707. font-style:normal;
  1708. font-size:18px;
  1709. line-height:30px;
  1710. }
  1711. #u12964 .text {
  1712. position:absolute;
  1713. align-self:center;
  1714. padding:0px 0px 0px 0px;
  1715. box-sizing:border-box;
  1716. width:100%;
  1717. }
  1718. #u12964_text {
  1719. border-width:0px;
  1720. white-space:nowrap;
  1721. text-transform:none;
  1722. }
  1723. #u12965_img {
  1724. border-width:0px;
  1725. position:absolute;
  1726. left:0px;
  1727. top:0px;
  1728. width:15px;
  1729. height:15px;
  1730. }
  1731. #u12965 {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:953px;
  1735. top:84px;
  1736. width:15px;
  1737. height:15px;
  1738. display:flex;
  1739. }
  1740. #u12965 .text {
  1741. position:absolute;
  1742. align-self:center;
  1743. padding:2px 2px 2px 2px;
  1744. box-sizing:border-box;
  1745. width:100%;
  1746. }
  1747. #u12965_text {
  1748. border-width:0px;
  1749. word-wrap:break-word;
  1750. text-transform:none;
  1751. visibility:hidden;
  1752. }
  1753. #u12966_div {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:0px;
  1757. top:0px;
  1758. width:121px;
  1759. height:30px;
  1760. background:inherit;
  1761. background-color:rgba(255, 255, 255, 0);
  1762. border:none;
  1763. border-left:0px;
  1764. border-top:0px;
  1765. border-right:0px;
  1766. border-radius:0px;
  1767. border-bottom-right-radius:0px;
  1768. border-bottom-left-radius:0px;
  1769. -moz-box-shadow:none;
  1770. -webkit-box-shadow:none;
  1771. box-shadow:none;
  1772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1773. font-weight:400;
  1774. font-style:normal;
  1775. font-size:12px;
  1776. color:#7F7F7F;
  1777. line-height:30px;
  1778. }
  1779. #u12966 {
  1780. border-width:0px;
  1781. position:absolute;
  1782. left:968px;
  1783. top:689px;
  1784. width:121px;
  1785. height:30px;
  1786. display:flex;
  1787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1788. font-weight:400;
  1789. font-style:normal;
  1790. font-size:12px;
  1791. color:#7F7F7F;
  1792. line-height:30px;
  1793. }
  1794. #u12966 .text {
  1795. position:absolute;
  1796. align-self:flex-start;
  1797. padding:0px 0px 0px 0px;
  1798. box-sizing:border-box;
  1799. width:100%;
  1800. }
  1801. #u12966_text {
  1802. border-width:0px;
  1803. white-space:nowrap;
  1804. text-transform:none;
  1805. }
  1806. #u12967_div {
  1807. border-width:0px;
  1808. position:absolute;
  1809. left:0px;
  1810. top:0px;
  1811. width:154px;
  1812. height:30px;
  1813. background:inherit;
  1814. background-color:rgba(255, 255, 255, 0);
  1815. border:none;
  1816. border-left:0px;
  1817. border-top:0px;
  1818. border-right:0px;
  1819. border-radius:0px;
  1820. border-bottom-right-radius:0px;
  1821. border-bottom-left-radius:0px;
  1822. -moz-box-shadow:none;
  1823. -webkit-box-shadow:none;
  1824. box-shadow:none;
  1825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1826. font-weight:400;
  1827. font-style:normal;
  1828. font-size:12px;
  1829. color:#7F7F7F;
  1830. line-height:30px;
  1831. }
  1832. #u12967 {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:1134px;
  1836. top:689px;
  1837. width:154px;
  1838. height:30px;
  1839. display:flex;
  1840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1841. font-weight:400;
  1842. font-style:normal;
  1843. font-size:12px;
  1844. color:#7F7F7F;
  1845. line-height:30px;
  1846. }
  1847. #u12967 .text {
  1848. position:absolute;
  1849. align-self:flex-start;
  1850. padding:0px 0px 0px 0px;
  1851. box-sizing:border-box;
  1852. width:100%;
  1853. }
  1854. #u12967_text {
  1855. border-width:0px;
  1856. white-space:nowrap;
  1857. text-transform:none;
  1858. }
  1859. #u12968_img {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:0px;
  1863. top:0px;
  1864. width:70px;
  1865. height:30px;
  1866. }
  1867. #u12968 {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:1240px;
  1871. top:77px;
  1872. width:70px;
  1873. height:30px;
  1874. display:flex;
  1875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1876. font-weight:400;
  1877. font-style:normal;
  1878. font-size:12px;
  1879. color:#298FFF;
  1880. }
  1881. #u12968 .text {
  1882. position:absolute;
  1883. align-self:center;
  1884. padding:2px 2px 2px 10px;
  1885. box-sizing:border-box;
  1886. width:100%;
  1887. }
  1888. #u12968_text {
  1889. border-width:0px;
  1890. word-wrap:break-word;
  1891. text-transform:none;
  1892. }
  1893. #u12969 {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:0px;
  1897. top:0px;
  1898. width:0px;
  1899. height:0px;
  1900. }
  1901. #u12970_div {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:0px;
  1905. top:0px;
  1906. width:342px;
  1907. height:180px;
  1908. background:inherit;
  1909. background-color:rgba(255, 255, 255, 1);
  1910. border:none;
  1911. border-radius:10px;
  1912. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1913. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1914. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1915. }
  1916. #u12970 {
  1917. border-width:0px;
  1918. position:absolute;
  1919. left:2740px;
  1920. top:39px;
  1921. width:342px;
  1922. height:180px;
  1923. display:flex;
  1924. }
  1925. #u12970 .text {
  1926. position:absolute;
  1927. align-self:center;
  1928. padding:2px 2px 2px 2px;
  1929. box-sizing:border-box;
  1930. width:100%;
  1931. }
  1932. #u12970_text {
  1933. border-width:0px;
  1934. word-wrap:break-word;
  1935. text-transform:none;
  1936. visibility:hidden;
  1937. }
  1938. #u12971_div {
  1939. border-width:0px;
  1940. position:absolute;
  1941. left:0px;
  1942. top:0px;
  1943. width:127px;
  1944. height:30px;
  1945. background:inherit;
  1946. background-color:rgba(255, 255, 255, 0);
  1947. border:none;
  1948. border-left:0px;
  1949. border-top:0px;
  1950. border-right:0px;
  1951. border-radius:0px;
  1952. border-bottom-right-radius:0px;
  1953. border-bottom-left-radius:0px;
  1954. -moz-box-shadow:none;
  1955. -webkit-box-shadow:none;
  1956. box-shadow:none;
  1957. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1958. font-weight:500;
  1959. font-style:normal;
  1960. font-size:18px;
  1961. text-align:center;
  1962. line-height:30px;
  1963. }
  1964. #u12971 {
  1965. border-width:0px;
  1966. position:absolute;
  1967. left:2847px;
  1968. top:63px;
  1969. width:127px;
  1970. height:30px;
  1971. display:flex;
  1972. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1973. font-weight:500;
  1974. font-style:normal;
  1975. font-size:18px;
  1976. text-align:center;
  1977. line-height:30px;
  1978. }
  1979. #u12971 .text {
  1980. position:absolute;
  1981. align-self:flex-start;
  1982. padding:0px 0px 0px 0px;
  1983. box-sizing:border-box;
  1984. width:100%;
  1985. }
  1986. #u12971_text {
  1987. border-width:0px;
  1988. white-space:nowrap;
  1989. text-transform:none;
  1990. }
  1991. #u12972_img {
  1992. border-width:0px;
  1993. position:absolute;
  1994. left:0px;
  1995. top:0px;
  1996. width:343px;
  1997. height:2px;
  1998. }
  1999. #u12972 {
  2000. border-width:0px;
  2001. position:absolute;
  2002. left:2740px;
  2003. top:152px;
  2004. width:342px;
  2005. height:1px;
  2006. display:flex;
  2007. }
  2008. #u12972 .text {
  2009. position:absolute;
  2010. align-self:center;
  2011. padding:2px 2px 2px 2px;
  2012. box-sizing:border-box;
  2013. width:100%;
  2014. }
  2015. #u12972_text {
  2016. border-width:0px;
  2017. word-wrap:break-word;
  2018. text-transform:none;
  2019. visibility:hidden;
  2020. }
  2021. #u12973_div {
  2022. border-width:0px;
  2023. position:absolute;
  2024. left:0px;
  2025. top:0px;
  2026. width:37px;
  2027. height:30px;
  2028. background:inherit;
  2029. background-color:rgba(255, 255, 255, 0);
  2030. border:none;
  2031. border-left:0px;
  2032. border-top:0px;
  2033. border-right:0px;
  2034. border-radius:0px;
  2035. border-bottom-right-radius:0px;
  2036. border-bottom-left-radius:0px;
  2037. -moz-box-shadow:none;
  2038. -webkit-box-shadow:none;
  2039. box-shadow:none;
  2040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2041. font-weight:400;
  2042. font-style:normal;
  2043. font-size:18px;
  2044. color:#0089FE;
  2045. text-align:right;
  2046. line-height:30px;
  2047. }
  2048. #u12973 {
  2049. border-width:0px;
  2050. position:absolute;
  2051. left:2985px;
  2052. top:171px;
  2053. width:37px;
  2054. height:30px;
  2055. display:flex;
  2056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2057. font-weight:400;
  2058. font-style:normal;
  2059. font-size:18px;
  2060. color:#0089FE;
  2061. text-align:right;
  2062. line-height:30px;
  2063. }
  2064. #u12973 .text {
  2065. position:absolute;
  2066. align-self:flex-start;
  2067. padding:0px 0px 0px 0px;
  2068. box-sizing:border-box;
  2069. width:100%;
  2070. }
  2071. #u12973_text {
  2072. border-width:0px;
  2073. white-space:nowrap;
  2074. text-transform:none;
  2075. }
  2076. #u12974_div {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:0px;
  2080. top:0px;
  2081. width:37px;
  2082. height:30px;
  2083. background:inherit;
  2084. background-color:rgba(255, 255, 255, 0);
  2085. border:none;
  2086. border-left:0px;
  2087. border-top:0px;
  2088. border-right:0px;
  2089. border-radius:0px;
  2090. border-bottom-right-radius:0px;
  2091. border-bottom-left-radius:0px;
  2092. -moz-box-shadow:none;
  2093. -webkit-box-shadow:none;
  2094. box-shadow:none;
  2095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2096. font-weight:400;
  2097. font-style:normal;
  2098. font-size:18px;
  2099. color:#0089FE;
  2100. text-align:right;
  2101. line-height:30px;
  2102. }
  2103. #u12974 {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:2810px;
  2107. top:171px;
  2108. width:37px;
  2109. height:30px;
  2110. display:flex;
  2111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2112. font-weight:400;
  2113. font-style:normal;
  2114. font-size:18px;
  2115. color:#0089FE;
  2116. text-align:right;
  2117. line-height:30px;
  2118. }
  2119. #u12974 .text {
  2120. position:absolute;
  2121. align-self:flex-start;
  2122. padding:0px 0px 0px 0px;
  2123. box-sizing:border-box;
  2124. width:100%;
  2125. }
  2126. #u12974_text {
  2127. border-width:0px;
  2128. white-space:nowrap;
  2129. text-transform:none;
  2130. }
  2131. #u12975_img {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:0px;
  2135. top:0px;
  2136. width:2px;
  2137. height:67px;
  2138. }
  2139. #u12975 {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:2911px;
  2143. top:153px;
  2144. width:1px;
  2145. height:66px;
  2146. display:flex;
  2147. }
  2148. #u12975 .text {
  2149. position:absolute;
  2150. align-self:center;
  2151. padding:2px 2px 2px 2px;
  2152. box-sizing:border-box;
  2153. width:100%;
  2154. }
  2155. #u12975_text {
  2156. border-width:0px;
  2157. word-wrap:break-word;
  2158. text-transform:none;
  2159. visibility:hidden;
  2160. }
  2161. #u12976_div {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:0px;
  2165. top:0px;
  2166. width:283px;
  2167. height:30px;
  2168. background:inherit;
  2169. background-color:rgba(255, 255, 255, 0);
  2170. border:none;
  2171. border-left:0px;
  2172. border-top:0px;
  2173. border-right:0px;
  2174. border-radius:0px;
  2175. border-bottom-right-radius:0px;
  2176. border-bottom-left-radius:0px;
  2177. -moz-box-shadow:none;
  2178. -webkit-box-shadow:none;
  2179. box-shadow:none;
  2180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2181. font-weight:400;
  2182. font-style:normal;
  2183. font-size:14px;
  2184. color:#D9001B;
  2185. text-align:center;
  2186. line-height:30px;
  2187. }
  2188. #u12976 {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:2770px;
  2192. top:109px;
  2193. width:283px;
  2194. height:30px;
  2195. display:flex;
  2196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2197. font-weight:400;
  2198. font-style:normal;
  2199. font-size:14px;
  2200. color:#D9001B;
  2201. text-align:center;
  2202. line-height:30px;
  2203. }
  2204. #u12976 .text {
  2205. position:absolute;
  2206. align-self:flex-start;
  2207. padding:0px 0px 0px 0px;
  2208. box-sizing:border-box;
  2209. width:100%;
  2210. }
  2211. #u12976_text {
  2212. border-width:0px;
  2213. word-wrap:break-word;
  2214. text-transform:none;
  2215. }
  2216. #u12977 {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:0px;
  2220. top:0px;
  2221. width:0px;
  2222. height:0px;
  2223. }
  2224. #u12978_div {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:0px;
  2228. top:0px;
  2229. width:342px;
  2230. height:78px;
  2231. background:inherit;
  2232. background-color:rgba(255, 255, 255, 1);
  2233. border:none;
  2234. border-radius:10px;
  2235. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2236. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2237. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2238. }
  2239. #u12978 {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:2740px;
  2243. top:262px;
  2244. width:342px;
  2245. height:78px;
  2246. display:flex;
  2247. }
  2248. #u12978 .text {
  2249. position:absolute;
  2250. align-self:center;
  2251. padding:2px 2px 2px 2px;
  2252. box-sizing:border-box;
  2253. width:100%;
  2254. }
  2255. #u12978_text {
  2256. border-width:0px;
  2257. word-wrap:break-word;
  2258. text-transform:none;
  2259. visibility:hidden;
  2260. }
  2261. #u12979_div {
  2262. border-width:0px;
  2263. position:absolute;
  2264. left:0px;
  2265. top:0px;
  2266. width:163px;
  2267. height:30px;
  2268. background:inherit;
  2269. background-color:rgba(255, 255, 255, 0);
  2270. border:none;
  2271. border-left:0px;
  2272. border-top:0px;
  2273. border-right:0px;
  2274. border-radius:0px;
  2275. border-bottom-right-radius:0px;
  2276. border-bottom-left-radius:0px;
  2277. -moz-box-shadow:none;
  2278. -webkit-box-shadow:none;
  2279. box-shadow:none;
  2280. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2281. font-weight:500;
  2282. font-style:normal;
  2283. font-size:18px;
  2284. text-align:center;
  2285. line-height:30px;
  2286. }
  2287. #u12979 {
  2288. border-width:0px;
  2289. position:absolute;
  2290. left:2829px;
  2291. top:286px;
  2292. width:163px;
  2293. height:30px;
  2294. display:flex;
  2295. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2296. font-weight:500;
  2297. font-style:normal;
  2298. font-size:18px;
  2299. text-align:center;
  2300. line-height:30px;
  2301. }
  2302. #u12979 .text {
  2303. position:absolute;
  2304. align-self:flex-start;
  2305. padding:0px 0px 0px 0px;
  2306. box-sizing:border-box;
  2307. width:100%;
  2308. }
  2309. #u12979_text {
  2310. border-width:0px;
  2311. white-space:nowrap;
  2312. text-transform:none;
  2313. }
  2314. #u12980 {
  2315. border-width:0px;
  2316. position:absolute;
  2317. left:0px;
  2318. top:0px;
  2319. width:0px;
  2320. height:0px;
  2321. }
  2322. #u12981_div {
  2323. border-width:0px;
  2324. position:absolute;
  2325. left:0px;
  2326. top:0px;
  2327. width:342px;
  2328. height:140px;
  2329. background:inherit;
  2330. background-color:rgba(255, 255, 255, 1);
  2331. border:none;
  2332. border-radius:10px;
  2333. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2334. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2335. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2336. }
  2337. #u12981 {
  2338. border-width:0px;
  2339. position:absolute;
  2340. left:2740px;
  2341. top:385px;
  2342. width:342px;
  2343. height:140px;
  2344. display:flex;
  2345. }
  2346. #u12981 .text {
  2347. position:absolute;
  2348. align-self:center;
  2349. padding:2px 2px 2px 2px;
  2350. box-sizing:border-box;
  2351. width:100%;
  2352. }
  2353. #u12981_text {
  2354. border-width:0px;
  2355. word-wrap:break-word;
  2356. text-transform:none;
  2357. visibility:hidden;
  2358. }
  2359. #u12982_div {
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:0px;
  2363. top:0px;
  2364. width:127px;
  2365. height:30px;
  2366. background:inherit;
  2367. background-color:rgba(255, 255, 255, 0);
  2368. border:none;
  2369. border-left:0px;
  2370. border-top:0px;
  2371. border-right:0px;
  2372. border-radius:0px;
  2373. border-bottom-right-radius:0px;
  2374. border-bottom-left-radius:0px;
  2375. -moz-box-shadow:none;
  2376. -webkit-box-shadow:none;
  2377. box-shadow:none;
  2378. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2379. font-weight:500;
  2380. font-style:normal;
  2381. font-size:18px;
  2382. text-align:center;
  2383. line-height:30px;
  2384. }
  2385. #u12982 {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:2848px;
  2389. top:409px;
  2390. width:127px;
  2391. height:30px;
  2392. display:flex;
  2393. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2394. font-weight:500;
  2395. font-style:normal;
  2396. font-size:18px;
  2397. text-align:center;
  2398. line-height:30px;
  2399. }
  2400. #u12982 .text {
  2401. position:absolute;
  2402. align-self:flex-start;
  2403. padding:0px 0px 0px 0px;
  2404. box-sizing:border-box;
  2405. width:100%;
  2406. }
  2407. #u12982_text {
  2408. border-width:0px;
  2409. white-space:nowrap;
  2410. text-transform:none;
  2411. }
  2412. #u12983_img {
  2413. border-width:0px;
  2414. position:absolute;
  2415. left:0px;
  2416. top:0px;
  2417. width:343px;
  2418. height:2px;
  2419. }
  2420. #u12983 {
  2421. border-width:0px;
  2422. position:absolute;
  2423. left:2740px;
  2424. top:465px;
  2425. width:342px;
  2426. height:1px;
  2427. display:flex;
  2428. }
  2429. #u12983 .text {
  2430. position:absolute;
  2431. align-self:center;
  2432. padding:2px 2px 2px 2px;
  2433. box-sizing:border-box;
  2434. width:100%;
  2435. }
  2436. #u12983_text {
  2437. border-width:0px;
  2438. word-wrap:break-word;
  2439. text-transform:none;
  2440. visibility:hidden;
  2441. }
  2442. #u12984_div {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:0px;
  2446. top:0px;
  2447. width:37px;
  2448. height:30px;
  2449. background:inherit;
  2450. background-color:rgba(255, 255, 255, 0);
  2451. border:none;
  2452. border-left:0px;
  2453. border-top:0px;
  2454. border-right:0px;
  2455. border-radius:0px;
  2456. border-bottom-right-radius:0px;
  2457. border-bottom-left-radius:0px;
  2458. -moz-box-shadow:none;
  2459. -webkit-box-shadow:none;
  2460. box-shadow:none;
  2461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2462. font-weight:400;
  2463. font-style:normal;
  2464. font-size:18px;
  2465. color:#0089FE;
  2466. text-align:right;
  2467. line-height:30px;
  2468. }
  2469. #u12984 {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:2893px;
  2473. top:484px;
  2474. width:37px;
  2475. height:30px;
  2476. display:flex;
  2477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2478. font-weight:400;
  2479. font-style:normal;
  2480. font-size:18px;
  2481. color:#0089FE;
  2482. text-align:right;
  2483. line-height:30px;
  2484. }
  2485. #u12984 .text {
  2486. position:absolute;
  2487. align-self:flex-start;
  2488. padding:0px 0px 0px 0px;
  2489. box-sizing:border-box;
  2490. width:100%;
  2491. }
  2492. #u12984_text {
  2493. border-width:0px;
  2494. white-space:nowrap;
  2495. text-transform:none;
  2496. }
  2497. #u12986_img {
  2498. border-width:0px;
  2499. position:absolute;
  2500. left:0px;
  2501. top:0px;
  2502. width:433px;
  2503. height:865px;
  2504. }
  2505. #u12986 {
  2506. border-width:0px;
  2507. position:absolute;
  2508. left:1359px;
  2509. top:0px;
  2510. width:433px;
  2511. height:865px;
  2512. display:flex;
  2513. }
  2514. #u12986 .text {
  2515. position:absolute;
  2516. align-self:center;
  2517. padding:2px 2px 2px 2px;
  2518. box-sizing:border-box;
  2519. width:100%;
  2520. }
  2521. #u12986_text {
  2522. border-width:0px;
  2523. word-wrap:break-word;
  2524. text-transform:none;
  2525. visibility:hidden;
  2526. }
  2527. #u12987_div {
  2528. border-width:0px;
  2529. position:absolute;
  2530. left:0px;
  2531. top:0px;
  2532. width:375px;
  2533. height:40px;
  2534. background:inherit;
  2535. background-color:rgba(255, 255, 255, 1);
  2536. box-sizing:border-box;
  2537. border-width:1px;
  2538. border-style:solid;
  2539. border-color:rgba(215, 215, 215, 1);
  2540. border-left:0px;
  2541. border-top:0px;
  2542. border-right:0px;
  2543. border-radius:0px;
  2544. border-bottom-right-radius:0px;
  2545. border-bottom-left-radius:0px;
  2546. -moz-box-shadow:none;
  2547. -webkit-box-shadow:none;
  2548. box-shadow:none;
  2549. }
  2550. #u12987 {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:1388px;
  2554. top:67px;
  2555. width:375px;
  2556. height:40px;
  2557. display:flex;
  2558. }
  2559. #u12987 .text {
  2560. position:absolute;
  2561. align-self:center;
  2562. padding:2px 2px 2px 2px;
  2563. box-sizing:border-box;
  2564. width:100%;
  2565. }
  2566. #u12987_text {
  2567. border-width:0px;
  2568. word-wrap:break-word;
  2569. text-transform:none;
  2570. visibility:hidden;
  2571. }
  2572. #u12988 {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:0px;
  2576. top:0px;
  2577. width:0px;
  2578. height:0px;
  2579. }
  2580. #u12989_div {
  2581. border-width:0px;
  2582. position:absolute;
  2583. left:0px;
  2584. top:0px;
  2585. width:88px;
  2586. height:32px;
  2587. background:inherit;
  2588. background-color:rgba(255, 255, 255, 1);
  2589. box-sizing:border-box;
  2590. border-width:1px;
  2591. border-style:solid;
  2592. border-color:rgba(242, 242, 242, 1);
  2593. border-radius:33px;
  2594. -moz-box-shadow:none;
  2595. -webkit-box-shadow:none;
  2596. box-shadow:none;
  2597. }
  2598. #u12989 {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:1668px;
  2602. top:71px;
  2603. width:88px;
  2604. height:32px;
  2605. display:flex;
  2606. }
  2607. #u12989 .text {
  2608. position:absolute;
  2609. align-self:center;
  2610. padding:2px 2px 2px 2px;
  2611. box-sizing:border-box;
  2612. width:100%;
  2613. }
  2614. #u12989_text {
  2615. border-width:0px;
  2616. word-wrap:break-word;
  2617. text-transform:none;
  2618. visibility:hidden;
  2619. }
  2620. #u12990 {
  2621. border-width:0px;
  2622. position:absolute;
  2623. left:0px;
  2624. top:0px;
  2625. width:0px;
  2626. height:0px;
  2627. }
  2628. #u12991_img {
  2629. border-width:0px;
  2630. position:absolute;
  2631. left:0px;
  2632. top:0px;
  2633. width:18px;
  2634. height:18px;
  2635. }
  2636. #u12991 {
  2637. border-width:0px;
  2638. position:absolute;
  2639. left:1731px;
  2640. top:78px;
  2641. width:18px;
  2642. height:18px;
  2643. display:flex;
  2644. }
  2645. #u12991 .text {
  2646. position:absolute;
  2647. align-self:center;
  2648. padding:2px 2px 2px 2px;
  2649. box-sizing:border-box;
  2650. width:100%;
  2651. }
  2652. #u12991_text {
  2653. border-width:0px;
  2654. word-wrap:break-word;
  2655. text-transform:none;
  2656. visibility:hidden;
  2657. }
  2658. #u12992_img {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:0px;
  2662. top:0px;
  2663. width:6px;
  2664. height:6px;
  2665. }
  2666. #u12992 {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:1737px;
  2670. top:84px;
  2671. width:6px;
  2672. height:6px;
  2673. display:flex;
  2674. }
  2675. #u12992 .text {
  2676. position:absolute;
  2677. align-self:center;
  2678. padding:2px 2px 2px 2px;
  2679. box-sizing:border-box;
  2680. width:100%;
  2681. }
  2682. #u12992_text {
  2683. border-width:0px;
  2684. word-wrap:break-word;
  2685. text-transform:none;
  2686. visibility:hidden;
  2687. }
  2688. #u12993 {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:0px;
  2692. top:0px;
  2693. width:0px;
  2694. height:0px;
  2695. }
  2696. #u12994_img {
  2697. border-width:0px;
  2698. position:absolute;
  2699. left:0px;
  2700. top:0px;
  2701. width:5px;
  2702. height:5px;
  2703. }
  2704. #u12994 {
  2705. border-width:0px;
  2706. position:absolute;
  2707. left:1682px;
  2708. top:85px;
  2709. width:5px;
  2710. height:5px;
  2711. display:flex;
  2712. }
  2713. #u12994 .text {
  2714. position:absolute;
  2715. align-self:center;
  2716. padding:2px 2px 2px 2px;
  2717. box-sizing:border-box;
  2718. width:100%;
  2719. }
  2720. #u12994_text {
  2721. border-width:0px;
  2722. word-wrap:break-word;
  2723. text-transform:none;
  2724. visibility:hidden;
  2725. }
  2726. #u12995_img {
  2727. border-width:0px;
  2728. position:absolute;
  2729. left:0px;
  2730. top:0px;
  2731. width:5px;
  2732. height:5px;
  2733. }
  2734. #u12995 {
  2735. border-width:0px;
  2736. position:absolute;
  2737. left:1698px;
  2738. top:85px;
  2739. width:5px;
  2740. height:5px;
  2741. display:flex;
  2742. }
  2743. #u12995 .text {
  2744. position:absolute;
  2745. align-self:center;
  2746. padding:2px 2px 2px 2px;
  2747. box-sizing:border-box;
  2748. width:100%;
  2749. }
  2750. #u12995_text {
  2751. border-width:0px;
  2752. word-wrap:break-word;
  2753. text-transform:none;
  2754. visibility:hidden;
  2755. }
  2756. #u12996_img {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:0px;
  2760. top:0px;
  2761. width:7px;
  2762. height:7px;
  2763. }
  2764. #u12996 {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:1689px;
  2768. top:84px;
  2769. width:7px;
  2770. height:7px;
  2771. display:flex;
  2772. }
  2773. #u12996 .text {
  2774. position:absolute;
  2775. align-self:center;
  2776. padding:2px 2px 2px 2px;
  2777. box-sizing:border-box;
  2778. width:100%;
  2779. }
  2780. #u12996_text {
  2781. border-width:0px;
  2782. word-wrap:break-word;
  2783. text-transform:none;
  2784. visibility:hidden;
  2785. }
  2786. #u12997_img {
  2787. border-width:0px;
  2788. position:absolute;
  2789. left:0px;
  2790. top:0px;
  2791. width:19px;
  2792. height:2px;
  2793. }
  2794. #u12997 {
  2795. border-width:0px;
  2796. position:absolute;
  2797. left:1706px;
  2798. top:87px;
  2799. width:18px;
  2800. height:1px;
  2801. display:flex;
  2802. -webkit-transform:rotate(90deg);
  2803. -moz-transform:rotate(90deg);
  2804. -ms-transform:rotate(90deg);
  2805. transform:rotate(90deg);
  2806. }
  2807. #u12997 .text {
  2808. position:absolute;
  2809. align-self:center;
  2810. padding:2px 2px 2px 2px;
  2811. box-sizing:border-box;
  2812. width:100%;
  2813. }
  2814. #u12997_text {
  2815. border-width:0px;
  2816. word-wrap:break-word;
  2817. text-transform:none;
  2818. visibility:hidden;
  2819. }
  2820. #u12998_img {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:0px;
  2824. top:0px;
  2825. width:375px;
  2826. height:44px;
  2827. }
  2828. #u12998 {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:1388px;
  2832. top:24px;
  2833. width:375px;
  2834. height:44px;
  2835. display:flex;
  2836. }
  2837. #u12998 .text {
  2838. position:absolute;
  2839. align-self:center;
  2840. padding:2px 2px 2px 2px;
  2841. box-sizing:border-box;
  2842. width:100%;
  2843. }
  2844. #u12998_text {
  2845. border-width:0px;
  2846. word-wrap:break-word;
  2847. text-transform:none;
  2848. visibility:hidden;
  2849. }
  2850. #u12999_div {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:0px;
  2854. top:0px;
  2855. width:375px;
  2856. height:50px;
  2857. background:inherit;
  2858. background-color:rgba(255, 255, 255, 1);
  2859. box-sizing:border-box;
  2860. border-width:1px;
  2861. border-style:solid;
  2862. border-color:rgba(242, 242, 242, 1);
  2863. border-radius:26px;
  2864. border-top-left-radius:0px;
  2865. border-top-right-radius:0px;
  2866. -moz-box-shadow:none;
  2867. -webkit-box-shadow:none;
  2868. box-shadow:none;
  2869. }
  2870. #u12999 {
  2871. border-width:0px;
  2872. position:absolute;
  2873. left:1388px;
  2874. top:788px;
  2875. width:375px;
  2876. height:50px;
  2877. display:flex;
  2878. }
  2879. #u12999 .text {
  2880. position:absolute;
  2881. align-self:center;
  2882. padding:2px 2px 2px 2px;
  2883. box-sizing:border-box;
  2884. width:100%;
  2885. }
  2886. #u12999_text {
  2887. border-width:0px;
  2888. word-wrap:break-word;
  2889. text-transform:none;
  2890. visibility:hidden;
  2891. }
  2892. #u13000 {
  2893. border-width:0px;
  2894. position:absolute;
  2895. left:0px;
  2896. top:0px;
  2897. width:0px;
  2898. height:0px;
  2899. }
  2900. #u13001_img {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:0px;
  2904. top:0px;
  2905. width:24px;
  2906. height:24px;
  2907. }
  2908. #u13001 {
  2909. border-width:0px;
  2910. position:absolute;
  2911. left:1428px;
  2912. top:792px;
  2913. width:24px;
  2914. height:24px;
  2915. display:flex;
  2916. font-size:8px;
  2917. }
  2918. #u13001 .text {
  2919. position:absolute;
  2920. align-self:center;
  2921. padding:2px 2px 2px 2px;
  2922. box-sizing:border-box;
  2923. width:100%;
  2924. }
  2925. #u13001_text {
  2926. border-width:0px;
  2927. word-wrap:break-word;
  2928. text-transform:none;
  2929. }
  2930. #u13002_div {
  2931. border-width:0px;
  2932. position:absolute;
  2933. left:0px;
  2934. top:0px;
  2935. width:25px;
  2936. height:17px;
  2937. background:inherit;
  2938. background-color:rgba(255, 255, 255, 0);
  2939. border:none;
  2940. border-radius:0px;
  2941. -moz-box-shadow:none;
  2942. -webkit-box-shadow:none;
  2943. box-shadow:none;
  2944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2945. font-weight:400;
  2946. font-style:normal;
  2947. font-size:12px;
  2948. }
  2949. #u13002 {
  2950. border-width:0px;
  2951. position:absolute;
  2952. left:1428px;
  2953. top:817px;
  2954. width:25px;
  2955. height:17px;
  2956. display:flex;
  2957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2958. font-weight:400;
  2959. font-style:normal;
  2960. font-size:12px;
  2961. }
  2962. #u13002 .text {
  2963. position:absolute;
  2964. align-self:flex-start;
  2965. padding:0px 0px 0px 0px;
  2966. box-sizing:border-box;
  2967. width:100%;
  2968. }
  2969. #u13002_text {
  2970. border-width:0px;
  2971. white-space:nowrap;
  2972. text-transform:none;
  2973. }
  2974. #u13003 {
  2975. border-width:0px;
  2976. position:absolute;
  2977. left:0px;
  2978. top:0px;
  2979. width:0px;
  2980. height:0px;
  2981. }
  2982. #u13004_img {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:0px;
  2986. top:0px;
  2987. width:24px;
  2988. height:24px;
  2989. }
  2990. #u13004 {
  2991. border-width:0px;
  2992. position:absolute;
  2993. left:1698px;
  2994. top:794px;
  2995. width:24px;
  2996. height:24px;
  2997. display:flex;
  2998. font-size:8px;
  2999. }
  3000. #u13004 .text {
  3001. position:absolute;
  3002. align-self:center;
  3003. padding:2px 2px 2px 2px;
  3004. box-sizing:border-box;
  3005. width:100%;
  3006. }
  3007. #u13004_text {
  3008. border-width:0px;
  3009. word-wrap:break-word;
  3010. text-transform:none;
  3011. }
  3012. #u13005_div {
  3013. border-width:0px;
  3014. position:absolute;
  3015. left:0px;
  3016. top:0px;
  3017. width:25px;
  3018. height:17px;
  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-Regular', 'PingFang SC', sans-serif;
  3027. font-weight:400;
  3028. font-style:normal;
  3029. font-size:12px;
  3030. }
  3031. #u13005 {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:1698px;
  3035. top:819px;
  3036. width:25px;
  3037. height:17px;
  3038. display:flex;
  3039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3040. font-weight:400;
  3041. font-style:normal;
  3042. font-size:12px;
  3043. }
  3044. #u13005 .text {
  3045. position:absolute;
  3046. align-self:flex-start;
  3047. padding:0px 0px 0px 0px;
  3048. box-sizing:border-box;
  3049. width:100%;
  3050. }
  3051. #u13005_text {
  3052. border-width:0px;
  3053. white-space:nowrap;
  3054. text-transform:none;
  3055. }
  3056. #u13006_div {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:0px;
  3060. top:0px;
  3061. width:375px;
  3062. height:681px;
  3063. background:inherit;
  3064. background-color:rgba(242, 242, 242, 0.462745098039216);
  3065. border:none;
  3066. border-radius:0px;
  3067. -moz-box-shadow:none;
  3068. -webkit-box-shadow:none;
  3069. box-shadow:none;
  3070. }
  3071. #u13006 {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:1388px;
  3075. top:107px;
  3076. width:375px;
  3077. height:681px;
  3078. display:flex;
  3079. }
  3080. #u13006 .text {
  3081. position:absolute;
  3082. align-self:center;
  3083. padding:2px 2px 2px 2px;
  3084. box-sizing:border-box;
  3085. width:100%;
  3086. }
  3087. #u13006_text {
  3088. border-width:0px;
  3089. word-wrap:break-word;
  3090. text-transform:none;
  3091. visibility:hidden;
  3092. }
  3093. #u13007 {
  3094. border-width:0px;
  3095. position:absolute;
  3096. left:0px;
  3097. top:0px;
  3098. width:0px;
  3099. height:0px;
  3100. }
  3101. #u13008_img {
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:0px;
  3105. top:0px;
  3106. width:24px;
  3107. height:24px;
  3108. }
  3109. #u13008 {
  3110. border-width:0px;
  3111. position:absolute;
  3112. left:1610px;
  3113. top:792px;
  3114. width:24px;
  3115. height:24px;
  3116. display:flex;
  3117. font-size:8px;
  3118. }
  3119. #u13008 .text {
  3120. position:absolute;
  3121. align-self:center;
  3122. padding:2px 2px 2px 2px;
  3123. box-sizing:border-box;
  3124. width:100%;
  3125. }
  3126. #u13008_text {
  3127. border-width:0px;
  3128. word-wrap:break-word;
  3129. text-transform:none;
  3130. }
  3131. #u13009_div {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:0px;
  3135. top:0px;
  3136. width:37px;
  3137. height:17px;
  3138. background:inherit;
  3139. background-color:rgba(255, 255, 255, 0);
  3140. border:none;
  3141. border-radius:0px;
  3142. -moz-box-shadow:none;
  3143. -webkit-box-shadow:none;
  3144. box-shadow:none;
  3145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3146. font-weight:400;
  3147. font-style:normal;
  3148. font-size:12px;
  3149. }
  3150. #u13009 {
  3151. border-width:0px;
  3152. position:absolute;
  3153. left:1604px;
  3154. top:817px;
  3155. width:37px;
  3156. height:17px;
  3157. display:flex;
  3158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3159. font-weight:400;
  3160. font-style:normal;
  3161. font-size:12px;
  3162. }
  3163. #u13009 .text {
  3164. position:absolute;
  3165. align-self:flex-start;
  3166. padding:0px 0px 0px 0px;
  3167. box-sizing:border-box;
  3168. width:100%;
  3169. }
  3170. #u13009_text {
  3171. border-width:0px;
  3172. white-space:nowrap;
  3173. text-transform:none;
  3174. }
  3175. #u13010 {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:0px;
  3179. top:0px;
  3180. width:0px;
  3181. height:0px;
  3182. }
  3183. #u13011_img {
  3184. border-width:0px;
  3185. position:absolute;
  3186. left:0px;
  3187. top:0px;
  3188. width:24px;
  3189. height:24px;
  3190. }
  3191. #u13011 {
  3192. border-width:0px;
  3193. position:absolute;
  3194. left:1516px;
  3195. top:792px;
  3196. width:24px;
  3197. height:24px;
  3198. display:flex;
  3199. font-size:8px;
  3200. }
  3201. #u13011 .text {
  3202. position:absolute;
  3203. align-self:center;
  3204. padding:2px 2px 2px 2px;
  3205. box-sizing:border-box;
  3206. width:100%;
  3207. }
  3208. #u13011_text {
  3209. border-width:0px;
  3210. word-wrap:break-word;
  3211. text-transform:none;
  3212. }
  3213. #u13012_div {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:0px;
  3217. top:0px;
  3218. width:37px;
  3219. height:17px;
  3220. background:inherit;
  3221. background-color:rgba(255, 255, 255, 0);
  3222. border:none;
  3223. border-radius:0px;
  3224. -moz-box-shadow:none;
  3225. -webkit-box-shadow:none;
  3226. box-shadow:none;
  3227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3228. font-weight:400;
  3229. font-style:normal;
  3230. font-size:12px;
  3231. }
  3232. #u13012 {
  3233. border-width:0px;
  3234. position:absolute;
  3235. left:1510px;
  3236. top:817px;
  3237. width:37px;
  3238. height:17px;
  3239. display:flex;
  3240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3241. font-weight:400;
  3242. font-style:normal;
  3243. font-size:12px;
  3244. }
  3245. #u13012 .text {
  3246. position:absolute;
  3247. align-self:flex-start;
  3248. padding:0px 0px 0px 0px;
  3249. box-sizing:border-box;
  3250. width:100%;
  3251. }
  3252. #u13012_text {
  3253. border-width:0px;
  3254. white-space:nowrap;
  3255. text-transform:none;
  3256. }
  3257. #u13013_img {
  3258. border-width:0px;
  3259. position:absolute;
  3260. left:0px;
  3261. top:0px;
  3262. width:375px;
  3263. height:769px;
  3264. }
  3265. #u13013 {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:1388px;
  3269. top:70px;
  3270. width:375px;
  3271. height:769px;
  3272. display:flex;
  3273. }
  3274. #u13013 .text {
  3275. position:absolute;
  3276. align-self:center;
  3277. padding:2px 2px 2px 2px;
  3278. box-sizing:border-box;
  3279. width:100%;
  3280. }
  3281. #u13013_text {
  3282. border-width:0px;
  3283. word-wrap:break-word;
  3284. text-transform:none;
  3285. visibility:hidden;
  3286. }
  3287. #u13014_div {
  3288. border-width:0px;
  3289. position:absolute;
  3290. left:0px;
  3291. top:0px;
  3292. width:375px;
  3293. height:769px;
  3294. background:inherit;
  3295. background-color:rgba(255, 255, 255, 1);
  3296. border:none;
  3297. border-top:0px;
  3298. border-radius:24px;
  3299. border-top-left-radius:0px;
  3300. border-top-right-radius:0px;
  3301. -moz-box-shadow:none;
  3302. -webkit-box-shadow:none;
  3303. box-shadow:none;
  3304. }
  3305. #u13014 {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:1388px;
  3309. top:70px;
  3310. width:375px;
  3311. height:769px;
  3312. display:flex;
  3313. }
  3314. #u13014 .text {
  3315. position:absolute;
  3316. align-self:center;
  3317. padding:2px 2px 2px 2px;
  3318. box-sizing:border-box;
  3319. width:100%;
  3320. }
  3321. #u13014_text {
  3322. border-width:0px;
  3323. word-wrap:break-word;
  3324. text-transform:none;
  3325. visibility:hidden;
  3326. }
  3327. #u13015_img {
  3328. border-width:0px;
  3329. position:absolute;
  3330. left:0px;
  3331. top:0px;
  3332. width:220px;
  3333. height:220px;
  3334. }
  3335. #u13015 {
  3336. border-width:0px;
  3337. position:absolute;
  3338. left:1462px;
  3339. top:247px;
  3340. width:220px;
  3341. height:220px;
  3342. display:flex;
  3343. }
  3344. #u13015 .text {
  3345. position:absolute;
  3346. align-self:center;
  3347. padding:2px 2px 2px 2px;
  3348. box-sizing:border-box;
  3349. width:100%;
  3350. }
  3351. #u13015_text {
  3352. border-width:0px;
  3353. word-wrap:break-word;
  3354. text-transform:none;
  3355. visibility:hidden;
  3356. }
  3357. #u13016_div {
  3358. border-width:0px;
  3359. position:absolute;
  3360. left:0px;
  3361. top:0px;
  3362. width:133px;
  3363. height:60px;
  3364. background:inherit;
  3365. background-color:rgba(255, 255, 255, 0);
  3366. border:none;
  3367. border-radius:0px;
  3368. -moz-box-shadow:none;
  3369. -webkit-box-shadow:none;
  3370. box-shadow:none;
  3371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3372. font-weight:400;
  3373. font-style:normal;
  3374. color:#FFFFFF;
  3375. text-align:center;
  3376. line-height:30px;
  3377. }
  3378. #u13016 {
  3379. border-width:0px;
  3380. position:absolute;
  3381. left:1506px;
  3382. top:357px;
  3383. width:133px;
  3384. height:60px;
  3385. display:flex;
  3386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3387. font-weight:400;
  3388. font-style:normal;
  3389. color:#FFFFFF;
  3390. text-align:center;
  3391. line-height:30px;
  3392. }
  3393. #u13016 .text {
  3394. position:absolute;
  3395. align-self:flex-start;
  3396. padding:0px 0px 0px 0px;
  3397. box-sizing:border-box;
  3398. width:100%;
  3399. }
  3400. #u13016_text {
  3401. border-width:0px;
  3402. white-space:nowrap;
  3403. text-transform:none;
  3404. }
  3405. #u13017_div {
  3406. border-width:0px;
  3407. position:absolute;
  3408. left:0px;
  3409. top:0px;
  3410. width:76px;
  3411. height:30px;
  3412. background:inherit;
  3413. background-color:rgba(255, 255, 255, 0);
  3414. border:none;
  3415. border-left:0px;
  3416. border-top:0px;
  3417. border-right:0px;
  3418. border-radius:0px;
  3419. border-bottom-right-radius:0px;
  3420. border-bottom-left-radius:0px;
  3421. -moz-box-shadow:none;
  3422. -webkit-box-shadow:none;
  3423. box-shadow:none;
  3424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3425. font-weight:400;
  3426. font-style:normal;
  3427. color:#FFFFFF;
  3428. text-align:center;
  3429. line-height:30px;
  3430. }
  3431. #u13017 {
  3432. border-width:0px;
  3433. position:absolute;
  3434. left:1534px;
  3435. top:305px;
  3436. width:76px;
  3437. height:30px;
  3438. display:flex;
  3439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3440. font-weight:400;
  3441. font-style:normal;
  3442. color:#FFFFFF;
  3443. text-align:center;
  3444. line-height:30px;
  3445. }
  3446. #u13017 .text {
  3447. position:absolute;
  3448. align-self:flex-start;
  3449. padding:0px 0px 0px 0px;
  3450. box-sizing:border-box;
  3451. width:100%;
  3452. }
  3453. #u13017_text {
  3454. border-width:0px;
  3455. white-space:nowrap;
  3456. text-transform:none;
  3457. }
  3458. #u13018_div {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:0px;
  3462. top:0px;
  3463. width:323px;
  3464. height:30px;
  3465. background:inherit;
  3466. background-color:rgba(255, 255, 255, 0);
  3467. border:none;
  3468. border-left:0px;
  3469. border-top:0px;
  3470. border-right:0px;
  3471. border-radius:0px;
  3472. border-bottom-right-radius:0px;
  3473. border-bottom-left-radius:0px;
  3474. -moz-box-shadow:none;
  3475. -webkit-box-shadow:none;
  3476. box-shadow:none;
  3477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3478. font-weight:400;
  3479. font-style:normal;
  3480. font-size:14px;
  3481. line-height:30px;
  3482. }
  3483. #u13018 {
  3484. border-width:0px;
  3485. position:absolute;
  3486. left:1418px;
  3487. top:116px;
  3488. width:323px;
  3489. height:30px;
  3490. display:flex;
  3491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3492. font-weight:400;
  3493. font-style:normal;
  3494. font-size:14px;
  3495. line-height:30px;
  3496. }
  3497. #u13018 .text {
  3498. position:absolute;
  3499. align-self:flex-start;
  3500. padding:0px 0px 0px 0px;
  3501. box-sizing:border-box;
  3502. width:100%;
  3503. }
  3504. #u13018_text {
  3505. border-width:0px;
  3506. white-space:nowrap;
  3507. text-transform:none;
  3508. }
  3509. #u13019_div {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:0px;
  3513. top:0px;
  3514. width:73px;
  3515. height:30px;
  3516. background:inherit;
  3517. background-color:rgba(255, 255, 255, 0);
  3518. border:none;
  3519. border-left:0px;
  3520. border-top:0px;
  3521. border-right:0px;
  3522. border-radius:0px;
  3523. border-bottom-right-radius:0px;
  3524. border-bottom-left-radius:0px;
  3525. -moz-box-shadow:none;
  3526. -webkit-box-shadow:none;
  3527. box-shadow:none;
  3528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3529. font-weight:400;
  3530. font-style:normal;
  3531. font-size:18px;
  3532. line-height:30px;
  3533. }
  3534. #u13019 {
  3535. border-width:0px;
  3536. position:absolute;
  3537. left:1550px;
  3538. top:77px;
  3539. width:73px;
  3540. height:30px;
  3541. display:flex;
  3542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3543. font-weight:400;
  3544. font-style:normal;
  3545. font-size:18px;
  3546. line-height:30px;
  3547. }
  3548. #u13019 .text {
  3549. position:absolute;
  3550. align-self:center;
  3551. padding:0px 0px 0px 0px;
  3552. box-sizing:border-box;
  3553. width:100%;
  3554. }
  3555. #u13019_text {
  3556. border-width:0px;
  3557. white-space:nowrap;
  3558. text-transform:none;
  3559. }
  3560. #u13020_img {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:0px;
  3564. top:0px;
  3565. width:15px;
  3566. height:15px;
  3567. }
  3568. #u13020 {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:1406px;
  3572. top:84px;
  3573. width:15px;
  3574. height:15px;
  3575. display:flex;
  3576. }
  3577. #u13020 .text {
  3578. position:absolute;
  3579. align-self:center;
  3580. padding:2px 2px 2px 2px;
  3581. box-sizing:border-box;
  3582. width:100%;
  3583. }
  3584. #u13020_text {
  3585. border-width:0px;
  3586. word-wrap:break-word;
  3587. text-transform:none;
  3588. visibility:hidden;
  3589. }
  3590. #u13021_div {
  3591. border-width:0px;
  3592. position:absolute;
  3593. left:0px;
  3594. top:0px;
  3595. width:350px;
  3596. height:40px;
  3597. background:inherit;
  3598. background-color:rgba(250, 205, 145, 0.215686274509804);
  3599. border:none;
  3600. border-radius:82px;
  3601. -moz-box-shadow:none;
  3602. -webkit-box-shadow:none;
  3603. box-shadow:none;
  3604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3605. font-weight:400;
  3606. font-style:normal;
  3607. font-size:14px;
  3608. color:#F59A23;
  3609. }
  3610. #u13021 {
  3611. border-width:0px;
  3612. position:absolute;
  3613. left:1406px;
  3614. top:729px;
  3615. width:350px;
  3616. height:40px;
  3617. display:flex;
  3618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3619. font-weight:400;
  3620. font-style:normal;
  3621. font-size:14px;
  3622. color:#F59A23;
  3623. }
  3624. #u13021 .text {
  3625. position:absolute;
  3626. align-self:center;
  3627. padding:2px 2px 2px 2px;
  3628. box-sizing:border-box;
  3629. width:100%;
  3630. }
  3631. #u13021_text {
  3632. border-width:0px;
  3633. word-wrap:break-word;
  3634. text-transform:none;
  3635. }
  3636. #u13022_div {
  3637. border-width:0px;
  3638. position:absolute;
  3639. left:0px;
  3640. top:0px;
  3641. width:334px;
  3642. height:40px;
  3643. background:inherit;
  3644. background-color:rgba(255, 255, 255, 1);
  3645. box-sizing:border-box;
  3646. border-width:1px;
  3647. border-style:solid;
  3648. border-color:rgba(41, 143, 255, 1);
  3649. border-radius:82px;
  3650. -moz-box-shadow:none;
  3651. -webkit-box-shadow:none;
  3652. box-shadow:none;
  3653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3654. font-weight:400;
  3655. font-style:normal;
  3656. font-size:14px;
  3657. color:#298FFF;
  3658. }
  3659. #u13022 {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:1412px;
  3663. top:769px;
  3664. width:334px;
  3665. height:40px;
  3666. display:flex;
  3667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3668. font-weight:400;
  3669. font-style:normal;
  3670. font-size:14px;
  3671. color:#298FFF;
  3672. }
  3673. #u13022 .text {
  3674. position:absolute;
  3675. align-self:center;
  3676. padding:2px 2px 2px 2px;
  3677. box-sizing:border-box;
  3678. width:100%;
  3679. }
  3680. #u13022_text {
  3681. border-width:0px;
  3682. word-wrap:break-word;
  3683. text-transform:none;
  3684. }
  3685. #u13023_img {
  3686. border-width:0px;
  3687. position:absolute;
  3688. left:0px;
  3689. top:0px;
  3690. width:70px;
  3691. height:30px;
  3692. }
  3693. #u13023 {
  3694. border-width:0px;
  3695. position:absolute;
  3696. left:1693px;
  3697. top:77px;
  3698. width:70px;
  3699. height:30px;
  3700. display:flex;
  3701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3702. font-weight:400;
  3703. font-style:normal;
  3704. font-size:12px;
  3705. color:#298FFF;
  3706. }
  3707. #u13023 .text {
  3708. position:absolute;
  3709. align-self:center;
  3710. padding:2px 2px 2px 10px;
  3711. box-sizing:border-box;
  3712. width:100%;
  3713. }
  3714. #u13023_text {
  3715. border-width:0px;
  3716. word-wrap:break-word;
  3717. text-transform:none;
  3718. }
  3719. #u13024 {
  3720. border-width:0px;
  3721. position:absolute;
  3722. left:0px;
  3723. top:0px;
  3724. width:0px;
  3725. height:0px;
  3726. }
  3727. #u13025_div {
  3728. border-width:0px;
  3729. position:absolute;
  3730. left:0px;
  3731. top:0px;
  3732. width:150px;
  3733. height:71px;
  3734. background:inherit;
  3735. background-color:rgba(242, 242, 242, 0.498039215686275);
  3736. border:none;
  3737. border-radius:4px;
  3738. -moz-box-shadow:none;
  3739. -webkit-box-shadow:none;
  3740. box-shadow:none;
  3741. }
  3742. #u13025 {
  3743. border-width:0px;
  3744. position:absolute;
  3745. left:1134px;
  3746. top:527px;
  3747. width:150px;
  3748. height:71px;
  3749. display:flex;
  3750. }
  3751. #u13025 .text {
  3752. position:absolute;
  3753. align-self:center;
  3754. padding:2px 2px 2px 2px;
  3755. box-sizing:border-box;
  3756. width:100%;
  3757. }
  3758. #u13025_text {
  3759. border-width:0px;
  3760. word-wrap:break-word;
  3761. text-transform:none;
  3762. visibility:hidden;
  3763. }
  3764. #u13026_div {
  3765. border-width:0px;
  3766. position:absolute;
  3767. left:0px;
  3768. top:0px;
  3769. width:122px;
  3770. height:27px;
  3771. background:inherit;
  3772. background-color:rgba(255, 255, 255, 0);
  3773. border:none;
  3774. border-left:0px;
  3775. border-top:0px;
  3776. border-right:0px;
  3777. border-radius:0px;
  3778. border-bottom-right-radius:0px;
  3779. border-bottom-left-radius:0px;
  3780. -moz-box-shadow:none;
  3781. -webkit-box-shadow:none;
  3782. box-shadow:none;
  3783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3784. font-weight:400;
  3785. font-style:normal;
  3786. font-size:12px;
  3787. color:#7F7F7F;
  3788. text-align:center;
  3789. line-height:30px;
  3790. }
  3791. #u13026 {
  3792. border-width:0px;
  3793. position:absolute;
  3794. left:1149px;
  3795. top:562px;
  3796. width:122px;
  3797. height:27px;
  3798. display:flex;
  3799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3800. font-weight:400;
  3801. font-style:normal;
  3802. font-size:12px;
  3803. color:#7F7F7F;
  3804. text-align:center;
  3805. line-height:30px;
  3806. }
  3807. #u13026 .text {
  3808. position:absolute;
  3809. align-self:flex-start;
  3810. padding:0px 0px 0px 0px;
  3811. box-sizing:border-box;
  3812. width:100%;
  3813. }
  3814. #u13026_text {
  3815. border-width:0px;
  3816. word-wrap:break-word;
  3817. text-transform:none;
  3818. }
  3819. #u13027_div {
  3820. border-width:0px;
  3821. position:absolute;
  3822. left:0px;
  3823. top:0px;
  3824. width:105px;
  3825. height:27px;
  3826. background:inherit;
  3827. background-color:rgba(255, 255, 255, 0);
  3828. border:none;
  3829. border-left:0px;
  3830. border-top:0px;
  3831. border-right:0px;
  3832. border-radius:0px;
  3833. border-bottom-right-radius:0px;
  3834. border-bottom-left-radius:0px;
  3835. -moz-box-shadow:none;
  3836. -webkit-box-shadow:none;
  3837. box-shadow:none;
  3838. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3839. font-weight:500;
  3840. font-style:normal;
  3841. font-size:18px;
  3842. color:#298FFF;
  3843. text-align:center;
  3844. line-height:30px;
  3845. }
  3846. #u13027 {
  3847. border-width:0px;
  3848. position:absolute;
  3849. left:1156px;
  3850. top:535px;
  3851. width:105px;
  3852. height:27px;
  3853. display:flex;
  3854. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3855. font-weight:500;
  3856. font-style:normal;
  3857. font-size:18px;
  3858. color:#298FFF;
  3859. text-align:center;
  3860. line-height:30px;
  3861. }
  3862. #u13027 .text {
  3863. position:absolute;
  3864. align-self:flex-start;
  3865. padding:0px 0px 0px 0px;
  3866. box-sizing:border-box;
  3867. width:100%;
  3868. }
  3869. #u13027_text {
  3870. border-width:0px;
  3871. word-wrap:break-word;
  3872. text-transform:none;
  3873. }
  3874. #u13028 {
  3875. border-width:0px;
  3876. position:absolute;
  3877. left:0px;
  3878. top:0px;
  3879. width:0px;
  3880. height:0px;
  3881. }
  3882. #u13029_div {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:0px;
  3886. top:0px;
  3887. width:150px;
  3888. height:71px;
  3889. background:inherit;
  3890. background-color:rgba(242, 242, 242, 0.498039215686275);
  3891. border:none;
  3892. border-radius:4px;
  3893. -moz-box-shadow:none;
  3894. -webkit-box-shadow:none;
  3895. box-shadow:none;
  3896. }
  3897. #u13029 {
  3898. border-width:0px;
  3899. position:absolute;
  3900. left:961px;
  3901. top:603px;
  3902. width:150px;
  3903. height:71px;
  3904. display:flex;
  3905. }
  3906. #u13029 .text {
  3907. position:absolute;
  3908. align-self:center;
  3909. padding:2px 2px 2px 2px;
  3910. box-sizing:border-box;
  3911. width:100%;
  3912. }
  3913. #u13029_text {
  3914. border-width:0px;
  3915. word-wrap:break-word;
  3916. text-transform:none;
  3917. visibility:hidden;
  3918. }
  3919. #u13030_div {
  3920. border-width:0px;
  3921. position:absolute;
  3922. left:0px;
  3923. top:0px;
  3924. width:122px;
  3925. height:27px;
  3926. background:inherit;
  3927. background-color:rgba(255, 255, 255, 0);
  3928. border:none;
  3929. border-left:0px;
  3930. border-top:0px;
  3931. border-right:0px;
  3932. border-radius:0px;
  3933. border-bottom-right-radius:0px;
  3934. border-bottom-left-radius:0px;
  3935. -moz-box-shadow:none;
  3936. -webkit-box-shadow:none;
  3937. box-shadow:none;
  3938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3939. font-weight:400;
  3940. font-style:normal;
  3941. font-size:12px;
  3942. color:#7F7F7F;
  3943. text-align:center;
  3944. line-height:30px;
  3945. }
  3946. #u13030 {
  3947. border-width:0px;
  3948. position:absolute;
  3949. left:976px;
  3950. top:637px;
  3951. width:122px;
  3952. height:27px;
  3953. display:flex;
  3954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3955. font-weight:400;
  3956. font-style:normal;
  3957. font-size:12px;
  3958. color:#7F7F7F;
  3959. text-align:center;
  3960. line-height:30px;
  3961. }
  3962. #u13030 .text {
  3963. position:absolute;
  3964. align-self:flex-start;
  3965. padding:0px 0px 0px 0px;
  3966. box-sizing:border-box;
  3967. width:100%;
  3968. }
  3969. #u13030_text {
  3970. border-width:0px;
  3971. word-wrap:break-word;
  3972. text-transform:none;
  3973. }
  3974. #u13031_div {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:0px;
  3978. top:0px;
  3979. width:105px;
  3980. height:27px;
  3981. background:inherit;
  3982. background-color:rgba(255, 255, 255, 0);
  3983. border:none;
  3984. border-left:0px;
  3985. border-top:0px;
  3986. border-right:0px;
  3987. border-radius:0px;
  3988. border-bottom-right-radius:0px;
  3989. border-bottom-left-radius:0px;
  3990. -moz-box-shadow:none;
  3991. -webkit-box-shadow:none;
  3992. box-shadow:none;
  3993. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3994. font-weight:500;
  3995. font-style:normal;
  3996. font-size:18px;
  3997. color:#298FFF;
  3998. text-align:center;
  3999. line-height:30px;
  4000. }
  4001. #u13031 {
  4002. border-width:0px;
  4003. position:absolute;
  4004. left:984px;
  4005. top:611px;
  4006. width:105px;
  4007. height:27px;
  4008. display:flex;
  4009. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4010. font-weight:500;
  4011. font-style:normal;
  4012. font-size:18px;
  4013. color:#298FFF;
  4014. text-align:center;
  4015. line-height:30px;
  4016. }
  4017. #u13031 .text {
  4018. position:absolute;
  4019. align-self:flex-start;
  4020. padding:0px 0px 0px 0px;
  4021. box-sizing:border-box;
  4022. width:100%;
  4023. }
  4024. #u13031_text {
  4025. border-width:0px;
  4026. word-wrap:break-word;
  4027. text-transform:none;
  4028. }
  4029. #u13032 {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:0px;
  4033. top:0px;
  4034. width:0px;
  4035. height:0px;
  4036. }
  4037. #u13033_div {
  4038. border-width:0px;
  4039. position:absolute;
  4040. left:0px;
  4041. top:0px;
  4042. width:150px;
  4043. height:71px;
  4044. background:inherit;
  4045. background-color:rgba(242, 242, 242, 0.498039215686275);
  4046. border:none;
  4047. border-radius:4px;
  4048. -moz-box-shadow:none;
  4049. -webkit-box-shadow:none;
  4050. box-shadow:none;
  4051. }
  4052. #u13033 {
  4053. border-width:0px;
  4054. position:absolute;
  4055. left:1134px;
  4056. top:603px;
  4057. width:150px;
  4058. height:71px;
  4059. display:flex;
  4060. }
  4061. #u13033 .text {
  4062. position:absolute;
  4063. align-self:center;
  4064. padding:2px 2px 2px 2px;
  4065. box-sizing:border-box;
  4066. width:100%;
  4067. }
  4068. #u13033_text {
  4069. border-width:0px;
  4070. word-wrap:break-word;
  4071. text-transform:none;
  4072. visibility:hidden;
  4073. }
  4074. #u13034_div {
  4075. border-width:0px;
  4076. position:absolute;
  4077. left:0px;
  4078. top:0px;
  4079. width:122px;
  4080. height:27px;
  4081. background:inherit;
  4082. background-color:rgba(255, 255, 255, 0);
  4083. border:none;
  4084. border-left:0px;
  4085. border-top:0px;
  4086. border-right:0px;
  4087. border-radius:0px;
  4088. border-bottom-right-radius:0px;
  4089. border-bottom-left-radius:0px;
  4090. -moz-box-shadow:none;
  4091. -webkit-box-shadow:none;
  4092. box-shadow:none;
  4093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4094. font-weight:400;
  4095. font-style:normal;
  4096. color:#7F7F7F;
  4097. text-align:center;
  4098. line-height:30px;
  4099. }
  4100. #u13034 {
  4101. border-width:0px;
  4102. position:absolute;
  4103. left:1149px;
  4104. top:637px;
  4105. width:122px;
  4106. height:27px;
  4107. display:flex;
  4108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4109. font-weight:400;
  4110. font-style:normal;
  4111. color:#7F7F7F;
  4112. text-align:center;
  4113. line-height:30px;
  4114. }
  4115. #u13034 .text {
  4116. position:absolute;
  4117. align-self:flex-start;
  4118. padding:0px 0px 0px 0px;
  4119. box-sizing:border-box;
  4120. width:100%;
  4121. }
  4122. #u13034_text {
  4123. border-width:0px;
  4124. word-wrap:break-word;
  4125. text-transform:none;
  4126. }
  4127. #u13035_div {
  4128. border-width:0px;
  4129. position:absolute;
  4130. left:0px;
  4131. top:0px;
  4132. width:105px;
  4133. height:27px;
  4134. background:inherit;
  4135. background-color:rgba(255, 255, 255, 0);
  4136. border:none;
  4137. border-left:0px;
  4138. border-top:0px;
  4139. border-right:0px;
  4140. border-radius:0px;
  4141. border-bottom-right-radius:0px;
  4142. border-bottom-left-radius:0px;
  4143. -moz-box-shadow:none;
  4144. -webkit-box-shadow:none;
  4145. box-shadow:none;
  4146. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4147. font-weight:500;
  4148. font-style:normal;
  4149. font-size:18px;
  4150. color:#298FFF;
  4151. text-align:center;
  4152. line-height:30px;
  4153. }
  4154. #u13035 {
  4155. border-width:0px;
  4156. position:absolute;
  4157. left:1156px;
  4158. top:611px;
  4159. width:105px;
  4160. height:27px;
  4161. display:flex;
  4162. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4163. font-weight:500;
  4164. font-style:normal;
  4165. font-size:18px;
  4166. color:#298FFF;
  4167. text-align:center;
  4168. line-height:30px;
  4169. }
  4170. #u13035 .text {
  4171. position:absolute;
  4172. align-self:flex-start;
  4173. padding:0px 0px 0px 0px;
  4174. box-sizing:border-box;
  4175. width:100%;
  4176. }
  4177. #u13035_text {
  4178. border-width:0px;
  4179. word-wrap:break-word;
  4180. text-transform:none;
  4181. }
  4182. #u13036_div {
  4183. border-width:0px;
  4184. position:absolute;
  4185. left:0px;
  4186. top:0px;
  4187. width:82px;
  4188. height:25px;
  4189. background:inherit;
  4190. background-color:rgba(255, 255, 255, 0);
  4191. border:none;
  4192. border-radius:0px;
  4193. -moz-box-shadow:none;
  4194. -webkit-box-shadow:none;
  4195. box-shadow:none;
  4196. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4197. font-weight:500;
  4198. font-style:normal;
  4199. font-size:18px;
  4200. }
  4201. #u13036 {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:1533px;
  4205. top:473px;
  4206. width:82px;
  4207. height:25px;
  4208. display:flex;
  4209. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4210. font-weight:500;
  4211. font-style:normal;
  4212. font-size:18px;
  4213. }
  4214. #u13036 .text {
  4215. position:absolute;
  4216. align-self:flex-start;
  4217. padding:0px 0px 0px 0px;
  4218. box-sizing:border-box;
  4219. width:100%;
  4220. }
  4221. #u13036_text {
  4222. border-width:0px;
  4223. white-space:nowrap;
  4224. text-transform:none;
  4225. }
  4226. #u13037 {
  4227. border-width:0px;
  4228. position:absolute;
  4229. left:0px;
  4230. top:0px;
  4231. width:0px;
  4232. height:0px;
  4233. }
  4234. #u13038_div {
  4235. border-width:0px;
  4236. position:absolute;
  4237. left:0px;
  4238. top:0px;
  4239. width:80px;
  4240. height:30px;
  4241. background:inherit;
  4242. background-color:rgba(255, 255, 255, 0);
  4243. border:none;
  4244. border-left:0px;
  4245. border-top:0px;
  4246. border-right:0px;
  4247. border-radius:0px;
  4248. border-bottom-right-radius:0px;
  4249. border-bottom-left-radius:0px;
  4250. -moz-box-shadow:none;
  4251. -webkit-box-shadow:none;
  4252. box-shadow:none;
  4253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4254. font-weight:400;
  4255. font-style:normal;
  4256. font-size:14px;
  4257. color:#7F7F7F;
  4258. text-align:center;
  4259. line-height:30px;
  4260. }
  4261. #u13038 {
  4262. border-width:0px;
  4263. position:absolute;
  4264. left:1421px;
  4265. top:197px;
  4266. width:80px;
  4267. height:30px;
  4268. display:flex;
  4269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4270. font-weight:400;
  4271. font-style:normal;
  4272. font-size:14px;
  4273. color:#7F7F7F;
  4274. text-align:center;
  4275. line-height:30px;
  4276. }
  4277. #u13038 .text {
  4278. position:absolute;
  4279. align-self:flex-start;
  4280. padding:0px 0px 0px 0px;
  4281. box-sizing:border-box;
  4282. width:100%;
  4283. }
  4284. #u13038_text {
  4285. border-width:0px;
  4286. white-space:nowrap;
  4287. text-transform:none;
  4288. }
  4289. #u13039_div {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:0px;
  4293. top:0px;
  4294. width:60px;
  4295. height:30px;
  4296. background:inherit;
  4297. background-color:rgba(255, 255, 255, 0);
  4298. border:none;
  4299. border-left:0px;
  4300. border-top:0px;
  4301. border-right:0px;
  4302. border-radius:0px;
  4303. border-bottom-right-radius:0px;
  4304. border-bottom-left-radius:0px;
  4305. -moz-box-shadow:none;
  4306. -webkit-box-shadow:none;
  4307. box-shadow:none;
  4308. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4309. font-weight:650;
  4310. font-style:normal;
  4311. font-size:18px;
  4312. color:#298FFF;
  4313. text-align:center;
  4314. line-height:30px;
  4315. }
  4316. #u13039 {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:1431px;
  4320. top:167px;
  4321. width:60px;
  4322. height:30px;
  4323. display:flex;
  4324. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4325. font-weight:650;
  4326. font-style:normal;
  4327. font-size:18px;
  4328. color:#298FFF;
  4329. text-align:center;
  4330. line-height:30px;
  4331. }
  4332. #u13039 .text {
  4333. position:absolute;
  4334. align-self:flex-start;
  4335. padding:0px 0px 0px 0px;
  4336. box-sizing:border-box;
  4337. width:100%;
  4338. }
  4339. #u13039_text {
  4340. border-width:0px;
  4341. white-space:nowrap;
  4342. text-transform:none;
  4343. }
  4344. #u13040_div {
  4345. border-width:0px;
  4346. position:absolute;
  4347. left:0px;
  4348. top:0px;
  4349. width:57px;
  4350. height:30px;
  4351. background:inherit;
  4352. background-color:rgba(255, 255, 255, 0);
  4353. border:none;
  4354. border-left:0px;
  4355. border-top:0px;
  4356. border-right:0px;
  4357. border-radius:0px;
  4358. border-bottom-right-radius:0px;
  4359. border-bottom-left-radius:0px;
  4360. -moz-box-shadow:none;
  4361. -webkit-box-shadow:none;
  4362. box-shadow:none;
  4363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4364. font-weight:400;
  4365. font-style:normal;
  4366. font-size:14px;
  4367. color:#7F7F7F;
  4368. text-align:center;
  4369. line-height:30px;
  4370. }
  4371. #u13040 {
  4372. border-width:0px;
  4373. position:absolute;
  4374. left:1557px;
  4375. top:197px;
  4376. width:57px;
  4377. height:30px;
  4378. display:flex;
  4379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4380. font-weight:400;
  4381. font-style:normal;
  4382. font-size:14px;
  4383. color:#7F7F7F;
  4384. text-align:center;
  4385. line-height:30px;
  4386. }
  4387. #u13040 .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. #u13040_text {
  4395. border-width:0px;
  4396. white-space:nowrap;
  4397. text-transform:none;
  4398. }
  4399. #u13041_div {
  4400. border-width:0px;
  4401. position:absolute;
  4402. left:0px;
  4403. top:0px;
  4404. width:80px;
  4405. height:30px;
  4406. background:inherit;
  4407. background-color:rgba(255, 255, 255, 0);
  4408. border:none;
  4409. border-left:0px;
  4410. border-top:0px;
  4411. border-right:0px;
  4412. border-radius:0px;
  4413. border-bottom-right-radius:0px;
  4414. border-bottom-left-radius:0px;
  4415. -moz-box-shadow:none;
  4416. -webkit-box-shadow:none;
  4417. box-shadow:none;
  4418. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4419. font-weight:650;
  4420. font-style:normal;
  4421. font-size:18px;
  4422. color:#298FFF;
  4423. line-height:30px;
  4424. }
  4425. #u13041 {
  4426. border-width:0px;
  4427. position:absolute;
  4428. left:1546px;
  4429. top:167px;
  4430. width:80px;
  4431. height:30px;
  4432. display:flex;
  4433. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4434. font-weight:650;
  4435. font-style:normal;
  4436. font-size:18px;
  4437. color:#298FFF;
  4438. line-height:30px;
  4439. }
  4440. #u13041 .text {
  4441. position:absolute;
  4442. align-self:flex-start;
  4443. padding:0px 0px 0px 0px;
  4444. box-sizing:border-box;
  4445. width:100%;
  4446. }
  4447. #u13041_text {
  4448. border-width:0px;
  4449. white-space:nowrap;
  4450. text-transform:none;
  4451. }
  4452. #u13042_div {
  4453. border-width:0px;
  4454. position:absolute;
  4455. left:0px;
  4456. top:0px;
  4457. width:80px;
  4458. height:30px;
  4459. background:inherit;
  4460. background-color:rgba(255, 255, 255, 0);
  4461. border:none;
  4462. border-left:0px;
  4463. border-top:0px;
  4464. border-right:0px;
  4465. border-radius:0px;
  4466. border-bottom-right-radius:0px;
  4467. border-bottom-left-radius:0px;
  4468. -moz-box-shadow:none;
  4469. -webkit-box-shadow:none;
  4470. box-shadow:none;
  4471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4472. font-weight:400;
  4473. font-style:normal;
  4474. font-size:14px;
  4475. color:#7F7F7F;
  4476. text-align:center;
  4477. line-height:30px;
  4478. }
  4479. #u13042 {
  4480. border-width:0px;
  4481. position:absolute;
  4482. left:1655px;
  4483. top:197px;
  4484. width:80px;
  4485. height:30px;
  4486. display:flex;
  4487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4488. font-weight:400;
  4489. font-style:normal;
  4490. font-size:14px;
  4491. color:#7F7F7F;
  4492. text-align:center;
  4493. line-height:30px;
  4494. }
  4495. #u13042 .text {
  4496. position:absolute;
  4497. align-self:flex-start;
  4498. padding:0px 0px 0px 0px;
  4499. box-sizing:border-box;
  4500. width:100%;
  4501. }
  4502. #u13042_text {
  4503. border-width:0px;
  4504. white-space:nowrap;
  4505. text-transform:none;
  4506. }
  4507. #u13043_div {
  4508. border-width:0px;
  4509. position:absolute;
  4510. left:0px;
  4511. top:0px;
  4512. width:35px;
  4513. height:30px;
  4514. background:inherit;
  4515. background-color:rgba(255, 255, 255, 0);
  4516. border:none;
  4517. border-left:0px;
  4518. border-top:0px;
  4519. border-right:0px;
  4520. border-radius:0px;
  4521. border-bottom-right-radius:0px;
  4522. border-bottom-left-radius:0px;
  4523. -moz-box-shadow:none;
  4524. -webkit-box-shadow:none;
  4525. box-shadow:none;
  4526. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4527. font-weight:650;
  4528. font-style:normal;
  4529. font-size:18px;
  4530. color:#298FFF;
  4531. text-align:center;
  4532. line-height:30px;
  4533. }
  4534. #u13043 {
  4535. border-width:0px;
  4536. position:absolute;
  4537. left:1678px;
  4538. top:167px;
  4539. width:35px;
  4540. height:30px;
  4541. display:flex;
  4542. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4543. font-weight:650;
  4544. font-style:normal;
  4545. font-size:18px;
  4546. color:#298FFF;
  4547. text-align:center;
  4548. line-height:30px;
  4549. }
  4550. #u13043 .text {
  4551. position:absolute;
  4552. align-self:flex-start;
  4553. padding:0px 0px 0px 0px;
  4554. box-sizing:border-box;
  4555. width:100%;
  4556. }
  4557. #u13043_text {
  4558. border-width:0px;
  4559. white-space:nowrap;
  4560. text-transform:none;
  4561. }
  4562. #u13044_div {
  4563. border-width:0px;
  4564. position:absolute;
  4565. left:0px;
  4566. top:0px;
  4567. width:121px;
  4568. height:30px;
  4569. background:inherit;
  4570. background-color:rgba(255, 255, 255, 0);
  4571. border:none;
  4572. border-left:0px;
  4573. border-top:0px;
  4574. border-right:0px;
  4575. border-radius:0px;
  4576. border-bottom-right-radius:0px;
  4577. border-bottom-left-radius:0px;
  4578. -moz-box-shadow:none;
  4579. -webkit-box-shadow:none;
  4580. box-shadow:none;
  4581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4582. font-weight:400;
  4583. font-style:normal;
  4584. font-size:12px;
  4585. color:#7F7F7F;
  4586. line-height:30px;
  4587. }
  4588. #u13044 {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:1414px;
  4592. top:689px;
  4593. width:121px;
  4594. height:30px;
  4595. display:flex;
  4596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4597. font-weight:400;
  4598. font-style:normal;
  4599. font-size:12px;
  4600. color:#7F7F7F;
  4601. line-height:30px;
  4602. }
  4603. #u13044 .text {
  4604. position:absolute;
  4605. align-self:flex-start;
  4606. padding:0px 0px 0px 0px;
  4607. box-sizing:border-box;
  4608. width:100%;
  4609. }
  4610. #u13044_text {
  4611. border-width:0px;
  4612. white-space:nowrap;
  4613. text-transform:none;
  4614. }
  4615. #u13045_div {
  4616. border-width:0px;
  4617. position:absolute;
  4618. left:0px;
  4619. top:0px;
  4620. width:154px;
  4621. height:30px;
  4622. background:inherit;
  4623. background-color:rgba(255, 255, 255, 0);
  4624. border:none;
  4625. border-left:0px;
  4626. border-top:0px;
  4627. border-right:0px;
  4628. border-radius:0px;
  4629. border-bottom-right-radius:0px;
  4630. border-bottom-left-radius:0px;
  4631. -moz-box-shadow:none;
  4632. -webkit-box-shadow:none;
  4633. box-shadow:none;
  4634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4635. font-weight:400;
  4636. font-style:normal;
  4637. font-size:12px;
  4638. color:#7F7F7F;
  4639. line-height:30px;
  4640. }
  4641. #u13045 {
  4642. border-width:0px;
  4643. position:absolute;
  4644. left:1592px;
  4645. top:689px;
  4646. width:154px;
  4647. height:30px;
  4648. display:flex;
  4649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4650. font-weight:400;
  4651. font-style:normal;
  4652. font-size:12px;
  4653. color:#7F7F7F;
  4654. line-height:30px;
  4655. }
  4656. #u13045 .text {
  4657. position:absolute;
  4658. align-self:flex-start;
  4659. padding:0px 0px 0px 0px;
  4660. box-sizing:border-box;
  4661. width:100%;
  4662. }
  4663. #u13045_text {
  4664. border-width:0px;
  4665. white-space:nowrap;
  4666. text-transform:none;
  4667. }
  4668. #u13047_img {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:0px;
  4672. top:0px;
  4673. width:433px;
  4674. height:865px;
  4675. }
  4676. #u13047 {
  4677. border-width:0px;
  4678. position:absolute;
  4679. left:1812px;
  4680. top:0px;
  4681. width:433px;
  4682. height:865px;
  4683. display:flex;
  4684. }
  4685. #u13047 .text {
  4686. position:absolute;
  4687. align-self:center;
  4688. padding:2px 2px 2px 2px;
  4689. box-sizing:border-box;
  4690. width:100%;
  4691. }
  4692. #u13047_text {
  4693. border-width:0px;
  4694. word-wrap:break-word;
  4695. text-transform:none;
  4696. visibility:hidden;
  4697. }
  4698. #u13048_div {
  4699. border-width:0px;
  4700. position:absolute;
  4701. left:0px;
  4702. top:0px;
  4703. width:375px;
  4704. height:40px;
  4705. background:inherit;
  4706. background-color:rgba(255, 255, 255, 1);
  4707. box-sizing:border-box;
  4708. border-width:1px;
  4709. border-style:solid;
  4710. border-color:rgba(215, 215, 215, 1);
  4711. border-left:0px;
  4712. border-top:0px;
  4713. border-right:0px;
  4714. border-radius:0px;
  4715. border-bottom-right-radius:0px;
  4716. border-bottom-left-radius:0px;
  4717. -moz-box-shadow:none;
  4718. -webkit-box-shadow:none;
  4719. box-shadow:none;
  4720. }
  4721. #u13048 {
  4722. border-width:0px;
  4723. position:absolute;
  4724. left:1841px;
  4725. top:67px;
  4726. width:375px;
  4727. height:40px;
  4728. display:flex;
  4729. }
  4730. #u13048 .text {
  4731. position:absolute;
  4732. align-self:center;
  4733. padding:2px 2px 2px 2px;
  4734. box-sizing:border-box;
  4735. width:100%;
  4736. }
  4737. #u13048_text {
  4738. border-width:0px;
  4739. word-wrap:break-word;
  4740. text-transform:none;
  4741. visibility:hidden;
  4742. }
  4743. #u13049 {
  4744. border-width:0px;
  4745. position:absolute;
  4746. left:0px;
  4747. top:0px;
  4748. width:0px;
  4749. height:0px;
  4750. }
  4751. #u13050_div {
  4752. border-width:0px;
  4753. position:absolute;
  4754. left:0px;
  4755. top:0px;
  4756. width:88px;
  4757. height:32px;
  4758. background:inherit;
  4759. background-color:rgba(255, 255, 255, 1);
  4760. box-sizing:border-box;
  4761. border-width:1px;
  4762. border-style:solid;
  4763. border-color:rgba(242, 242, 242, 1);
  4764. border-radius:33px;
  4765. -moz-box-shadow:none;
  4766. -webkit-box-shadow:none;
  4767. box-shadow:none;
  4768. }
  4769. #u13050 {
  4770. border-width:0px;
  4771. position:absolute;
  4772. left:2121px;
  4773. top:71px;
  4774. width:88px;
  4775. height:32px;
  4776. display:flex;
  4777. }
  4778. #u13050 .text {
  4779. position:absolute;
  4780. align-self:center;
  4781. padding:2px 2px 2px 2px;
  4782. box-sizing:border-box;
  4783. width:100%;
  4784. }
  4785. #u13050_text {
  4786. border-width:0px;
  4787. word-wrap:break-word;
  4788. text-transform:none;
  4789. visibility:hidden;
  4790. }
  4791. #u13051 {
  4792. border-width:0px;
  4793. position:absolute;
  4794. left:0px;
  4795. top:0px;
  4796. width:0px;
  4797. height:0px;
  4798. }
  4799. #u13052_img {
  4800. border-width:0px;
  4801. position:absolute;
  4802. left:0px;
  4803. top:0px;
  4804. width:18px;
  4805. height:18px;
  4806. }
  4807. #u13052 {
  4808. border-width:0px;
  4809. position:absolute;
  4810. left:2184px;
  4811. top:78px;
  4812. width:18px;
  4813. height:18px;
  4814. display:flex;
  4815. }
  4816. #u13052 .text {
  4817. position:absolute;
  4818. align-self:center;
  4819. padding:2px 2px 2px 2px;
  4820. box-sizing:border-box;
  4821. width:100%;
  4822. }
  4823. #u13052_text {
  4824. border-width:0px;
  4825. word-wrap:break-word;
  4826. text-transform:none;
  4827. visibility:hidden;
  4828. }
  4829. #u13053_img {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:0px;
  4833. top:0px;
  4834. width:6px;
  4835. height:6px;
  4836. }
  4837. #u13053 {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:2190px;
  4841. top:84px;
  4842. width:6px;
  4843. height:6px;
  4844. display:flex;
  4845. }
  4846. #u13053 .text {
  4847. position:absolute;
  4848. align-self:center;
  4849. padding:2px 2px 2px 2px;
  4850. box-sizing:border-box;
  4851. width:100%;
  4852. }
  4853. #u13053_text {
  4854. border-width:0px;
  4855. word-wrap:break-word;
  4856. text-transform:none;
  4857. visibility:hidden;
  4858. }
  4859. #u13054 {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:0px;
  4863. top:0px;
  4864. width:0px;
  4865. height:0px;
  4866. }
  4867. #u13055_img {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:0px;
  4871. top:0px;
  4872. width:5px;
  4873. height:5px;
  4874. }
  4875. #u13055 {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:2135px;
  4879. top:85px;
  4880. width:5px;
  4881. height:5px;
  4882. display:flex;
  4883. }
  4884. #u13055 .text {
  4885. position:absolute;
  4886. align-self:center;
  4887. padding:2px 2px 2px 2px;
  4888. box-sizing:border-box;
  4889. width:100%;
  4890. }
  4891. #u13055_text {
  4892. border-width:0px;
  4893. word-wrap:break-word;
  4894. text-transform:none;
  4895. visibility:hidden;
  4896. }
  4897. #u13056_img {
  4898. border-width:0px;
  4899. position:absolute;
  4900. left:0px;
  4901. top:0px;
  4902. width:5px;
  4903. height:5px;
  4904. }
  4905. #u13056 {
  4906. border-width:0px;
  4907. position:absolute;
  4908. left:2151px;
  4909. top:85px;
  4910. width:5px;
  4911. height:5px;
  4912. display:flex;
  4913. }
  4914. #u13056 .text {
  4915. position:absolute;
  4916. align-self:center;
  4917. padding:2px 2px 2px 2px;
  4918. box-sizing:border-box;
  4919. width:100%;
  4920. }
  4921. #u13056_text {
  4922. border-width:0px;
  4923. word-wrap:break-word;
  4924. text-transform:none;
  4925. visibility:hidden;
  4926. }
  4927. #u13057_img {
  4928. border-width:0px;
  4929. position:absolute;
  4930. left:0px;
  4931. top:0px;
  4932. width:7px;
  4933. height:7px;
  4934. }
  4935. #u13057 {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:2142px;
  4939. top:84px;
  4940. width:7px;
  4941. height:7px;
  4942. display:flex;
  4943. }
  4944. #u13057 .text {
  4945. position:absolute;
  4946. align-self:center;
  4947. padding:2px 2px 2px 2px;
  4948. box-sizing:border-box;
  4949. width:100%;
  4950. }
  4951. #u13057_text {
  4952. border-width:0px;
  4953. word-wrap:break-word;
  4954. text-transform:none;
  4955. visibility:hidden;
  4956. }
  4957. #u13058_img {
  4958. border-width:0px;
  4959. position:absolute;
  4960. left:0px;
  4961. top:0px;
  4962. width:19px;
  4963. height:2px;
  4964. }
  4965. #u13058 {
  4966. border-width:0px;
  4967. position:absolute;
  4968. left:2159px;
  4969. top:87px;
  4970. width:18px;
  4971. height:1px;
  4972. display:flex;
  4973. -webkit-transform:rotate(90deg);
  4974. -moz-transform:rotate(90deg);
  4975. -ms-transform:rotate(90deg);
  4976. transform:rotate(90deg);
  4977. }
  4978. #u13058 .text {
  4979. position:absolute;
  4980. align-self:center;
  4981. padding:2px 2px 2px 2px;
  4982. box-sizing:border-box;
  4983. width:100%;
  4984. }
  4985. #u13058_text {
  4986. border-width:0px;
  4987. word-wrap:break-word;
  4988. text-transform:none;
  4989. visibility:hidden;
  4990. }
  4991. #u13059_img {
  4992. border-width:0px;
  4993. position:absolute;
  4994. left:0px;
  4995. top:0px;
  4996. width:375px;
  4997. height:44px;
  4998. }
  4999. #u13059 {
  5000. border-width:0px;
  5001. position:absolute;
  5002. left:1841px;
  5003. top:24px;
  5004. width:375px;
  5005. height:44px;
  5006. display:flex;
  5007. }
  5008. #u13059 .text {
  5009. position:absolute;
  5010. align-self:center;
  5011. padding:2px 2px 2px 2px;
  5012. box-sizing:border-box;
  5013. width:100%;
  5014. }
  5015. #u13059_text {
  5016. border-width:0px;
  5017. word-wrap:break-word;
  5018. text-transform:none;
  5019. visibility:hidden;
  5020. }
  5021. #u13060_div {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:0px;
  5025. top:0px;
  5026. width:375px;
  5027. height:50px;
  5028. background:inherit;
  5029. background-color:rgba(255, 255, 255, 1);
  5030. box-sizing:border-box;
  5031. border-width:1px;
  5032. border-style:solid;
  5033. border-color:rgba(242, 242, 242, 1);
  5034. border-radius:26px;
  5035. border-top-left-radius:0px;
  5036. border-top-right-radius:0px;
  5037. -moz-box-shadow:none;
  5038. -webkit-box-shadow:none;
  5039. box-shadow:none;
  5040. }
  5041. #u13060 {
  5042. border-width:0px;
  5043. position:absolute;
  5044. left:1841px;
  5045. top:788px;
  5046. width:375px;
  5047. height:50px;
  5048. display:flex;
  5049. }
  5050. #u13060 .text {
  5051. position:absolute;
  5052. align-self:center;
  5053. padding:2px 2px 2px 2px;
  5054. box-sizing:border-box;
  5055. width:100%;
  5056. }
  5057. #u13060_text {
  5058. border-width:0px;
  5059. word-wrap:break-word;
  5060. text-transform:none;
  5061. visibility:hidden;
  5062. }
  5063. #u13061 {
  5064. border-width:0px;
  5065. position:absolute;
  5066. left:0px;
  5067. top:0px;
  5068. width:0px;
  5069. height:0px;
  5070. }
  5071. #u13062_img {
  5072. border-width:0px;
  5073. position:absolute;
  5074. left:0px;
  5075. top:0px;
  5076. width:24px;
  5077. height:24px;
  5078. }
  5079. #u13062 {
  5080. border-width:0px;
  5081. position:absolute;
  5082. left:1881px;
  5083. top:792px;
  5084. width:24px;
  5085. height:24px;
  5086. display:flex;
  5087. font-size:8px;
  5088. }
  5089. #u13062 .text {
  5090. position:absolute;
  5091. align-self:center;
  5092. padding:2px 2px 2px 2px;
  5093. box-sizing:border-box;
  5094. width:100%;
  5095. }
  5096. #u13062_text {
  5097. border-width:0px;
  5098. word-wrap:break-word;
  5099. text-transform:none;
  5100. }
  5101. #u13063_div {
  5102. border-width:0px;
  5103. position:absolute;
  5104. left:0px;
  5105. top:0px;
  5106. width:25px;
  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. }
  5120. #u13063 {
  5121. border-width:0px;
  5122. position:absolute;
  5123. left:1881px;
  5124. top:817px;
  5125. width:25px;
  5126. height:17px;
  5127. display:flex;
  5128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5129. font-weight:400;
  5130. font-style:normal;
  5131. font-size:12px;
  5132. }
  5133. #u13063 .text {
  5134. position:absolute;
  5135. align-self:flex-start;
  5136. padding:0px 0px 0px 0px;
  5137. box-sizing:border-box;
  5138. width:100%;
  5139. }
  5140. #u13063_text {
  5141. border-width:0px;
  5142. white-space:nowrap;
  5143. text-transform:none;
  5144. }
  5145. #u13064 {
  5146. border-width:0px;
  5147. position:absolute;
  5148. left:0px;
  5149. top:0px;
  5150. width:0px;
  5151. height:0px;
  5152. }
  5153. #u13065_img {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:0px;
  5157. top:0px;
  5158. width:24px;
  5159. height:24px;
  5160. }
  5161. #u13065 {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:2151px;
  5165. top:794px;
  5166. width:24px;
  5167. height:24px;
  5168. display:flex;
  5169. font-size:8px;
  5170. }
  5171. #u13065 .text {
  5172. position:absolute;
  5173. align-self:center;
  5174. padding:2px 2px 2px 2px;
  5175. box-sizing:border-box;
  5176. width:100%;
  5177. }
  5178. #u13065_text {
  5179. border-width:0px;
  5180. word-wrap:break-word;
  5181. text-transform:none;
  5182. }
  5183. #u13066_div {
  5184. border-width:0px;
  5185. position:absolute;
  5186. left:0px;
  5187. top:0px;
  5188. width:25px;
  5189. height:17px;
  5190. background:inherit;
  5191. background-color:rgba(255, 255, 255, 0);
  5192. border:none;
  5193. border-radius:0px;
  5194. -moz-box-shadow:none;
  5195. -webkit-box-shadow:none;
  5196. box-shadow:none;
  5197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5198. font-weight:400;
  5199. font-style:normal;
  5200. font-size:12px;
  5201. }
  5202. #u13066 {
  5203. border-width:0px;
  5204. position:absolute;
  5205. left:2151px;
  5206. top:819px;
  5207. width:25px;
  5208. height:17px;
  5209. display:flex;
  5210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5211. font-weight:400;
  5212. font-style:normal;
  5213. font-size:12px;
  5214. }
  5215. #u13066 .text {
  5216. position:absolute;
  5217. align-self:flex-start;
  5218. padding:0px 0px 0px 0px;
  5219. box-sizing:border-box;
  5220. width:100%;
  5221. }
  5222. #u13066_text {
  5223. border-width:0px;
  5224. white-space:nowrap;
  5225. text-transform:none;
  5226. }
  5227. #u13067_div {
  5228. border-width:0px;
  5229. position:absolute;
  5230. left:0px;
  5231. top:0px;
  5232. width:375px;
  5233. height:681px;
  5234. background:inherit;
  5235. background-color:rgba(242, 242, 242, 0.462745098039216);
  5236. border:none;
  5237. border-radius:0px;
  5238. -moz-box-shadow:none;
  5239. -webkit-box-shadow:none;
  5240. box-shadow:none;
  5241. }
  5242. #u13067 {
  5243. border-width:0px;
  5244. position:absolute;
  5245. left:1841px;
  5246. top:107px;
  5247. width:375px;
  5248. height:681px;
  5249. display:flex;
  5250. }
  5251. #u13067 .text {
  5252. position:absolute;
  5253. align-self:center;
  5254. padding:2px 2px 2px 2px;
  5255. box-sizing:border-box;
  5256. width:100%;
  5257. }
  5258. #u13067_text {
  5259. border-width:0px;
  5260. word-wrap:break-word;
  5261. text-transform:none;
  5262. visibility:hidden;
  5263. }
  5264. #u13068 {
  5265. border-width:0px;
  5266. position:absolute;
  5267. left:0px;
  5268. top:0px;
  5269. width:0px;
  5270. height:0px;
  5271. }
  5272. #u13069_img {
  5273. border-width:0px;
  5274. position:absolute;
  5275. left:0px;
  5276. top:0px;
  5277. width:24px;
  5278. height:24px;
  5279. }
  5280. #u13069 {
  5281. border-width:0px;
  5282. position:absolute;
  5283. left:2063px;
  5284. top:792px;
  5285. width:24px;
  5286. height:24px;
  5287. display:flex;
  5288. font-size:8px;
  5289. }
  5290. #u13069 .text {
  5291. position:absolute;
  5292. align-self:center;
  5293. padding:2px 2px 2px 2px;
  5294. box-sizing:border-box;
  5295. width:100%;
  5296. }
  5297. #u13069_text {
  5298. border-width:0px;
  5299. word-wrap:break-word;
  5300. text-transform:none;
  5301. }
  5302. #u13070_div {
  5303. border-width:0px;
  5304. position:absolute;
  5305. left:0px;
  5306. top:0px;
  5307. width:37px;
  5308. height:17px;
  5309. background:inherit;
  5310. background-color:rgba(255, 255, 255, 0);
  5311. border:none;
  5312. border-radius:0px;
  5313. -moz-box-shadow:none;
  5314. -webkit-box-shadow:none;
  5315. box-shadow:none;
  5316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5317. font-weight:400;
  5318. font-style:normal;
  5319. font-size:12px;
  5320. }
  5321. #u13070 {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:2057px;
  5325. top:817px;
  5326. width:37px;
  5327. height:17px;
  5328. display:flex;
  5329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5330. font-weight:400;
  5331. font-style:normal;
  5332. font-size:12px;
  5333. }
  5334. #u13070 .text {
  5335. position:absolute;
  5336. align-self:flex-start;
  5337. padding:0px 0px 0px 0px;
  5338. box-sizing:border-box;
  5339. width:100%;
  5340. }
  5341. #u13070_text {
  5342. border-width:0px;
  5343. white-space:nowrap;
  5344. text-transform:none;
  5345. }
  5346. #u13071 {
  5347. border-width:0px;
  5348. position:absolute;
  5349. left:0px;
  5350. top:0px;
  5351. width:0px;
  5352. height:0px;
  5353. }
  5354. #u13072_img {
  5355. border-width:0px;
  5356. position:absolute;
  5357. left:0px;
  5358. top:0px;
  5359. width:24px;
  5360. height:24px;
  5361. }
  5362. #u13072 {
  5363. border-width:0px;
  5364. position:absolute;
  5365. left:1969px;
  5366. top:792px;
  5367. width:24px;
  5368. height:24px;
  5369. display:flex;
  5370. font-size:8px;
  5371. }
  5372. #u13072 .text {
  5373. position:absolute;
  5374. align-self:center;
  5375. padding:2px 2px 2px 2px;
  5376. box-sizing:border-box;
  5377. width:100%;
  5378. }
  5379. #u13072_text {
  5380. border-width:0px;
  5381. word-wrap:break-word;
  5382. text-transform:none;
  5383. }
  5384. #u13073_div {
  5385. border-width:0px;
  5386. position:absolute;
  5387. left:0px;
  5388. top:0px;
  5389. width:37px;
  5390. height:17px;
  5391. background:inherit;
  5392. background-color:rgba(255, 255, 255, 0);
  5393. border:none;
  5394. border-radius:0px;
  5395. -moz-box-shadow:none;
  5396. -webkit-box-shadow:none;
  5397. box-shadow:none;
  5398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5399. font-weight:400;
  5400. font-style:normal;
  5401. font-size:12px;
  5402. }
  5403. #u13073 {
  5404. border-width:0px;
  5405. position:absolute;
  5406. left:1963px;
  5407. top:817px;
  5408. width:37px;
  5409. height:17px;
  5410. display:flex;
  5411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5412. font-weight:400;
  5413. font-style:normal;
  5414. font-size:12px;
  5415. }
  5416. #u13073 .text {
  5417. position:absolute;
  5418. align-self:flex-start;
  5419. padding:0px 0px 0px 0px;
  5420. box-sizing:border-box;
  5421. width:100%;
  5422. }
  5423. #u13073_text {
  5424. border-width:0px;
  5425. white-space:nowrap;
  5426. text-transform:none;
  5427. }
  5428. #u13074_img {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:0px;
  5432. top:0px;
  5433. width:375px;
  5434. height:769px;
  5435. }
  5436. #u13074 {
  5437. border-width:0px;
  5438. position:absolute;
  5439. left:1841px;
  5440. top:70px;
  5441. width:375px;
  5442. height:769px;
  5443. display:flex;
  5444. }
  5445. #u13074 .text {
  5446. position:absolute;
  5447. align-self:center;
  5448. padding:2px 2px 2px 2px;
  5449. box-sizing:border-box;
  5450. width:100%;
  5451. }
  5452. #u13074_text {
  5453. border-width:0px;
  5454. word-wrap:break-word;
  5455. text-transform:none;
  5456. visibility:hidden;
  5457. }
  5458. #u13075_div {
  5459. border-width:0px;
  5460. position:absolute;
  5461. left:0px;
  5462. top:0px;
  5463. width:375px;
  5464. height:769px;
  5465. background:inherit;
  5466. background-color:rgba(255, 255, 255, 1);
  5467. border:none;
  5468. border-top:0px;
  5469. border-radius:24px;
  5470. border-top-left-radius:0px;
  5471. border-top-right-radius:0px;
  5472. -moz-box-shadow:none;
  5473. -webkit-box-shadow:none;
  5474. box-shadow:none;
  5475. }
  5476. #u13075 {
  5477. border-width:0px;
  5478. position:absolute;
  5479. left:1841px;
  5480. top:70px;
  5481. width:375px;
  5482. height:769px;
  5483. display:flex;
  5484. }
  5485. #u13075 .text {
  5486. position:absolute;
  5487. align-self:center;
  5488. padding:2px 2px 2px 2px;
  5489. box-sizing:border-box;
  5490. width:100%;
  5491. }
  5492. #u13075_text {
  5493. border-width:0px;
  5494. word-wrap:break-word;
  5495. text-transform:none;
  5496. visibility:hidden;
  5497. }
  5498. #u13076 {
  5499. border-width:0px;
  5500. position:absolute;
  5501. left:0px;
  5502. top:0px;
  5503. width:0px;
  5504. height:0px;
  5505. }
  5506. #u13077_div {
  5507. border-width:0px;
  5508. position:absolute;
  5509. left:0px;
  5510. top:0px;
  5511. width:241px;
  5512. height:17px;
  5513. background:inherit;
  5514. background-color:rgba(255, 255, 255, 0);
  5515. border:none;
  5516. border-radius:0px;
  5517. -moz-box-shadow:none;
  5518. -webkit-box-shadow:none;
  5519. box-shadow:none;
  5520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5521. font-weight:400;
  5522. font-style:normal;
  5523. font-size:12px;
  5524. color:#AAAAAA;
  5525. }
  5526. #u13077 {
  5527. border-width:0px;
  5528. position:absolute;
  5529. left:1909px;
  5530. top:815px;
  5531. width:241px;
  5532. height:17px;
  5533. display:flex;
  5534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5535. font-weight:400;
  5536. font-style:normal;
  5537. font-size:12px;
  5538. color:#AAAAAA;
  5539. }
  5540. #u13077 .text {
  5541. position:absolute;
  5542. align-self:flex-start;
  5543. padding:0px 0px 0px 0px;
  5544. box-sizing:border-box;
  5545. width:100%;
  5546. }
  5547. #u13077_text {
  5548. border-width:0px;
  5549. white-space:nowrap;
  5550. text-transform:none;
  5551. }
  5552. #u13078_div {
  5553. border-width:0px;
  5554. position:absolute;
  5555. left:0px;
  5556. top:0px;
  5557. width:334px;
  5558. height:40px;
  5559. background:inherit;
  5560. background-color:rgba(0, 137, 254, 1);
  5561. border:none;
  5562. border-radius:82px;
  5563. -moz-box-shadow:none;
  5564. -webkit-box-shadow:none;
  5565. box-shadow:none;
  5566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5567. font-weight:400;
  5568. font-style:normal;
  5569. font-size:14px;
  5570. color:#FFFFFF;
  5571. }
  5572. #u13078 {
  5573. border-width:0px;
  5574. position:absolute;
  5575. left:1856px;
  5576. top:768px;
  5577. width:334px;
  5578. height:40px;
  5579. display:flex;
  5580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5581. font-weight:400;
  5582. font-style:normal;
  5583. font-size:14px;
  5584. color:#FFFFFF;
  5585. }
  5586. #u13078 .text {
  5587. position:absolute;
  5588. align-self:center;
  5589. padding:2px 2px 2px 2px;
  5590. box-sizing:border-box;
  5591. width:100%;
  5592. }
  5593. #u13078_text {
  5594. border-width:0px;
  5595. word-wrap:break-word;
  5596. text-transform:none;
  5597. }
  5598. #u13079_div {
  5599. border-width:0px;
  5600. position:absolute;
  5601. left:0px;
  5602. top:0px;
  5603. width:82px;
  5604. height:25px;
  5605. background:inherit;
  5606. background-color:rgba(255, 255, 255, 0);
  5607. border:none;
  5608. border-radius:0px;
  5609. -moz-box-shadow:none;
  5610. -webkit-box-shadow:none;
  5611. box-shadow:none;
  5612. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5613. font-weight:500;
  5614. font-style:normal;
  5615. font-size:18px;
  5616. }
  5617. #u13079 {
  5618. border-width:0px;
  5619. position:absolute;
  5620. left:1986px;
  5621. top:473px;
  5622. width:82px;
  5623. height:25px;
  5624. display:flex;
  5625. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5626. font-weight:500;
  5627. font-style:normal;
  5628. font-size:18px;
  5629. }
  5630. #u13079 .text {
  5631. position:absolute;
  5632. align-self:flex-start;
  5633. padding:0px 0px 0px 0px;
  5634. box-sizing:border-box;
  5635. width:100%;
  5636. }
  5637. #u13079_text {
  5638. border-width:0px;
  5639. white-space:nowrap;
  5640. text-transform:none;
  5641. }
  5642. #u13080 {
  5643. border-width:0px;
  5644. position:absolute;
  5645. left:0px;
  5646. top:0px;
  5647. width:0px;
  5648. height:0px;
  5649. }
  5650. #u13081_div {
  5651. border-width:0px;
  5652. position:absolute;
  5653. left:0px;
  5654. top:0px;
  5655. width:80px;
  5656. height:30px;
  5657. background:inherit;
  5658. background-color:rgba(255, 255, 255, 0);
  5659. border:none;
  5660. border-left:0px;
  5661. border-top:0px;
  5662. border-right:0px;
  5663. border-radius:0px;
  5664. border-bottom-right-radius:0px;
  5665. border-bottom-left-radius:0px;
  5666. -moz-box-shadow:none;
  5667. -webkit-box-shadow:none;
  5668. box-shadow:none;
  5669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5670. font-weight:400;
  5671. font-style:normal;
  5672. font-size:14px;
  5673. color:#7F7F7F;
  5674. text-align:center;
  5675. line-height:30px;
  5676. }
  5677. #u13081 {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:1874px;
  5681. top:197px;
  5682. width:80px;
  5683. height:30px;
  5684. display:flex;
  5685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5686. font-weight:400;
  5687. font-style:normal;
  5688. font-size:14px;
  5689. color:#7F7F7F;
  5690. text-align:center;
  5691. line-height:30px;
  5692. }
  5693. #u13081 .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. #u13081_text {
  5701. border-width:0px;
  5702. white-space:nowrap;
  5703. text-transform:none;
  5704. }
  5705. #u13082_div {
  5706. border-width:0px;
  5707. position:absolute;
  5708. left:0px;
  5709. top:0px;
  5710. width:60px;
  5711. height:30px;
  5712. background:inherit;
  5713. background-color:rgba(255, 255, 255, 0);
  5714. border:none;
  5715. border-left:0px;
  5716. border-top:0px;
  5717. border-right:0px;
  5718. border-radius:0px;
  5719. border-bottom-right-radius:0px;
  5720. border-bottom-left-radius:0px;
  5721. -moz-box-shadow:none;
  5722. -webkit-box-shadow:none;
  5723. box-shadow:none;
  5724. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5725. font-weight:650;
  5726. font-style:normal;
  5727. font-size:18px;
  5728. color:#298FFF;
  5729. text-align:center;
  5730. line-height:30px;
  5731. }
  5732. #u13082 {
  5733. border-width:0px;
  5734. position:absolute;
  5735. left:1884px;
  5736. top:167px;
  5737. width:60px;
  5738. height:30px;
  5739. display:flex;
  5740. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5741. font-weight:650;
  5742. font-style:normal;
  5743. font-size:18px;
  5744. color:#298FFF;
  5745. text-align:center;
  5746. line-height:30px;
  5747. }
  5748. #u13082 .text {
  5749. position:absolute;
  5750. align-self:flex-start;
  5751. padding:0px 0px 0px 0px;
  5752. box-sizing:border-box;
  5753. width:100%;
  5754. }
  5755. #u13082_text {
  5756. border-width:0px;
  5757. white-space:nowrap;
  5758. text-transform:none;
  5759. }
  5760. #u13083_div {
  5761. border-width:0px;
  5762. position:absolute;
  5763. left:0px;
  5764. top:0px;
  5765. width:57px;
  5766. height:30px;
  5767. background:inherit;
  5768. background-color:rgba(255, 255, 255, 0);
  5769. border:none;
  5770. border-left:0px;
  5771. border-top:0px;
  5772. border-right:0px;
  5773. border-radius:0px;
  5774. border-bottom-right-radius:0px;
  5775. border-bottom-left-radius:0px;
  5776. -moz-box-shadow:none;
  5777. -webkit-box-shadow:none;
  5778. box-shadow:none;
  5779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5780. font-weight:400;
  5781. font-style:normal;
  5782. font-size:14px;
  5783. color:#7F7F7F;
  5784. text-align:center;
  5785. line-height:30px;
  5786. }
  5787. #u13083 {
  5788. border-width:0px;
  5789. position:absolute;
  5790. left:2010px;
  5791. top:197px;
  5792. width:57px;
  5793. height:30px;
  5794. display:flex;
  5795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5796. font-weight:400;
  5797. font-style:normal;
  5798. font-size:14px;
  5799. color:#7F7F7F;
  5800. text-align:center;
  5801. line-height:30px;
  5802. }
  5803. #u13083 .text {
  5804. position:absolute;
  5805. align-self:flex-start;
  5806. padding:0px 0px 0px 0px;
  5807. box-sizing:border-box;
  5808. width:100%;
  5809. }
  5810. #u13083_text {
  5811. border-width:0px;
  5812. white-space:nowrap;
  5813. text-transform:none;
  5814. }
  5815. #u13084_div {
  5816. border-width:0px;
  5817. position:absolute;
  5818. left:0px;
  5819. top:0px;
  5820. width:80px;
  5821. height:30px;
  5822. background:inherit;
  5823. background-color:rgba(255, 255, 255, 0);
  5824. border:none;
  5825. border-left:0px;
  5826. border-top:0px;
  5827. border-right:0px;
  5828. border-radius:0px;
  5829. border-bottom-right-radius:0px;
  5830. border-bottom-left-radius:0px;
  5831. -moz-box-shadow:none;
  5832. -webkit-box-shadow:none;
  5833. box-shadow:none;
  5834. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5835. font-weight:650;
  5836. font-style:normal;
  5837. font-size:18px;
  5838. color:#298FFF;
  5839. line-height:30px;
  5840. }
  5841. #u13084 {
  5842. border-width:0px;
  5843. position:absolute;
  5844. left:1999px;
  5845. top:167px;
  5846. width:80px;
  5847. height:30px;
  5848. display:flex;
  5849. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5850. font-weight:650;
  5851. font-style:normal;
  5852. font-size:18px;
  5853. color:#298FFF;
  5854. line-height:30px;
  5855. }
  5856. #u13084 .text {
  5857. position:absolute;
  5858. align-self:flex-start;
  5859. padding:0px 0px 0px 0px;
  5860. box-sizing:border-box;
  5861. width:100%;
  5862. }
  5863. #u13084_text {
  5864. border-width:0px;
  5865. white-space:nowrap;
  5866. text-transform:none;
  5867. }
  5868. #u13085_div {
  5869. border-width:0px;
  5870. position:absolute;
  5871. left:0px;
  5872. top:0px;
  5873. width:80px;
  5874. height:30px;
  5875. background:inherit;
  5876. background-color:rgba(255, 255, 255, 0);
  5877. border:none;
  5878. border-left:0px;
  5879. border-top:0px;
  5880. border-right:0px;
  5881. border-radius:0px;
  5882. border-bottom-right-radius:0px;
  5883. border-bottom-left-radius:0px;
  5884. -moz-box-shadow:none;
  5885. -webkit-box-shadow:none;
  5886. box-shadow:none;
  5887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5888. font-weight:400;
  5889. font-style:normal;
  5890. font-size:14px;
  5891. color:#7F7F7F;
  5892. text-align:center;
  5893. line-height:30px;
  5894. }
  5895. #u13085 {
  5896. border-width:0px;
  5897. position:absolute;
  5898. left:2108px;
  5899. top:197px;
  5900. width:80px;
  5901. height:30px;
  5902. display:flex;
  5903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5904. font-weight:400;
  5905. font-style:normal;
  5906. font-size:14px;
  5907. color:#7F7F7F;
  5908. text-align:center;
  5909. line-height:30px;
  5910. }
  5911. #u13085 .text {
  5912. position:absolute;
  5913. align-self:flex-start;
  5914. padding:0px 0px 0px 0px;
  5915. box-sizing:border-box;
  5916. width:100%;
  5917. }
  5918. #u13085_text {
  5919. border-width:0px;
  5920. white-space:nowrap;
  5921. text-transform:none;
  5922. }
  5923. #u13086_div {
  5924. border-width:0px;
  5925. position:absolute;
  5926. left:0px;
  5927. top:0px;
  5928. width:35px;
  5929. height:30px;
  5930. background:inherit;
  5931. background-color:rgba(255, 255, 255, 0);
  5932. border:none;
  5933. border-left:0px;
  5934. border-top:0px;
  5935. border-right:0px;
  5936. border-radius:0px;
  5937. border-bottom-right-radius:0px;
  5938. border-bottom-left-radius:0px;
  5939. -moz-box-shadow:none;
  5940. -webkit-box-shadow:none;
  5941. box-shadow:none;
  5942. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5943. font-weight:650;
  5944. font-style:normal;
  5945. font-size:18px;
  5946. color:#298FFF;
  5947. text-align:center;
  5948. line-height:30px;
  5949. }
  5950. #u13086 {
  5951. border-width:0px;
  5952. position:absolute;
  5953. left:2131px;
  5954. top:167px;
  5955. width:35px;
  5956. height:30px;
  5957. display:flex;
  5958. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5959. font-weight:650;
  5960. font-style:normal;
  5961. font-size:18px;
  5962. color:#298FFF;
  5963. text-align:center;
  5964. line-height:30px;
  5965. }
  5966. #u13086 .text {
  5967. position:absolute;
  5968. align-self:flex-start;
  5969. padding:0px 0px 0px 0px;
  5970. box-sizing:border-box;
  5971. width:100%;
  5972. }
  5973. #u13086_text {
  5974. border-width:0px;
  5975. white-space:nowrap;
  5976. text-transform:none;
  5977. }
  5978. #u13087_div {
  5979. border-width:0px;
  5980. position:absolute;
  5981. left:0px;
  5982. top:0px;
  5983. width:323px;
  5984. height:30px;
  5985. background:inherit;
  5986. background-color:rgba(255, 255, 255, 0);
  5987. border:none;
  5988. border-left:0px;
  5989. border-top:0px;
  5990. border-right:0px;
  5991. border-radius:0px;
  5992. border-bottom-right-radius:0px;
  5993. border-bottom-left-radius:0px;
  5994. -moz-box-shadow:none;
  5995. -webkit-box-shadow:none;
  5996. box-shadow:none;
  5997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5998. font-weight:400;
  5999. font-style:normal;
  6000. font-size:14px;
  6001. line-height:30px;
  6002. }
  6003. #u13087 {
  6004. border-width:0px;
  6005. position:absolute;
  6006. left:1871px;
  6007. top:116px;
  6008. width:323px;
  6009. height:30px;
  6010. display:flex;
  6011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6012. font-weight:400;
  6013. font-style:normal;
  6014. font-size:14px;
  6015. line-height:30px;
  6016. }
  6017. #u13087 .text {
  6018. position:absolute;
  6019. align-self:flex-start;
  6020. padding:0px 0px 0px 0px;
  6021. box-sizing:border-box;
  6022. width:100%;
  6023. }
  6024. #u13087_text {
  6025. border-width:0px;
  6026. white-space:nowrap;
  6027. text-transform:none;
  6028. }
  6029. #u13088_div {
  6030. border-width:0px;
  6031. position:absolute;
  6032. left:0px;
  6033. top:0px;
  6034. width:73px;
  6035. height:30px;
  6036. background:inherit;
  6037. background-color:rgba(255, 255, 255, 0);
  6038. border:none;
  6039. border-left:0px;
  6040. border-top:0px;
  6041. border-right:0px;
  6042. border-radius:0px;
  6043. border-bottom-right-radius:0px;
  6044. border-bottom-left-radius:0px;
  6045. -moz-box-shadow:none;
  6046. -webkit-box-shadow:none;
  6047. box-shadow:none;
  6048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6049. font-weight:400;
  6050. font-style:normal;
  6051. font-size:18px;
  6052. line-height:30px;
  6053. }
  6054. #u13088 {
  6055. border-width:0px;
  6056. position:absolute;
  6057. left:1999px;
  6058. top:77px;
  6059. width:73px;
  6060. height:30px;
  6061. display:flex;
  6062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6063. font-weight:400;
  6064. font-style:normal;
  6065. font-size:18px;
  6066. line-height:30px;
  6067. }
  6068. #u13088 .text {
  6069. position:absolute;
  6070. align-self:center;
  6071. padding:0px 0px 0px 0px;
  6072. box-sizing:border-box;
  6073. width:100%;
  6074. }
  6075. #u13088_text {
  6076. border-width:0px;
  6077. white-space:nowrap;
  6078. text-transform:none;
  6079. }
  6080. #u13089_img {
  6081. border-width:0px;
  6082. position:absolute;
  6083. left:0px;
  6084. top:0px;
  6085. width:15px;
  6086. height:15px;
  6087. }
  6088. #u13089 {
  6089. border-width:0px;
  6090. position:absolute;
  6091. left:1859px;
  6092. top:84px;
  6093. width:15px;
  6094. height:15px;
  6095. display:flex;
  6096. }
  6097. #u13089 .text {
  6098. position:absolute;
  6099. align-self:center;
  6100. padding:2px 2px 2px 2px;
  6101. box-sizing:border-box;
  6102. width:100%;
  6103. }
  6104. #u13089_text {
  6105. border-width:0px;
  6106. word-wrap:break-word;
  6107. text-transform:none;
  6108. visibility:hidden;
  6109. }
  6110. #u13090_div {
  6111. border-width:0px;
  6112. position:absolute;
  6113. left:0px;
  6114. top:0px;
  6115. width:121px;
  6116. height:30px;
  6117. background:inherit;
  6118. background-color:rgba(255, 255, 255, 0);
  6119. border:none;
  6120. border-left:0px;
  6121. border-top:0px;
  6122. border-right:0px;
  6123. border-radius:0px;
  6124. border-bottom-right-radius:0px;
  6125. border-bottom-left-radius:0px;
  6126. -moz-box-shadow:none;
  6127. -webkit-box-shadow:none;
  6128. box-shadow:none;
  6129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6130. font-weight:400;
  6131. font-style:normal;
  6132. font-size:12px;
  6133. color:#7F7F7F;
  6134. line-height:30px;
  6135. }
  6136. #u13090 {
  6137. border-width:0px;
  6138. position:absolute;
  6139. left:1874px;
  6140. top:689px;
  6141. width:121px;
  6142. height:30px;
  6143. display:flex;
  6144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6145. font-weight:400;
  6146. font-style:normal;
  6147. font-size:12px;
  6148. color:#7F7F7F;
  6149. line-height:30px;
  6150. }
  6151. #u13090 .text {
  6152. position:absolute;
  6153. align-self:flex-start;
  6154. padding:0px 0px 0px 0px;
  6155. box-sizing:border-box;
  6156. width:100%;
  6157. }
  6158. #u13090_text {
  6159. border-width:0px;
  6160. white-space:nowrap;
  6161. text-transform:none;
  6162. }
  6163. #u13091_div {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:0px;
  6167. top:0px;
  6168. width:154px;
  6169. height:30px;
  6170. background:inherit;
  6171. background-color:rgba(255, 255, 255, 0);
  6172. border:none;
  6173. border-left:0px;
  6174. border-top:0px;
  6175. border-right:0px;
  6176. border-radius:0px;
  6177. border-bottom-right-radius:0px;
  6178. border-bottom-left-radius:0px;
  6179. -moz-box-shadow:none;
  6180. -webkit-box-shadow:none;
  6181. box-shadow:none;
  6182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6183. font-weight:400;
  6184. font-style:normal;
  6185. font-size:12px;
  6186. color:#7F7F7F;
  6187. line-height:30px;
  6188. }
  6189. #u13091 {
  6190. border-width:0px;
  6191. position:absolute;
  6192. left:2040px;
  6193. top:689px;
  6194. width:154px;
  6195. height:30px;
  6196. display:flex;
  6197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6198. font-weight:400;
  6199. font-style:normal;
  6200. font-size:12px;
  6201. color:#7F7F7F;
  6202. line-height:30px;
  6203. }
  6204. #u13091 .text {
  6205. position:absolute;
  6206. align-self:flex-start;
  6207. padding:0px 0px 0px 0px;
  6208. box-sizing:border-box;
  6209. width:100%;
  6210. }
  6211. #u13091_text {
  6212. border-width:0px;
  6213. white-space:nowrap;
  6214. text-transform:none;
  6215. }
  6216. #u13092_img {
  6217. border-width:0px;
  6218. position:absolute;
  6219. left:0px;
  6220. top:0px;
  6221. width:70px;
  6222. height:30px;
  6223. }
  6224. #u13092 {
  6225. border-width:0px;
  6226. position:absolute;
  6227. left:2146px;
  6228. top:77px;
  6229. width:70px;
  6230. height:30px;
  6231. display:flex;
  6232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6233. font-weight:400;
  6234. font-style:normal;
  6235. font-size:12px;
  6236. color:#298FFF;
  6237. }
  6238. #u13092 .text {
  6239. position:absolute;
  6240. align-self:center;
  6241. padding:2px 2px 2px 10px;
  6242. box-sizing:border-box;
  6243. width:100%;
  6244. }
  6245. #u13092_text {
  6246. border-width:0px;
  6247. word-wrap:break-word;
  6248. text-transform:none;
  6249. }
  6250. #u13094_img {
  6251. border-width:0px;
  6252. position:absolute;
  6253. left:0px;
  6254. top:0px;
  6255. width:433px;
  6256. height:865px;
  6257. }
  6258. #u13094 {
  6259. border-width:0px;
  6260. position:absolute;
  6261. left:2265px;
  6262. top:0px;
  6263. width:433px;
  6264. height:865px;
  6265. display:flex;
  6266. }
  6267. #u13094 .text {
  6268. position:absolute;
  6269. align-self:center;
  6270. padding:2px 2px 2px 2px;
  6271. box-sizing:border-box;
  6272. width:100%;
  6273. }
  6274. #u13094_text {
  6275. border-width:0px;
  6276. word-wrap:break-word;
  6277. text-transform:none;
  6278. visibility:hidden;
  6279. }
  6280. #u13095_div {
  6281. border-width:0px;
  6282. position:absolute;
  6283. left:0px;
  6284. top:0px;
  6285. width:375px;
  6286. height:40px;
  6287. background:inherit;
  6288. background-color:rgba(255, 255, 255, 1);
  6289. box-sizing:border-box;
  6290. border-width:1px;
  6291. border-style:solid;
  6292. border-color:rgba(215, 215, 215, 1);
  6293. border-left:0px;
  6294. border-top:0px;
  6295. border-right:0px;
  6296. border-radius:0px;
  6297. border-bottom-right-radius:0px;
  6298. border-bottom-left-radius:0px;
  6299. -moz-box-shadow:none;
  6300. -webkit-box-shadow:none;
  6301. box-shadow:none;
  6302. }
  6303. #u13095 {
  6304. border-width:0px;
  6305. position:absolute;
  6306. left:2294px;
  6307. top:67px;
  6308. width:375px;
  6309. height:40px;
  6310. display:flex;
  6311. }
  6312. #u13095 .text {
  6313. position:absolute;
  6314. align-self:center;
  6315. padding:2px 2px 2px 2px;
  6316. box-sizing:border-box;
  6317. width:100%;
  6318. }
  6319. #u13095_text {
  6320. border-width:0px;
  6321. word-wrap:break-word;
  6322. text-transform:none;
  6323. visibility:hidden;
  6324. }
  6325. #u13096 {
  6326. border-width:0px;
  6327. position:absolute;
  6328. left:0px;
  6329. top:0px;
  6330. width:0px;
  6331. height:0px;
  6332. }
  6333. #u13097_div {
  6334. border-width:0px;
  6335. position:absolute;
  6336. left:0px;
  6337. top:0px;
  6338. width:88px;
  6339. height:32px;
  6340. background:inherit;
  6341. background-color:rgba(255, 255, 255, 1);
  6342. box-sizing:border-box;
  6343. border-width:1px;
  6344. border-style:solid;
  6345. border-color:rgba(242, 242, 242, 1);
  6346. border-radius:33px;
  6347. -moz-box-shadow:none;
  6348. -webkit-box-shadow:none;
  6349. box-shadow:none;
  6350. }
  6351. #u13097 {
  6352. border-width:0px;
  6353. position:absolute;
  6354. left:2574px;
  6355. top:71px;
  6356. width:88px;
  6357. height:32px;
  6358. display:flex;
  6359. }
  6360. #u13097 .text {
  6361. position:absolute;
  6362. align-self:center;
  6363. padding:2px 2px 2px 2px;
  6364. box-sizing:border-box;
  6365. width:100%;
  6366. }
  6367. #u13097_text {
  6368. border-width:0px;
  6369. word-wrap:break-word;
  6370. text-transform:none;
  6371. visibility:hidden;
  6372. }
  6373. #u13098 {
  6374. border-width:0px;
  6375. position:absolute;
  6376. left:0px;
  6377. top:0px;
  6378. width:0px;
  6379. height:0px;
  6380. }
  6381. #u13099_img {
  6382. border-width:0px;
  6383. position:absolute;
  6384. left:0px;
  6385. top:0px;
  6386. width:18px;
  6387. height:18px;
  6388. }
  6389. #u13099 {
  6390. border-width:0px;
  6391. position:absolute;
  6392. left:2637px;
  6393. top:78px;
  6394. width:18px;
  6395. height:18px;
  6396. display:flex;
  6397. }
  6398. #u13099 .text {
  6399. position:absolute;
  6400. align-self:center;
  6401. padding:2px 2px 2px 2px;
  6402. box-sizing:border-box;
  6403. width:100%;
  6404. }
  6405. #u13099_text {
  6406. border-width:0px;
  6407. word-wrap:break-word;
  6408. text-transform:none;
  6409. visibility:hidden;
  6410. }
  6411. #u13100_img {
  6412. border-width:0px;
  6413. position:absolute;
  6414. left:0px;
  6415. top:0px;
  6416. width:6px;
  6417. height:6px;
  6418. }
  6419. #u13100 {
  6420. border-width:0px;
  6421. position:absolute;
  6422. left:2643px;
  6423. top:84px;
  6424. width:6px;
  6425. height:6px;
  6426. display:flex;
  6427. }
  6428. #u13100 .text {
  6429. position:absolute;
  6430. align-self:center;
  6431. padding:2px 2px 2px 2px;
  6432. box-sizing:border-box;
  6433. width:100%;
  6434. }
  6435. #u13100_text {
  6436. border-width:0px;
  6437. word-wrap:break-word;
  6438. text-transform:none;
  6439. visibility:hidden;
  6440. }
  6441. #u13101 {
  6442. border-width:0px;
  6443. position:absolute;
  6444. left:0px;
  6445. top:0px;
  6446. width:0px;
  6447. height:0px;
  6448. }
  6449. #u13102_img {
  6450. border-width:0px;
  6451. position:absolute;
  6452. left:0px;
  6453. top:0px;
  6454. width:5px;
  6455. height:5px;
  6456. }
  6457. #u13102 {
  6458. border-width:0px;
  6459. position:absolute;
  6460. left:2588px;
  6461. top:85px;
  6462. width:5px;
  6463. height:5px;
  6464. display:flex;
  6465. }
  6466. #u13102 .text {
  6467. position:absolute;
  6468. align-self:center;
  6469. padding:2px 2px 2px 2px;
  6470. box-sizing:border-box;
  6471. width:100%;
  6472. }
  6473. #u13102_text {
  6474. border-width:0px;
  6475. word-wrap:break-word;
  6476. text-transform:none;
  6477. visibility:hidden;
  6478. }
  6479. #u13103_img {
  6480. border-width:0px;
  6481. position:absolute;
  6482. left:0px;
  6483. top:0px;
  6484. width:5px;
  6485. height:5px;
  6486. }
  6487. #u13103 {
  6488. border-width:0px;
  6489. position:absolute;
  6490. left:2604px;
  6491. top:85px;
  6492. width:5px;
  6493. height:5px;
  6494. display:flex;
  6495. }
  6496. #u13103 .text {
  6497. position:absolute;
  6498. align-self:center;
  6499. padding:2px 2px 2px 2px;
  6500. box-sizing:border-box;
  6501. width:100%;
  6502. }
  6503. #u13103_text {
  6504. border-width:0px;
  6505. word-wrap:break-word;
  6506. text-transform:none;
  6507. visibility:hidden;
  6508. }
  6509. #u13104_img {
  6510. border-width:0px;
  6511. position:absolute;
  6512. left:0px;
  6513. top:0px;
  6514. width:7px;
  6515. height:7px;
  6516. }
  6517. #u13104 {
  6518. border-width:0px;
  6519. position:absolute;
  6520. left:2595px;
  6521. top:84px;
  6522. width:7px;
  6523. height:7px;
  6524. display:flex;
  6525. }
  6526. #u13104 .text {
  6527. position:absolute;
  6528. align-self:center;
  6529. padding:2px 2px 2px 2px;
  6530. box-sizing:border-box;
  6531. width:100%;
  6532. }
  6533. #u13104_text {
  6534. border-width:0px;
  6535. word-wrap:break-word;
  6536. text-transform:none;
  6537. visibility:hidden;
  6538. }
  6539. #u13105_img {
  6540. border-width:0px;
  6541. position:absolute;
  6542. left:0px;
  6543. top:0px;
  6544. width:19px;
  6545. height:2px;
  6546. }
  6547. #u13105 {
  6548. border-width:0px;
  6549. position:absolute;
  6550. left:2612px;
  6551. top:87px;
  6552. width:18px;
  6553. height:1px;
  6554. display:flex;
  6555. -webkit-transform:rotate(90deg);
  6556. -moz-transform:rotate(90deg);
  6557. -ms-transform:rotate(90deg);
  6558. transform:rotate(90deg);
  6559. }
  6560. #u13105 .text {
  6561. position:absolute;
  6562. align-self:center;
  6563. padding:2px 2px 2px 2px;
  6564. box-sizing:border-box;
  6565. width:100%;
  6566. }
  6567. #u13105_text {
  6568. border-width:0px;
  6569. word-wrap:break-word;
  6570. text-transform:none;
  6571. visibility:hidden;
  6572. }
  6573. #u13106_img {
  6574. border-width:0px;
  6575. position:absolute;
  6576. left:0px;
  6577. top:0px;
  6578. width:375px;
  6579. height:44px;
  6580. }
  6581. #u13106 {
  6582. border-width:0px;
  6583. position:absolute;
  6584. left:2294px;
  6585. top:24px;
  6586. width:375px;
  6587. height:44px;
  6588. display:flex;
  6589. }
  6590. #u13106 .text {
  6591. position:absolute;
  6592. align-self:center;
  6593. padding:2px 2px 2px 2px;
  6594. box-sizing:border-box;
  6595. width:100%;
  6596. }
  6597. #u13106_text {
  6598. border-width:0px;
  6599. word-wrap:break-word;
  6600. text-transform:none;
  6601. visibility:hidden;
  6602. }
  6603. #u13107_div {
  6604. border-width:0px;
  6605. position:absolute;
  6606. left:0px;
  6607. top:0px;
  6608. width:375px;
  6609. height:50px;
  6610. background:inherit;
  6611. background-color:rgba(255, 255, 255, 1);
  6612. box-sizing:border-box;
  6613. border-width:1px;
  6614. border-style:solid;
  6615. border-color:rgba(242, 242, 242, 1);
  6616. border-radius:26px;
  6617. border-top-left-radius:0px;
  6618. border-top-right-radius:0px;
  6619. -moz-box-shadow:none;
  6620. -webkit-box-shadow:none;
  6621. box-shadow:none;
  6622. }
  6623. #u13107 {
  6624. border-width:0px;
  6625. position:absolute;
  6626. left:2294px;
  6627. top:788px;
  6628. width:375px;
  6629. height:50px;
  6630. display:flex;
  6631. }
  6632. #u13107 .text {
  6633. position:absolute;
  6634. align-self:center;
  6635. padding:2px 2px 2px 2px;
  6636. box-sizing:border-box;
  6637. width:100%;
  6638. }
  6639. #u13107_text {
  6640. border-width:0px;
  6641. word-wrap:break-word;
  6642. text-transform:none;
  6643. visibility:hidden;
  6644. }
  6645. #u13108 {
  6646. border-width:0px;
  6647. position:absolute;
  6648. left:0px;
  6649. top:0px;
  6650. width:0px;
  6651. height:0px;
  6652. }
  6653. #u13109_img {
  6654. border-width:0px;
  6655. position:absolute;
  6656. left:0px;
  6657. top:0px;
  6658. width:24px;
  6659. height:24px;
  6660. }
  6661. #u13109 {
  6662. border-width:0px;
  6663. position:absolute;
  6664. left:2334px;
  6665. top:792px;
  6666. width:24px;
  6667. height:24px;
  6668. display:flex;
  6669. font-size:8px;
  6670. }
  6671. #u13109 .text {
  6672. position:absolute;
  6673. align-self:center;
  6674. padding:2px 2px 2px 2px;
  6675. box-sizing:border-box;
  6676. width:100%;
  6677. }
  6678. #u13109_text {
  6679. border-width:0px;
  6680. word-wrap:break-word;
  6681. text-transform:none;
  6682. }
  6683. #u13110_div {
  6684. border-width:0px;
  6685. position:absolute;
  6686. left:0px;
  6687. top:0px;
  6688. width:25px;
  6689. height:17px;
  6690. background:inherit;
  6691. background-color:rgba(255, 255, 255, 0);
  6692. border:none;
  6693. border-radius:0px;
  6694. -moz-box-shadow:none;
  6695. -webkit-box-shadow:none;
  6696. box-shadow:none;
  6697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6698. font-weight:400;
  6699. font-style:normal;
  6700. font-size:12px;
  6701. }
  6702. #u13110 {
  6703. border-width:0px;
  6704. position:absolute;
  6705. left:2334px;
  6706. top:817px;
  6707. width:25px;
  6708. height:17px;
  6709. display:flex;
  6710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6711. font-weight:400;
  6712. font-style:normal;
  6713. font-size:12px;
  6714. }
  6715. #u13110 .text {
  6716. position:absolute;
  6717. align-self:flex-start;
  6718. padding:0px 0px 0px 0px;
  6719. box-sizing:border-box;
  6720. width:100%;
  6721. }
  6722. #u13110_text {
  6723. border-width:0px;
  6724. white-space:nowrap;
  6725. text-transform:none;
  6726. }
  6727. #u13111 {
  6728. border-width:0px;
  6729. position:absolute;
  6730. left:0px;
  6731. top:0px;
  6732. width:0px;
  6733. height:0px;
  6734. }
  6735. #u13112_img {
  6736. border-width:0px;
  6737. position:absolute;
  6738. left:0px;
  6739. top:0px;
  6740. width:24px;
  6741. height:24px;
  6742. }
  6743. #u13112 {
  6744. border-width:0px;
  6745. position:absolute;
  6746. left:2604px;
  6747. top:794px;
  6748. width:24px;
  6749. height:24px;
  6750. display:flex;
  6751. font-size:8px;
  6752. }
  6753. #u13112 .text {
  6754. position:absolute;
  6755. align-self:center;
  6756. padding:2px 2px 2px 2px;
  6757. box-sizing:border-box;
  6758. width:100%;
  6759. }
  6760. #u13112_text {
  6761. border-width:0px;
  6762. word-wrap:break-word;
  6763. text-transform:none;
  6764. }
  6765. #u13113_div {
  6766. border-width:0px;
  6767. position:absolute;
  6768. left:0px;
  6769. top:0px;
  6770. width:25px;
  6771. height:17px;
  6772. background:inherit;
  6773. background-color:rgba(255, 255, 255, 0);
  6774. border:none;
  6775. border-radius:0px;
  6776. -moz-box-shadow:none;
  6777. -webkit-box-shadow:none;
  6778. box-shadow:none;
  6779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6780. font-weight:400;
  6781. font-style:normal;
  6782. font-size:12px;
  6783. }
  6784. #u13113 {
  6785. border-width:0px;
  6786. position:absolute;
  6787. left:2604px;
  6788. top:819px;
  6789. width:25px;
  6790. height:17px;
  6791. display:flex;
  6792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6793. font-weight:400;
  6794. font-style:normal;
  6795. font-size:12px;
  6796. }
  6797. #u13113 .text {
  6798. position:absolute;
  6799. align-self:flex-start;
  6800. padding:0px 0px 0px 0px;
  6801. box-sizing:border-box;
  6802. width:100%;
  6803. }
  6804. #u13113_text {
  6805. border-width:0px;
  6806. white-space:nowrap;
  6807. text-transform:none;
  6808. }
  6809. #u13114_div {
  6810. border-width:0px;
  6811. position:absolute;
  6812. left:0px;
  6813. top:0px;
  6814. width:375px;
  6815. height:681px;
  6816. background:inherit;
  6817. background-color:rgba(242, 242, 242, 0.462745098039216);
  6818. border:none;
  6819. border-radius:0px;
  6820. -moz-box-shadow:none;
  6821. -webkit-box-shadow:none;
  6822. box-shadow:none;
  6823. }
  6824. #u13114 {
  6825. border-width:0px;
  6826. position:absolute;
  6827. left:2294px;
  6828. top:107px;
  6829. width:375px;
  6830. height:681px;
  6831. display:flex;
  6832. }
  6833. #u13114 .text {
  6834. position:absolute;
  6835. align-self:center;
  6836. padding:2px 2px 2px 2px;
  6837. box-sizing:border-box;
  6838. width:100%;
  6839. }
  6840. #u13114_text {
  6841. border-width:0px;
  6842. word-wrap:break-word;
  6843. text-transform:none;
  6844. visibility:hidden;
  6845. }
  6846. #u13115 {
  6847. border-width:0px;
  6848. position:absolute;
  6849. left:0px;
  6850. top:0px;
  6851. width:0px;
  6852. height:0px;
  6853. }
  6854. #u13116_img {
  6855. border-width:0px;
  6856. position:absolute;
  6857. left:0px;
  6858. top:0px;
  6859. width:24px;
  6860. height:24px;
  6861. }
  6862. #u13116 {
  6863. border-width:0px;
  6864. position:absolute;
  6865. left:2516px;
  6866. top:792px;
  6867. width:24px;
  6868. height:24px;
  6869. display:flex;
  6870. font-size:8px;
  6871. }
  6872. #u13116 .text {
  6873. position:absolute;
  6874. align-self:center;
  6875. padding:2px 2px 2px 2px;
  6876. box-sizing:border-box;
  6877. width:100%;
  6878. }
  6879. #u13116_text {
  6880. border-width:0px;
  6881. word-wrap:break-word;
  6882. text-transform:none;
  6883. }
  6884. #u13117_div {
  6885. border-width:0px;
  6886. position:absolute;
  6887. left:0px;
  6888. top:0px;
  6889. width:37px;
  6890. height:17px;
  6891. background:inherit;
  6892. background-color:rgba(255, 255, 255, 0);
  6893. border:none;
  6894. border-radius:0px;
  6895. -moz-box-shadow:none;
  6896. -webkit-box-shadow:none;
  6897. box-shadow:none;
  6898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6899. font-weight:400;
  6900. font-style:normal;
  6901. font-size:12px;
  6902. }
  6903. #u13117 {
  6904. border-width:0px;
  6905. position:absolute;
  6906. left:2510px;
  6907. top:817px;
  6908. width:37px;
  6909. height:17px;
  6910. display:flex;
  6911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6912. font-weight:400;
  6913. font-style:normal;
  6914. font-size:12px;
  6915. }
  6916. #u13117 .text {
  6917. position:absolute;
  6918. align-self:flex-start;
  6919. padding:0px 0px 0px 0px;
  6920. box-sizing:border-box;
  6921. width:100%;
  6922. }
  6923. #u13117_text {
  6924. border-width:0px;
  6925. white-space:nowrap;
  6926. text-transform:none;
  6927. }
  6928. #u13118 {
  6929. border-width:0px;
  6930. position:absolute;
  6931. left:0px;
  6932. top:0px;
  6933. width:0px;
  6934. height:0px;
  6935. }
  6936. #u13119_img {
  6937. border-width:0px;
  6938. position:absolute;
  6939. left:0px;
  6940. top:0px;
  6941. width:24px;
  6942. height:24px;
  6943. }
  6944. #u13119 {
  6945. border-width:0px;
  6946. position:absolute;
  6947. left:2422px;
  6948. top:792px;
  6949. width:24px;
  6950. height:24px;
  6951. display:flex;
  6952. font-size:8px;
  6953. }
  6954. #u13119 .text {
  6955. position:absolute;
  6956. align-self:center;
  6957. padding:2px 2px 2px 2px;
  6958. box-sizing:border-box;
  6959. width:100%;
  6960. }
  6961. #u13119_text {
  6962. border-width:0px;
  6963. word-wrap:break-word;
  6964. text-transform:none;
  6965. }
  6966. #u13120_div {
  6967. border-width:0px;
  6968. position:absolute;
  6969. left:0px;
  6970. top:0px;
  6971. width:37px;
  6972. height:17px;
  6973. background:inherit;
  6974. background-color:rgba(255, 255, 255, 0);
  6975. border:none;
  6976. border-radius:0px;
  6977. -moz-box-shadow:none;
  6978. -webkit-box-shadow:none;
  6979. box-shadow:none;
  6980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6981. font-weight:400;
  6982. font-style:normal;
  6983. font-size:12px;
  6984. }
  6985. #u13120 {
  6986. border-width:0px;
  6987. position:absolute;
  6988. left:2416px;
  6989. top:817px;
  6990. width:37px;
  6991. height:17px;
  6992. display:flex;
  6993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6994. font-weight:400;
  6995. font-style:normal;
  6996. font-size:12px;
  6997. }
  6998. #u13120 .text {
  6999. position:absolute;
  7000. align-self:flex-start;
  7001. padding:0px 0px 0px 0px;
  7002. box-sizing:border-box;
  7003. width:100%;
  7004. }
  7005. #u13120_text {
  7006. border-width:0px;
  7007. white-space:nowrap;
  7008. text-transform:none;
  7009. }
  7010. #u13121_img {
  7011. border-width:0px;
  7012. position:absolute;
  7013. left:0px;
  7014. top:0px;
  7015. width:375px;
  7016. height:769px;
  7017. }
  7018. #u13121 {
  7019. border-width:0px;
  7020. position:absolute;
  7021. left:2294px;
  7022. top:70px;
  7023. width:375px;
  7024. height:769px;
  7025. display:flex;
  7026. }
  7027. #u13121 .text {
  7028. position:absolute;
  7029. align-self:center;
  7030. padding:2px 2px 2px 2px;
  7031. box-sizing:border-box;
  7032. width:100%;
  7033. }
  7034. #u13121_text {
  7035. border-width:0px;
  7036. word-wrap:break-word;
  7037. text-transform:none;
  7038. visibility:hidden;
  7039. }
  7040. #u13122_div {
  7041. border-width:0px;
  7042. position:absolute;
  7043. left:0px;
  7044. top:0px;
  7045. width:375px;
  7046. height:769px;
  7047. background:inherit;
  7048. background-color:rgba(255, 255, 255, 1);
  7049. border:none;
  7050. border-top:0px;
  7051. border-radius:24px;
  7052. border-top-left-radius:0px;
  7053. border-top-right-radius:0px;
  7054. -moz-box-shadow:none;
  7055. -webkit-box-shadow:none;
  7056. box-shadow:none;
  7057. }
  7058. #u13122 {
  7059. border-width:0px;
  7060. position:absolute;
  7061. left:2294px;
  7062. top:70px;
  7063. width:375px;
  7064. height:769px;
  7065. display:flex;
  7066. }
  7067. #u13122 .text {
  7068. position:absolute;
  7069. align-self:center;
  7070. padding:2px 2px 2px 2px;
  7071. box-sizing:border-box;
  7072. width:100%;
  7073. }
  7074. #u13122_text {
  7075. border-width:0px;
  7076. word-wrap:break-word;
  7077. text-transform:none;
  7078. visibility:hidden;
  7079. }
  7080. #u13123_div {
  7081. border-width:0px;
  7082. position:absolute;
  7083. left:0px;
  7084. top:0px;
  7085. width:323px;
  7086. height:30px;
  7087. background:inherit;
  7088. background-color:rgba(255, 255, 255, 0);
  7089. border:none;
  7090. border-left:0px;
  7091. border-top:0px;
  7092. border-right:0px;
  7093. border-radius:0px;
  7094. border-bottom-right-radius:0px;
  7095. border-bottom-left-radius:0px;
  7096. -moz-box-shadow:none;
  7097. -webkit-box-shadow:none;
  7098. box-shadow:none;
  7099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7100. font-weight:400;
  7101. font-style:normal;
  7102. font-size:14px;
  7103. line-height:30px;
  7104. }
  7105. #u13123 {
  7106. border-width:0px;
  7107. position:absolute;
  7108. left:2324px;
  7109. top:116px;
  7110. width:323px;
  7111. height:30px;
  7112. display:flex;
  7113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7114. font-weight:400;
  7115. font-style:normal;
  7116. font-size:14px;
  7117. line-height:30px;
  7118. }
  7119. #u13123 .text {
  7120. position:absolute;
  7121. align-self:flex-start;
  7122. padding:0px 0px 0px 0px;
  7123. box-sizing:border-box;
  7124. width:100%;
  7125. }
  7126. #u13123_text {
  7127. border-width:0px;
  7128. white-space:nowrap;
  7129. text-transform:none;
  7130. }
  7131. #u13124_div {
  7132. border-width:0px;
  7133. position:absolute;
  7134. left:0px;
  7135. top:0px;
  7136. width:73px;
  7137. height:30px;
  7138. background:inherit;
  7139. background-color:rgba(255, 255, 255, 0);
  7140. border:none;
  7141. border-left:0px;
  7142. border-top:0px;
  7143. border-right:0px;
  7144. border-radius:0px;
  7145. border-bottom-right-radius:0px;
  7146. border-bottom-left-radius:0px;
  7147. -moz-box-shadow:none;
  7148. -webkit-box-shadow:none;
  7149. box-shadow:none;
  7150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7151. font-weight:400;
  7152. font-style:normal;
  7153. font-size:18px;
  7154. line-height:30px;
  7155. }
  7156. #u13124 {
  7157. border-width:0px;
  7158. position:absolute;
  7159. left:2456px;
  7160. top:77px;
  7161. width:73px;
  7162. height:30px;
  7163. display:flex;
  7164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7165. font-weight:400;
  7166. font-style:normal;
  7167. font-size:18px;
  7168. line-height:30px;
  7169. }
  7170. #u13124 .text {
  7171. position:absolute;
  7172. align-self:center;
  7173. padding:0px 0px 0px 0px;
  7174. box-sizing:border-box;
  7175. width:100%;
  7176. }
  7177. #u13124_text {
  7178. border-width:0px;
  7179. white-space:nowrap;
  7180. text-transform:none;
  7181. }
  7182. #u13125_img {
  7183. border-width:0px;
  7184. position:absolute;
  7185. left:0px;
  7186. top:0px;
  7187. width:15px;
  7188. height:15px;
  7189. }
  7190. #u13125 {
  7191. border-width:0px;
  7192. position:absolute;
  7193. left:2312px;
  7194. top:84px;
  7195. width:15px;
  7196. height:15px;
  7197. display:flex;
  7198. }
  7199. #u13125 .text {
  7200. position:absolute;
  7201. align-self:center;
  7202. padding:2px 2px 2px 2px;
  7203. box-sizing:border-box;
  7204. width:100%;
  7205. }
  7206. #u13125_text {
  7207. border-width:0px;
  7208. word-wrap:break-word;
  7209. text-transform:none;
  7210. visibility:hidden;
  7211. }
  7212. #u13126_div {
  7213. border-width:0px;
  7214. position:absolute;
  7215. left:0px;
  7216. top:0px;
  7217. width:350px;
  7218. height:40px;
  7219. background:inherit;
  7220. background-color:rgba(250, 205, 145, 0.215686274509804);
  7221. border:none;
  7222. border-radius:82px;
  7223. -moz-box-shadow:none;
  7224. -webkit-box-shadow:none;
  7225. box-shadow:none;
  7226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7227. font-weight:400;
  7228. font-style:normal;
  7229. font-size:14px;
  7230. color:#F59A23;
  7231. }
  7232. #u13126 {
  7233. border-width:0px;
  7234. position:absolute;
  7235. left:2312px;
  7236. top:729px;
  7237. width:350px;
  7238. height:40px;
  7239. display:flex;
  7240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7241. font-weight:400;
  7242. font-style:normal;
  7243. font-size:14px;
  7244. color:#F59A23;
  7245. }
  7246. #u13126 .text {
  7247. position:absolute;
  7248. align-self:center;
  7249. padding:2px 2px 2px 2px;
  7250. box-sizing:border-box;
  7251. width:100%;
  7252. }
  7253. #u13126_text {
  7254. border-width:0px;
  7255. word-wrap:break-word;
  7256. text-transform:none;
  7257. }
  7258. #u13127_div {
  7259. border-width:0px;
  7260. position:absolute;
  7261. left:0px;
  7262. top:0px;
  7263. width:334px;
  7264. height:40px;
  7265. background:inherit;
  7266. background-color:rgba(255, 255, 255, 1);
  7267. box-sizing:border-box;
  7268. border-width:1px;
  7269. border-style:solid;
  7270. border-color:rgba(41, 143, 255, 1);
  7271. border-radius:82px;
  7272. -moz-box-shadow:none;
  7273. -webkit-box-shadow:none;
  7274. box-shadow:none;
  7275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7276. font-weight:400;
  7277. font-style:normal;
  7278. font-size:14px;
  7279. color:#298FFF;
  7280. }
  7281. #u13127 {
  7282. border-width:0px;
  7283. position:absolute;
  7284. left:2318px;
  7285. top:769px;
  7286. width:334px;
  7287. height:40px;
  7288. display:flex;
  7289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7290. font-weight:400;
  7291. font-style:normal;
  7292. font-size:14px;
  7293. color:#298FFF;
  7294. }
  7295. #u13127 .text {
  7296. position:absolute;
  7297. align-self:center;
  7298. padding:2px 2px 2px 2px;
  7299. box-sizing:border-box;
  7300. width:100%;
  7301. }
  7302. #u13127_text {
  7303. border-width:0px;
  7304. word-wrap:break-word;
  7305. text-transform:none;
  7306. }
  7307. #u13128_img {
  7308. border-width:0px;
  7309. position:absolute;
  7310. left:0px;
  7311. top:0px;
  7312. width:70px;
  7313. height:30px;
  7314. }
  7315. #u13128 {
  7316. border-width:0px;
  7317. position:absolute;
  7318. left:2599px;
  7319. top:77px;
  7320. width:70px;
  7321. height:30px;
  7322. display:flex;
  7323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7324. font-weight:400;
  7325. font-style:normal;
  7326. font-size:12px;
  7327. color:#298FFF;
  7328. }
  7329. #u13128 .text {
  7330. position:absolute;
  7331. align-self:center;
  7332. padding:2px 2px 2px 10px;
  7333. box-sizing:border-box;
  7334. width:100%;
  7335. }
  7336. #u13128_text {
  7337. border-width:0px;
  7338. word-wrap:break-word;
  7339. text-transform:none;
  7340. }
  7341. #u13129_div {
  7342. border-width:0px;
  7343. position:absolute;
  7344. left:0px;
  7345. top:0px;
  7346. width:82px;
  7347. height:25px;
  7348. background:inherit;
  7349. background-color:rgba(255, 255, 255, 0);
  7350. border:none;
  7351. border-radius:0px;
  7352. -moz-box-shadow:none;
  7353. -webkit-box-shadow:none;
  7354. box-shadow:none;
  7355. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7356. font-weight:500;
  7357. font-style:normal;
  7358. font-size:18px;
  7359. }
  7360. #u13129 {
  7361. border-width:0px;
  7362. position:absolute;
  7363. left:2439px;
  7364. top:473px;
  7365. width:82px;
  7366. height:25px;
  7367. display:flex;
  7368. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7369. font-weight:500;
  7370. font-style:normal;
  7371. font-size:18px;
  7372. }
  7373. #u13129 .text {
  7374. position:absolute;
  7375. align-self:flex-start;
  7376. padding:0px 0px 0px 0px;
  7377. box-sizing:border-box;
  7378. width:100%;
  7379. }
  7380. #u13129_text {
  7381. border-width:0px;
  7382. white-space:nowrap;
  7383. text-transform:none;
  7384. }
  7385. #u13130 {
  7386. border-width:0px;
  7387. position:absolute;
  7388. left:0px;
  7389. top:0px;
  7390. width:0px;
  7391. height:0px;
  7392. }
  7393. #u13131_div {
  7394. border-width:0px;
  7395. position:absolute;
  7396. left:0px;
  7397. top:0px;
  7398. width:80px;
  7399. height:30px;
  7400. background:inherit;
  7401. background-color:rgba(255, 255, 255, 0);
  7402. border:none;
  7403. border-left:0px;
  7404. border-top:0px;
  7405. border-right:0px;
  7406. border-radius:0px;
  7407. border-bottom-right-radius:0px;
  7408. border-bottom-left-radius:0px;
  7409. -moz-box-shadow:none;
  7410. -webkit-box-shadow:none;
  7411. box-shadow:none;
  7412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7413. font-weight:400;
  7414. font-style:normal;
  7415. font-size:14px;
  7416. color:#7F7F7F;
  7417. text-align:center;
  7418. line-height:30px;
  7419. }
  7420. #u13131 {
  7421. border-width:0px;
  7422. position:absolute;
  7423. left:2327px;
  7424. top:197px;
  7425. width:80px;
  7426. height:30px;
  7427. display:flex;
  7428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7429. font-weight:400;
  7430. font-style:normal;
  7431. font-size:14px;
  7432. color:#7F7F7F;
  7433. text-align:center;
  7434. line-height:30px;
  7435. }
  7436. #u13131 .text {
  7437. position:absolute;
  7438. align-self:flex-start;
  7439. padding:0px 0px 0px 0px;
  7440. box-sizing:border-box;
  7441. width:100%;
  7442. }
  7443. #u13131_text {
  7444. border-width:0px;
  7445. white-space:nowrap;
  7446. text-transform:none;
  7447. }
  7448. #u13132_div {
  7449. border-width:0px;
  7450. position:absolute;
  7451. left:0px;
  7452. top:0px;
  7453. width:60px;
  7454. height:30px;
  7455. background:inherit;
  7456. background-color:rgba(255, 255, 255, 0);
  7457. border:none;
  7458. border-left:0px;
  7459. border-top:0px;
  7460. border-right:0px;
  7461. border-radius:0px;
  7462. border-bottom-right-radius:0px;
  7463. border-bottom-left-radius:0px;
  7464. -moz-box-shadow:none;
  7465. -webkit-box-shadow:none;
  7466. box-shadow:none;
  7467. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7468. font-weight:650;
  7469. font-style:normal;
  7470. font-size:18px;
  7471. color:#298FFF;
  7472. text-align:center;
  7473. line-height:30px;
  7474. }
  7475. #u13132 {
  7476. border-width:0px;
  7477. position:absolute;
  7478. left:2337px;
  7479. top:167px;
  7480. width:60px;
  7481. height:30px;
  7482. display:flex;
  7483. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7484. font-weight:650;
  7485. font-style:normal;
  7486. font-size:18px;
  7487. color:#298FFF;
  7488. text-align:center;
  7489. line-height:30px;
  7490. }
  7491. #u13132 .text {
  7492. position:absolute;
  7493. align-self:flex-start;
  7494. padding:0px 0px 0px 0px;
  7495. box-sizing:border-box;
  7496. width:100%;
  7497. }
  7498. #u13132_text {
  7499. border-width:0px;
  7500. white-space:nowrap;
  7501. text-transform:none;
  7502. }
  7503. #u13133_div {
  7504. border-width:0px;
  7505. position:absolute;
  7506. left:0px;
  7507. top:0px;
  7508. width:57px;
  7509. height:30px;
  7510. background:inherit;
  7511. background-color:rgba(255, 255, 255, 0);
  7512. border:none;
  7513. border-left:0px;
  7514. border-top:0px;
  7515. border-right:0px;
  7516. border-radius:0px;
  7517. border-bottom-right-radius:0px;
  7518. border-bottom-left-radius:0px;
  7519. -moz-box-shadow:none;
  7520. -webkit-box-shadow:none;
  7521. box-shadow:none;
  7522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7523. font-weight:400;
  7524. font-style:normal;
  7525. font-size:14px;
  7526. color:#7F7F7F;
  7527. text-align:center;
  7528. line-height:30px;
  7529. }
  7530. #u13133 {
  7531. border-width:0px;
  7532. position:absolute;
  7533. left:2463px;
  7534. top:197px;
  7535. width:57px;
  7536. height:30px;
  7537. display:flex;
  7538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7539. font-weight:400;
  7540. font-style:normal;
  7541. font-size:14px;
  7542. color:#7F7F7F;
  7543. text-align:center;
  7544. line-height:30px;
  7545. }
  7546. #u13133 .text {
  7547. position:absolute;
  7548. align-self:flex-start;
  7549. padding:0px 0px 0px 0px;
  7550. box-sizing:border-box;
  7551. width:100%;
  7552. }
  7553. #u13133_text {
  7554. border-width:0px;
  7555. white-space:nowrap;
  7556. text-transform:none;
  7557. }
  7558. #u13134_div {
  7559. border-width:0px;
  7560. position:absolute;
  7561. left:0px;
  7562. top:0px;
  7563. width:80px;
  7564. height:30px;
  7565. background:inherit;
  7566. background-color:rgba(255, 255, 255, 0);
  7567. border:none;
  7568. border-left:0px;
  7569. border-top:0px;
  7570. border-right:0px;
  7571. border-radius:0px;
  7572. border-bottom-right-radius:0px;
  7573. border-bottom-left-radius:0px;
  7574. -moz-box-shadow:none;
  7575. -webkit-box-shadow:none;
  7576. box-shadow:none;
  7577. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7578. font-weight:650;
  7579. font-style:normal;
  7580. font-size:18px;
  7581. color:#298FFF;
  7582. line-height:30px;
  7583. }
  7584. #u13134 {
  7585. border-width:0px;
  7586. position:absolute;
  7587. left:2452px;
  7588. top:167px;
  7589. width:80px;
  7590. height:30px;
  7591. display:flex;
  7592. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7593. font-weight:650;
  7594. font-style:normal;
  7595. font-size:18px;
  7596. color:#298FFF;
  7597. line-height:30px;
  7598. }
  7599. #u13134 .text {
  7600. position:absolute;
  7601. align-self:flex-start;
  7602. padding:0px 0px 0px 0px;
  7603. box-sizing:border-box;
  7604. width:100%;
  7605. }
  7606. #u13134_text {
  7607. border-width:0px;
  7608. white-space:nowrap;
  7609. text-transform:none;
  7610. }
  7611. #u13135_div {
  7612. border-width:0px;
  7613. position:absolute;
  7614. left:0px;
  7615. top:0px;
  7616. width:80px;
  7617. height:30px;
  7618. background:inherit;
  7619. background-color:rgba(255, 255, 255, 0);
  7620. border:none;
  7621. border-left:0px;
  7622. border-top:0px;
  7623. border-right:0px;
  7624. border-radius:0px;
  7625. border-bottom-right-radius:0px;
  7626. border-bottom-left-radius:0px;
  7627. -moz-box-shadow:none;
  7628. -webkit-box-shadow:none;
  7629. box-shadow:none;
  7630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7631. font-weight:400;
  7632. font-style:normal;
  7633. font-size:14px;
  7634. color:#7F7F7F;
  7635. text-align:center;
  7636. line-height:30px;
  7637. }
  7638. #u13135 {
  7639. border-width:0px;
  7640. position:absolute;
  7641. left:2561px;
  7642. top:197px;
  7643. width:80px;
  7644. height:30px;
  7645. display:flex;
  7646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7647. font-weight:400;
  7648. font-style:normal;
  7649. font-size:14px;
  7650. color:#7F7F7F;
  7651. text-align:center;
  7652. line-height:30px;
  7653. }
  7654. #u13135 .text {
  7655. position:absolute;
  7656. align-self:flex-start;
  7657. padding:0px 0px 0px 0px;
  7658. box-sizing:border-box;
  7659. width:100%;
  7660. }
  7661. #u13135_text {
  7662. border-width:0px;
  7663. white-space:nowrap;
  7664. text-transform:none;
  7665. }
  7666. #u13136_div {
  7667. border-width:0px;
  7668. position:absolute;
  7669. left:0px;
  7670. top:0px;
  7671. width:35px;
  7672. height:30px;
  7673. background:inherit;
  7674. background-color:rgba(255, 255, 255, 0);
  7675. border:none;
  7676. border-left:0px;
  7677. border-top:0px;
  7678. border-right:0px;
  7679. border-radius:0px;
  7680. border-bottom-right-radius:0px;
  7681. border-bottom-left-radius:0px;
  7682. -moz-box-shadow:none;
  7683. -webkit-box-shadow:none;
  7684. box-shadow:none;
  7685. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7686. font-weight:650;
  7687. font-style:normal;
  7688. font-size:18px;
  7689. color:#298FFF;
  7690. text-align:center;
  7691. line-height:30px;
  7692. }
  7693. #u13136 {
  7694. border-width:0px;
  7695. position:absolute;
  7696. left:2584px;
  7697. top:167px;
  7698. width:35px;
  7699. height:30px;
  7700. display:flex;
  7701. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7702. font-weight:650;
  7703. font-style:normal;
  7704. font-size:18px;
  7705. color:#298FFF;
  7706. text-align:center;
  7707. line-height:30px;
  7708. }
  7709. #u13136 .text {
  7710. position:absolute;
  7711. align-self:flex-start;
  7712. padding:0px 0px 0px 0px;
  7713. box-sizing:border-box;
  7714. width:100%;
  7715. }
  7716. #u13136_text {
  7717. border-width:0px;
  7718. white-space:nowrap;
  7719. text-transform:none;
  7720. }
  7721. #u13137_div {
  7722. border-width:0px;
  7723. position:absolute;
  7724. left:0px;
  7725. top:0px;
  7726. width:121px;
  7727. height:30px;
  7728. background:inherit;
  7729. background-color:rgba(255, 255, 255, 0);
  7730. border:none;
  7731. border-left:0px;
  7732. border-top:0px;
  7733. border-right:0px;
  7734. border-radius:0px;
  7735. border-bottom-right-radius:0px;
  7736. border-bottom-left-radius:0px;
  7737. -moz-box-shadow:none;
  7738. -webkit-box-shadow:none;
  7739. box-shadow:none;
  7740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7741. font-weight:400;
  7742. font-style:normal;
  7743. font-size:12px;
  7744. color:#7F7F7F;
  7745. line-height:30px;
  7746. }
  7747. #u13137 {
  7748. border-width:0px;
  7749. position:absolute;
  7750. left:2320px;
  7751. top:689px;
  7752. width:121px;
  7753. height:30px;
  7754. display:flex;
  7755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7756. font-weight:400;
  7757. font-style:normal;
  7758. font-size:12px;
  7759. color:#7F7F7F;
  7760. line-height:30px;
  7761. }
  7762. #u13137 .text {
  7763. position:absolute;
  7764. align-self:flex-start;
  7765. padding:0px 0px 0px 0px;
  7766. box-sizing:border-box;
  7767. width:100%;
  7768. }
  7769. #u13137_text {
  7770. border-width:0px;
  7771. white-space:nowrap;
  7772. text-transform:none;
  7773. }
  7774. #u13138_div {
  7775. border-width:0px;
  7776. position:absolute;
  7777. left:0px;
  7778. top:0px;
  7779. width:154px;
  7780. height:30px;
  7781. background:inherit;
  7782. background-color:rgba(255, 255, 255, 0);
  7783. border:none;
  7784. border-left:0px;
  7785. border-top:0px;
  7786. border-right:0px;
  7787. border-radius:0px;
  7788. border-bottom-right-radius:0px;
  7789. border-bottom-left-radius:0px;
  7790. -moz-box-shadow:none;
  7791. -webkit-box-shadow:none;
  7792. box-shadow:none;
  7793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7794. font-weight:400;
  7795. font-style:normal;
  7796. font-size:12px;
  7797. color:#7F7F7F;
  7798. line-height:30px;
  7799. }
  7800. #u13138 {
  7801. border-width:0px;
  7802. position:absolute;
  7803. left:2498px;
  7804. top:689px;
  7805. width:154px;
  7806. height:30px;
  7807. display:flex;
  7808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7809. font-weight:400;
  7810. font-style:normal;
  7811. font-size:12px;
  7812. color:#7F7F7F;
  7813. line-height:30px;
  7814. }
  7815. #u13138 .text {
  7816. position:absolute;
  7817. align-self:flex-start;
  7818. padding:0px 0px 0px 0px;
  7819. box-sizing:border-box;
  7820. width:100%;
  7821. }
  7822. #u13138_text {
  7823. border-width:0px;
  7824. white-space:nowrap;
  7825. text-transform:none;
  7826. }
  7827. #u13139 {
  7828. border-width:0px;
  7829. position:absolute;
  7830. left:0px;
  7831. top:0px;
  7832. width:0px;
  7833. height:0px;
  7834. }
  7835. #u13140_img {
  7836. border-width:0px;
  7837. position:absolute;
  7838. left:0px;
  7839. top:0px;
  7840. width:220px;
  7841. height:220px;
  7842. }
  7843. #u13140 {
  7844. border-width:0px;
  7845. position:absolute;
  7846. left:1914px;
  7847. top:244px;
  7848. width:220px;
  7849. height:220px;
  7850. display:flex;
  7851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7852. font-weight:400;
  7853. font-style:normal;
  7854. font-size:28px;
  7855. color:#298FFF;
  7856. }
  7857. #u13140 .text {
  7858. position:absolute;
  7859. align-self:center;
  7860. padding:2px 2px 2px 2px;
  7861. box-sizing:border-box;
  7862. width:100%;
  7863. }
  7864. #u13140_text {
  7865. border-width:0px;
  7866. word-wrap:break-word;
  7867. text-transform:none;
  7868. }
  7869. #u13141_img {
  7870. border-width:0px;
  7871. position:absolute;
  7872. left:0px;
  7873. top:0px;
  7874. width:220px;
  7875. height:220px;
  7876. }
  7877. #u13141 {
  7878. border-width:0px;
  7879. position:absolute;
  7880. left:2363px;
  7881. top:244px;
  7882. width:220px;
  7883. height:220px;
  7884. display:flex;
  7885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7886. font-weight:400;
  7887. font-style:normal;
  7888. font-size:28px;
  7889. color:#298FFF;
  7890. }
  7891. #u13141 .text {
  7892. position:absolute;
  7893. align-self:center;
  7894. padding:2px 2px 2px 2px;
  7895. box-sizing:border-box;
  7896. width:100%;
  7897. }
  7898. #u13141_text {
  7899. border-width:0px;
  7900. word-wrap:break-word;
  7901. text-transform:none;
  7902. }
  7903. #u13143_img {
  7904. border-width:0px;
  7905. position:absolute;
  7906. left:0px;
  7907. top:0px;
  7908. width:433px;
  7909. height:865px;
  7910. }
  7911. #u13143 {
  7912. border-width:0px;
  7913. position:absolute;
  7914. left:0px;
  7915. top:0px;
  7916. width:433px;
  7917. height:865px;
  7918. display:flex;
  7919. }
  7920. #u13143 .text {
  7921. position:absolute;
  7922. align-self:center;
  7923. padding:2px 2px 2px 2px;
  7924. box-sizing:border-box;
  7925. width:100%;
  7926. }
  7927. #u13143_text {
  7928. border-width:0px;
  7929. word-wrap:break-word;
  7930. text-transform:none;
  7931. visibility:hidden;
  7932. }
  7933. #u13144_div {
  7934. border-width:0px;
  7935. position:absolute;
  7936. left:0px;
  7937. top:0px;
  7938. width:375px;
  7939. height:40px;
  7940. background:inherit;
  7941. background-color:rgba(255, 255, 255, 1);
  7942. box-sizing:border-box;
  7943. border-width:1px;
  7944. border-style:solid;
  7945. border-color:rgba(215, 215, 215, 1);
  7946. border-left:0px;
  7947. border-top:0px;
  7948. border-right:0px;
  7949. border-radius:0px;
  7950. border-bottom-right-radius:0px;
  7951. border-bottom-left-radius:0px;
  7952. -moz-box-shadow:none;
  7953. -webkit-box-shadow:none;
  7954. box-shadow:none;
  7955. }
  7956. #u13144 {
  7957. border-width:0px;
  7958. position:absolute;
  7959. left:29px;
  7960. top:67px;
  7961. width:375px;
  7962. height:40px;
  7963. display:flex;
  7964. }
  7965. #u13144 .text {
  7966. position:absolute;
  7967. align-self:center;
  7968. padding:2px 2px 2px 2px;
  7969. box-sizing:border-box;
  7970. width:100%;
  7971. }
  7972. #u13144_text {
  7973. border-width:0px;
  7974. word-wrap:break-word;
  7975. text-transform:none;
  7976. visibility:hidden;
  7977. }
  7978. #u13145 {
  7979. border-width:0px;
  7980. position:absolute;
  7981. left:0px;
  7982. top:0px;
  7983. width:0px;
  7984. height:0px;
  7985. }
  7986. #u13146_div {
  7987. border-width:0px;
  7988. position:absolute;
  7989. left:0px;
  7990. top:0px;
  7991. width:88px;
  7992. height:32px;
  7993. background:inherit;
  7994. background-color:rgba(255, 255, 255, 1);
  7995. box-sizing:border-box;
  7996. border-width:1px;
  7997. border-style:solid;
  7998. border-color:rgba(242, 242, 242, 1);
  7999. border-radius:33px;
  8000. -moz-box-shadow:none;
  8001. -webkit-box-shadow:none;
  8002. box-shadow:none;
  8003. }
  8004. #u13146 {
  8005. border-width:0px;
  8006. position:absolute;
  8007. left:309px;
  8008. top:71px;
  8009. width:88px;
  8010. height:32px;
  8011. display:flex;
  8012. }
  8013. #u13146 .text {
  8014. position:absolute;
  8015. align-self:center;
  8016. padding:2px 2px 2px 2px;
  8017. box-sizing:border-box;
  8018. width:100%;
  8019. }
  8020. #u13146_text {
  8021. border-width:0px;
  8022. word-wrap:break-word;
  8023. text-transform:none;
  8024. visibility:hidden;
  8025. }
  8026. #u13147 {
  8027. border-width:0px;
  8028. position:absolute;
  8029. left:0px;
  8030. top:0px;
  8031. width:0px;
  8032. height:0px;
  8033. }
  8034. #u13148_img {
  8035. border-width:0px;
  8036. position:absolute;
  8037. left:0px;
  8038. top:0px;
  8039. width:18px;
  8040. height:18px;
  8041. }
  8042. #u13148 {
  8043. border-width:0px;
  8044. position:absolute;
  8045. left:372px;
  8046. top:78px;
  8047. width:18px;
  8048. height:18px;
  8049. display:flex;
  8050. }
  8051. #u13148 .text {
  8052. position:absolute;
  8053. align-self:center;
  8054. padding:2px 2px 2px 2px;
  8055. box-sizing:border-box;
  8056. width:100%;
  8057. }
  8058. #u13148_text {
  8059. border-width:0px;
  8060. word-wrap:break-word;
  8061. text-transform:none;
  8062. visibility:hidden;
  8063. }
  8064. #u13149_img {
  8065. border-width:0px;
  8066. position:absolute;
  8067. left:0px;
  8068. top:0px;
  8069. width:6px;
  8070. height:6px;
  8071. }
  8072. #u13149 {
  8073. border-width:0px;
  8074. position:absolute;
  8075. left:378px;
  8076. top:84px;
  8077. width:6px;
  8078. height:6px;
  8079. display:flex;
  8080. }
  8081. #u13149 .text {
  8082. position:absolute;
  8083. align-self:center;
  8084. padding:2px 2px 2px 2px;
  8085. box-sizing:border-box;
  8086. width:100%;
  8087. }
  8088. #u13149_text {
  8089. border-width:0px;
  8090. word-wrap:break-word;
  8091. text-transform:none;
  8092. visibility:hidden;
  8093. }
  8094. #u13150 {
  8095. border-width:0px;
  8096. position:absolute;
  8097. left:0px;
  8098. top:0px;
  8099. width:0px;
  8100. height:0px;
  8101. }
  8102. #u13151_img {
  8103. border-width:0px;
  8104. position:absolute;
  8105. left:0px;
  8106. top:0px;
  8107. width:5px;
  8108. height:5px;
  8109. }
  8110. #u13151 {
  8111. border-width:0px;
  8112. position:absolute;
  8113. left:323px;
  8114. top:85px;
  8115. width:5px;
  8116. height:5px;
  8117. display:flex;
  8118. }
  8119. #u13151 .text {
  8120. position:absolute;
  8121. align-self:center;
  8122. padding:2px 2px 2px 2px;
  8123. box-sizing:border-box;
  8124. width:100%;
  8125. }
  8126. #u13151_text {
  8127. border-width:0px;
  8128. word-wrap:break-word;
  8129. text-transform:none;
  8130. visibility:hidden;
  8131. }
  8132. #u13152_img {
  8133. border-width:0px;
  8134. position:absolute;
  8135. left:0px;
  8136. top:0px;
  8137. width:5px;
  8138. height:5px;
  8139. }
  8140. #u13152 {
  8141. border-width:0px;
  8142. position:absolute;
  8143. left:339px;
  8144. top:85px;
  8145. width:5px;
  8146. height:5px;
  8147. display:flex;
  8148. }
  8149. #u13152 .text {
  8150. position:absolute;
  8151. align-self:center;
  8152. padding:2px 2px 2px 2px;
  8153. box-sizing:border-box;
  8154. width:100%;
  8155. }
  8156. #u13152_text {
  8157. border-width:0px;
  8158. word-wrap:break-word;
  8159. text-transform:none;
  8160. visibility:hidden;
  8161. }
  8162. #u13153_img {
  8163. border-width:0px;
  8164. position:absolute;
  8165. left:0px;
  8166. top:0px;
  8167. width:7px;
  8168. height:7px;
  8169. }
  8170. #u13153 {
  8171. border-width:0px;
  8172. position:absolute;
  8173. left:330px;
  8174. top:84px;
  8175. width:7px;
  8176. height:7px;
  8177. display:flex;
  8178. }
  8179. #u13153 .text {
  8180. position:absolute;
  8181. align-self:center;
  8182. padding:2px 2px 2px 2px;
  8183. box-sizing:border-box;
  8184. width:100%;
  8185. }
  8186. #u13153_text {
  8187. border-width:0px;
  8188. word-wrap:break-word;
  8189. text-transform:none;
  8190. visibility:hidden;
  8191. }
  8192. #u13154_img {
  8193. border-width:0px;
  8194. position:absolute;
  8195. left:0px;
  8196. top:0px;
  8197. width:19px;
  8198. height:2px;
  8199. }
  8200. #u13154 {
  8201. border-width:0px;
  8202. position:absolute;
  8203. left:347px;
  8204. top:87px;
  8205. width:18px;
  8206. height:1px;
  8207. display:flex;
  8208. -webkit-transform:rotate(90deg);
  8209. -moz-transform:rotate(90deg);
  8210. -ms-transform:rotate(90deg);
  8211. transform:rotate(90deg);
  8212. }
  8213. #u13154 .text {
  8214. position:absolute;
  8215. align-self:center;
  8216. padding:2px 2px 2px 2px;
  8217. box-sizing:border-box;
  8218. width:100%;
  8219. }
  8220. #u13154_text {
  8221. border-width:0px;
  8222. word-wrap:break-word;
  8223. text-transform:none;
  8224. visibility:hidden;
  8225. }
  8226. #u13155_img {
  8227. border-width:0px;
  8228. position:absolute;
  8229. left:0px;
  8230. top:0px;
  8231. width:375px;
  8232. height:44px;
  8233. }
  8234. #u13155 {
  8235. border-width:0px;
  8236. position:absolute;
  8237. left:29px;
  8238. top:24px;
  8239. width:375px;
  8240. height:44px;
  8241. display:flex;
  8242. }
  8243. #u13155 .text {
  8244. position:absolute;
  8245. align-self:center;
  8246. padding:2px 2px 2px 2px;
  8247. box-sizing:border-box;
  8248. width:100%;
  8249. }
  8250. #u13155_text {
  8251. border-width:0px;
  8252. word-wrap:break-word;
  8253. text-transform:none;
  8254. visibility:hidden;
  8255. }
  8256. #u13156_div {
  8257. border-width:0px;
  8258. position:absolute;
  8259. left:0px;
  8260. top:0px;
  8261. width:375px;
  8262. height:50px;
  8263. background:inherit;
  8264. background-color:rgba(255, 255, 255, 1);
  8265. box-sizing:border-box;
  8266. border-width:1px;
  8267. border-style:solid;
  8268. border-color:rgba(242, 242, 242, 1);
  8269. border-radius:26px;
  8270. border-top-left-radius:0px;
  8271. border-top-right-radius:0px;
  8272. -moz-box-shadow:none;
  8273. -webkit-box-shadow:none;
  8274. box-shadow:none;
  8275. }
  8276. #u13156 {
  8277. border-width:0px;
  8278. position:absolute;
  8279. left:29px;
  8280. top:788px;
  8281. width:375px;
  8282. height:50px;
  8283. display:flex;
  8284. }
  8285. #u13156 .text {
  8286. position:absolute;
  8287. align-self:center;
  8288. padding:2px 2px 2px 2px;
  8289. box-sizing:border-box;
  8290. width:100%;
  8291. }
  8292. #u13156_text {
  8293. border-width:0px;
  8294. word-wrap:break-word;
  8295. text-transform:none;
  8296. visibility:hidden;
  8297. }
  8298. #u13157 {
  8299. border-width:0px;
  8300. position:absolute;
  8301. left:0px;
  8302. top:0px;
  8303. width:0px;
  8304. height:0px;
  8305. }
  8306. #u13158_img {
  8307. border-width:0px;
  8308. position:absolute;
  8309. left:0px;
  8310. top:0px;
  8311. width:24px;
  8312. height:24px;
  8313. }
  8314. #u13158 {
  8315. border-width:0px;
  8316. position:absolute;
  8317. left:69px;
  8318. top:792px;
  8319. width:24px;
  8320. height:24px;
  8321. display:flex;
  8322. font-size:8px;
  8323. }
  8324. #u13158 .text {
  8325. position:absolute;
  8326. align-self:center;
  8327. padding:2px 2px 2px 2px;
  8328. box-sizing:border-box;
  8329. width:100%;
  8330. }
  8331. #u13158_text {
  8332. border-width:0px;
  8333. word-wrap:break-word;
  8334. text-transform:none;
  8335. }
  8336. #u13159_div {
  8337. border-width:0px;
  8338. position:absolute;
  8339. left:0px;
  8340. top:0px;
  8341. width:25px;
  8342. height:17px;
  8343. background:inherit;
  8344. background-color:rgba(255, 255, 255, 0);
  8345. border:none;
  8346. border-radius:0px;
  8347. -moz-box-shadow:none;
  8348. -webkit-box-shadow:none;
  8349. box-shadow:none;
  8350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8351. font-weight:400;
  8352. font-style:normal;
  8353. font-size:12px;
  8354. }
  8355. #u13159 {
  8356. border-width:0px;
  8357. position:absolute;
  8358. left:69px;
  8359. top:817px;
  8360. width:25px;
  8361. height:17px;
  8362. display:flex;
  8363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8364. font-weight:400;
  8365. font-style:normal;
  8366. font-size:12px;
  8367. }
  8368. #u13159 .text {
  8369. position:absolute;
  8370. align-self:flex-start;
  8371. padding:0px 0px 0px 0px;
  8372. box-sizing:border-box;
  8373. width:100%;
  8374. }
  8375. #u13159_text {
  8376. border-width:0px;
  8377. white-space:nowrap;
  8378. text-transform:none;
  8379. }
  8380. #u13160 {
  8381. border-width:0px;
  8382. position:absolute;
  8383. left:0px;
  8384. top:0px;
  8385. width:0px;
  8386. height:0px;
  8387. }
  8388. #u13161_img {
  8389. border-width:0px;
  8390. position:absolute;
  8391. left:0px;
  8392. top:0px;
  8393. width:24px;
  8394. height:24px;
  8395. }
  8396. #u13161 {
  8397. border-width:0px;
  8398. position:absolute;
  8399. left:339px;
  8400. top:794px;
  8401. width:24px;
  8402. height:24px;
  8403. display:flex;
  8404. font-size:8px;
  8405. }
  8406. #u13161 .text {
  8407. position:absolute;
  8408. align-self:center;
  8409. padding:2px 2px 2px 2px;
  8410. box-sizing:border-box;
  8411. width:100%;
  8412. }
  8413. #u13161_text {
  8414. border-width:0px;
  8415. word-wrap:break-word;
  8416. text-transform:none;
  8417. }
  8418. #u13162_div {
  8419. border-width:0px;
  8420. position:absolute;
  8421. left:0px;
  8422. top:0px;
  8423. width:25px;
  8424. height:17px;
  8425. background:inherit;
  8426. background-color:rgba(255, 255, 255, 0);
  8427. border:none;
  8428. border-radius:0px;
  8429. -moz-box-shadow:none;
  8430. -webkit-box-shadow:none;
  8431. box-shadow:none;
  8432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8433. font-weight:400;
  8434. font-style:normal;
  8435. font-size:12px;
  8436. }
  8437. #u13162 {
  8438. border-width:0px;
  8439. position:absolute;
  8440. left:339px;
  8441. top:819px;
  8442. width:25px;
  8443. height:17px;
  8444. display:flex;
  8445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8446. font-weight:400;
  8447. font-style:normal;
  8448. font-size:12px;
  8449. }
  8450. #u13162 .text {
  8451. position:absolute;
  8452. align-self:flex-start;
  8453. padding:0px 0px 0px 0px;
  8454. box-sizing:border-box;
  8455. width:100%;
  8456. }
  8457. #u13162_text {
  8458. border-width:0px;
  8459. white-space:nowrap;
  8460. text-transform:none;
  8461. }
  8462. #u13163_div {
  8463. border-width:0px;
  8464. position:absolute;
  8465. left:0px;
  8466. top:0px;
  8467. width:375px;
  8468. height:681px;
  8469. background:inherit;
  8470. background-color:rgba(242, 242, 242, 0.462745098039216);
  8471. border:none;
  8472. border-radius:0px;
  8473. -moz-box-shadow:none;
  8474. -webkit-box-shadow:none;
  8475. box-shadow:none;
  8476. }
  8477. #u13163 {
  8478. border-width:0px;
  8479. position:absolute;
  8480. left:29px;
  8481. top:107px;
  8482. width:375px;
  8483. height:681px;
  8484. display:flex;
  8485. }
  8486. #u13163 .text {
  8487. position:absolute;
  8488. align-self:center;
  8489. padding:2px 2px 2px 2px;
  8490. box-sizing:border-box;
  8491. width:100%;
  8492. }
  8493. #u13163_text {
  8494. border-width:0px;
  8495. word-wrap:break-word;
  8496. text-transform:none;
  8497. visibility:hidden;
  8498. }
  8499. #u13164 {
  8500. border-width:0px;
  8501. position:absolute;
  8502. left:0px;
  8503. top:0px;
  8504. width:0px;
  8505. height:0px;
  8506. }
  8507. #u13165_img {
  8508. border-width:0px;
  8509. position:absolute;
  8510. left:0px;
  8511. top:0px;
  8512. width:24px;
  8513. height:24px;
  8514. }
  8515. #u13165 {
  8516. border-width:0px;
  8517. position:absolute;
  8518. left:251px;
  8519. top:792px;
  8520. width:24px;
  8521. height:24px;
  8522. display:flex;
  8523. font-size:8px;
  8524. }
  8525. #u13165 .text {
  8526. position:absolute;
  8527. align-self:center;
  8528. padding:2px 2px 2px 2px;
  8529. box-sizing:border-box;
  8530. width:100%;
  8531. }
  8532. #u13165_text {
  8533. border-width:0px;
  8534. word-wrap:break-word;
  8535. text-transform:none;
  8536. }
  8537. #u13166_div {
  8538. border-width:0px;
  8539. position:absolute;
  8540. left:0px;
  8541. top:0px;
  8542. width:37px;
  8543. height:17px;
  8544. background:inherit;
  8545. background-color:rgba(255, 255, 255, 0);
  8546. border:none;
  8547. border-radius:0px;
  8548. -moz-box-shadow:none;
  8549. -webkit-box-shadow:none;
  8550. box-shadow:none;
  8551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8552. font-weight:400;
  8553. font-style:normal;
  8554. font-size:12px;
  8555. }
  8556. #u13166 {
  8557. border-width:0px;
  8558. position:absolute;
  8559. left:245px;
  8560. top:817px;
  8561. width:37px;
  8562. height:17px;
  8563. display:flex;
  8564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8565. font-weight:400;
  8566. font-style:normal;
  8567. font-size:12px;
  8568. }
  8569. #u13166 .text {
  8570. position:absolute;
  8571. align-self:flex-start;
  8572. padding:0px 0px 0px 0px;
  8573. box-sizing:border-box;
  8574. width:100%;
  8575. }
  8576. #u13166_text {
  8577. border-width:0px;
  8578. white-space:nowrap;
  8579. text-transform:none;
  8580. }
  8581. #u13167 {
  8582. border-width:0px;
  8583. position:absolute;
  8584. left:0px;
  8585. top:0px;
  8586. width:0px;
  8587. height:0px;
  8588. }
  8589. #u13168_img {
  8590. border-width:0px;
  8591. position:absolute;
  8592. left:0px;
  8593. top:0px;
  8594. width:24px;
  8595. height:24px;
  8596. }
  8597. #u13168 {
  8598. border-width:0px;
  8599. position:absolute;
  8600. left:157px;
  8601. top:792px;
  8602. width:24px;
  8603. height:24px;
  8604. display:flex;
  8605. font-size:8px;
  8606. }
  8607. #u13168 .text {
  8608. position:absolute;
  8609. align-self:center;
  8610. padding:2px 2px 2px 2px;
  8611. box-sizing:border-box;
  8612. width:100%;
  8613. }
  8614. #u13168_text {
  8615. border-width:0px;
  8616. word-wrap:break-word;
  8617. text-transform:none;
  8618. }
  8619. #u13169_div {
  8620. border-width:0px;
  8621. position:absolute;
  8622. left:0px;
  8623. top:0px;
  8624. width:37px;
  8625. height:17px;
  8626. background:inherit;
  8627. background-color:rgba(255, 255, 255, 0);
  8628. border:none;
  8629. border-radius:0px;
  8630. -moz-box-shadow:none;
  8631. -webkit-box-shadow:none;
  8632. box-shadow:none;
  8633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8634. font-weight:400;
  8635. font-style:normal;
  8636. font-size:12px;
  8637. }
  8638. #u13169 {
  8639. border-width:0px;
  8640. position:absolute;
  8641. left:151px;
  8642. top:817px;
  8643. width:37px;
  8644. height:17px;
  8645. display:flex;
  8646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8647. font-weight:400;
  8648. font-style:normal;
  8649. font-size:12px;
  8650. }
  8651. #u13169 .text {
  8652. position:absolute;
  8653. align-self:flex-start;
  8654. padding:0px 0px 0px 0px;
  8655. box-sizing:border-box;
  8656. width:100%;
  8657. }
  8658. #u13169_text {
  8659. border-width:0px;
  8660. white-space:nowrap;
  8661. text-transform:none;
  8662. }
  8663. #u13170_img {
  8664. border-width:0px;
  8665. position:absolute;
  8666. left:0px;
  8667. top:0px;
  8668. width:375px;
  8669. height:769px;
  8670. }
  8671. #u13170 {
  8672. border-width:0px;
  8673. position:absolute;
  8674. left:29px;
  8675. top:70px;
  8676. width:375px;
  8677. height:769px;
  8678. display:flex;
  8679. }
  8680. #u13170 .text {
  8681. position:absolute;
  8682. align-self:center;
  8683. padding:2px 2px 2px 2px;
  8684. box-sizing:border-box;
  8685. width:100%;
  8686. }
  8687. #u13170_text {
  8688. border-width:0px;
  8689. word-wrap:break-word;
  8690. text-transform:none;
  8691. visibility:hidden;
  8692. }
  8693. #u13171_div {
  8694. border-width:0px;
  8695. position:absolute;
  8696. left:0px;
  8697. top:0px;
  8698. width:375px;
  8699. height:769px;
  8700. background:inherit;
  8701. background-color:rgba(255, 255, 255, 1);
  8702. border:none;
  8703. border-top:0px;
  8704. border-radius:24px;
  8705. border-top-left-radius:0px;
  8706. border-top-right-radius:0px;
  8707. -moz-box-shadow:none;
  8708. -webkit-box-shadow:none;
  8709. box-shadow:none;
  8710. }
  8711. #u13171 {
  8712. border-width:0px;
  8713. position:absolute;
  8714. left:29px;
  8715. top:70px;
  8716. width:375px;
  8717. height:769px;
  8718. display:flex;
  8719. }
  8720. #u13171 .text {
  8721. position:absolute;
  8722. align-self:center;
  8723. padding:2px 2px 2px 2px;
  8724. box-sizing:border-box;
  8725. width:100%;
  8726. }
  8727. #u13171_text {
  8728. border-width:0px;
  8729. word-wrap:break-word;
  8730. text-transform:none;
  8731. visibility:hidden;
  8732. }
  8733. #u13172_div {
  8734. border-width:0px;
  8735. position:absolute;
  8736. left:0px;
  8737. top:0px;
  8738. width:334px;
  8739. height:40px;
  8740. background:inherit;
  8741. background-color:rgba(170, 170, 170, 1);
  8742. border:none;
  8743. border-radius:82px;
  8744. -moz-box-shadow:none;
  8745. -webkit-box-shadow:none;
  8746. box-shadow:none;
  8747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8748. font-weight:400;
  8749. font-style:normal;
  8750. font-size:18px;
  8751. color:#FFFFFF;
  8752. }
  8753. #u13172 {
  8754. border-width:0px;
  8755. position:absolute;
  8756. left:44px;
  8757. top:768px;
  8758. width:334px;
  8759. height:40px;
  8760. display:flex;
  8761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8762. font-weight:400;
  8763. font-style:normal;
  8764. font-size:18px;
  8765. color:#FFFFFF;
  8766. }
  8767. #u13172 .text {
  8768. position:absolute;
  8769. align-self:center;
  8770. padding:2px 2px 2px 2px;
  8771. box-sizing:border-box;
  8772. width:100%;
  8773. }
  8774. #u13172_text {
  8775. border-width:0px;
  8776. word-wrap:break-word;
  8777. text-transform:none;
  8778. }
  8779. #u13173_div {
  8780. border-width:0px;
  8781. position:absolute;
  8782. left:0px;
  8783. top:0px;
  8784. width:82px;
  8785. height:25px;
  8786. background:inherit;
  8787. background-color:rgba(255, 255, 255, 0);
  8788. border:none;
  8789. border-radius:0px;
  8790. -moz-box-shadow:none;
  8791. -webkit-box-shadow:none;
  8792. box-shadow:none;
  8793. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8794. font-weight:500;
  8795. font-style:normal;
  8796. font-size:18px;
  8797. }
  8798. #u13173 {
  8799. border-width:0px;
  8800. position:absolute;
  8801. left:174px;
  8802. top:473px;
  8803. width:82px;
  8804. height:25px;
  8805. display:flex;
  8806. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8807. font-weight:500;
  8808. font-style:normal;
  8809. font-size:18px;
  8810. }
  8811. #u13173 .text {
  8812. position:absolute;
  8813. align-self:flex-start;
  8814. padding:0px 0px 0px 0px;
  8815. box-sizing:border-box;
  8816. width:100%;
  8817. }
  8818. #u13173_text {
  8819. border-width:0px;
  8820. white-space:nowrap;
  8821. text-transform:none;
  8822. }
  8823. #u13174 {
  8824. border-width:0px;
  8825. position:absolute;
  8826. left:0px;
  8827. top:0px;
  8828. width:0px;
  8829. height:0px;
  8830. }
  8831. #u13175_img {
  8832. border-width:0px;
  8833. position:absolute;
  8834. left:0px;
  8835. top:0px;
  8836. width:220px;
  8837. height:220px;
  8838. }
  8839. #u13175 {
  8840. border-width:0px;
  8841. position:absolute;
  8842. left:102px;
  8843. top:247px;
  8844. width:220px;
  8845. height:220px;
  8846. display:flex;
  8847. }
  8848. #u13175 .text {
  8849. position:absolute;
  8850. align-self:center;
  8851. padding:2px 2px 2px 2px;
  8852. box-sizing:border-box;
  8853. width:100%;
  8854. }
  8855. #u13175_text {
  8856. border-width:0px;
  8857. word-wrap:break-word;
  8858. text-transform:none;
  8859. visibility:hidden;
  8860. }
  8861. #u13176_div {
  8862. border-width:0px;
  8863. position:absolute;
  8864. left:0px;
  8865. top:0px;
  8866. width:77px;
  8867. height:67px;
  8868. background:inherit;
  8869. background-color:rgba(255, 255, 255, 0);
  8870. border:none;
  8871. border-radius:0px;
  8872. -moz-box-shadow:none;
  8873. -webkit-box-shadow:none;
  8874. box-shadow:none;
  8875. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8876. font-weight:500;
  8877. font-style:normal;
  8878. font-size:48px;
  8879. color:#FFFFFF;
  8880. }
  8881. #u13176 {
  8882. border-width:0px;
  8883. position:absolute;
  8884. left:175px;
  8885. top:294px;
  8886. width:77px;
  8887. height:67px;
  8888. display:flex;
  8889. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8890. font-weight:500;
  8891. font-style:normal;
  8892. font-size:48px;
  8893. color:#FFFFFF;
  8894. }
  8895. #u13176 .text {
  8896. position:absolute;
  8897. align-self:flex-start;
  8898. padding:0px 0px 0px 0px;
  8899. box-sizing:border-box;
  8900. width:100%;
  8901. }
  8902. #u13176_text {
  8903. border-width:0px;
  8904. white-space:nowrap;
  8905. text-transform:none;
  8906. }
  8907. #u13177_div {
  8908. border-width:0px;
  8909. position:absolute;
  8910. left:0px;
  8911. top:0px;
  8912. width:79px;
  8913. height:60px;
  8914. background:inherit;
  8915. background-color:rgba(255, 255, 255, 0);
  8916. border:none;
  8917. border-left:0px;
  8918. border-top:0px;
  8919. border-right:0px;
  8920. border-radius:0px;
  8921. border-bottom-right-radius:0px;
  8922. border-bottom-left-radius:0px;
  8923. -moz-box-shadow:none;
  8924. -webkit-box-shadow:none;
  8925. box-shadow:none;
  8926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8927. font-weight:400;
  8928. font-style:normal;
  8929. color:#FFFFFF;
  8930. text-align:center;
  8931. line-height:30px;
  8932. }
  8933. #u13177 {
  8934. border-width:0px;
  8935. position:absolute;
  8936. left:173px;
  8937. top:361px;
  8938. width:79px;
  8939. height:60px;
  8940. display:flex;
  8941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8942. font-weight:400;
  8943. font-style:normal;
  8944. color:#FFFFFF;
  8945. text-align:center;
  8946. line-height:30px;
  8947. }
  8948. #u13177 .text {
  8949. position:absolute;
  8950. align-self:flex-start;
  8951. padding:0px 0px 0px 0px;
  8952. box-sizing:border-box;
  8953. width:100%;
  8954. }
  8955. #u13177_text {
  8956. border-width:0px;
  8957. white-space:nowrap;
  8958. text-transform:none;
  8959. }
  8960. #u13178 {
  8961. border-width:0px;
  8962. position:absolute;
  8963. left:0px;
  8964. top:0px;
  8965. width:0px;
  8966. height:0px;
  8967. }
  8968. #u13179_div {
  8969. border-width:0px;
  8970. position:absolute;
  8971. left:0px;
  8972. top:0px;
  8973. width:80px;
  8974. height:30px;
  8975. background:inherit;
  8976. background-color:rgba(255, 255, 255, 0);
  8977. border:none;
  8978. border-left:0px;
  8979. border-top:0px;
  8980. border-right:0px;
  8981. border-radius:0px;
  8982. border-bottom-right-radius:0px;
  8983. border-bottom-left-radius:0px;
  8984. -moz-box-shadow:none;
  8985. -webkit-box-shadow:none;
  8986. box-shadow:none;
  8987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8988. font-weight:400;
  8989. font-style:normal;
  8990. font-size:14px;
  8991. color:#7F7F7F;
  8992. text-align:center;
  8993. line-height:30px;
  8994. }
  8995. #u13179 {
  8996. border-width:0px;
  8997. position:absolute;
  8998. left:62px;
  8999. top:197px;
  9000. width:80px;
  9001. height:30px;
  9002. display:flex;
  9003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9004. font-weight:400;
  9005. font-style:normal;
  9006. font-size:14px;
  9007. color:#7F7F7F;
  9008. text-align:center;
  9009. line-height:30px;
  9010. }
  9011. #u13179 .text {
  9012. position:absolute;
  9013. align-self:flex-start;
  9014. padding:0px 0px 0px 0px;
  9015. box-sizing:border-box;
  9016. width:100%;
  9017. }
  9018. #u13179_text {
  9019. border-width:0px;
  9020. white-space:nowrap;
  9021. text-transform:none;
  9022. }
  9023. #u13180_div {
  9024. border-width:0px;
  9025. position:absolute;
  9026. left:0px;
  9027. top:0px;
  9028. width:60px;
  9029. height:30px;
  9030. background:inherit;
  9031. background-color:rgba(255, 255, 255, 0);
  9032. border:none;
  9033. border-left:0px;
  9034. border-top:0px;
  9035. border-right:0px;
  9036. border-radius:0px;
  9037. border-bottom-right-radius:0px;
  9038. border-bottom-left-radius:0px;
  9039. -moz-box-shadow:none;
  9040. -webkit-box-shadow:none;
  9041. box-shadow:none;
  9042. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9043. font-weight:650;
  9044. font-style:normal;
  9045. font-size:18px;
  9046. color:#298FFF;
  9047. text-align:center;
  9048. line-height:30px;
  9049. }
  9050. #u13180 {
  9051. border-width:0px;
  9052. position:absolute;
  9053. left:72px;
  9054. top:167px;
  9055. width:60px;
  9056. height:30px;
  9057. display:flex;
  9058. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9059. font-weight:650;
  9060. font-style:normal;
  9061. font-size:18px;
  9062. color:#298FFF;
  9063. text-align:center;
  9064. line-height:30px;
  9065. }
  9066. #u13180 .text {
  9067. position:absolute;
  9068. align-self:flex-start;
  9069. padding:0px 0px 0px 0px;
  9070. box-sizing:border-box;
  9071. width:100%;
  9072. }
  9073. #u13180_text {
  9074. border-width:0px;
  9075. white-space:nowrap;
  9076. text-transform:none;
  9077. }
  9078. #u13181_div {
  9079. border-width:0px;
  9080. position:absolute;
  9081. left:0px;
  9082. top:0px;
  9083. width:57px;
  9084. height:30px;
  9085. background:inherit;
  9086. background-color:rgba(255, 255, 255, 0);
  9087. border:none;
  9088. border-left:0px;
  9089. border-top:0px;
  9090. border-right:0px;
  9091. border-radius:0px;
  9092. border-bottom-right-radius:0px;
  9093. border-bottom-left-radius:0px;
  9094. -moz-box-shadow:none;
  9095. -webkit-box-shadow:none;
  9096. box-shadow:none;
  9097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9098. font-weight:400;
  9099. font-style:normal;
  9100. font-size:14px;
  9101. color:#7F7F7F;
  9102. text-align:center;
  9103. line-height:30px;
  9104. }
  9105. #u13181 {
  9106. border-width:0px;
  9107. position:absolute;
  9108. left:198px;
  9109. top:197px;
  9110. width:57px;
  9111. height:30px;
  9112. display:flex;
  9113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9114. font-weight:400;
  9115. font-style:normal;
  9116. font-size:14px;
  9117. color:#7F7F7F;
  9118. text-align:center;
  9119. line-height:30px;
  9120. }
  9121. #u13181 .text {
  9122. position:absolute;
  9123. align-self:flex-start;
  9124. padding:0px 0px 0px 0px;
  9125. box-sizing:border-box;
  9126. width:100%;
  9127. }
  9128. #u13181_text {
  9129. border-width:0px;
  9130. white-space:nowrap;
  9131. text-transform:none;
  9132. }
  9133. #u13182_div {
  9134. border-width:0px;
  9135. position:absolute;
  9136. left:0px;
  9137. top:0px;
  9138. width:80px;
  9139. height:30px;
  9140. background:inherit;
  9141. background-color:rgba(255, 255, 255, 0);
  9142. border:none;
  9143. border-left:0px;
  9144. border-top:0px;
  9145. border-right:0px;
  9146. border-radius:0px;
  9147. border-bottom-right-radius:0px;
  9148. border-bottom-left-radius:0px;
  9149. -moz-box-shadow:none;
  9150. -webkit-box-shadow:none;
  9151. box-shadow:none;
  9152. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9153. font-weight:650;
  9154. font-style:normal;
  9155. font-size:18px;
  9156. color:#298FFF;
  9157. line-height:30px;
  9158. }
  9159. #u13182 {
  9160. border-width:0px;
  9161. position:absolute;
  9162. left:187px;
  9163. top:167px;
  9164. width:80px;
  9165. height:30px;
  9166. display:flex;
  9167. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9168. font-weight:650;
  9169. font-style:normal;
  9170. font-size:18px;
  9171. color:#298FFF;
  9172. line-height:30px;
  9173. }
  9174. #u13182 .text {
  9175. position:absolute;
  9176. align-self:flex-start;
  9177. padding:0px 0px 0px 0px;
  9178. box-sizing:border-box;
  9179. width:100%;
  9180. }
  9181. #u13182_text {
  9182. border-width:0px;
  9183. white-space:nowrap;
  9184. text-transform:none;
  9185. }
  9186. #u13183_div {
  9187. border-width:0px;
  9188. position:absolute;
  9189. left:0px;
  9190. top:0px;
  9191. width:80px;
  9192. height:30px;
  9193. background:inherit;
  9194. background-color:rgba(255, 255, 255, 0);
  9195. border:none;
  9196. border-left:0px;
  9197. border-top:0px;
  9198. border-right:0px;
  9199. border-radius:0px;
  9200. border-bottom-right-radius:0px;
  9201. border-bottom-left-radius:0px;
  9202. -moz-box-shadow:none;
  9203. -webkit-box-shadow:none;
  9204. box-shadow:none;
  9205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9206. font-weight:400;
  9207. font-style:normal;
  9208. font-size:14px;
  9209. color:#7F7F7F;
  9210. text-align:center;
  9211. line-height:30px;
  9212. }
  9213. #u13183 {
  9214. border-width:0px;
  9215. position:absolute;
  9216. left:296px;
  9217. top:197px;
  9218. width:80px;
  9219. height:30px;
  9220. display:flex;
  9221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9222. font-weight:400;
  9223. font-style:normal;
  9224. font-size:14px;
  9225. color:#7F7F7F;
  9226. text-align:center;
  9227. line-height:30px;
  9228. }
  9229. #u13183 .text {
  9230. position:absolute;
  9231. align-self:flex-start;
  9232. padding:0px 0px 0px 0px;
  9233. box-sizing:border-box;
  9234. width:100%;
  9235. }
  9236. #u13183_text {
  9237. border-width:0px;
  9238. white-space:nowrap;
  9239. text-transform:none;
  9240. }
  9241. #u13184_div {
  9242. border-width:0px;
  9243. position:absolute;
  9244. left:0px;
  9245. top:0px;
  9246. width:49px;
  9247. height:30px;
  9248. background:inherit;
  9249. background-color:rgba(255, 255, 255, 0);
  9250. border:none;
  9251. border-left:0px;
  9252. border-top:0px;
  9253. border-right:0px;
  9254. border-radius:0px;
  9255. border-bottom-right-radius:0px;
  9256. border-bottom-left-radius:0px;
  9257. -moz-box-shadow:none;
  9258. -webkit-box-shadow:none;
  9259. box-shadow:none;
  9260. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9261. font-weight:650;
  9262. font-style:normal;
  9263. font-size:18px;
  9264. color:#298FFF;
  9265. text-align:center;
  9266. line-height:30px;
  9267. }
  9268. #u13184 {
  9269. border-width:0px;
  9270. position:absolute;
  9271. left:312px;
  9272. top:167px;
  9273. width:49px;
  9274. height:30px;
  9275. display:flex;
  9276. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9277. font-weight:650;
  9278. font-style:normal;
  9279. font-size:18px;
  9280. color:#298FFF;
  9281. text-align:center;
  9282. line-height:30px;
  9283. }
  9284. #u13184 .text {
  9285. position:absolute;
  9286. align-self:flex-start;
  9287. padding:0px 0px 0px 0px;
  9288. box-sizing:border-box;
  9289. width:100%;
  9290. }
  9291. #u13184_text {
  9292. border-width:0px;
  9293. white-space:nowrap;
  9294. text-transform:none;
  9295. }
  9296. #u13185_div {
  9297. border-width:0px;
  9298. position:absolute;
  9299. left:0px;
  9300. top:0px;
  9301. width:72px;
  9302. height:14px;
  9303. background:inherit;
  9304. background-color:rgba(51, 51, 51, 1);
  9305. border:none;
  9306. border-radius:16px;
  9307. -moz-box-shadow:none;
  9308. -webkit-box-shadow:none;
  9309. box-shadow:none;
  9310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9311. font-weight:400;
  9312. font-style:normal;
  9313. font-size:10px;
  9314. color:#FFFFFF;
  9315. text-align:center;
  9316. }
  9317. #u13185 {
  9318. border-width:0px;
  9319. position:absolute;
  9320. left:103px;
  9321. top:156px;
  9322. width:72px;
  9323. height:14px;
  9324. display:flex;
  9325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9326. font-weight:400;
  9327. font-style:normal;
  9328. font-size:10px;
  9329. color:#FFFFFF;
  9330. text-align:center;
  9331. }
  9332. #u13185 .text {
  9333. position:absolute;
  9334. align-self:flex-start;
  9335. padding:0px 0px 0px 0px;
  9336. box-sizing:border-box;
  9337. width:100%;
  9338. }
  9339. #u13185_text {
  9340. border-width:0px;
  9341. word-wrap:break-word;
  9342. text-transform:none;
  9343. }
  9344. #u13186_div {
  9345. border-width:0px;
  9346. position:absolute;
  9347. left:0px;
  9348. top:0px;
  9349. width:323px;
  9350. height:30px;
  9351. background:inherit;
  9352. background-color:rgba(255, 255, 255, 0);
  9353. border:none;
  9354. border-left:0px;
  9355. border-top:0px;
  9356. border-right:0px;
  9357. border-radius:0px;
  9358. border-bottom-right-radius:0px;
  9359. border-bottom-left-radius:0px;
  9360. -moz-box-shadow:none;
  9361. -webkit-box-shadow:none;
  9362. box-shadow:none;
  9363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9364. font-weight:400;
  9365. font-style:normal;
  9366. font-size:14px;
  9367. line-height:30px;
  9368. }
  9369. #u13186 {
  9370. border-width:0px;
  9371. position:absolute;
  9372. left:59px;
  9373. top:116px;
  9374. width:323px;
  9375. height:30px;
  9376. display:flex;
  9377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9378. font-weight:400;
  9379. font-style:normal;
  9380. font-size:14px;
  9381. line-height:30px;
  9382. }
  9383. #u13186 .text {
  9384. position:absolute;
  9385. align-self:flex-start;
  9386. padding:0px 0px 0px 0px;
  9387. box-sizing:border-box;
  9388. width:100%;
  9389. }
  9390. #u13186_text {
  9391. border-width:0px;
  9392. white-space:nowrap;
  9393. text-transform:none;
  9394. }
  9395. #u13187_div {
  9396. border-width:0px;
  9397. position:absolute;
  9398. left:0px;
  9399. top:0px;
  9400. width:73px;
  9401. height:30px;
  9402. background:inherit;
  9403. background-color:rgba(255, 255, 255, 0);
  9404. border:none;
  9405. border-left:0px;
  9406. border-top:0px;
  9407. border-right:0px;
  9408. border-radius:0px;
  9409. border-bottom-right-radius:0px;
  9410. border-bottom-left-radius:0px;
  9411. -moz-box-shadow:none;
  9412. -webkit-box-shadow:none;
  9413. box-shadow:none;
  9414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9415. font-weight:400;
  9416. font-style:normal;
  9417. font-size:18px;
  9418. line-height:30px;
  9419. }
  9420. #u13187 {
  9421. border-width:0px;
  9422. position:absolute;
  9423. left:187px;
  9424. top:77px;
  9425. width:73px;
  9426. height:30px;
  9427. display:flex;
  9428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9429. font-weight:400;
  9430. font-style:normal;
  9431. font-size:18px;
  9432. line-height:30px;
  9433. }
  9434. #u13187 .text {
  9435. position:absolute;
  9436. align-self:center;
  9437. padding:0px 0px 0px 0px;
  9438. box-sizing:border-box;
  9439. width:100%;
  9440. }
  9441. #u13187_text {
  9442. border-width:0px;
  9443. white-space:nowrap;
  9444. text-transform:none;
  9445. }
  9446. #u13188_img {
  9447. border-width:0px;
  9448. position:absolute;
  9449. left:0px;
  9450. top:0px;
  9451. width:15px;
  9452. height:15px;
  9453. }
  9454. #u13188 {
  9455. border-width:0px;
  9456. position:absolute;
  9457. left:47px;
  9458. top:84px;
  9459. width:15px;
  9460. height:15px;
  9461. display:flex;
  9462. }
  9463. #u13188 .text {
  9464. position:absolute;
  9465. align-self:center;
  9466. padding:2px 2px 2px 2px;
  9467. box-sizing:border-box;
  9468. width:100%;
  9469. }
  9470. #u13188_text {
  9471. border-width:0px;
  9472. word-wrap:break-word;
  9473. text-transform:none;
  9474. visibility:hidden;
  9475. }
  9476. #u13189_div {
  9477. border-width:0px;
  9478. position:absolute;
  9479. left:0px;
  9480. top:0px;
  9481. width:121px;
  9482. height:30px;
  9483. background:inherit;
  9484. background-color:rgba(255, 255, 255, 0);
  9485. border:none;
  9486. border-left:0px;
  9487. border-top:0px;
  9488. border-right:0px;
  9489. border-radius:0px;
  9490. border-bottom-right-radius:0px;
  9491. border-bottom-left-radius:0px;
  9492. -moz-box-shadow:none;
  9493. -webkit-box-shadow:none;
  9494. box-shadow:none;
  9495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9496. font-weight:400;
  9497. font-style:normal;
  9498. font-size:12px;
  9499. color:#7F7F7F;
  9500. line-height:30px;
  9501. }
  9502. #u13189 {
  9503. border-width:0px;
  9504. position:absolute;
  9505. left:62px;
  9506. top:689px;
  9507. width:121px;
  9508. height:30px;
  9509. display:flex;
  9510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9511. font-weight:400;
  9512. font-style:normal;
  9513. font-size:12px;
  9514. color:#7F7F7F;
  9515. line-height:30px;
  9516. }
  9517. #u13189 .text {
  9518. position:absolute;
  9519. align-self:flex-start;
  9520. padding:0px 0px 0px 0px;
  9521. box-sizing:border-box;
  9522. width:100%;
  9523. }
  9524. #u13189_text {
  9525. border-width:0px;
  9526. white-space:nowrap;
  9527. text-transform:none;
  9528. }
  9529. #u13190_div {
  9530. border-width:0px;
  9531. position:absolute;
  9532. left:0px;
  9533. top:0px;
  9534. width:154px;
  9535. height:30px;
  9536. background:inherit;
  9537. background-color:rgba(255, 255, 255, 0);
  9538. border:none;
  9539. border-left:0px;
  9540. border-top:0px;
  9541. border-right:0px;
  9542. border-radius:0px;
  9543. border-bottom-right-radius:0px;
  9544. border-bottom-left-radius:0px;
  9545. -moz-box-shadow:none;
  9546. -webkit-box-shadow:none;
  9547. box-shadow:none;
  9548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9549. font-weight:400;
  9550. font-style:normal;
  9551. font-size:12px;
  9552. color:#7F7F7F;
  9553. line-height:30px;
  9554. }
  9555. #u13190 {
  9556. border-width:0px;
  9557. position:absolute;
  9558. left:228px;
  9559. top:689px;
  9560. width:154px;
  9561. height:30px;
  9562. display:flex;
  9563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9564. font-weight:400;
  9565. font-style:normal;
  9566. font-size:12px;
  9567. color:#7F7F7F;
  9568. line-height:30px;
  9569. }
  9570. #u13190 .text {
  9571. position:absolute;
  9572. align-self:flex-start;
  9573. padding:0px 0px 0px 0px;
  9574. box-sizing:border-box;
  9575. width:100%;
  9576. }
  9577. #u13190_text {
  9578. border-width:0px;
  9579. white-space:nowrap;
  9580. text-transform:none;
  9581. }
  9582. #u13191_img {
  9583. border-width:0px;
  9584. position:absolute;
  9585. left:0px;
  9586. top:0px;
  9587. width:70px;
  9588. height:30px;
  9589. }
  9590. #u13191 {
  9591. border-width:0px;
  9592. position:absolute;
  9593. left:334px;
  9594. top:77px;
  9595. width:70px;
  9596. height:30px;
  9597. display:flex;
  9598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9599. font-weight:400;
  9600. font-style:normal;
  9601. font-size:12px;
  9602. color:#298FFF;
  9603. }
  9604. #u13191 .text {
  9605. position:absolute;
  9606. align-self:center;
  9607. padding:2px 2px 2px 10px;
  9608. box-sizing:border-box;
  9609. width:100%;
  9610. }
  9611. #u13191_text {
  9612. border-width:0px;
  9613. word-wrap:break-word;
  9614. text-transform:none;
  9615. }
  9616. #u13192 {
  9617. border-width:0px;
  9618. position:absolute;
  9619. left:0px;
  9620. top:0px;
  9621. width:0px;
  9622. height:0px;
  9623. }
  9624. #u13193_div {
  9625. border-width:0px;
  9626. position:absolute;
  9627. left:0px;
  9628. top:0px;
  9629. width:150px;
  9630. height:71px;
  9631. background:inherit;
  9632. background-color:rgba(242, 242, 242, 0.498039215686275);
  9633. border:none;
  9634. border-radius:4px;
  9635. -moz-box-shadow:none;
  9636. -webkit-box-shadow:none;
  9637. box-shadow:none;
  9638. }
  9639. #u13193 {
  9640. border-width:0px;
  9641. position:absolute;
  9642. left:50px;
  9643. top:527px;
  9644. width:150px;
  9645. height:71px;
  9646. display:flex;
  9647. }
  9648. #u13193 .text {
  9649. position:absolute;
  9650. align-self:center;
  9651. padding:2px 2px 2px 2px;
  9652. box-sizing:border-box;
  9653. width:100%;
  9654. }
  9655. #u13193_text {
  9656. border-width:0px;
  9657. word-wrap:break-word;
  9658. text-transform:none;
  9659. visibility:hidden;
  9660. }
  9661. #u13194_div {
  9662. border-width:0px;
  9663. position:absolute;
  9664. left:0px;
  9665. top:0px;
  9666. width:122px;
  9667. height:27px;
  9668. background:inherit;
  9669. background-color:rgba(255, 255, 255, 0);
  9670. border:none;
  9671. border-left:0px;
  9672. border-top:0px;
  9673. border-right:0px;
  9674. border-radius:0px;
  9675. border-bottom-right-radius:0px;
  9676. border-bottom-left-radius:0px;
  9677. -moz-box-shadow:none;
  9678. -webkit-box-shadow:none;
  9679. box-shadow:none;
  9680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9681. font-weight:400;
  9682. font-style:normal;
  9683. font-size:12px;
  9684. color:#7F7F7F;
  9685. text-align:center;
  9686. line-height:30px;
  9687. }
  9688. #u13194 {
  9689. border-width:0px;
  9690. position:absolute;
  9691. left:65px;
  9692. top:562px;
  9693. width:122px;
  9694. height:27px;
  9695. display:flex;
  9696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9697. font-weight:400;
  9698. font-style:normal;
  9699. font-size:12px;
  9700. color:#7F7F7F;
  9701. text-align:center;
  9702. line-height:30px;
  9703. }
  9704. #u13194 .text {
  9705. position:absolute;
  9706. align-self:flex-start;
  9707. padding:0px 0px 0px 0px;
  9708. box-sizing:border-box;
  9709. width:100%;
  9710. }
  9711. #u13194_text {
  9712. border-width:0px;
  9713. word-wrap:break-word;
  9714. text-transform:none;
  9715. }
  9716. #u13195_div {
  9717. border-width:0px;
  9718. position:absolute;
  9719. left:0px;
  9720. top:0px;
  9721. width:105px;
  9722. height:27px;
  9723. background:inherit;
  9724. background-color:rgba(255, 255, 255, 0);
  9725. border:none;
  9726. border-left:0px;
  9727. border-top:0px;
  9728. border-right:0px;
  9729. border-radius:0px;
  9730. border-bottom-right-radius:0px;
  9731. border-bottom-left-radius:0px;
  9732. -moz-box-shadow:none;
  9733. -webkit-box-shadow:none;
  9734. box-shadow:none;
  9735. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9736. font-weight:500;
  9737. font-style:normal;
  9738. font-size:18px;
  9739. color:#298FFF;
  9740. text-align:center;
  9741. line-height:30px;
  9742. }
  9743. #u13195 {
  9744. border-width:0px;
  9745. position:absolute;
  9746. left:73px;
  9747. top:535px;
  9748. width:105px;
  9749. height:27px;
  9750. display:flex;
  9751. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9752. font-weight:500;
  9753. font-style:normal;
  9754. font-size:18px;
  9755. color:#298FFF;
  9756. text-align:center;
  9757. line-height:30px;
  9758. }
  9759. #u13195 .text {
  9760. position:absolute;
  9761. align-self:flex-start;
  9762. padding:0px 0px 0px 0px;
  9763. box-sizing:border-box;
  9764. width:100%;
  9765. }
  9766. #u13195_text {
  9767. border-width:0px;
  9768. word-wrap:break-word;
  9769. text-transform:none;
  9770. }
  9771. #u13196 {
  9772. border-width:0px;
  9773. position:absolute;
  9774. left:0px;
  9775. top:0px;
  9776. width:0px;
  9777. height:0px;
  9778. }
  9779. #u13197_div {
  9780. border-width:0px;
  9781. position:absolute;
  9782. left:0px;
  9783. top:0px;
  9784. width:150px;
  9785. height:71px;
  9786. background:inherit;
  9787. background-color:rgba(242, 242, 242, 0.498039215686275);
  9788. border:none;
  9789. border-radius:4px;
  9790. -moz-box-shadow:none;
  9791. -webkit-box-shadow:none;
  9792. box-shadow:none;
  9793. }
  9794. #u13197 {
  9795. border-width:0px;
  9796. position:absolute;
  9797. left:223px;
  9798. top:527px;
  9799. width:150px;
  9800. height:71px;
  9801. display:flex;
  9802. }
  9803. #u13197 .text {
  9804. position:absolute;
  9805. align-self:center;
  9806. padding:2px 2px 2px 2px;
  9807. box-sizing:border-box;
  9808. width:100%;
  9809. }
  9810. #u13197_text {
  9811. border-width:0px;
  9812. word-wrap:break-word;
  9813. text-transform:none;
  9814. visibility:hidden;
  9815. }
  9816. #u13198_div {
  9817. border-width:0px;
  9818. position:absolute;
  9819. left:0px;
  9820. top:0px;
  9821. width:122px;
  9822. height:27px;
  9823. background:inherit;
  9824. background-color:rgba(255, 255, 255, 0);
  9825. border:none;
  9826. border-left:0px;
  9827. border-top:0px;
  9828. border-right:0px;
  9829. border-radius:0px;
  9830. border-bottom-right-radius:0px;
  9831. border-bottom-left-radius:0px;
  9832. -moz-box-shadow:none;
  9833. -webkit-box-shadow:none;
  9834. box-shadow:none;
  9835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9836. font-weight:400;
  9837. font-style:normal;
  9838. font-size:12px;
  9839. color:#7F7F7F;
  9840. text-align:center;
  9841. line-height:30px;
  9842. }
  9843. #u13198 {
  9844. border-width:0px;
  9845. position:absolute;
  9846. left:238px;
  9847. top:562px;
  9848. width:122px;
  9849. height:27px;
  9850. display:flex;
  9851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9852. font-weight:400;
  9853. font-style:normal;
  9854. font-size:12px;
  9855. color:#7F7F7F;
  9856. text-align:center;
  9857. line-height:30px;
  9858. }
  9859. #u13198 .text {
  9860. position:absolute;
  9861. align-self:flex-start;
  9862. padding:0px 0px 0px 0px;
  9863. box-sizing:border-box;
  9864. width:100%;
  9865. }
  9866. #u13198_text {
  9867. border-width:0px;
  9868. word-wrap:break-word;
  9869. text-transform:none;
  9870. }
  9871. #u13199_div {
  9872. border-width:0px;
  9873. position:absolute;
  9874. left:0px;
  9875. top:0px;
  9876. width:105px;
  9877. height:27px;
  9878. background:inherit;
  9879. background-color:rgba(255, 255, 255, 0);
  9880. border:none;
  9881. border-left:0px;
  9882. border-top:0px;
  9883. border-right:0px;
  9884. border-radius:0px;
  9885. border-bottom-right-radius:0px;
  9886. border-bottom-left-radius:0px;
  9887. -moz-box-shadow:none;
  9888. -webkit-box-shadow:none;
  9889. box-shadow:none;
  9890. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9891. font-weight:500;
  9892. font-style:normal;
  9893. font-size:18px;
  9894. color:#298FFF;
  9895. text-align:center;
  9896. line-height:30px;
  9897. }
  9898. #u13199 {
  9899. border-width:0px;
  9900. position:absolute;
  9901. left:245px;
  9902. top:535px;
  9903. width:105px;
  9904. height:27px;
  9905. display:flex;
  9906. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9907. font-weight:500;
  9908. font-style:normal;
  9909. font-size:18px;
  9910. color:#298FFF;
  9911. text-align:center;
  9912. line-height:30px;
  9913. }
  9914. #u13199 .text {
  9915. position:absolute;
  9916. align-self:flex-start;
  9917. padding:0px 0px 0px 0px;
  9918. box-sizing:border-box;
  9919. width:100%;
  9920. }
  9921. #u13199_text {
  9922. border-width:0px;
  9923. word-wrap:break-word;
  9924. text-transform:none;
  9925. }
  9926. #u13200 {
  9927. border-width:0px;
  9928. position:absolute;
  9929. left:0px;
  9930. top:0px;
  9931. width:0px;
  9932. height:0px;
  9933. }
  9934. #u13201_div {
  9935. border-width:0px;
  9936. position:absolute;
  9937. left:0px;
  9938. top:0px;
  9939. width:150px;
  9940. height:71px;
  9941. background:inherit;
  9942. background-color:rgba(242, 242, 242, 0.498039215686275);
  9943. border:none;
  9944. border-radius:4px;
  9945. -moz-box-shadow:none;
  9946. -webkit-box-shadow:none;
  9947. box-shadow:none;
  9948. }
  9949. #u13201 {
  9950. border-width:0px;
  9951. position:absolute;
  9952. left:50px;
  9953. top:603px;
  9954. width:150px;
  9955. height:71px;
  9956. display:flex;
  9957. }
  9958. #u13201 .text {
  9959. position:absolute;
  9960. align-self:center;
  9961. padding:2px 2px 2px 2px;
  9962. box-sizing:border-box;
  9963. width:100%;
  9964. }
  9965. #u13201_text {
  9966. border-width:0px;
  9967. word-wrap:break-word;
  9968. text-transform:none;
  9969. visibility:hidden;
  9970. }
  9971. #u13202_div {
  9972. border-width:0px;
  9973. position:absolute;
  9974. left:0px;
  9975. top:0px;
  9976. width:122px;
  9977. height:27px;
  9978. background:inherit;
  9979. background-color:rgba(255, 255, 255, 0);
  9980. border:none;
  9981. border-left:0px;
  9982. border-top:0px;
  9983. border-right:0px;
  9984. border-radius:0px;
  9985. border-bottom-right-radius:0px;
  9986. border-bottom-left-radius:0px;
  9987. -moz-box-shadow:none;
  9988. -webkit-box-shadow:none;
  9989. box-shadow:none;
  9990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9991. font-weight:400;
  9992. font-style:normal;
  9993. font-size:12px;
  9994. color:#7F7F7F;
  9995. text-align:center;
  9996. line-height:30px;
  9997. }
  9998. #u13202 {
  9999. border-width:0px;
  10000. position:absolute;
  10001. left:65px;
  10002. top:637px;
  10003. width:122px;
  10004. height:27px;
  10005. display:flex;
  10006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10007. font-weight:400;
  10008. font-style:normal;
  10009. font-size:12px;
  10010. color:#7F7F7F;
  10011. text-align:center;
  10012. line-height:30px;
  10013. }
  10014. #u13202 .text {
  10015. position:absolute;
  10016. align-self:flex-start;
  10017. padding:0px 0px 0px 0px;
  10018. box-sizing:border-box;
  10019. width:100%;
  10020. }
  10021. #u13202_text {
  10022. border-width:0px;
  10023. word-wrap:break-word;
  10024. text-transform:none;
  10025. }
  10026. #u13203_div {
  10027. border-width:0px;
  10028. position:absolute;
  10029. left:0px;
  10030. top:0px;
  10031. width:105px;
  10032. height:27px;
  10033. background:inherit;
  10034. background-color:rgba(255, 255, 255, 0);
  10035. border:none;
  10036. border-left:0px;
  10037. border-top:0px;
  10038. border-right:0px;
  10039. border-radius:0px;
  10040. border-bottom-right-radius:0px;
  10041. border-bottom-left-radius:0px;
  10042. -moz-box-shadow:none;
  10043. -webkit-box-shadow:none;
  10044. box-shadow:none;
  10045. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10046. font-weight:500;
  10047. font-style:normal;
  10048. font-size:18px;
  10049. color:#298FFF;
  10050. text-align:center;
  10051. line-height:30px;
  10052. }
  10053. #u13203 {
  10054. border-width:0px;
  10055. position:absolute;
  10056. left:73px;
  10057. top:611px;
  10058. width:105px;
  10059. height:27px;
  10060. display:flex;
  10061. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10062. font-weight:500;
  10063. font-style:normal;
  10064. font-size:18px;
  10065. color:#298FFF;
  10066. text-align:center;
  10067. line-height:30px;
  10068. }
  10069. #u13203 .text {
  10070. position:absolute;
  10071. align-self:flex-start;
  10072. padding:0px 0px 0px 0px;
  10073. box-sizing:border-box;
  10074. width:100%;
  10075. }
  10076. #u13203_text {
  10077. border-width:0px;
  10078. word-wrap:break-word;
  10079. text-transform:none;
  10080. }
  10081. #u13204 {
  10082. border-width:0px;
  10083. position:absolute;
  10084. left:0px;
  10085. top:0px;
  10086. width:0px;
  10087. height:0px;
  10088. }
  10089. #u13205_div {
  10090. border-width:0px;
  10091. position:absolute;
  10092. left:0px;
  10093. top:0px;
  10094. width:150px;
  10095. height:71px;
  10096. background:inherit;
  10097. background-color:rgba(242, 242, 242, 0.498039215686275);
  10098. border:none;
  10099. border-radius:4px;
  10100. -moz-box-shadow:none;
  10101. -webkit-box-shadow:none;
  10102. box-shadow:none;
  10103. }
  10104. #u13205 {
  10105. border-width:0px;
  10106. position:absolute;
  10107. left:223px;
  10108. top:603px;
  10109. width:150px;
  10110. height:71px;
  10111. display:flex;
  10112. }
  10113. #u13205 .text {
  10114. position:absolute;
  10115. align-self:center;
  10116. padding:2px 2px 2px 2px;
  10117. box-sizing:border-box;
  10118. width:100%;
  10119. }
  10120. #u13205_text {
  10121. border-width:0px;
  10122. word-wrap:break-word;
  10123. text-transform:none;
  10124. visibility:hidden;
  10125. }
  10126. #u13206_div {
  10127. border-width:0px;
  10128. position:absolute;
  10129. left:0px;
  10130. top:0px;
  10131. width:122px;
  10132. height:27px;
  10133. background:inherit;
  10134. background-color:rgba(255, 255, 255, 0);
  10135. border:none;
  10136. border-left:0px;
  10137. border-top:0px;
  10138. border-right:0px;
  10139. border-radius:0px;
  10140. border-bottom-right-radius:0px;
  10141. border-bottom-left-radius:0px;
  10142. -moz-box-shadow:none;
  10143. -webkit-box-shadow:none;
  10144. box-shadow:none;
  10145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10146. font-weight:400;
  10147. font-style:normal;
  10148. color:#7F7F7F;
  10149. text-align:center;
  10150. line-height:30px;
  10151. }
  10152. #u13206 {
  10153. border-width:0px;
  10154. position:absolute;
  10155. left:238px;
  10156. top:637px;
  10157. width:122px;
  10158. height:27px;
  10159. display:flex;
  10160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10161. font-weight:400;
  10162. font-style:normal;
  10163. color:#7F7F7F;
  10164. text-align:center;
  10165. line-height:30px;
  10166. }
  10167. #u13206 .text {
  10168. position:absolute;
  10169. align-self:flex-start;
  10170. padding:0px 0px 0px 0px;
  10171. box-sizing:border-box;
  10172. width:100%;
  10173. }
  10174. #u13206_text {
  10175. border-width:0px;
  10176. word-wrap:break-word;
  10177. text-transform:none;
  10178. }
  10179. #u13207_div {
  10180. border-width:0px;
  10181. position:absolute;
  10182. left:0px;
  10183. top:0px;
  10184. width:105px;
  10185. height:27px;
  10186. background:inherit;
  10187. background-color:rgba(255, 255, 255, 0);
  10188. border:none;
  10189. border-left:0px;
  10190. border-top:0px;
  10191. border-right:0px;
  10192. border-radius:0px;
  10193. border-bottom-right-radius:0px;
  10194. border-bottom-left-radius:0px;
  10195. -moz-box-shadow:none;
  10196. -webkit-box-shadow:none;
  10197. box-shadow:none;
  10198. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10199. font-weight:500;
  10200. font-style:normal;
  10201. font-size:18px;
  10202. color:#298FFF;
  10203. text-align:center;
  10204. line-height:30px;
  10205. }
  10206. #u13207 {
  10207. border-width:0px;
  10208. position:absolute;
  10209. left:245px;
  10210. top:611px;
  10211. width:105px;
  10212. height:27px;
  10213. display:flex;
  10214. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10215. font-weight:500;
  10216. font-style:normal;
  10217. font-size:18px;
  10218. color:#298FFF;
  10219. text-align:center;
  10220. line-height:30px;
  10221. }
  10222. #u13207 .text {
  10223. position:absolute;
  10224. align-self:flex-start;
  10225. padding:0px 0px 0px 0px;
  10226. box-sizing:border-box;
  10227. width:100%;
  10228. }
  10229. #u13207_text {
  10230. border-width:0px;
  10231. word-wrap:break-word;
  10232. text-transform:none;
  10233. }
  10234. #u13208 {
  10235. border-width:0px;
  10236. position:absolute;
  10237. left:0px;
  10238. top:0px;
  10239. width:0px;
  10240. height:0px;
  10241. }
  10242. #u13209_div {
  10243. border-width:0px;
  10244. position:absolute;
  10245. left:0px;
  10246. top:0px;
  10247. width:150px;
  10248. height:71px;
  10249. background:inherit;
  10250. background-color:rgba(242, 242, 242, 0.498039215686275);
  10251. border:none;
  10252. border-radius:4px;
  10253. -moz-box-shadow:none;
  10254. -webkit-box-shadow:none;
  10255. box-shadow:none;
  10256. }
  10257. #u13209 {
  10258. border-width:0px;
  10259. position:absolute;
  10260. left:1411px;
  10261. top:527px;
  10262. width:150px;
  10263. height:71px;
  10264. display:flex;
  10265. }
  10266. #u13209 .text {
  10267. position:absolute;
  10268. align-self:center;
  10269. padding:2px 2px 2px 2px;
  10270. box-sizing:border-box;
  10271. width:100%;
  10272. }
  10273. #u13209_text {
  10274. border-width:0px;
  10275. word-wrap:break-word;
  10276. text-transform:none;
  10277. visibility:hidden;
  10278. }
  10279. #u13210_div {
  10280. border-width:0px;
  10281. position:absolute;
  10282. left:0px;
  10283. top:0px;
  10284. width:122px;
  10285. height:27px;
  10286. background:inherit;
  10287. background-color:rgba(255, 255, 255, 0);
  10288. border:none;
  10289. border-left:0px;
  10290. border-top:0px;
  10291. border-right:0px;
  10292. border-radius:0px;
  10293. border-bottom-right-radius:0px;
  10294. border-bottom-left-radius:0px;
  10295. -moz-box-shadow:none;
  10296. -webkit-box-shadow:none;
  10297. box-shadow:none;
  10298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10299. font-weight:400;
  10300. font-style:normal;
  10301. font-size:12px;
  10302. color:#7F7F7F;
  10303. text-align:center;
  10304. line-height:30px;
  10305. }
  10306. #u13210 {
  10307. border-width:0px;
  10308. position:absolute;
  10309. left:1426px;
  10310. top:562px;
  10311. width:122px;
  10312. height:27px;
  10313. display:flex;
  10314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10315. font-weight:400;
  10316. font-style:normal;
  10317. font-size:12px;
  10318. color:#7F7F7F;
  10319. text-align:center;
  10320. line-height:30px;
  10321. }
  10322. #u13210 .text {
  10323. position:absolute;
  10324. align-self:flex-start;
  10325. padding:0px 0px 0px 0px;
  10326. box-sizing:border-box;
  10327. width:100%;
  10328. }
  10329. #u13210_text {
  10330. border-width:0px;
  10331. word-wrap:break-word;
  10332. text-transform:none;
  10333. }
  10334. #u13211_div {
  10335. border-width:0px;
  10336. position:absolute;
  10337. left:0px;
  10338. top:0px;
  10339. width:105px;
  10340. height:27px;
  10341. background:inherit;
  10342. background-color:rgba(255, 255, 255, 0);
  10343. border:none;
  10344. border-left:0px;
  10345. border-top:0px;
  10346. border-right:0px;
  10347. border-radius:0px;
  10348. border-bottom-right-radius:0px;
  10349. border-bottom-left-radius:0px;
  10350. -moz-box-shadow:none;
  10351. -webkit-box-shadow:none;
  10352. box-shadow:none;
  10353. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10354. font-weight:500;
  10355. font-style:normal;
  10356. font-size:18px;
  10357. color:#298FFF;
  10358. text-align:center;
  10359. line-height:30px;
  10360. }
  10361. #u13211 {
  10362. border-width:0px;
  10363. position:absolute;
  10364. left:1434px;
  10365. top:535px;
  10366. width:105px;
  10367. height:27px;
  10368. display:flex;
  10369. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10370. font-weight:500;
  10371. font-style:normal;
  10372. font-size:18px;
  10373. color:#298FFF;
  10374. text-align:center;
  10375. line-height:30px;
  10376. }
  10377. #u13211 .text {
  10378. position:absolute;
  10379. align-self:flex-start;
  10380. padding:0px 0px 0px 0px;
  10381. box-sizing:border-box;
  10382. width:100%;
  10383. }
  10384. #u13211_text {
  10385. border-width:0px;
  10386. word-wrap:break-word;
  10387. text-transform:none;
  10388. }
  10389. #u13212 {
  10390. border-width:0px;
  10391. position:absolute;
  10392. left:0px;
  10393. top:0px;
  10394. width:0px;
  10395. height:0px;
  10396. }
  10397. #u13213_div {
  10398. border-width:0px;
  10399. position:absolute;
  10400. left:0px;
  10401. top:0px;
  10402. width:150px;
  10403. height:71px;
  10404. background:inherit;
  10405. background-color:rgba(242, 242, 242, 0.498039215686275);
  10406. border:none;
  10407. border-radius:4px;
  10408. -moz-box-shadow:none;
  10409. -webkit-box-shadow:none;
  10410. box-shadow:none;
  10411. }
  10412. #u13213 {
  10413. border-width:0px;
  10414. position:absolute;
  10415. left:1584px;
  10416. top:527px;
  10417. width:150px;
  10418. height:71px;
  10419. display:flex;
  10420. }
  10421. #u13213 .text {
  10422. position:absolute;
  10423. align-self:center;
  10424. padding:2px 2px 2px 2px;
  10425. box-sizing:border-box;
  10426. width:100%;
  10427. }
  10428. #u13213_text {
  10429. border-width:0px;
  10430. word-wrap:break-word;
  10431. text-transform:none;
  10432. visibility:hidden;
  10433. }
  10434. #u13214_div {
  10435. border-width:0px;
  10436. position:absolute;
  10437. left:0px;
  10438. top:0px;
  10439. width:122px;
  10440. height:27px;
  10441. background:inherit;
  10442. background-color:rgba(255, 255, 255, 0);
  10443. border:none;
  10444. border-left:0px;
  10445. border-top:0px;
  10446. border-right:0px;
  10447. border-radius:0px;
  10448. border-bottom-right-radius:0px;
  10449. border-bottom-left-radius:0px;
  10450. -moz-box-shadow:none;
  10451. -webkit-box-shadow:none;
  10452. box-shadow:none;
  10453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10454. font-weight:400;
  10455. font-style:normal;
  10456. font-size:12px;
  10457. color:#7F7F7F;
  10458. text-align:center;
  10459. line-height:30px;
  10460. }
  10461. #u13214 {
  10462. border-width:0px;
  10463. position:absolute;
  10464. left:1599px;
  10465. top:562px;
  10466. width:122px;
  10467. height:27px;
  10468. display:flex;
  10469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10470. font-weight:400;
  10471. font-style:normal;
  10472. font-size:12px;
  10473. color:#7F7F7F;
  10474. text-align:center;
  10475. line-height:30px;
  10476. }
  10477. #u13214 .text {
  10478. position:absolute;
  10479. align-self:flex-start;
  10480. padding:0px 0px 0px 0px;
  10481. box-sizing:border-box;
  10482. width:100%;
  10483. }
  10484. #u13214_text {
  10485. border-width:0px;
  10486. word-wrap:break-word;
  10487. text-transform:none;
  10488. }
  10489. #u13215_div {
  10490. border-width:0px;
  10491. position:absolute;
  10492. left:0px;
  10493. top:0px;
  10494. width:105px;
  10495. height:27px;
  10496. background:inherit;
  10497. background-color:rgba(255, 255, 255, 0);
  10498. border:none;
  10499. border-left:0px;
  10500. border-top:0px;
  10501. border-right:0px;
  10502. border-radius:0px;
  10503. border-bottom-right-radius:0px;
  10504. border-bottom-left-radius:0px;
  10505. -moz-box-shadow:none;
  10506. -webkit-box-shadow:none;
  10507. box-shadow:none;
  10508. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10509. font-weight:500;
  10510. font-style:normal;
  10511. font-size:18px;
  10512. color:#298FFF;
  10513. text-align:center;
  10514. line-height:30px;
  10515. }
  10516. #u13215 {
  10517. border-width:0px;
  10518. position:absolute;
  10519. left:1606px;
  10520. top:535px;
  10521. width:105px;
  10522. height:27px;
  10523. display:flex;
  10524. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10525. font-weight:500;
  10526. font-style:normal;
  10527. font-size:18px;
  10528. color:#298FFF;
  10529. text-align:center;
  10530. line-height:30px;
  10531. }
  10532. #u13215 .text {
  10533. position:absolute;
  10534. align-self:flex-start;
  10535. padding:0px 0px 0px 0px;
  10536. box-sizing:border-box;
  10537. width:100%;
  10538. }
  10539. #u13215_text {
  10540. border-width:0px;
  10541. word-wrap:break-word;
  10542. text-transform:none;
  10543. }
  10544. #u13216 {
  10545. border-width:0px;
  10546. position:absolute;
  10547. left:0px;
  10548. top:0px;
  10549. width:0px;
  10550. height:0px;
  10551. }
  10552. #u13217_div {
  10553. border-width:0px;
  10554. position:absolute;
  10555. left:0px;
  10556. top:0px;
  10557. width:150px;
  10558. height:71px;
  10559. background:inherit;
  10560. background-color:rgba(242, 242, 242, 0.498039215686275);
  10561. border:none;
  10562. border-radius:4px;
  10563. -moz-box-shadow:none;
  10564. -webkit-box-shadow:none;
  10565. box-shadow:none;
  10566. }
  10567. #u13217 {
  10568. border-width:0px;
  10569. position:absolute;
  10570. left:1411px;
  10571. top:603px;
  10572. width:150px;
  10573. height:71px;
  10574. display:flex;
  10575. }
  10576. #u13217 .text {
  10577. position:absolute;
  10578. align-self:center;
  10579. padding:2px 2px 2px 2px;
  10580. box-sizing:border-box;
  10581. width:100%;
  10582. }
  10583. #u13217_text {
  10584. border-width:0px;
  10585. word-wrap:break-word;
  10586. text-transform:none;
  10587. visibility:hidden;
  10588. }
  10589. #u13218_div {
  10590. border-width:0px;
  10591. position:absolute;
  10592. left:0px;
  10593. top:0px;
  10594. width:122px;
  10595. height:27px;
  10596. background:inherit;
  10597. background-color:rgba(255, 255, 255, 0);
  10598. border:none;
  10599. border-left:0px;
  10600. border-top:0px;
  10601. border-right:0px;
  10602. border-radius:0px;
  10603. border-bottom-right-radius:0px;
  10604. border-bottom-left-radius:0px;
  10605. -moz-box-shadow:none;
  10606. -webkit-box-shadow:none;
  10607. box-shadow:none;
  10608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10609. font-weight:400;
  10610. font-style:normal;
  10611. font-size:12px;
  10612. color:#7F7F7F;
  10613. text-align:center;
  10614. line-height:30px;
  10615. }
  10616. #u13218 {
  10617. border-width:0px;
  10618. position:absolute;
  10619. left:1426px;
  10620. top:637px;
  10621. width:122px;
  10622. height:27px;
  10623. display:flex;
  10624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10625. font-weight:400;
  10626. font-style:normal;
  10627. font-size:12px;
  10628. color:#7F7F7F;
  10629. text-align:center;
  10630. line-height:30px;
  10631. }
  10632. #u13218 .text {
  10633. position:absolute;
  10634. align-self:flex-start;
  10635. padding:0px 0px 0px 0px;
  10636. box-sizing:border-box;
  10637. width:100%;
  10638. }
  10639. #u13218_text {
  10640. border-width:0px;
  10641. word-wrap:break-word;
  10642. text-transform:none;
  10643. }
  10644. #u13219_div {
  10645. border-width:0px;
  10646. position:absolute;
  10647. left:0px;
  10648. top:0px;
  10649. width:105px;
  10650. height:27px;
  10651. background:inherit;
  10652. background-color:rgba(255, 255, 255, 0);
  10653. border:none;
  10654. border-left:0px;
  10655. border-top:0px;
  10656. border-right:0px;
  10657. border-radius:0px;
  10658. border-bottom-right-radius:0px;
  10659. border-bottom-left-radius:0px;
  10660. -moz-box-shadow:none;
  10661. -webkit-box-shadow:none;
  10662. box-shadow:none;
  10663. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10664. font-weight:500;
  10665. font-style:normal;
  10666. font-size:18px;
  10667. color:#298FFF;
  10668. text-align:center;
  10669. line-height:30px;
  10670. }
  10671. #u13219 {
  10672. border-width:0px;
  10673. position:absolute;
  10674. left:1434px;
  10675. top:611px;
  10676. width:105px;
  10677. height:27px;
  10678. display:flex;
  10679. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10680. font-weight:500;
  10681. font-style:normal;
  10682. font-size:18px;
  10683. color:#298FFF;
  10684. text-align:center;
  10685. line-height:30px;
  10686. }
  10687. #u13219 .text {
  10688. position:absolute;
  10689. align-self:flex-start;
  10690. padding:0px 0px 0px 0px;
  10691. box-sizing:border-box;
  10692. width:100%;
  10693. }
  10694. #u13219_text {
  10695. border-width:0px;
  10696. word-wrap:break-word;
  10697. text-transform:none;
  10698. }
  10699. #u13220 {
  10700. border-width:0px;
  10701. position:absolute;
  10702. left:0px;
  10703. top:0px;
  10704. width:0px;
  10705. height:0px;
  10706. }
  10707. #u13221_div {
  10708. border-width:0px;
  10709. position:absolute;
  10710. left:0px;
  10711. top:0px;
  10712. width:150px;
  10713. height:71px;
  10714. background:inherit;
  10715. background-color:rgba(242, 242, 242, 0.498039215686275);
  10716. border:none;
  10717. border-radius:4px;
  10718. -moz-box-shadow:none;
  10719. -webkit-box-shadow:none;
  10720. box-shadow:none;
  10721. }
  10722. #u13221 {
  10723. border-width:0px;
  10724. position:absolute;
  10725. left:1584px;
  10726. top:603px;
  10727. width:150px;
  10728. height:71px;
  10729. display:flex;
  10730. }
  10731. #u13221 .text {
  10732. position:absolute;
  10733. align-self:center;
  10734. padding:2px 2px 2px 2px;
  10735. box-sizing:border-box;
  10736. width:100%;
  10737. }
  10738. #u13221_text {
  10739. border-width:0px;
  10740. word-wrap:break-word;
  10741. text-transform:none;
  10742. visibility:hidden;
  10743. }
  10744. #u13222_div {
  10745. border-width:0px;
  10746. position:absolute;
  10747. left:0px;
  10748. top:0px;
  10749. width:122px;
  10750. height:27px;
  10751. background:inherit;
  10752. background-color:rgba(255, 255, 255, 0);
  10753. border:none;
  10754. border-left:0px;
  10755. border-top:0px;
  10756. border-right:0px;
  10757. border-radius:0px;
  10758. border-bottom-right-radius:0px;
  10759. border-bottom-left-radius:0px;
  10760. -moz-box-shadow:none;
  10761. -webkit-box-shadow:none;
  10762. box-shadow:none;
  10763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10764. font-weight:400;
  10765. font-style:normal;
  10766. color:#7F7F7F;
  10767. text-align:center;
  10768. line-height:30px;
  10769. }
  10770. #u13222 {
  10771. border-width:0px;
  10772. position:absolute;
  10773. left:1599px;
  10774. top:637px;
  10775. width:122px;
  10776. height:27px;
  10777. display:flex;
  10778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10779. font-weight:400;
  10780. font-style:normal;
  10781. color:#7F7F7F;
  10782. text-align:center;
  10783. line-height:30px;
  10784. }
  10785. #u13222 .text {
  10786. position:absolute;
  10787. align-self:flex-start;
  10788. padding:0px 0px 0px 0px;
  10789. box-sizing:border-box;
  10790. width:100%;
  10791. }
  10792. #u13222_text {
  10793. border-width:0px;
  10794. word-wrap:break-word;
  10795. text-transform:none;
  10796. }
  10797. #u13223_div {
  10798. border-width:0px;
  10799. position:absolute;
  10800. left:0px;
  10801. top:0px;
  10802. width:105px;
  10803. height:27px;
  10804. background:inherit;
  10805. background-color:rgba(255, 255, 255, 0);
  10806. border:none;
  10807. border-left:0px;
  10808. border-top:0px;
  10809. border-right:0px;
  10810. border-radius:0px;
  10811. border-bottom-right-radius:0px;
  10812. border-bottom-left-radius:0px;
  10813. -moz-box-shadow:none;
  10814. -webkit-box-shadow:none;
  10815. box-shadow:none;
  10816. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10817. font-weight:500;
  10818. font-style:normal;
  10819. font-size:18px;
  10820. color:#298FFF;
  10821. text-align:center;
  10822. line-height:30px;
  10823. }
  10824. #u13223 {
  10825. border-width:0px;
  10826. position:absolute;
  10827. left:1606px;
  10828. top:611px;
  10829. width:105px;
  10830. height:27px;
  10831. display:flex;
  10832. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10833. font-weight:500;
  10834. font-style:normal;
  10835. font-size:18px;
  10836. color:#298FFF;
  10837. text-align:center;
  10838. line-height:30px;
  10839. }
  10840. #u13223 .text {
  10841. position:absolute;
  10842. align-self:flex-start;
  10843. padding:0px 0px 0px 0px;
  10844. box-sizing:border-box;
  10845. width:100%;
  10846. }
  10847. #u13223_text {
  10848. border-width:0px;
  10849. word-wrap:break-word;
  10850. text-transform:none;
  10851. }
  10852. #u13224 {
  10853. border-width:0px;
  10854. position:absolute;
  10855. left:0px;
  10856. top:0px;
  10857. width:0px;
  10858. height:0px;
  10859. }
  10860. #u13225_div {
  10861. border-width:0px;
  10862. position:absolute;
  10863. left:0px;
  10864. top:0px;
  10865. width:150px;
  10866. height:71px;
  10867. background:inherit;
  10868. background-color:rgba(242, 242, 242, 0.498039215686275);
  10869. border:none;
  10870. border-radius:4px;
  10871. -moz-box-shadow:none;
  10872. -webkit-box-shadow:none;
  10873. box-shadow:none;
  10874. }
  10875. #u13225 {
  10876. border-width:0px;
  10877. position:absolute;
  10878. left:1865px;
  10879. top:527px;
  10880. width:150px;
  10881. height:71px;
  10882. display:flex;
  10883. }
  10884. #u13225 .text {
  10885. position:absolute;
  10886. align-self:center;
  10887. padding:2px 2px 2px 2px;
  10888. box-sizing:border-box;
  10889. width:100%;
  10890. }
  10891. #u13225_text {
  10892. border-width:0px;
  10893. word-wrap:break-word;
  10894. text-transform:none;
  10895. visibility:hidden;
  10896. }
  10897. #u13226_div {
  10898. border-width:0px;
  10899. position:absolute;
  10900. left:0px;
  10901. top:0px;
  10902. width:122px;
  10903. height:27px;
  10904. background:inherit;
  10905. background-color:rgba(255, 255, 255, 0);
  10906. border:none;
  10907. border-left:0px;
  10908. border-top:0px;
  10909. border-right:0px;
  10910. border-radius:0px;
  10911. border-bottom-right-radius:0px;
  10912. border-bottom-left-radius:0px;
  10913. -moz-box-shadow:none;
  10914. -webkit-box-shadow:none;
  10915. box-shadow:none;
  10916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10917. font-weight:400;
  10918. font-style:normal;
  10919. font-size:12px;
  10920. color:#7F7F7F;
  10921. text-align:center;
  10922. line-height:30px;
  10923. }
  10924. #u13226 {
  10925. border-width:0px;
  10926. position:absolute;
  10927. left:1880px;
  10928. top:562px;
  10929. width:122px;
  10930. height:27px;
  10931. display:flex;
  10932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10933. font-weight:400;
  10934. font-style:normal;
  10935. font-size:12px;
  10936. color:#7F7F7F;
  10937. text-align:center;
  10938. line-height:30px;
  10939. }
  10940. #u13226 .text {
  10941. position:absolute;
  10942. align-self:flex-start;
  10943. padding:0px 0px 0px 0px;
  10944. box-sizing:border-box;
  10945. width:100%;
  10946. }
  10947. #u13226_text {
  10948. border-width:0px;
  10949. word-wrap:break-word;
  10950. text-transform:none;
  10951. }
  10952. #u13227_div {
  10953. border-width:0px;
  10954. position:absolute;
  10955. left:0px;
  10956. top:0px;
  10957. width:105px;
  10958. height:27px;
  10959. background:inherit;
  10960. background-color:rgba(255, 255, 255, 0);
  10961. border:none;
  10962. border-left:0px;
  10963. border-top:0px;
  10964. border-right:0px;
  10965. border-radius:0px;
  10966. border-bottom-right-radius:0px;
  10967. border-bottom-left-radius:0px;
  10968. -moz-box-shadow:none;
  10969. -webkit-box-shadow:none;
  10970. box-shadow:none;
  10971. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10972. font-weight:500;
  10973. font-style:normal;
  10974. font-size:18px;
  10975. color:#298FFF;
  10976. text-align:center;
  10977. line-height:30px;
  10978. }
  10979. #u13227 {
  10980. border-width:0px;
  10981. position:absolute;
  10982. left:1888px;
  10983. top:535px;
  10984. width:105px;
  10985. height:27px;
  10986. display:flex;
  10987. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10988. font-weight:500;
  10989. font-style:normal;
  10990. font-size:18px;
  10991. color:#298FFF;
  10992. text-align:center;
  10993. line-height:30px;
  10994. }
  10995. #u13227 .text {
  10996. position:absolute;
  10997. align-self:flex-start;
  10998. padding:0px 0px 0px 0px;
  10999. box-sizing:border-box;
  11000. width:100%;
  11001. }
  11002. #u13227_text {
  11003. border-width:0px;
  11004. word-wrap:break-word;
  11005. text-transform:none;
  11006. }
  11007. #u13228 {
  11008. border-width:0px;
  11009. position:absolute;
  11010. left:0px;
  11011. top:0px;
  11012. width:0px;
  11013. height:0px;
  11014. }
  11015. #u13229_div {
  11016. border-width:0px;
  11017. position:absolute;
  11018. left:0px;
  11019. top:0px;
  11020. width:150px;
  11021. height:71px;
  11022. background:inherit;
  11023. background-color:rgba(242, 242, 242, 0.498039215686275);
  11024. border:none;
  11025. border-radius:4px;
  11026. -moz-box-shadow:none;
  11027. -webkit-box-shadow:none;
  11028. box-shadow:none;
  11029. }
  11030. #u13229 {
  11031. border-width:0px;
  11032. position:absolute;
  11033. left:2038px;
  11034. top:527px;
  11035. width:150px;
  11036. height:71px;
  11037. display:flex;
  11038. }
  11039. #u13229 .text {
  11040. position:absolute;
  11041. align-self:center;
  11042. padding:2px 2px 2px 2px;
  11043. box-sizing:border-box;
  11044. width:100%;
  11045. }
  11046. #u13229_text {
  11047. border-width:0px;
  11048. word-wrap:break-word;
  11049. text-transform:none;
  11050. visibility:hidden;
  11051. }
  11052. #u13230_div {
  11053. border-width:0px;
  11054. position:absolute;
  11055. left:0px;
  11056. top:0px;
  11057. width:122px;
  11058. height:27px;
  11059. background:inherit;
  11060. background-color:rgba(255, 255, 255, 0);
  11061. border:none;
  11062. border-left:0px;
  11063. border-top:0px;
  11064. border-right:0px;
  11065. border-radius:0px;
  11066. border-bottom-right-radius:0px;
  11067. border-bottom-left-radius:0px;
  11068. -moz-box-shadow:none;
  11069. -webkit-box-shadow:none;
  11070. box-shadow:none;
  11071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11072. font-weight:400;
  11073. font-style:normal;
  11074. font-size:12px;
  11075. color:#7F7F7F;
  11076. text-align:center;
  11077. line-height:30px;
  11078. }
  11079. #u13230 {
  11080. border-width:0px;
  11081. position:absolute;
  11082. left:2053px;
  11083. top:562px;
  11084. width:122px;
  11085. height:27px;
  11086. display:flex;
  11087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11088. font-weight:400;
  11089. font-style:normal;
  11090. font-size:12px;
  11091. color:#7F7F7F;
  11092. text-align:center;
  11093. line-height:30px;
  11094. }
  11095. #u13230 .text {
  11096. position:absolute;
  11097. align-self:flex-start;
  11098. padding:0px 0px 0px 0px;
  11099. box-sizing:border-box;
  11100. width:100%;
  11101. }
  11102. #u13230_text {
  11103. border-width:0px;
  11104. word-wrap:break-word;
  11105. text-transform:none;
  11106. }
  11107. #u13231_div {
  11108. border-width:0px;
  11109. position:absolute;
  11110. left:0px;
  11111. top:0px;
  11112. width:105px;
  11113. height:27px;
  11114. background:inherit;
  11115. background-color:rgba(255, 255, 255, 0);
  11116. border:none;
  11117. border-left:0px;
  11118. border-top:0px;
  11119. border-right:0px;
  11120. border-radius:0px;
  11121. border-bottom-right-radius:0px;
  11122. border-bottom-left-radius:0px;
  11123. -moz-box-shadow:none;
  11124. -webkit-box-shadow:none;
  11125. box-shadow:none;
  11126. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11127. font-weight:500;
  11128. font-style:normal;
  11129. font-size:18px;
  11130. color:#298FFF;
  11131. text-align:center;
  11132. line-height:30px;
  11133. }
  11134. #u13231 {
  11135. border-width:0px;
  11136. position:absolute;
  11137. left:2060px;
  11138. top:535px;
  11139. width:105px;
  11140. height:27px;
  11141. display:flex;
  11142. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11143. font-weight:500;
  11144. font-style:normal;
  11145. font-size:18px;
  11146. color:#298FFF;
  11147. text-align:center;
  11148. line-height:30px;
  11149. }
  11150. #u13231 .text {
  11151. position:absolute;
  11152. align-self:flex-start;
  11153. padding:0px 0px 0px 0px;
  11154. box-sizing:border-box;
  11155. width:100%;
  11156. }
  11157. #u13231_text {
  11158. border-width:0px;
  11159. word-wrap:break-word;
  11160. text-transform:none;
  11161. }
  11162. #u13232 {
  11163. border-width:0px;
  11164. position:absolute;
  11165. left:0px;
  11166. top:0px;
  11167. width:0px;
  11168. height:0px;
  11169. }
  11170. #u13233_div {
  11171. border-width:0px;
  11172. position:absolute;
  11173. left:0px;
  11174. top:0px;
  11175. width:150px;
  11176. height:71px;
  11177. background:inherit;
  11178. background-color:rgba(242, 242, 242, 0.498039215686275);
  11179. border:none;
  11180. border-radius:4px;
  11181. -moz-box-shadow:none;
  11182. -webkit-box-shadow:none;
  11183. box-shadow:none;
  11184. }
  11185. #u13233 {
  11186. border-width:0px;
  11187. position:absolute;
  11188. left:1865px;
  11189. top:603px;
  11190. width:150px;
  11191. height:71px;
  11192. display:flex;
  11193. }
  11194. #u13233 .text {
  11195. position:absolute;
  11196. align-self:center;
  11197. padding:2px 2px 2px 2px;
  11198. box-sizing:border-box;
  11199. width:100%;
  11200. }
  11201. #u13233_text {
  11202. border-width:0px;
  11203. word-wrap:break-word;
  11204. text-transform:none;
  11205. visibility:hidden;
  11206. }
  11207. #u13234_div {
  11208. border-width:0px;
  11209. position:absolute;
  11210. left:0px;
  11211. top:0px;
  11212. width:122px;
  11213. height:27px;
  11214. background:inherit;
  11215. background-color:rgba(255, 255, 255, 0);
  11216. border:none;
  11217. border-left:0px;
  11218. border-top:0px;
  11219. border-right:0px;
  11220. border-radius:0px;
  11221. border-bottom-right-radius:0px;
  11222. border-bottom-left-radius:0px;
  11223. -moz-box-shadow:none;
  11224. -webkit-box-shadow:none;
  11225. box-shadow:none;
  11226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11227. font-weight:400;
  11228. font-style:normal;
  11229. font-size:12px;
  11230. color:#7F7F7F;
  11231. text-align:center;
  11232. line-height:30px;
  11233. }
  11234. #u13234 {
  11235. border-width:0px;
  11236. position:absolute;
  11237. left:1880px;
  11238. top:637px;
  11239. width:122px;
  11240. height:27px;
  11241. display:flex;
  11242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11243. font-weight:400;
  11244. font-style:normal;
  11245. font-size:12px;
  11246. color:#7F7F7F;
  11247. text-align:center;
  11248. line-height:30px;
  11249. }
  11250. #u13234 .text {
  11251. position:absolute;
  11252. align-self:flex-start;
  11253. padding:0px 0px 0px 0px;
  11254. box-sizing:border-box;
  11255. width:100%;
  11256. }
  11257. #u13234_text {
  11258. border-width:0px;
  11259. word-wrap:break-word;
  11260. text-transform:none;
  11261. }
  11262. #u13235_div {
  11263. border-width:0px;
  11264. position:absolute;
  11265. left:0px;
  11266. top:0px;
  11267. width:105px;
  11268. height:27px;
  11269. background:inherit;
  11270. background-color:rgba(255, 255, 255, 0);
  11271. border:none;
  11272. border-left:0px;
  11273. border-top:0px;
  11274. border-right:0px;
  11275. border-radius:0px;
  11276. border-bottom-right-radius:0px;
  11277. border-bottom-left-radius:0px;
  11278. -moz-box-shadow:none;
  11279. -webkit-box-shadow:none;
  11280. box-shadow:none;
  11281. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11282. font-weight:500;
  11283. font-style:normal;
  11284. font-size:18px;
  11285. color:#298FFF;
  11286. text-align:center;
  11287. line-height:30px;
  11288. }
  11289. #u13235 {
  11290. border-width:0px;
  11291. position:absolute;
  11292. left:1888px;
  11293. top:611px;
  11294. width:105px;
  11295. height:27px;
  11296. display:flex;
  11297. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11298. font-weight:500;
  11299. font-style:normal;
  11300. font-size:18px;
  11301. color:#298FFF;
  11302. text-align:center;
  11303. line-height:30px;
  11304. }
  11305. #u13235 .text {
  11306. position:absolute;
  11307. align-self:flex-start;
  11308. padding:0px 0px 0px 0px;
  11309. box-sizing:border-box;
  11310. width:100%;
  11311. }
  11312. #u13235_text {
  11313. border-width:0px;
  11314. word-wrap:break-word;
  11315. text-transform:none;
  11316. }
  11317. #u13236 {
  11318. border-width:0px;
  11319. position:absolute;
  11320. left:0px;
  11321. top:0px;
  11322. width:0px;
  11323. height:0px;
  11324. }
  11325. #u13237_div {
  11326. border-width:0px;
  11327. position:absolute;
  11328. left:0px;
  11329. top:0px;
  11330. width:150px;
  11331. height:71px;
  11332. background:inherit;
  11333. background-color:rgba(242, 242, 242, 0.498039215686275);
  11334. border:none;
  11335. border-radius:4px;
  11336. -moz-box-shadow:none;
  11337. -webkit-box-shadow:none;
  11338. box-shadow:none;
  11339. }
  11340. #u13237 {
  11341. border-width:0px;
  11342. position:absolute;
  11343. left:2038px;
  11344. top:603px;
  11345. width:150px;
  11346. height:71px;
  11347. display:flex;
  11348. }
  11349. #u13237 .text {
  11350. position:absolute;
  11351. align-self:center;
  11352. padding:2px 2px 2px 2px;
  11353. box-sizing:border-box;
  11354. width:100%;
  11355. }
  11356. #u13237_text {
  11357. border-width:0px;
  11358. word-wrap:break-word;
  11359. text-transform:none;
  11360. visibility:hidden;
  11361. }
  11362. #u13238_div {
  11363. border-width:0px;
  11364. position:absolute;
  11365. left:0px;
  11366. top:0px;
  11367. width:122px;
  11368. height:27px;
  11369. background:inherit;
  11370. background-color:rgba(255, 255, 255, 0);
  11371. border:none;
  11372. border-left:0px;
  11373. border-top:0px;
  11374. border-right:0px;
  11375. border-radius:0px;
  11376. border-bottom-right-radius:0px;
  11377. border-bottom-left-radius:0px;
  11378. -moz-box-shadow:none;
  11379. -webkit-box-shadow:none;
  11380. box-shadow:none;
  11381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11382. font-weight:400;
  11383. font-style:normal;
  11384. color:#7F7F7F;
  11385. text-align:center;
  11386. line-height:30px;
  11387. }
  11388. #u13238 {
  11389. border-width:0px;
  11390. position:absolute;
  11391. left:2053px;
  11392. top:637px;
  11393. width:122px;
  11394. height:27px;
  11395. display:flex;
  11396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11397. font-weight:400;
  11398. font-style:normal;
  11399. color:#7F7F7F;
  11400. text-align:center;
  11401. line-height:30px;
  11402. }
  11403. #u13238 .text {
  11404. position:absolute;
  11405. align-self:flex-start;
  11406. padding:0px 0px 0px 0px;
  11407. box-sizing:border-box;
  11408. width:100%;
  11409. }
  11410. #u13238_text {
  11411. border-width:0px;
  11412. word-wrap:break-word;
  11413. text-transform:none;
  11414. }
  11415. #u13239_div {
  11416. border-width:0px;
  11417. position:absolute;
  11418. left:0px;
  11419. top:0px;
  11420. width:105px;
  11421. height:27px;
  11422. background:inherit;
  11423. background-color:rgba(255, 255, 255, 0);
  11424. border:none;
  11425. border-left:0px;
  11426. border-top:0px;
  11427. border-right:0px;
  11428. border-radius:0px;
  11429. border-bottom-right-radius:0px;
  11430. border-bottom-left-radius:0px;
  11431. -moz-box-shadow:none;
  11432. -webkit-box-shadow:none;
  11433. box-shadow:none;
  11434. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11435. font-weight:500;
  11436. font-style:normal;
  11437. font-size:18px;
  11438. color:#298FFF;
  11439. text-align:center;
  11440. line-height:30px;
  11441. }
  11442. #u13239 {
  11443. border-width:0px;
  11444. position:absolute;
  11445. left:2060px;
  11446. top:611px;
  11447. width:105px;
  11448. height:27px;
  11449. display:flex;
  11450. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11451. font-weight:500;
  11452. font-style:normal;
  11453. font-size:18px;
  11454. color:#298FFF;
  11455. text-align:center;
  11456. line-height:30px;
  11457. }
  11458. #u13239 .text {
  11459. position:absolute;
  11460. align-self:flex-start;
  11461. padding:0px 0px 0px 0px;
  11462. box-sizing:border-box;
  11463. width:100%;
  11464. }
  11465. #u13239_text {
  11466. border-width:0px;
  11467. word-wrap:break-word;
  11468. text-transform:none;
  11469. }
  11470. #u13240 {
  11471. border-width:0px;
  11472. position:absolute;
  11473. left:0px;
  11474. top:0px;
  11475. width:0px;
  11476. height:0px;
  11477. }
  11478. #u13241_div {
  11479. border-width:0px;
  11480. position:absolute;
  11481. left:0px;
  11482. top:0px;
  11483. width:150px;
  11484. height:71px;
  11485. background:inherit;
  11486. background-color:rgba(242, 242, 242, 0.498039215686275);
  11487. border:none;
  11488. border-radius:4px;
  11489. -moz-box-shadow:none;
  11490. -webkit-box-shadow:none;
  11491. box-shadow:none;
  11492. }
  11493. #u13241 {
  11494. border-width:0px;
  11495. position:absolute;
  11496. left:2320px;
  11497. top:527px;
  11498. width:150px;
  11499. height:71px;
  11500. display:flex;
  11501. }
  11502. #u13241 .text {
  11503. position:absolute;
  11504. align-self:center;
  11505. padding:2px 2px 2px 2px;
  11506. box-sizing:border-box;
  11507. width:100%;
  11508. }
  11509. #u13241_text {
  11510. border-width:0px;
  11511. word-wrap:break-word;
  11512. text-transform:none;
  11513. visibility:hidden;
  11514. }
  11515. #u13242_div {
  11516. border-width:0px;
  11517. position:absolute;
  11518. left:0px;
  11519. top:0px;
  11520. width:122px;
  11521. height:27px;
  11522. background:inherit;
  11523. background-color:rgba(255, 255, 255, 0);
  11524. border:none;
  11525. border-left:0px;
  11526. border-top:0px;
  11527. border-right:0px;
  11528. border-radius:0px;
  11529. border-bottom-right-radius:0px;
  11530. border-bottom-left-radius:0px;
  11531. -moz-box-shadow:none;
  11532. -webkit-box-shadow:none;
  11533. box-shadow:none;
  11534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11535. font-weight:400;
  11536. font-style:normal;
  11537. font-size:12px;
  11538. color:#7F7F7F;
  11539. text-align:center;
  11540. line-height:30px;
  11541. }
  11542. #u13242 {
  11543. border-width:0px;
  11544. position:absolute;
  11545. left:2335px;
  11546. top:562px;
  11547. width:122px;
  11548. height:27px;
  11549. display:flex;
  11550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11551. font-weight:400;
  11552. font-style:normal;
  11553. font-size:12px;
  11554. color:#7F7F7F;
  11555. text-align:center;
  11556. line-height:30px;
  11557. }
  11558. #u13242 .text {
  11559. position:absolute;
  11560. align-self:flex-start;
  11561. padding:0px 0px 0px 0px;
  11562. box-sizing:border-box;
  11563. width:100%;
  11564. }
  11565. #u13242_text {
  11566. border-width:0px;
  11567. word-wrap:break-word;
  11568. text-transform:none;
  11569. }
  11570. #u13243_div {
  11571. border-width:0px;
  11572. position:absolute;
  11573. left:0px;
  11574. top:0px;
  11575. width:105px;
  11576. height:27px;
  11577. background:inherit;
  11578. background-color:rgba(255, 255, 255, 0);
  11579. border:none;
  11580. border-left:0px;
  11581. border-top:0px;
  11582. border-right:0px;
  11583. border-radius:0px;
  11584. border-bottom-right-radius:0px;
  11585. border-bottom-left-radius:0px;
  11586. -moz-box-shadow:none;
  11587. -webkit-box-shadow:none;
  11588. box-shadow:none;
  11589. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11590. font-weight:500;
  11591. font-style:normal;
  11592. font-size:18px;
  11593. color:#298FFF;
  11594. text-align:center;
  11595. line-height:30px;
  11596. }
  11597. #u13243 {
  11598. border-width:0px;
  11599. position:absolute;
  11600. left:2343px;
  11601. top:535px;
  11602. width:105px;
  11603. height:27px;
  11604. display:flex;
  11605. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11606. font-weight:500;
  11607. font-style:normal;
  11608. font-size:18px;
  11609. color:#298FFF;
  11610. text-align:center;
  11611. line-height:30px;
  11612. }
  11613. #u13243 .text {
  11614. position:absolute;
  11615. align-self:flex-start;
  11616. padding:0px 0px 0px 0px;
  11617. box-sizing:border-box;
  11618. width:100%;
  11619. }
  11620. #u13243_text {
  11621. border-width:0px;
  11622. word-wrap:break-word;
  11623. text-transform:none;
  11624. }
  11625. #u13244 {
  11626. border-width:0px;
  11627. position:absolute;
  11628. left:0px;
  11629. top:0px;
  11630. width:0px;
  11631. height:0px;
  11632. }
  11633. #u13245_div {
  11634. border-width:0px;
  11635. position:absolute;
  11636. left:0px;
  11637. top:0px;
  11638. width:150px;
  11639. height:71px;
  11640. background:inherit;
  11641. background-color:rgba(242, 242, 242, 0.498039215686275);
  11642. border:none;
  11643. border-radius:4px;
  11644. -moz-box-shadow:none;
  11645. -webkit-box-shadow:none;
  11646. box-shadow:none;
  11647. }
  11648. #u13245 {
  11649. border-width:0px;
  11650. position:absolute;
  11651. left:2493px;
  11652. top:527px;
  11653. width:150px;
  11654. height:71px;
  11655. display:flex;
  11656. }
  11657. #u13245 .text {
  11658. position:absolute;
  11659. align-self:center;
  11660. padding:2px 2px 2px 2px;
  11661. box-sizing:border-box;
  11662. width:100%;
  11663. }
  11664. #u13245_text {
  11665. border-width:0px;
  11666. word-wrap:break-word;
  11667. text-transform:none;
  11668. visibility:hidden;
  11669. }
  11670. #u13246_div {
  11671. border-width:0px;
  11672. position:absolute;
  11673. left:0px;
  11674. top:0px;
  11675. width:122px;
  11676. height:27px;
  11677. background:inherit;
  11678. background-color:rgba(255, 255, 255, 0);
  11679. border:none;
  11680. border-left:0px;
  11681. border-top:0px;
  11682. border-right:0px;
  11683. border-radius:0px;
  11684. border-bottom-right-radius:0px;
  11685. border-bottom-left-radius:0px;
  11686. -moz-box-shadow:none;
  11687. -webkit-box-shadow:none;
  11688. box-shadow:none;
  11689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11690. font-weight:400;
  11691. font-style:normal;
  11692. font-size:12px;
  11693. color:#7F7F7F;
  11694. text-align:center;
  11695. line-height:30px;
  11696. }
  11697. #u13246 {
  11698. border-width:0px;
  11699. position:absolute;
  11700. left:2508px;
  11701. top:562px;
  11702. width:122px;
  11703. height:27px;
  11704. display:flex;
  11705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11706. font-weight:400;
  11707. font-style:normal;
  11708. font-size:12px;
  11709. color:#7F7F7F;
  11710. text-align:center;
  11711. line-height:30px;
  11712. }
  11713. #u13246 .text {
  11714. position:absolute;
  11715. align-self:flex-start;
  11716. padding:0px 0px 0px 0px;
  11717. box-sizing:border-box;
  11718. width:100%;
  11719. }
  11720. #u13246_text {
  11721. border-width:0px;
  11722. word-wrap:break-word;
  11723. text-transform:none;
  11724. }
  11725. #u13247_div {
  11726. border-width:0px;
  11727. position:absolute;
  11728. left:0px;
  11729. top:0px;
  11730. width:105px;
  11731. height:27px;
  11732. background:inherit;
  11733. background-color:rgba(255, 255, 255, 0);
  11734. border:none;
  11735. border-left:0px;
  11736. border-top:0px;
  11737. border-right:0px;
  11738. border-radius:0px;
  11739. border-bottom-right-radius:0px;
  11740. border-bottom-left-radius:0px;
  11741. -moz-box-shadow:none;
  11742. -webkit-box-shadow:none;
  11743. box-shadow:none;
  11744. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11745. font-weight:500;
  11746. font-style:normal;
  11747. font-size:18px;
  11748. color:#298FFF;
  11749. text-align:center;
  11750. line-height:30px;
  11751. }
  11752. #u13247 {
  11753. border-width:0px;
  11754. position:absolute;
  11755. left:2515px;
  11756. top:535px;
  11757. width:105px;
  11758. height:27px;
  11759. display:flex;
  11760. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11761. font-weight:500;
  11762. font-style:normal;
  11763. font-size:18px;
  11764. color:#298FFF;
  11765. text-align:center;
  11766. line-height:30px;
  11767. }
  11768. #u13247 .text {
  11769. position:absolute;
  11770. align-self:flex-start;
  11771. padding:0px 0px 0px 0px;
  11772. box-sizing:border-box;
  11773. width:100%;
  11774. }
  11775. #u13247_text {
  11776. border-width:0px;
  11777. word-wrap:break-word;
  11778. text-transform:none;
  11779. }
  11780. #u13248 {
  11781. border-width:0px;
  11782. position:absolute;
  11783. left:0px;
  11784. top:0px;
  11785. width:0px;
  11786. height:0px;
  11787. }
  11788. #u13249_div {
  11789. border-width:0px;
  11790. position:absolute;
  11791. left:0px;
  11792. top:0px;
  11793. width:150px;
  11794. height:71px;
  11795. background:inherit;
  11796. background-color:rgba(242, 242, 242, 0.498039215686275);
  11797. border:none;
  11798. border-radius:4px;
  11799. -moz-box-shadow:none;
  11800. -webkit-box-shadow:none;
  11801. box-shadow:none;
  11802. }
  11803. #u13249 {
  11804. border-width:0px;
  11805. position:absolute;
  11806. left:2320px;
  11807. top:603px;
  11808. width:150px;
  11809. height:71px;
  11810. display:flex;
  11811. }
  11812. #u13249 .text {
  11813. position:absolute;
  11814. align-self:center;
  11815. padding:2px 2px 2px 2px;
  11816. box-sizing:border-box;
  11817. width:100%;
  11818. }
  11819. #u13249_text {
  11820. border-width:0px;
  11821. word-wrap:break-word;
  11822. text-transform:none;
  11823. visibility:hidden;
  11824. }
  11825. #u13250_div {
  11826. border-width:0px;
  11827. position:absolute;
  11828. left:0px;
  11829. top:0px;
  11830. width:122px;
  11831. height:27px;
  11832. background:inherit;
  11833. background-color:rgba(255, 255, 255, 0);
  11834. border:none;
  11835. border-left:0px;
  11836. border-top:0px;
  11837. border-right:0px;
  11838. border-radius:0px;
  11839. border-bottom-right-radius:0px;
  11840. border-bottom-left-radius:0px;
  11841. -moz-box-shadow:none;
  11842. -webkit-box-shadow:none;
  11843. box-shadow:none;
  11844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11845. font-weight:400;
  11846. font-style:normal;
  11847. font-size:12px;
  11848. color:#7F7F7F;
  11849. text-align:center;
  11850. line-height:30px;
  11851. }
  11852. #u13250 {
  11853. border-width:0px;
  11854. position:absolute;
  11855. left:2335px;
  11856. top:637px;
  11857. width:122px;
  11858. height:27px;
  11859. display:flex;
  11860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11861. font-weight:400;
  11862. font-style:normal;
  11863. font-size:12px;
  11864. color:#7F7F7F;
  11865. text-align:center;
  11866. line-height:30px;
  11867. }
  11868. #u13250 .text {
  11869. position:absolute;
  11870. align-self:flex-start;
  11871. padding:0px 0px 0px 0px;
  11872. box-sizing:border-box;
  11873. width:100%;
  11874. }
  11875. #u13250_text {
  11876. border-width:0px;
  11877. word-wrap:break-word;
  11878. text-transform:none;
  11879. }
  11880. #u13251_div {
  11881. border-width:0px;
  11882. position:absolute;
  11883. left:0px;
  11884. top:0px;
  11885. width:105px;
  11886. height:27px;
  11887. background:inherit;
  11888. background-color:rgba(255, 255, 255, 0);
  11889. border:none;
  11890. border-left:0px;
  11891. border-top:0px;
  11892. border-right:0px;
  11893. border-radius:0px;
  11894. border-bottom-right-radius:0px;
  11895. border-bottom-left-radius:0px;
  11896. -moz-box-shadow:none;
  11897. -webkit-box-shadow:none;
  11898. box-shadow:none;
  11899. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11900. font-weight:500;
  11901. font-style:normal;
  11902. font-size:18px;
  11903. color:#298FFF;
  11904. text-align:center;
  11905. line-height:30px;
  11906. }
  11907. #u13251 {
  11908. border-width:0px;
  11909. position:absolute;
  11910. left:2343px;
  11911. top:611px;
  11912. width:105px;
  11913. height:27px;
  11914. display:flex;
  11915. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11916. font-weight:500;
  11917. font-style:normal;
  11918. font-size:18px;
  11919. color:#298FFF;
  11920. text-align:center;
  11921. line-height:30px;
  11922. }
  11923. #u13251 .text {
  11924. position:absolute;
  11925. align-self:flex-start;
  11926. padding:0px 0px 0px 0px;
  11927. box-sizing:border-box;
  11928. width:100%;
  11929. }
  11930. #u13251_text {
  11931. border-width:0px;
  11932. word-wrap:break-word;
  11933. text-transform:none;
  11934. }
  11935. #u13252 {
  11936. border-width:0px;
  11937. position:absolute;
  11938. left:0px;
  11939. top:0px;
  11940. width:0px;
  11941. height:0px;
  11942. }
  11943. #u13253_div {
  11944. border-width:0px;
  11945. position:absolute;
  11946. left:0px;
  11947. top:0px;
  11948. width:150px;
  11949. height:71px;
  11950. background:inherit;
  11951. background-color:rgba(242, 242, 242, 0.498039215686275);
  11952. border:none;
  11953. border-radius:4px;
  11954. -moz-box-shadow:none;
  11955. -webkit-box-shadow:none;
  11956. box-shadow:none;
  11957. }
  11958. #u13253 {
  11959. border-width:0px;
  11960. position:absolute;
  11961. left:2493px;
  11962. top:603px;
  11963. width:150px;
  11964. height:71px;
  11965. display:flex;
  11966. }
  11967. #u13253 .text {
  11968. position:absolute;
  11969. align-self:center;
  11970. padding:2px 2px 2px 2px;
  11971. box-sizing:border-box;
  11972. width:100%;
  11973. }
  11974. #u13253_text {
  11975. border-width:0px;
  11976. word-wrap:break-word;
  11977. text-transform:none;
  11978. visibility:hidden;
  11979. }
  11980. #u13254_div {
  11981. border-width:0px;
  11982. position:absolute;
  11983. left:0px;
  11984. top:0px;
  11985. width:122px;
  11986. height:27px;
  11987. background:inherit;
  11988. background-color:rgba(255, 255, 255, 0);
  11989. border:none;
  11990. border-left:0px;
  11991. border-top:0px;
  11992. border-right:0px;
  11993. border-radius:0px;
  11994. border-bottom-right-radius:0px;
  11995. border-bottom-left-radius:0px;
  11996. -moz-box-shadow:none;
  11997. -webkit-box-shadow:none;
  11998. box-shadow:none;
  11999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12000. font-weight:400;
  12001. font-style:normal;
  12002. color:#7F7F7F;
  12003. text-align:center;
  12004. line-height:30px;
  12005. }
  12006. #u13254 {
  12007. border-width:0px;
  12008. position:absolute;
  12009. left:2508px;
  12010. top:637px;
  12011. width:122px;
  12012. height:27px;
  12013. display:flex;
  12014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12015. font-weight:400;
  12016. font-style:normal;
  12017. color:#7F7F7F;
  12018. text-align:center;
  12019. line-height:30px;
  12020. }
  12021. #u13254 .text {
  12022. position:absolute;
  12023. align-self:flex-start;
  12024. padding:0px 0px 0px 0px;
  12025. box-sizing:border-box;
  12026. width:100%;
  12027. }
  12028. #u13254_text {
  12029. border-width:0px;
  12030. word-wrap:break-word;
  12031. text-transform:none;
  12032. }
  12033. #u13255_div {
  12034. border-width:0px;
  12035. position:absolute;
  12036. left:0px;
  12037. top:0px;
  12038. width:105px;
  12039. height:27px;
  12040. background:inherit;
  12041. background-color:rgba(255, 255, 255, 0);
  12042. border:none;
  12043. border-left:0px;
  12044. border-top:0px;
  12045. border-right:0px;
  12046. border-radius:0px;
  12047. border-bottom-right-radius:0px;
  12048. border-bottom-left-radius:0px;
  12049. -moz-box-shadow:none;
  12050. -webkit-box-shadow:none;
  12051. box-shadow:none;
  12052. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12053. font-weight:500;
  12054. font-style:normal;
  12055. font-size:18px;
  12056. color:#298FFF;
  12057. text-align:center;
  12058. line-height:30px;
  12059. }
  12060. #u13255 {
  12061. border-width:0px;
  12062. position:absolute;
  12063. left:2515px;
  12064. top:611px;
  12065. width:105px;
  12066. height:27px;
  12067. display:flex;
  12068. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12069. font-weight:500;
  12070. font-style:normal;
  12071. font-size:18px;
  12072. color:#298FFF;
  12073. text-align:center;
  12074. line-height:30px;
  12075. }
  12076. #u13255 .text {
  12077. position:absolute;
  12078. align-self:flex-start;
  12079. padding:0px 0px 0px 0px;
  12080. box-sizing:border-box;
  12081. width:100%;
  12082. }
  12083. #u13255_text {
  12084. border-width:0px;
  12085. word-wrap:break-word;
  12086. text-transform:none;
  12087. }
  12088. #u13257_img {
  12089. border-width:0px;
  12090. position:absolute;
  12091. left:0px;
  12092. top:0px;
  12093. width:433px;
  12094. height:865px;
  12095. }
  12096. #u13257 {
  12097. border-width:0px;
  12098. position:absolute;
  12099. left:453px;
  12100. top:0px;
  12101. width:433px;
  12102. height:865px;
  12103. display:flex;
  12104. }
  12105. #u13257 .text {
  12106. position:absolute;
  12107. align-self:center;
  12108. padding:2px 2px 2px 2px;
  12109. box-sizing:border-box;
  12110. width:100%;
  12111. }
  12112. #u13257_text {
  12113. border-width:0px;
  12114. word-wrap:break-word;
  12115. text-transform:none;
  12116. visibility:hidden;
  12117. }
  12118. #u13258_div {
  12119. border-width:0px;
  12120. position:absolute;
  12121. left:0px;
  12122. top:0px;
  12123. width:375px;
  12124. height:40px;
  12125. background:inherit;
  12126. background-color:rgba(255, 255, 255, 1);
  12127. box-sizing:border-box;
  12128. border-width:1px;
  12129. border-style:solid;
  12130. border-color:rgba(215, 215, 215, 1);
  12131. border-left:0px;
  12132. border-top:0px;
  12133. border-right:0px;
  12134. border-radius:0px;
  12135. border-bottom-right-radius:0px;
  12136. border-bottom-left-radius:0px;
  12137. -moz-box-shadow:none;
  12138. -webkit-box-shadow:none;
  12139. box-shadow:none;
  12140. }
  12141. #u13258 {
  12142. border-width:0px;
  12143. position:absolute;
  12144. left:482px;
  12145. top:67px;
  12146. width:375px;
  12147. height:40px;
  12148. display:flex;
  12149. }
  12150. #u13258 .text {
  12151. position:absolute;
  12152. align-self:center;
  12153. padding:2px 2px 2px 2px;
  12154. box-sizing:border-box;
  12155. width:100%;
  12156. }
  12157. #u13258_text {
  12158. border-width:0px;
  12159. word-wrap:break-word;
  12160. text-transform:none;
  12161. visibility:hidden;
  12162. }
  12163. #u13259 {
  12164. border-width:0px;
  12165. position:absolute;
  12166. left:0px;
  12167. top:0px;
  12168. width:0px;
  12169. height:0px;
  12170. }
  12171. #u13260_div {
  12172. border-width:0px;
  12173. position:absolute;
  12174. left:0px;
  12175. top:0px;
  12176. width:88px;
  12177. height:32px;
  12178. background:inherit;
  12179. background-color:rgba(255, 255, 255, 1);
  12180. box-sizing:border-box;
  12181. border-width:1px;
  12182. border-style:solid;
  12183. border-color:rgba(242, 242, 242, 1);
  12184. border-radius:33px;
  12185. -moz-box-shadow:none;
  12186. -webkit-box-shadow:none;
  12187. box-shadow:none;
  12188. }
  12189. #u13260 {
  12190. border-width:0px;
  12191. position:absolute;
  12192. left:762px;
  12193. top:71px;
  12194. width:88px;
  12195. height:32px;
  12196. display:flex;
  12197. }
  12198. #u13260 .text {
  12199. position:absolute;
  12200. align-self:center;
  12201. padding:2px 2px 2px 2px;
  12202. box-sizing:border-box;
  12203. width:100%;
  12204. }
  12205. #u13260_text {
  12206. border-width:0px;
  12207. word-wrap:break-word;
  12208. text-transform:none;
  12209. visibility:hidden;
  12210. }
  12211. #u13261 {
  12212. border-width:0px;
  12213. position:absolute;
  12214. left:0px;
  12215. top:0px;
  12216. width:0px;
  12217. height:0px;
  12218. }
  12219. #u13262_img {
  12220. border-width:0px;
  12221. position:absolute;
  12222. left:0px;
  12223. top:0px;
  12224. width:18px;
  12225. height:18px;
  12226. }
  12227. #u13262 {
  12228. border-width:0px;
  12229. position:absolute;
  12230. left:825px;
  12231. top:78px;
  12232. width:18px;
  12233. height:18px;
  12234. display:flex;
  12235. }
  12236. #u13262 .text {
  12237. position:absolute;
  12238. align-self:center;
  12239. padding:2px 2px 2px 2px;
  12240. box-sizing:border-box;
  12241. width:100%;
  12242. }
  12243. #u13262_text {
  12244. border-width:0px;
  12245. word-wrap:break-word;
  12246. text-transform:none;
  12247. visibility:hidden;
  12248. }
  12249. #u13263_img {
  12250. border-width:0px;
  12251. position:absolute;
  12252. left:0px;
  12253. top:0px;
  12254. width:6px;
  12255. height:6px;
  12256. }
  12257. #u13263 {
  12258. border-width:0px;
  12259. position:absolute;
  12260. left:831px;
  12261. top:84px;
  12262. width:6px;
  12263. height:6px;
  12264. display:flex;
  12265. }
  12266. #u13263 .text {
  12267. position:absolute;
  12268. align-self:center;
  12269. padding:2px 2px 2px 2px;
  12270. box-sizing:border-box;
  12271. width:100%;
  12272. }
  12273. #u13263_text {
  12274. border-width:0px;
  12275. word-wrap:break-word;
  12276. text-transform:none;
  12277. visibility:hidden;
  12278. }
  12279. #u13264 {
  12280. border-width:0px;
  12281. position:absolute;
  12282. left:0px;
  12283. top:0px;
  12284. width:0px;
  12285. height:0px;
  12286. }
  12287. #u13265_img {
  12288. border-width:0px;
  12289. position:absolute;
  12290. left:0px;
  12291. top:0px;
  12292. width:5px;
  12293. height:5px;
  12294. }
  12295. #u13265 {
  12296. border-width:0px;
  12297. position:absolute;
  12298. left:776px;
  12299. top:85px;
  12300. width:5px;
  12301. height:5px;
  12302. display:flex;
  12303. }
  12304. #u13265 .text {
  12305. position:absolute;
  12306. align-self:center;
  12307. padding:2px 2px 2px 2px;
  12308. box-sizing:border-box;
  12309. width:100%;
  12310. }
  12311. #u13265_text {
  12312. border-width:0px;
  12313. word-wrap:break-word;
  12314. text-transform:none;
  12315. visibility:hidden;
  12316. }
  12317. #u13266_img {
  12318. border-width:0px;
  12319. position:absolute;
  12320. left:0px;
  12321. top:0px;
  12322. width:5px;
  12323. height:5px;
  12324. }
  12325. #u13266 {
  12326. border-width:0px;
  12327. position:absolute;
  12328. left:792px;
  12329. top:85px;
  12330. width:5px;
  12331. height:5px;
  12332. display:flex;
  12333. }
  12334. #u13266 .text {
  12335. position:absolute;
  12336. align-self:center;
  12337. padding:2px 2px 2px 2px;
  12338. box-sizing:border-box;
  12339. width:100%;
  12340. }
  12341. #u13266_text {
  12342. border-width:0px;
  12343. word-wrap:break-word;
  12344. text-transform:none;
  12345. visibility:hidden;
  12346. }
  12347. #u13267_img {
  12348. border-width:0px;
  12349. position:absolute;
  12350. left:0px;
  12351. top:0px;
  12352. width:7px;
  12353. height:7px;
  12354. }
  12355. #u13267 {
  12356. border-width:0px;
  12357. position:absolute;
  12358. left:783px;
  12359. top:84px;
  12360. width:7px;
  12361. height:7px;
  12362. display:flex;
  12363. }
  12364. #u13267 .text {
  12365. position:absolute;
  12366. align-self:center;
  12367. padding:2px 2px 2px 2px;
  12368. box-sizing:border-box;
  12369. width:100%;
  12370. }
  12371. #u13267_text {
  12372. border-width:0px;
  12373. word-wrap:break-word;
  12374. text-transform:none;
  12375. visibility:hidden;
  12376. }
  12377. #u13268_img {
  12378. border-width:0px;
  12379. position:absolute;
  12380. left:0px;
  12381. top:0px;
  12382. width:19px;
  12383. height:2px;
  12384. }
  12385. #u13268 {
  12386. border-width:0px;
  12387. position:absolute;
  12388. left:800px;
  12389. top:87px;
  12390. width:18px;
  12391. height:1px;
  12392. display:flex;
  12393. -webkit-transform:rotate(90deg);
  12394. -moz-transform:rotate(90deg);
  12395. -ms-transform:rotate(90deg);
  12396. transform:rotate(90deg);
  12397. }
  12398. #u13268 .text {
  12399. position:absolute;
  12400. align-self:center;
  12401. padding:2px 2px 2px 2px;
  12402. box-sizing:border-box;
  12403. width:100%;
  12404. }
  12405. #u13268_text {
  12406. border-width:0px;
  12407. word-wrap:break-word;
  12408. text-transform:none;
  12409. visibility:hidden;
  12410. }
  12411. #u13269_img {
  12412. border-width:0px;
  12413. position:absolute;
  12414. left:0px;
  12415. top:0px;
  12416. width:375px;
  12417. height:44px;
  12418. }
  12419. #u13269 {
  12420. border-width:0px;
  12421. position:absolute;
  12422. left:482px;
  12423. top:24px;
  12424. width:375px;
  12425. height:44px;
  12426. display:flex;
  12427. }
  12428. #u13269 .text {
  12429. position:absolute;
  12430. align-self:center;
  12431. padding:2px 2px 2px 2px;
  12432. box-sizing:border-box;
  12433. width:100%;
  12434. }
  12435. #u13269_text {
  12436. border-width:0px;
  12437. word-wrap:break-word;
  12438. text-transform:none;
  12439. visibility:hidden;
  12440. }
  12441. #u13270_div {
  12442. border-width:0px;
  12443. position:absolute;
  12444. left:0px;
  12445. top:0px;
  12446. width:375px;
  12447. height:50px;
  12448. background:inherit;
  12449. background-color:rgba(255, 255, 255, 1);
  12450. box-sizing:border-box;
  12451. border-width:1px;
  12452. border-style:solid;
  12453. border-color:rgba(242, 242, 242, 1);
  12454. border-radius:26px;
  12455. border-top-left-radius:0px;
  12456. border-top-right-radius:0px;
  12457. -moz-box-shadow:none;
  12458. -webkit-box-shadow:none;
  12459. box-shadow:none;
  12460. }
  12461. #u13270 {
  12462. border-width:0px;
  12463. position:absolute;
  12464. left:482px;
  12465. top:788px;
  12466. width:375px;
  12467. height:50px;
  12468. display:flex;
  12469. }
  12470. #u13270 .text {
  12471. position:absolute;
  12472. align-self:center;
  12473. padding:2px 2px 2px 2px;
  12474. box-sizing:border-box;
  12475. width:100%;
  12476. }
  12477. #u13270_text {
  12478. border-width:0px;
  12479. word-wrap:break-word;
  12480. text-transform:none;
  12481. visibility:hidden;
  12482. }
  12483. #u13271 {
  12484. border-width:0px;
  12485. position:absolute;
  12486. left:0px;
  12487. top:0px;
  12488. width:0px;
  12489. height:0px;
  12490. }
  12491. #u13272_img {
  12492. border-width:0px;
  12493. position:absolute;
  12494. left:0px;
  12495. top:0px;
  12496. width:24px;
  12497. height:24px;
  12498. }
  12499. #u13272 {
  12500. border-width:0px;
  12501. position:absolute;
  12502. left:522px;
  12503. top:792px;
  12504. width:24px;
  12505. height:24px;
  12506. display:flex;
  12507. font-size:8px;
  12508. }
  12509. #u13272 .text {
  12510. position:absolute;
  12511. align-self:center;
  12512. padding:2px 2px 2px 2px;
  12513. box-sizing:border-box;
  12514. width:100%;
  12515. }
  12516. #u13272_text {
  12517. border-width:0px;
  12518. word-wrap:break-word;
  12519. text-transform:none;
  12520. }
  12521. #u13273_div {
  12522. border-width:0px;
  12523. position:absolute;
  12524. left:0px;
  12525. top:0px;
  12526. width:25px;
  12527. height:17px;
  12528. background:inherit;
  12529. background-color:rgba(255, 255, 255, 0);
  12530. border:none;
  12531. border-radius:0px;
  12532. -moz-box-shadow:none;
  12533. -webkit-box-shadow:none;
  12534. box-shadow:none;
  12535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12536. font-weight:400;
  12537. font-style:normal;
  12538. font-size:12px;
  12539. }
  12540. #u13273 {
  12541. border-width:0px;
  12542. position:absolute;
  12543. left:522px;
  12544. top:817px;
  12545. width:25px;
  12546. height:17px;
  12547. display:flex;
  12548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12549. font-weight:400;
  12550. font-style:normal;
  12551. font-size:12px;
  12552. }
  12553. #u13273 .text {
  12554. position:absolute;
  12555. align-self:flex-start;
  12556. padding:0px 0px 0px 0px;
  12557. box-sizing:border-box;
  12558. width:100%;
  12559. }
  12560. #u13273_text {
  12561. border-width:0px;
  12562. white-space:nowrap;
  12563. text-transform:none;
  12564. }
  12565. #u13274 {
  12566. border-width:0px;
  12567. position:absolute;
  12568. left:0px;
  12569. top:0px;
  12570. width:0px;
  12571. height:0px;
  12572. }
  12573. #u13275_img {
  12574. border-width:0px;
  12575. position:absolute;
  12576. left:0px;
  12577. top:0px;
  12578. width:24px;
  12579. height:24px;
  12580. }
  12581. #u13275 {
  12582. border-width:0px;
  12583. position:absolute;
  12584. left:792px;
  12585. top:794px;
  12586. width:24px;
  12587. height:24px;
  12588. display:flex;
  12589. font-size:8px;
  12590. }
  12591. #u13275 .text {
  12592. position:absolute;
  12593. align-self:center;
  12594. padding:2px 2px 2px 2px;
  12595. box-sizing:border-box;
  12596. width:100%;
  12597. }
  12598. #u13275_text {
  12599. border-width:0px;
  12600. word-wrap:break-word;
  12601. text-transform:none;
  12602. }
  12603. #u13276_div {
  12604. border-width:0px;
  12605. position:absolute;
  12606. left:0px;
  12607. top:0px;
  12608. width:25px;
  12609. height:17px;
  12610. background:inherit;
  12611. background-color:rgba(255, 255, 255, 0);
  12612. border:none;
  12613. border-radius:0px;
  12614. -moz-box-shadow:none;
  12615. -webkit-box-shadow:none;
  12616. box-shadow:none;
  12617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12618. font-weight:400;
  12619. font-style:normal;
  12620. font-size:12px;
  12621. }
  12622. #u13276 {
  12623. border-width:0px;
  12624. position:absolute;
  12625. left:792px;
  12626. top:819px;
  12627. width:25px;
  12628. height:17px;
  12629. display:flex;
  12630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12631. font-weight:400;
  12632. font-style:normal;
  12633. font-size:12px;
  12634. }
  12635. #u13276 .text {
  12636. position:absolute;
  12637. align-self:flex-start;
  12638. padding:0px 0px 0px 0px;
  12639. box-sizing:border-box;
  12640. width:100%;
  12641. }
  12642. #u13276_text {
  12643. border-width:0px;
  12644. white-space:nowrap;
  12645. text-transform:none;
  12646. }
  12647. #u13277_div {
  12648. border-width:0px;
  12649. position:absolute;
  12650. left:0px;
  12651. top:0px;
  12652. width:375px;
  12653. height:681px;
  12654. background:inherit;
  12655. background-color:rgba(242, 242, 242, 0.462745098039216);
  12656. border:none;
  12657. border-radius:0px;
  12658. -moz-box-shadow:none;
  12659. -webkit-box-shadow:none;
  12660. box-shadow:none;
  12661. }
  12662. #u13277 {
  12663. border-width:0px;
  12664. position:absolute;
  12665. left:482px;
  12666. top:107px;
  12667. width:375px;
  12668. height:681px;
  12669. display:flex;
  12670. }
  12671. #u13277 .text {
  12672. position:absolute;
  12673. align-self:center;
  12674. padding:2px 2px 2px 2px;
  12675. box-sizing:border-box;
  12676. width:100%;
  12677. }
  12678. #u13277_text {
  12679. border-width:0px;
  12680. word-wrap:break-word;
  12681. text-transform:none;
  12682. visibility:hidden;
  12683. }
  12684. #u13278 {
  12685. border-width:0px;
  12686. position:absolute;
  12687. left:0px;
  12688. top:0px;
  12689. width:0px;
  12690. height:0px;
  12691. }
  12692. #u13279_img {
  12693. border-width:0px;
  12694. position:absolute;
  12695. left:0px;
  12696. top:0px;
  12697. width:24px;
  12698. height:24px;
  12699. }
  12700. #u13279 {
  12701. border-width:0px;
  12702. position:absolute;
  12703. left:704px;
  12704. top:792px;
  12705. width:24px;
  12706. height:24px;
  12707. display:flex;
  12708. font-size:8px;
  12709. }
  12710. #u13279 .text {
  12711. position:absolute;
  12712. align-self:center;
  12713. padding:2px 2px 2px 2px;
  12714. box-sizing:border-box;
  12715. width:100%;
  12716. }
  12717. #u13279_text {
  12718. border-width:0px;
  12719. word-wrap:break-word;
  12720. text-transform:none;
  12721. }
  12722. #u13280_div {
  12723. border-width:0px;
  12724. position:absolute;
  12725. left:0px;
  12726. top:0px;
  12727. width:37px;
  12728. height:17px;
  12729. background:inherit;
  12730. background-color:rgba(255, 255, 255, 0);
  12731. border:none;
  12732. border-radius:0px;
  12733. -moz-box-shadow:none;
  12734. -webkit-box-shadow:none;
  12735. box-shadow:none;
  12736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12737. font-weight:400;
  12738. font-style:normal;
  12739. font-size:12px;
  12740. }
  12741. #u13280 {
  12742. border-width:0px;
  12743. position:absolute;
  12744. left:698px;
  12745. top:817px;
  12746. width:37px;
  12747. height:17px;
  12748. display:flex;
  12749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12750. font-weight:400;
  12751. font-style:normal;
  12752. font-size:12px;
  12753. }
  12754. #u13280 .text {
  12755. position:absolute;
  12756. align-self:flex-start;
  12757. padding:0px 0px 0px 0px;
  12758. box-sizing:border-box;
  12759. width:100%;
  12760. }
  12761. #u13280_text {
  12762. border-width:0px;
  12763. white-space:nowrap;
  12764. text-transform:none;
  12765. }
  12766. #u13281 {
  12767. border-width:0px;
  12768. position:absolute;
  12769. left:0px;
  12770. top:0px;
  12771. width:0px;
  12772. height:0px;
  12773. }
  12774. #u13282_img {
  12775. border-width:0px;
  12776. position:absolute;
  12777. left:0px;
  12778. top:0px;
  12779. width:24px;
  12780. height:24px;
  12781. }
  12782. #u13282 {
  12783. border-width:0px;
  12784. position:absolute;
  12785. left:610px;
  12786. top:792px;
  12787. width:24px;
  12788. height:24px;
  12789. display:flex;
  12790. font-size:8px;
  12791. }
  12792. #u13282 .text {
  12793. position:absolute;
  12794. align-self:center;
  12795. padding:2px 2px 2px 2px;
  12796. box-sizing:border-box;
  12797. width:100%;
  12798. }
  12799. #u13282_text {
  12800. border-width:0px;
  12801. word-wrap:break-word;
  12802. text-transform:none;
  12803. }
  12804. #u13283_div {
  12805. border-width:0px;
  12806. position:absolute;
  12807. left:0px;
  12808. top:0px;
  12809. width:37px;
  12810. height:17px;
  12811. background:inherit;
  12812. background-color:rgba(255, 255, 255, 0);
  12813. border:none;
  12814. border-radius:0px;
  12815. -moz-box-shadow:none;
  12816. -webkit-box-shadow:none;
  12817. box-shadow:none;
  12818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12819. font-weight:400;
  12820. font-style:normal;
  12821. font-size:12px;
  12822. }
  12823. #u13283 {
  12824. border-width:0px;
  12825. position:absolute;
  12826. left:604px;
  12827. top:817px;
  12828. width:37px;
  12829. height:17px;
  12830. display:flex;
  12831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12832. font-weight:400;
  12833. font-style:normal;
  12834. font-size:12px;
  12835. }
  12836. #u13283 .text {
  12837. position:absolute;
  12838. align-self:flex-start;
  12839. padding:0px 0px 0px 0px;
  12840. box-sizing:border-box;
  12841. width:100%;
  12842. }
  12843. #u13283_text {
  12844. border-width:0px;
  12845. white-space:nowrap;
  12846. text-transform:none;
  12847. }
  12848. #u13284_img {
  12849. border-width:0px;
  12850. position:absolute;
  12851. left:0px;
  12852. top:0px;
  12853. width:375px;
  12854. height:769px;
  12855. }
  12856. #u13284 {
  12857. border-width:0px;
  12858. position:absolute;
  12859. left:482px;
  12860. top:70px;
  12861. width:375px;
  12862. height:769px;
  12863. display:flex;
  12864. }
  12865. #u13284 .text {
  12866. position:absolute;
  12867. align-self:center;
  12868. padding:2px 2px 2px 2px;
  12869. box-sizing:border-box;
  12870. width:100%;
  12871. }
  12872. #u13284_text {
  12873. border-width:0px;
  12874. word-wrap:break-word;
  12875. text-transform:none;
  12876. visibility:hidden;
  12877. }
  12878. #u13285_div {
  12879. border-width:0px;
  12880. position:absolute;
  12881. left:0px;
  12882. top:0px;
  12883. width:375px;
  12884. height:769px;
  12885. background:inherit;
  12886. background-color:rgba(255, 255, 255, 1);
  12887. border:none;
  12888. border-top:0px;
  12889. border-radius:24px;
  12890. border-top-left-radius:0px;
  12891. border-top-right-radius:0px;
  12892. -moz-box-shadow:none;
  12893. -webkit-box-shadow:none;
  12894. box-shadow:none;
  12895. }
  12896. #u13285 {
  12897. border-width:0px;
  12898. position:absolute;
  12899. left:482px;
  12900. top:70px;
  12901. width:375px;
  12902. height:769px;
  12903. display:flex;
  12904. }
  12905. #u13285 .text {
  12906. position:absolute;
  12907. align-self:center;
  12908. padding:2px 2px 2px 2px;
  12909. box-sizing:border-box;
  12910. width:100%;
  12911. }
  12912. #u13285_text {
  12913. border-width:0px;
  12914. word-wrap:break-word;
  12915. text-transform:none;
  12916. visibility:hidden;
  12917. }
  12918. #u13286_div {
  12919. border-width:0px;
  12920. position:absolute;
  12921. left:0px;
  12922. top:0px;
  12923. width:334px;
  12924. height:40px;
  12925. background:inherit;
  12926. background-color:rgba(170, 170, 170, 1);
  12927. border:none;
  12928. border-radius:82px;
  12929. -moz-box-shadow:none;
  12930. -webkit-box-shadow:none;
  12931. box-shadow:none;
  12932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12933. font-weight:400;
  12934. font-style:normal;
  12935. font-size:18px;
  12936. color:#FFFFFF;
  12937. }
  12938. #u13286 {
  12939. border-width:0px;
  12940. position:absolute;
  12941. left:497px;
  12942. top:768px;
  12943. width:334px;
  12944. height:40px;
  12945. display:flex;
  12946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12947. font-weight:400;
  12948. font-style:normal;
  12949. font-size:18px;
  12950. color:#FFFFFF;
  12951. }
  12952. #u13286 .text {
  12953. position:absolute;
  12954. align-self:center;
  12955. padding:2px 2px 2px 2px;
  12956. box-sizing:border-box;
  12957. width:100%;
  12958. }
  12959. #u13286_text {
  12960. border-width:0px;
  12961. word-wrap:break-word;
  12962. text-transform:none;
  12963. }
  12964. #u13287_div {
  12965. border-width:0px;
  12966. position:absolute;
  12967. left:0px;
  12968. top:0px;
  12969. width:82px;
  12970. height:25px;
  12971. background:inherit;
  12972. background-color:rgba(255, 255, 255, 0);
  12973. border:none;
  12974. border-radius:0px;
  12975. -moz-box-shadow:none;
  12976. -webkit-box-shadow:none;
  12977. box-shadow:none;
  12978. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12979. font-weight:500;
  12980. font-style:normal;
  12981. font-size:18px;
  12982. }
  12983. #u13287 {
  12984. border-width:0px;
  12985. position:absolute;
  12986. left:627px;
  12987. top:473px;
  12988. width:82px;
  12989. height:25px;
  12990. display:flex;
  12991. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12992. font-weight:500;
  12993. font-style:normal;
  12994. font-size:18px;
  12995. }
  12996. #u13287 .text {
  12997. position:absolute;
  12998. align-self:flex-start;
  12999. padding:0px 0px 0px 0px;
  13000. box-sizing:border-box;
  13001. width:100%;
  13002. }
  13003. #u13287_text {
  13004. border-width:0px;
  13005. white-space:nowrap;
  13006. text-transform:none;
  13007. }
  13008. #u13288 {
  13009. border-width:0px;
  13010. position:absolute;
  13011. left:0px;
  13012. top:0px;
  13013. width:0px;
  13014. height:0px;
  13015. }
  13016. #u13289_img {
  13017. border-width:0px;
  13018. position:absolute;
  13019. left:0px;
  13020. top:0px;
  13021. width:220px;
  13022. height:220px;
  13023. }
  13024. #u13289 {
  13025. border-width:0px;
  13026. position:absolute;
  13027. left:555px;
  13028. top:247px;
  13029. width:220px;
  13030. height:220px;
  13031. display:flex;
  13032. }
  13033. #u13289 .text {
  13034. position:absolute;
  13035. align-self:center;
  13036. padding:2px 2px 2px 2px;
  13037. box-sizing:border-box;
  13038. width:100%;
  13039. }
  13040. #u13289_text {
  13041. border-width:0px;
  13042. word-wrap:break-word;
  13043. text-transform:none;
  13044. visibility:hidden;
  13045. }
  13046. #u13290_div {
  13047. border-width:0px;
  13048. position:absolute;
  13049. left:0px;
  13050. top:0px;
  13051. width:77px;
  13052. height:67px;
  13053. background:inherit;
  13054. background-color:rgba(255, 255, 255, 0);
  13055. border:none;
  13056. border-radius:0px;
  13057. -moz-box-shadow:none;
  13058. -webkit-box-shadow:none;
  13059. box-shadow:none;
  13060. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13061. font-weight:500;
  13062. font-style:normal;
  13063. font-size:48px;
  13064. color:#FFFFFF;
  13065. }
  13066. #u13290 {
  13067. border-width:0px;
  13068. position:absolute;
  13069. left:628px;
  13070. top:294px;
  13071. width:77px;
  13072. height:67px;
  13073. display:flex;
  13074. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13075. font-weight:500;
  13076. font-style:normal;
  13077. font-size:48px;
  13078. color:#FFFFFF;
  13079. }
  13080. #u13290 .text {
  13081. position:absolute;
  13082. align-self:flex-start;
  13083. padding:0px 0px 0px 0px;
  13084. box-sizing:border-box;
  13085. width:100%;
  13086. }
  13087. #u13290_text {
  13088. border-width:0px;
  13089. white-space:nowrap;
  13090. text-transform:none;
  13091. }
  13092. #u13291_div {
  13093. border-width:0px;
  13094. position:absolute;
  13095. left:0px;
  13096. top:0px;
  13097. width:88px;
  13098. height:60px;
  13099. background:inherit;
  13100. background-color:rgba(255, 255, 255, 0);
  13101. border:none;
  13102. border-left:0px;
  13103. border-top:0px;
  13104. border-right:0px;
  13105. border-radius:0px;
  13106. border-bottom-right-radius:0px;
  13107. border-bottom-left-radius:0px;
  13108. -moz-box-shadow:none;
  13109. -webkit-box-shadow:none;
  13110. box-shadow:none;
  13111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13112. font-weight:400;
  13113. font-style:normal;
  13114. color:#FFFFFF;
  13115. text-align:center;
  13116. line-height:30px;
  13117. }
  13118. #u13291 {
  13119. border-width:0px;
  13120. position:absolute;
  13121. left:621px;
  13122. top:361px;
  13123. width:88px;
  13124. height:60px;
  13125. display:flex;
  13126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13127. font-weight:400;
  13128. font-style:normal;
  13129. color:#FFFFFF;
  13130. text-align:center;
  13131. line-height:30px;
  13132. }
  13133. #u13291 .text {
  13134. position:absolute;
  13135. align-self:flex-start;
  13136. padding:0px 0px 0px 0px;
  13137. box-sizing:border-box;
  13138. width:100%;
  13139. }
  13140. #u13291_text {
  13141. border-width:0px;
  13142. white-space:nowrap;
  13143. text-transform:none;
  13144. }
  13145. #u13292 {
  13146. border-width:0px;
  13147. position:absolute;
  13148. left:0px;
  13149. top:0px;
  13150. width:0px;
  13151. height:0px;
  13152. }
  13153. #u13293_div {
  13154. border-width:0px;
  13155. position:absolute;
  13156. left:0px;
  13157. top:0px;
  13158. width:80px;
  13159. height:30px;
  13160. background:inherit;
  13161. background-color:rgba(255, 255, 255, 0);
  13162. border:none;
  13163. border-left:0px;
  13164. border-top:0px;
  13165. border-right:0px;
  13166. border-radius:0px;
  13167. border-bottom-right-radius:0px;
  13168. border-bottom-left-radius:0px;
  13169. -moz-box-shadow:none;
  13170. -webkit-box-shadow:none;
  13171. box-shadow:none;
  13172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13173. font-weight:400;
  13174. font-style:normal;
  13175. font-size:14px;
  13176. color:#7F7F7F;
  13177. text-align:center;
  13178. line-height:30px;
  13179. }
  13180. #u13293 {
  13181. border-width:0px;
  13182. position:absolute;
  13183. left:515px;
  13184. top:197px;
  13185. width:80px;
  13186. height:30px;
  13187. display:flex;
  13188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13189. font-weight:400;
  13190. font-style:normal;
  13191. font-size:14px;
  13192. color:#7F7F7F;
  13193. text-align:center;
  13194. line-height:30px;
  13195. }
  13196. #u13293 .text {
  13197. position:absolute;
  13198. align-self:flex-start;
  13199. padding:0px 0px 0px 0px;
  13200. box-sizing:border-box;
  13201. width:100%;
  13202. }
  13203. #u13293_text {
  13204. border-width:0px;
  13205. white-space:nowrap;
  13206. text-transform:none;
  13207. }
  13208. #u13294_div {
  13209. border-width:0px;
  13210. position:absolute;
  13211. left:0px;
  13212. top:0px;
  13213. width:49px;
  13214. height:30px;
  13215. background:inherit;
  13216. background-color:rgba(255, 255, 255, 0);
  13217. border:none;
  13218. border-left:0px;
  13219. border-top:0px;
  13220. border-right:0px;
  13221. border-radius:0px;
  13222. border-bottom-right-radius:0px;
  13223. border-bottom-left-radius:0px;
  13224. -moz-box-shadow:none;
  13225. -webkit-box-shadow:none;
  13226. box-shadow:none;
  13227. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  13228. font-weight:650;
  13229. font-style:normal;
  13230. font-size:18px;
  13231. color:#298FFF;
  13232. text-align:center;
  13233. line-height:30px;
  13234. }
  13235. #u13294 {
  13236. border-width:0px;
  13237. position:absolute;
  13238. left:531px;
  13239. top:167px;
  13240. width:49px;
  13241. height:30px;
  13242. display:flex;
  13243. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  13244. font-weight:650;
  13245. font-style:normal;
  13246. font-size:18px;
  13247. color:#298FFF;
  13248. text-align:center;
  13249. line-height:30px;
  13250. }
  13251. #u13294 .text {
  13252. position:absolute;
  13253. align-self:flex-start;
  13254. padding:0px 0px 0px 0px;
  13255. box-sizing:border-box;
  13256. width:100%;
  13257. }
  13258. #u13294_text {
  13259. border-width:0px;
  13260. white-space:nowrap;
  13261. text-transform:none;
  13262. }
  13263. #u13295_div {
  13264. border-width:0px;
  13265. position:absolute;
  13266. left:0px;
  13267. top:0px;
  13268. width:57px;
  13269. height:30px;
  13270. background:inherit;
  13271. background-color:rgba(255, 255, 255, 0);
  13272. border:none;
  13273. border-left:0px;
  13274. border-top:0px;
  13275. border-right:0px;
  13276. border-radius:0px;
  13277. border-bottom-right-radius:0px;
  13278. border-bottom-left-radius:0px;
  13279. -moz-box-shadow:none;
  13280. -webkit-box-shadow:none;
  13281. box-shadow:none;
  13282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13283. font-weight:400;
  13284. font-style:normal;
  13285. font-size:14px;
  13286. color:#7F7F7F;
  13287. text-align:center;
  13288. line-height:30px;
  13289. }
  13290. #u13295 {
  13291. border-width:0px;
  13292. position:absolute;
  13293. left:651px;
  13294. top:197px;
  13295. width:57px;
  13296. height:30px;
  13297. display:flex;
  13298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13299. font-weight:400;
  13300. font-style:normal;
  13301. font-size:14px;
  13302. color:#7F7F7F;
  13303. text-align:center;
  13304. line-height:30px;
  13305. }
  13306. #u13295 .text {
  13307. position:absolute;
  13308. align-self:flex-start;
  13309. padding:0px 0px 0px 0px;
  13310. box-sizing:border-box;
  13311. width:100%;
  13312. }
  13313. #u13295_text {
  13314. border-width:0px;
  13315. white-space:nowrap;
  13316. text-transform:none;
  13317. }
  13318. #u13296_div {
  13319. border-width:0px;
  13320. position:absolute;
  13321. left:0px;
  13322. top:0px;
  13323. width:77px;
  13324. height:30px;
  13325. background:inherit;
  13326. background-color:rgba(255, 255, 255, 0);
  13327. border:none;
  13328. border-left:0px;
  13329. border-top:0px;
  13330. border-right:0px;
  13331. border-radius:0px;
  13332. border-bottom-right-radius:0px;
  13333. border-bottom-left-radius:0px;
  13334. -moz-box-shadow:none;
  13335. -webkit-box-shadow:none;
  13336. box-shadow:none;
  13337. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  13338. font-weight:650;
  13339. font-style:normal;
  13340. font-size:18px;
  13341. color:#298FFF;
  13342. line-height:30px;
  13343. }
  13344. #u13296 {
  13345. border-width:0px;
  13346. position:absolute;
  13347. left:640px;
  13348. top:167px;
  13349. width:77px;
  13350. height:30px;
  13351. display:flex;
  13352. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  13353. font-weight:650;
  13354. font-style:normal;
  13355. font-size:18px;
  13356. color:#298FFF;
  13357. line-height:30px;
  13358. }
  13359. #u13296 .text {
  13360. position:absolute;
  13361. align-self:flex-start;
  13362. padding:0px 0px 0px 0px;
  13363. box-sizing:border-box;
  13364. width:100%;
  13365. }
  13366. #u13296_text {
  13367. border-width:0px;
  13368. white-space:nowrap;
  13369. text-transform:none;
  13370. }
  13371. #u13297_div {
  13372. border-width:0px;
  13373. position:absolute;
  13374. left:0px;
  13375. top:0px;
  13376. width:80px;
  13377. height:30px;
  13378. background:inherit;
  13379. background-color:rgba(255, 255, 255, 0);
  13380. border:none;
  13381. border-left:0px;
  13382. border-top:0px;
  13383. border-right:0px;
  13384. border-radius:0px;
  13385. border-bottom-right-radius:0px;
  13386. border-bottom-left-radius:0px;
  13387. -moz-box-shadow:none;
  13388. -webkit-box-shadow:none;
  13389. box-shadow:none;
  13390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13391. font-weight:400;
  13392. font-style:normal;
  13393. font-size:14px;
  13394. color:#7F7F7F;
  13395. text-align:center;
  13396. line-height:30px;
  13397. }
  13398. #u13297 {
  13399. border-width:0px;
  13400. position:absolute;
  13401. left:749px;
  13402. top:197px;
  13403. width:80px;
  13404. height:30px;
  13405. display:flex;
  13406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13407. font-weight:400;
  13408. font-style:normal;
  13409. font-size:14px;
  13410. color:#7F7F7F;
  13411. text-align:center;
  13412. line-height:30px;
  13413. }
  13414. #u13297 .text {
  13415. position:absolute;
  13416. align-self:flex-start;
  13417. padding:0px 0px 0px 0px;
  13418. box-sizing:border-box;
  13419. width:100%;
  13420. }
  13421. #u13297_text {
  13422. border-width:0px;
  13423. white-space:nowrap;
  13424. text-transform:none;
  13425. }
  13426. #u13298_div {
  13427. border-width:0px;
  13428. position:absolute;
  13429. left:0px;
  13430. top:0px;
  13431. width:49px;
  13432. height:30px;
  13433. background:inherit;
  13434. background-color:rgba(255, 255, 255, 0);
  13435. border:none;
  13436. border-left:0px;
  13437. border-top:0px;
  13438. border-right:0px;
  13439. border-radius:0px;
  13440. border-bottom-right-radius:0px;
  13441. border-bottom-left-radius:0px;
  13442. -moz-box-shadow:none;
  13443. -webkit-box-shadow:none;
  13444. box-shadow:none;
  13445. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  13446. font-weight:650;
  13447. font-style:normal;
  13448. font-size:18px;
  13449. color:#298FFF;
  13450. text-align:center;
  13451. line-height:30px;
  13452. }
  13453. #u13298 {
  13454. border-width:0px;
  13455. position:absolute;
  13456. left:765px;
  13457. top:167px;
  13458. width:49px;
  13459. height:30px;
  13460. display:flex;
  13461. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  13462. font-weight:650;
  13463. font-style:normal;
  13464. font-size:18px;
  13465. color:#298FFF;
  13466. text-align:center;
  13467. line-height:30px;
  13468. }
  13469. #u13298 .text {
  13470. position:absolute;
  13471. align-self:flex-start;
  13472. padding:0px 0px 0px 0px;
  13473. box-sizing:border-box;
  13474. width:100%;
  13475. }
  13476. #u13298_text {
  13477. border-width:0px;
  13478. white-space:nowrap;
  13479. text-transform:none;
  13480. }
  13481. #u13299_div {
  13482. border-width:0px;
  13483. position:absolute;
  13484. left:0px;
  13485. top:0px;
  13486. width:323px;
  13487. height:30px;
  13488. background:inherit;
  13489. background-color:rgba(255, 255, 255, 0);
  13490. border:none;
  13491. border-left:0px;
  13492. border-top:0px;
  13493. border-right:0px;
  13494. border-radius:0px;
  13495. border-bottom-right-radius:0px;
  13496. border-bottom-left-radius:0px;
  13497. -moz-box-shadow:none;
  13498. -webkit-box-shadow:none;
  13499. box-shadow:none;
  13500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13501. font-weight:400;
  13502. font-style:normal;
  13503. font-size:14px;
  13504. line-height:30px;
  13505. }
  13506. #u13299 {
  13507. border-width:0px;
  13508. position:absolute;
  13509. left:512px;
  13510. top:116px;
  13511. width:323px;
  13512. height:30px;
  13513. display:flex;
  13514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13515. font-weight:400;
  13516. font-style:normal;
  13517. font-size:14px;
  13518. line-height:30px;
  13519. }
  13520. #u13299 .text {
  13521. position:absolute;
  13522. align-self:flex-start;
  13523. padding:0px 0px 0px 0px;
  13524. box-sizing:border-box;
  13525. width:100%;
  13526. }
  13527. #u13299_text {
  13528. border-width:0px;
  13529. white-space:nowrap;
  13530. text-transform:none;
  13531. }
  13532. #u13300_div {
  13533. border-width:0px;
  13534. position:absolute;
  13535. left:0px;
  13536. top:0px;
  13537. width:73px;
  13538. height:30px;
  13539. background:inherit;
  13540. background-color:rgba(255, 255, 255, 0);
  13541. border:none;
  13542. border-left:0px;
  13543. border-top:0px;
  13544. border-right:0px;
  13545. border-radius:0px;
  13546. border-bottom-right-radius:0px;
  13547. border-bottom-left-radius:0px;
  13548. -moz-box-shadow:none;
  13549. -webkit-box-shadow:none;
  13550. box-shadow:none;
  13551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13552. font-weight:400;
  13553. font-style:normal;
  13554. font-size:18px;
  13555. line-height:30px;
  13556. }
  13557. #u13300 {
  13558. border-width:0px;
  13559. position:absolute;
  13560. left:640px;
  13561. top:77px;
  13562. width:73px;
  13563. height:30px;
  13564. display:flex;
  13565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13566. font-weight:400;
  13567. font-style:normal;
  13568. font-size:18px;
  13569. line-height:30px;
  13570. }
  13571. #u13300 .text {
  13572. position:absolute;
  13573. align-self:center;
  13574. padding:0px 0px 0px 0px;
  13575. box-sizing:border-box;
  13576. width:100%;
  13577. }
  13578. #u13300_text {
  13579. border-width:0px;
  13580. white-space:nowrap;
  13581. text-transform:none;
  13582. }
  13583. #u13301_img {
  13584. border-width:0px;
  13585. position:absolute;
  13586. left:0px;
  13587. top:0px;
  13588. width:15px;
  13589. height:15px;
  13590. }
  13591. #u13301 {
  13592. border-width:0px;
  13593. position:absolute;
  13594. left:500px;
  13595. top:84px;
  13596. width:15px;
  13597. height:15px;
  13598. display:flex;
  13599. }
  13600. #u13301 .text {
  13601. position:absolute;
  13602. align-self:center;
  13603. padding:2px 2px 2px 2px;
  13604. box-sizing:border-box;
  13605. width:100%;
  13606. }
  13607. #u13301_text {
  13608. border-width:0px;
  13609. word-wrap:break-word;
  13610. text-transform:none;
  13611. visibility:hidden;
  13612. }
  13613. #u13302_div {
  13614. border-width:0px;
  13615. position:absolute;
  13616. left:0px;
  13617. top:0px;
  13618. width:121px;
  13619. height:30px;
  13620. background:inherit;
  13621. background-color:rgba(255, 255, 255, 0);
  13622. border:none;
  13623. border-left:0px;
  13624. border-top:0px;
  13625. border-right:0px;
  13626. border-radius:0px;
  13627. border-bottom-right-radius:0px;
  13628. border-bottom-left-radius:0px;
  13629. -moz-box-shadow:none;
  13630. -webkit-box-shadow:none;
  13631. box-shadow:none;
  13632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13633. font-weight:400;
  13634. font-style:normal;
  13635. font-size:12px;
  13636. color:#7F7F7F;
  13637. line-height:30px;
  13638. }
  13639. #u13302 {
  13640. border-width:0px;
  13641. position:absolute;
  13642. left:515px;
  13643. top:689px;
  13644. width:121px;
  13645. height:30px;
  13646. display:flex;
  13647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13648. font-weight:400;
  13649. font-style:normal;
  13650. font-size:12px;
  13651. color:#7F7F7F;
  13652. line-height:30px;
  13653. }
  13654. #u13302 .text {
  13655. position:absolute;
  13656. align-self:flex-start;
  13657. padding:0px 0px 0px 0px;
  13658. box-sizing:border-box;
  13659. width:100%;
  13660. }
  13661. #u13302_text {
  13662. border-width:0px;
  13663. white-space:nowrap;
  13664. text-transform:none;
  13665. }
  13666. #u13303_div {
  13667. border-width:0px;
  13668. position:absolute;
  13669. left:0px;
  13670. top:0px;
  13671. width:154px;
  13672. height:30px;
  13673. background:inherit;
  13674. background-color:rgba(255, 255, 255, 0);
  13675. border:none;
  13676. border-left:0px;
  13677. border-top:0px;
  13678. border-right:0px;
  13679. border-radius:0px;
  13680. border-bottom-right-radius:0px;
  13681. border-bottom-left-radius:0px;
  13682. -moz-box-shadow:none;
  13683. -webkit-box-shadow:none;
  13684. box-shadow:none;
  13685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13686. font-weight:400;
  13687. font-style:normal;
  13688. font-size:12px;
  13689. color:#7F7F7F;
  13690. line-height:30px;
  13691. }
  13692. #u13303 {
  13693. border-width:0px;
  13694. position:absolute;
  13695. left:681px;
  13696. top:689px;
  13697. width:154px;
  13698. height:30px;
  13699. display:flex;
  13700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13701. font-weight:400;
  13702. font-style:normal;
  13703. font-size:12px;
  13704. color:#7F7F7F;
  13705. line-height:30px;
  13706. }
  13707. #u13303 .text {
  13708. position:absolute;
  13709. align-self:flex-start;
  13710. padding:0px 0px 0px 0px;
  13711. box-sizing:border-box;
  13712. width:100%;
  13713. }
  13714. #u13303_text {
  13715. border-width:0px;
  13716. white-space:nowrap;
  13717. text-transform:none;
  13718. }
  13719. #u13304_img {
  13720. border-width:0px;
  13721. position:absolute;
  13722. left:0px;
  13723. top:0px;
  13724. width:70px;
  13725. height:30px;
  13726. }
  13727. #u13304 {
  13728. border-width:0px;
  13729. position:absolute;
  13730. left:787px;
  13731. top:77px;
  13732. width:70px;
  13733. height:30px;
  13734. display:flex;
  13735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13736. font-weight:400;
  13737. font-style:normal;
  13738. font-size:12px;
  13739. color:#298FFF;
  13740. }
  13741. #u13304 .text {
  13742. position:absolute;
  13743. align-self:center;
  13744. padding:2px 2px 2px 10px;
  13745. box-sizing:border-box;
  13746. width:100%;
  13747. }
  13748. #u13304_text {
  13749. border-width:0px;
  13750. word-wrap:break-word;
  13751. text-transform:none;
  13752. }
  13753. #u13305 {
  13754. border-width:0px;
  13755. position:absolute;
  13756. left:0px;
  13757. top:0px;
  13758. width:0px;
  13759. height:0px;
  13760. }
  13761. #u13306_div {
  13762. border-width:0px;
  13763. position:absolute;
  13764. left:0px;
  13765. top:0px;
  13766. width:150px;
  13767. height:71px;
  13768. background:inherit;
  13769. background-color:rgba(242, 242, 242, 0.498039215686275);
  13770. border:none;
  13771. border-radius:4px;
  13772. -moz-box-shadow:none;
  13773. -webkit-box-shadow:none;
  13774. box-shadow:none;
  13775. }
  13776. #u13306 {
  13777. border-width:0px;
  13778. position:absolute;
  13779. left:503px;
  13780. top:527px;
  13781. width:150px;
  13782. height:71px;
  13783. display:flex;
  13784. }
  13785. #u13306 .text {
  13786. position:absolute;
  13787. align-self:center;
  13788. padding:2px 2px 2px 2px;
  13789. box-sizing:border-box;
  13790. width:100%;
  13791. }
  13792. #u13306_text {
  13793. border-width:0px;
  13794. word-wrap:break-word;
  13795. text-transform:none;
  13796. visibility:hidden;
  13797. }
  13798. #u13307_div {
  13799. border-width:0px;
  13800. position:absolute;
  13801. left:0px;
  13802. top:0px;
  13803. width:122px;
  13804. height:27px;
  13805. background:inherit;
  13806. background-color:rgba(255, 255, 255, 0);
  13807. border:none;
  13808. border-left:0px;
  13809. border-top:0px;
  13810. border-right:0px;
  13811. border-radius:0px;
  13812. border-bottom-right-radius:0px;
  13813. border-bottom-left-radius:0px;
  13814. -moz-box-shadow:none;
  13815. -webkit-box-shadow:none;
  13816. box-shadow:none;
  13817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13818. font-weight:400;
  13819. font-style:normal;
  13820. font-size:12px;
  13821. color:#7F7F7F;
  13822. text-align:center;
  13823. line-height:30px;
  13824. }
  13825. #u13307 {
  13826. border-width:0px;
  13827. position:absolute;
  13828. left:518px;
  13829. top:562px;
  13830. width:122px;
  13831. height:27px;
  13832. display:flex;
  13833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13834. font-weight:400;
  13835. font-style:normal;
  13836. font-size:12px;
  13837. color:#7F7F7F;
  13838. text-align:center;
  13839. line-height:30px;
  13840. }
  13841. #u13307 .text {
  13842. position:absolute;
  13843. align-self:flex-start;
  13844. padding:0px 0px 0px 0px;
  13845. box-sizing:border-box;
  13846. width:100%;
  13847. }
  13848. #u13307_text {
  13849. border-width:0px;
  13850. word-wrap:break-word;
  13851. text-transform:none;
  13852. }
  13853. #u13308_div {
  13854. border-width:0px;
  13855. position:absolute;
  13856. left:0px;
  13857. top:0px;
  13858. width:105px;
  13859. height:27px;
  13860. background:inherit;
  13861. background-color:rgba(255, 255, 255, 0);
  13862. border:none;
  13863. border-left:0px;
  13864. border-top:0px;
  13865. border-right:0px;
  13866. border-radius:0px;
  13867. border-bottom-right-radius:0px;
  13868. border-bottom-left-radius:0px;
  13869. -moz-box-shadow:none;
  13870. -webkit-box-shadow:none;
  13871. box-shadow:none;
  13872. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13873. font-weight:500;
  13874. font-style:normal;
  13875. font-size:18px;
  13876. color:#298FFF;
  13877. text-align:center;
  13878. line-height:30px;
  13879. }
  13880. #u13308 {
  13881. border-width:0px;
  13882. position:absolute;
  13883. left:526px;
  13884. top:535px;
  13885. width:105px;
  13886. height:27px;
  13887. display:flex;
  13888. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13889. font-weight:500;
  13890. font-style:normal;
  13891. font-size:18px;
  13892. color:#298FFF;
  13893. text-align:center;
  13894. line-height:30px;
  13895. }
  13896. #u13308 .text {
  13897. position:absolute;
  13898. align-self:flex-start;
  13899. padding:0px 0px 0px 0px;
  13900. box-sizing:border-box;
  13901. width:100%;
  13902. }
  13903. #u13308_text {
  13904. border-width:0px;
  13905. word-wrap:break-word;
  13906. text-transform:none;
  13907. }
  13908. #u13309 {
  13909. border-width:0px;
  13910. position:absolute;
  13911. left:0px;
  13912. top:0px;
  13913. width:0px;
  13914. height:0px;
  13915. }
  13916. #u13310_div {
  13917. border-width:0px;
  13918. position:absolute;
  13919. left:0px;
  13920. top:0px;
  13921. width:150px;
  13922. height:71px;
  13923. background:inherit;
  13924. background-color:rgba(242, 242, 242, 0.498039215686275);
  13925. border:none;
  13926. border-radius:4px;
  13927. -moz-box-shadow:none;
  13928. -webkit-box-shadow:none;
  13929. box-shadow:none;
  13930. }
  13931. #u13310 {
  13932. border-width:0px;
  13933. position:absolute;
  13934. left:676px;
  13935. top:527px;
  13936. width:150px;
  13937. height:71px;
  13938. display:flex;
  13939. }
  13940. #u13310 .text {
  13941. position:absolute;
  13942. align-self:center;
  13943. padding:2px 2px 2px 2px;
  13944. box-sizing:border-box;
  13945. width:100%;
  13946. }
  13947. #u13310_text {
  13948. border-width:0px;
  13949. word-wrap:break-word;
  13950. text-transform:none;
  13951. visibility:hidden;
  13952. }
  13953. #u13311_div {
  13954. border-width:0px;
  13955. position:absolute;
  13956. left:0px;
  13957. top:0px;
  13958. width:122px;
  13959. height:27px;
  13960. background:inherit;
  13961. background-color:rgba(255, 255, 255, 0);
  13962. border:none;
  13963. border-left:0px;
  13964. border-top:0px;
  13965. border-right:0px;
  13966. border-radius:0px;
  13967. border-bottom-right-radius:0px;
  13968. border-bottom-left-radius:0px;
  13969. -moz-box-shadow:none;
  13970. -webkit-box-shadow:none;
  13971. box-shadow:none;
  13972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13973. font-weight:400;
  13974. font-style:normal;
  13975. font-size:12px;
  13976. color:#7F7F7F;
  13977. text-align:center;
  13978. line-height:30px;
  13979. }
  13980. #u13311 {
  13981. border-width:0px;
  13982. position:absolute;
  13983. left:691px;
  13984. top:562px;
  13985. width:122px;
  13986. height:27px;
  13987. display:flex;
  13988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13989. font-weight:400;
  13990. font-style:normal;
  13991. font-size:12px;
  13992. color:#7F7F7F;
  13993. text-align:center;
  13994. line-height:30px;
  13995. }
  13996. #u13311 .text {
  13997. position:absolute;
  13998. align-self:flex-start;
  13999. padding:0px 0px 0px 0px;
  14000. box-sizing:border-box;
  14001. width:100%;
  14002. }
  14003. #u13311_text {
  14004. border-width:0px;
  14005. word-wrap:break-word;
  14006. text-transform:none;
  14007. }
  14008. #u13312_div {
  14009. border-width:0px;
  14010. position:absolute;
  14011. left:0px;
  14012. top:0px;
  14013. width:105px;
  14014. height:27px;
  14015. background:inherit;
  14016. background-color:rgba(255, 255, 255, 0);
  14017. border:none;
  14018. border-left:0px;
  14019. border-top:0px;
  14020. border-right:0px;
  14021. border-radius:0px;
  14022. border-bottom-right-radius:0px;
  14023. border-bottom-left-radius:0px;
  14024. -moz-box-shadow:none;
  14025. -webkit-box-shadow:none;
  14026. box-shadow:none;
  14027. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  14028. font-weight:500;
  14029. font-style:normal;
  14030. font-size:18px;
  14031. color:#298FFF;
  14032. text-align:center;
  14033. line-height:30px;
  14034. }
  14035. #u13312 {
  14036. border-width:0px;
  14037. position:absolute;
  14038. left:698px;
  14039. top:535px;
  14040. width:105px;
  14041. height:27px;
  14042. display:flex;
  14043. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  14044. font-weight:500;
  14045. font-style:normal;
  14046. font-size:18px;
  14047. color:#298FFF;
  14048. text-align:center;
  14049. line-height:30px;
  14050. }
  14051. #u13312 .text {
  14052. position:absolute;
  14053. align-self:flex-start;
  14054. padding:0px 0px 0px 0px;
  14055. box-sizing:border-box;
  14056. width:100%;
  14057. }
  14058. #u13312_text {
  14059. border-width:0px;
  14060. word-wrap:break-word;
  14061. text-transform:none;
  14062. }
  14063. #u13313 {
  14064. border-width:0px;
  14065. position:absolute;
  14066. left:0px;
  14067. top:0px;
  14068. width:0px;
  14069. height:0px;
  14070. }
  14071. #u13314_div {
  14072. border-width:0px;
  14073. position:absolute;
  14074. left:0px;
  14075. top:0px;
  14076. width:150px;
  14077. height:71px;
  14078. background:inherit;
  14079. background-color:rgba(242, 242, 242, 0.498039215686275);
  14080. border:none;
  14081. border-radius:4px;
  14082. -moz-box-shadow:none;
  14083. -webkit-box-shadow:none;
  14084. box-shadow:none;
  14085. }
  14086. #u13314 {
  14087. border-width:0px;
  14088. position:absolute;
  14089. left:503px;
  14090. top:603px;
  14091. width:150px;
  14092. height:71px;
  14093. display:flex;
  14094. }
  14095. #u13314 .text {
  14096. position:absolute;
  14097. align-self:center;
  14098. padding:2px 2px 2px 2px;
  14099. box-sizing:border-box;
  14100. width:100%;
  14101. }
  14102. #u13314_text {
  14103. border-width:0px;
  14104. word-wrap:break-word;
  14105. text-transform:none;
  14106. visibility:hidden;
  14107. }
  14108. #u13315_div {
  14109. border-width:0px;
  14110. position:absolute;
  14111. left:0px;
  14112. top:0px;
  14113. width:122px;
  14114. height:27px;
  14115. background:inherit;
  14116. background-color:rgba(255, 255, 255, 0);
  14117. border:none;
  14118. border-left:0px;
  14119. border-top:0px;
  14120. border-right:0px;
  14121. border-radius:0px;
  14122. border-bottom-right-radius:0px;
  14123. border-bottom-left-radius:0px;
  14124. -moz-box-shadow:none;
  14125. -webkit-box-shadow:none;
  14126. box-shadow:none;
  14127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14128. font-weight:400;
  14129. font-style:normal;
  14130. font-size:12px;
  14131. color:#7F7F7F;
  14132. text-align:center;
  14133. line-height:30px;
  14134. }
  14135. #u13315 {
  14136. border-width:0px;
  14137. position:absolute;
  14138. left:518px;
  14139. top:637px;
  14140. width:122px;
  14141. height:27px;
  14142. display:flex;
  14143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14144. font-weight:400;
  14145. font-style:normal;
  14146. font-size:12px;
  14147. color:#7F7F7F;
  14148. text-align:center;
  14149. line-height:30px;
  14150. }
  14151. #u13315 .text {
  14152. position:absolute;
  14153. align-self:flex-start;
  14154. padding:0px 0px 0px 0px;
  14155. box-sizing:border-box;
  14156. width:100%;
  14157. }
  14158. #u13315_text {
  14159. border-width:0px;
  14160. word-wrap:break-word;
  14161. text-transform:none;
  14162. }
  14163. #u13316_div {
  14164. border-width:0px;
  14165. position:absolute;
  14166. left:0px;
  14167. top:0px;
  14168. width:105px;
  14169. height:27px;
  14170. background:inherit;
  14171. background-color:rgba(255, 255, 255, 0);
  14172. border:none;
  14173. border-left:0px;
  14174. border-top:0px;
  14175. border-right:0px;
  14176. border-radius:0px;
  14177. border-bottom-right-radius:0px;
  14178. border-bottom-left-radius:0px;
  14179. -moz-box-shadow:none;
  14180. -webkit-box-shadow:none;
  14181. box-shadow:none;
  14182. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  14183. font-weight:500;
  14184. font-style:normal;
  14185. font-size:18px;
  14186. color:#298FFF;
  14187. text-align:center;
  14188. line-height:30px;
  14189. }
  14190. #u13316 {
  14191. border-width:0px;
  14192. position:absolute;
  14193. left:526px;
  14194. top:611px;
  14195. width:105px;
  14196. height:27px;
  14197. display:flex;
  14198. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  14199. font-weight:500;
  14200. font-style:normal;
  14201. font-size:18px;
  14202. color:#298FFF;
  14203. text-align:center;
  14204. line-height:30px;
  14205. }
  14206. #u13316 .text {
  14207. position:absolute;
  14208. align-self:flex-start;
  14209. padding:0px 0px 0px 0px;
  14210. box-sizing:border-box;
  14211. width:100%;
  14212. }
  14213. #u13316_text {
  14214. border-width:0px;
  14215. word-wrap:break-word;
  14216. text-transform:none;
  14217. }
  14218. #u13317 {
  14219. border-width:0px;
  14220. position:absolute;
  14221. left:0px;
  14222. top:0px;
  14223. width:0px;
  14224. height:0px;
  14225. }
  14226. #u13318_div {
  14227. border-width:0px;
  14228. position:absolute;
  14229. left:0px;
  14230. top:0px;
  14231. width:150px;
  14232. height:71px;
  14233. background:inherit;
  14234. background-color:rgba(242, 242, 242, 0.498039215686275);
  14235. border:none;
  14236. border-radius:4px;
  14237. -moz-box-shadow:none;
  14238. -webkit-box-shadow:none;
  14239. box-shadow:none;
  14240. }
  14241. #u13318 {
  14242. border-width:0px;
  14243. position:absolute;
  14244. left:676px;
  14245. top:603px;
  14246. width:150px;
  14247. height:71px;
  14248. display:flex;
  14249. }
  14250. #u13318 .text {
  14251. position:absolute;
  14252. align-self:center;
  14253. padding:2px 2px 2px 2px;
  14254. box-sizing:border-box;
  14255. width:100%;
  14256. }
  14257. #u13318_text {
  14258. border-width:0px;
  14259. word-wrap:break-word;
  14260. text-transform:none;
  14261. visibility:hidden;
  14262. }
  14263. #u13319_div {
  14264. border-width:0px;
  14265. position:absolute;
  14266. left:0px;
  14267. top:0px;
  14268. width:122px;
  14269. height:27px;
  14270. background:inherit;
  14271. background-color:rgba(255, 255, 255, 0);
  14272. border:none;
  14273. border-left:0px;
  14274. border-top:0px;
  14275. border-right:0px;
  14276. border-radius:0px;
  14277. border-bottom-right-radius:0px;
  14278. border-bottom-left-radius:0px;
  14279. -moz-box-shadow:none;
  14280. -webkit-box-shadow:none;
  14281. box-shadow:none;
  14282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14283. font-weight:400;
  14284. font-style:normal;
  14285. color:#7F7F7F;
  14286. text-align:center;
  14287. line-height:30px;
  14288. }
  14289. #u13319 {
  14290. border-width:0px;
  14291. position:absolute;
  14292. left:691px;
  14293. top:637px;
  14294. width:122px;
  14295. height:27px;
  14296. display:flex;
  14297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14298. font-weight:400;
  14299. font-style:normal;
  14300. color:#7F7F7F;
  14301. text-align:center;
  14302. line-height:30px;
  14303. }
  14304. #u13319 .text {
  14305. position:absolute;
  14306. align-self:flex-start;
  14307. padding:0px 0px 0px 0px;
  14308. box-sizing:border-box;
  14309. width:100%;
  14310. }
  14311. #u13319_text {
  14312. border-width:0px;
  14313. word-wrap:break-word;
  14314. text-transform:none;
  14315. }
  14316. #u13320_div {
  14317. border-width:0px;
  14318. position:absolute;
  14319. left:0px;
  14320. top:0px;
  14321. width:105px;
  14322. height:27px;
  14323. background:inherit;
  14324. background-color:rgba(255, 255, 255, 0);
  14325. border:none;
  14326. border-left:0px;
  14327. border-top:0px;
  14328. border-right:0px;
  14329. border-radius:0px;
  14330. border-bottom-right-radius:0px;
  14331. border-bottom-left-radius:0px;
  14332. -moz-box-shadow:none;
  14333. -webkit-box-shadow:none;
  14334. box-shadow:none;
  14335. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  14336. font-weight:500;
  14337. font-style:normal;
  14338. font-size:18px;
  14339. color:#298FFF;
  14340. text-align:center;
  14341. line-height:30px;
  14342. }
  14343. #u13320 {
  14344. border-width:0px;
  14345. position:absolute;
  14346. left:698px;
  14347. top:611px;
  14348. width:105px;
  14349. height:27px;
  14350. display:flex;
  14351. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  14352. font-weight:500;
  14353. font-style:normal;
  14354. font-size:18px;
  14355. color:#298FFF;
  14356. text-align:center;
  14357. line-height:30px;
  14358. }
  14359. #u13320 .text {
  14360. position:absolute;
  14361. align-self:flex-start;
  14362. padding:0px 0px 0px 0px;
  14363. box-sizing:border-box;
  14364. width:100%;
  14365. }
  14366. #u13320_text {
  14367. border-width:0px;
  14368. word-wrap:break-word;
  14369. text-transform:none;
  14370. }