styles.css 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1792px;
  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. #u33164_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u33164 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u33164 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u33164_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u33165_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. border:none;
  59. border-left:0px;
  60. border-top:0px;
  61. border-right:0px;
  62. border-radius:0px;
  63. border-bottom-right-radius:0px;
  64. border-bottom-left-radius:0px;
  65. -moz-box-shadow:none;
  66. -webkit-box-shadow:none;
  67. box-shadow:none;
  68. }
  69. #u33165 {
  70. border-width:0px;
  71. position:absolute;
  72. left:29px;
  73. top:67px;
  74. width:375px;
  75. height:40px;
  76. display:flex;
  77. }
  78. #u33165 .text {
  79. position:absolute;
  80. align-self:center;
  81. padding:2px 2px 2px 2px;
  82. box-sizing:border-box;
  83. width:100%;
  84. }
  85. #u33165_text {
  86. border-width:0px;
  87. word-wrap:break-word;
  88. text-transform:none;
  89. visibility:hidden;
  90. }
  91. #u33166 {
  92. border-width:0px;
  93. position:absolute;
  94. left:0px;
  95. top:0px;
  96. width:0px;
  97. height:0px;
  98. }
  99. #u33167_div {
  100. border-width:0px;
  101. position:absolute;
  102. left:0px;
  103. top:0px;
  104. width:88px;
  105. height:32px;
  106. background:inherit;
  107. background-color:rgba(255, 255, 255, 1);
  108. box-sizing:border-box;
  109. border-width:1px;
  110. border-style:solid;
  111. border-color:rgba(242, 242, 242, 1);
  112. border-radius:33px;
  113. -moz-box-shadow:none;
  114. -webkit-box-shadow:none;
  115. box-shadow:none;
  116. }
  117. #u33167 {
  118. border-width:0px;
  119. position:absolute;
  120. left:309px;
  121. top:71px;
  122. width:88px;
  123. height:32px;
  124. display:flex;
  125. }
  126. #u33167 .text {
  127. position:absolute;
  128. align-self:center;
  129. padding:2px 2px 2px 2px;
  130. box-sizing:border-box;
  131. width:100%;
  132. }
  133. #u33167_text {
  134. border-width:0px;
  135. word-wrap:break-word;
  136. text-transform:none;
  137. visibility:hidden;
  138. }
  139. #u33168 {
  140. border-width:0px;
  141. position:absolute;
  142. left:0px;
  143. top:0px;
  144. width:0px;
  145. height:0px;
  146. }
  147. #u33169_img {
  148. border-width:0px;
  149. position:absolute;
  150. left:0px;
  151. top:0px;
  152. width:18px;
  153. height:18px;
  154. }
  155. #u33169 {
  156. border-width:0px;
  157. position:absolute;
  158. left:372px;
  159. top:78px;
  160. width:18px;
  161. height:18px;
  162. display:flex;
  163. }
  164. #u33169 .text {
  165. position:absolute;
  166. align-self:center;
  167. padding:2px 2px 2px 2px;
  168. box-sizing:border-box;
  169. width:100%;
  170. }
  171. #u33169_text {
  172. border-width:0px;
  173. word-wrap:break-word;
  174. text-transform:none;
  175. visibility:hidden;
  176. }
  177. #u33170_img {
  178. border-width:0px;
  179. position:absolute;
  180. left:0px;
  181. top:0px;
  182. width:6px;
  183. height:6px;
  184. }
  185. #u33170 {
  186. border-width:0px;
  187. position:absolute;
  188. left:378px;
  189. top:84px;
  190. width:6px;
  191. height:6px;
  192. display:flex;
  193. }
  194. #u33170 .text {
  195. position:absolute;
  196. align-self:center;
  197. padding:2px 2px 2px 2px;
  198. box-sizing:border-box;
  199. width:100%;
  200. }
  201. #u33170_text {
  202. border-width:0px;
  203. word-wrap:break-word;
  204. text-transform:none;
  205. visibility:hidden;
  206. }
  207. #u33171 {
  208. border-width:0px;
  209. position:absolute;
  210. left:0px;
  211. top:0px;
  212. width:0px;
  213. height:0px;
  214. }
  215. #u33172_img {
  216. border-width:0px;
  217. position:absolute;
  218. left:0px;
  219. top:0px;
  220. width:5px;
  221. height:5px;
  222. }
  223. #u33172 {
  224. border-width:0px;
  225. position:absolute;
  226. left:323px;
  227. top:85px;
  228. width:5px;
  229. height:5px;
  230. display:flex;
  231. }
  232. #u33172 .text {
  233. position:absolute;
  234. align-self:center;
  235. padding:2px 2px 2px 2px;
  236. box-sizing:border-box;
  237. width:100%;
  238. }
  239. #u33172_text {
  240. border-width:0px;
  241. word-wrap:break-word;
  242. text-transform:none;
  243. visibility:hidden;
  244. }
  245. #u33173_img {
  246. border-width:0px;
  247. position:absolute;
  248. left:0px;
  249. top:0px;
  250. width:5px;
  251. height:5px;
  252. }
  253. #u33173 {
  254. border-width:0px;
  255. position:absolute;
  256. left:339px;
  257. top:85px;
  258. width:5px;
  259. height:5px;
  260. display:flex;
  261. }
  262. #u33173 .text {
  263. position:absolute;
  264. align-self:center;
  265. padding:2px 2px 2px 2px;
  266. box-sizing:border-box;
  267. width:100%;
  268. }
  269. #u33173_text {
  270. border-width:0px;
  271. word-wrap:break-word;
  272. text-transform:none;
  273. visibility:hidden;
  274. }
  275. #u33174_img {
  276. border-width:0px;
  277. position:absolute;
  278. left:0px;
  279. top:0px;
  280. width:7px;
  281. height:7px;
  282. }
  283. #u33174 {
  284. border-width:0px;
  285. position:absolute;
  286. left:330px;
  287. top:84px;
  288. width:7px;
  289. height:7px;
  290. display:flex;
  291. }
  292. #u33174 .text {
  293. position:absolute;
  294. align-self:center;
  295. padding:2px 2px 2px 2px;
  296. box-sizing:border-box;
  297. width:100%;
  298. }
  299. #u33174_text {
  300. border-width:0px;
  301. word-wrap:break-word;
  302. text-transform:none;
  303. visibility:hidden;
  304. }
  305. #u33175_img {
  306. border-width:0px;
  307. position:absolute;
  308. left:0px;
  309. top:0px;
  310. width:19px;
  311. height:2px;
  312. }
  313. #u33175 {
  314. border-width:0px;
  315. position:absolute;
  316. left:347px;
  317. top:87px;
  318. width:18px;
  319. height:1px;
  320. display:flex;
  321. -webkit-transform:rotate(90deg);
  322. -moz-transform:rotate(90deg);
  323. -ms-transform:rotate(90deg);
  324. transform:rotate(90deg);
  325. }
  326. #u33175 .text {
  327. position:absolute;
  328. align-self:center;
  329. padding:2px 2px 2px 2px;
  330. box-sizing:border-box;
  331. width:100%;
  332. }
  333. #u33175_text {
  334. border-width:0px;
  335. word-wrap:break-word;
  336. text-transform:none;
  337. visibility:hidden;
  338. }
  339. #u33176_img {
  340. border-width:0px;
  341. position:absolute;
  342. left:0px;
  343. top:0px;
  344. width:375px;
  345. height:44px;
  346. }
  347. #u33176 {
  348. border-width:0px;
  349. position:absolute;
  350. left:29px;
  351. top:24px;
  352. width:375px;
  353. height:44px;
  354. display:flex;
  355. }
  356. #u33176 .text {
  357. position:absolute;
  358. align-self:center;
  359. padding:2px 2px 2px 2px;
  360. box-sizing:border-box;
  361. width:100%;
  362. }
  363. #u33176_text {
  364. border-width:0px;
  365. word-wrap:break-word;
  366. text-transform:none;
  367. visibility:hidden;
  368. }
  369. #u33177_div {
  370. border-width:0px;
  371. position:absolute;
  372. left:0px;
  373. top:0px;
  374. width:375px;
  375. height:50px;
  376. background:inherit;
  377. background-color:rgba(255, 255, 255, 1);
  378. box-sizing:border-box;
  379. border-width:1px;
  380. border-style:solid;
  381. border-color:rgba(242, 242, 242, 1);
  382. border-radius:26px;
  383. border-top-left-radius:0px;
  384. border-top-right-radius:0px;
  385. -moz-box-shadow:none;
  386. -webkit-box-shadow:none;
  387. box-shadow:none;
  388. }
  389. #u33177 {
  390. border-width:0px;
  391. position:absolute;
  392. left:29px;
  393. top:788px;
  394. width:375px;
  395. height:50px;
  396. display:flex;
  397. }
  398. #u33177 .text {
  399. position:absolute;
  400. align-self:center;
  401. padding:2px 2px 2px 2px;
  402. box-sizing:border-box;
  403. width:100%;
  404. }
  405. #u33177_text {
  406. border-width:0px;
  407. word-wrap:break-word;
  408. text-transform:none;
  409. visibility:hidden;
  410. }
  411. #u33178 {
  412. border-width:0px;
  413. position:absolute;
  414. left:0px;
  415. top:0px;
  416. width:0px;
  417. height:0px;
  418. }
  419. #u33179_img {
  420. border-width:0px;
  421. position:absolute;
  422. left:0px;
  423. top:0px;
  424. width:24px;
  425. height:24px;
  426. }
  427. #u33179 {
  428. border-width:0px;
  429. position:absolute;
  430. left:69px;
  431. top:792px;
  432. width:24px;
  433. height:24px;
  434. display:flex;
  435. font-size:8px;
  436. }
  437. #u33179 .text {
  438. position:absolute;
  439. align-self:center;
  440. padding:2px 2px 2px 2px;
  441. box-sizing:border-box;
  442. width:100%;
  443. }
  444. #u33179_text {
  445. border-width:0px;
  446. word-wrap:break-word;
  447. text-transform:none;
  448. }
  449. #u33180_div {
  450. border-width:0px;
  451. position:absolute;
  452. left:0px;
  453. top:0px;
  454. width:25px;
  455. height:17px;
  456. background:inherit;
  457. background-color:rgba(255, 255, 255, 0);
  458. border:none;
  459. border-radius:0px;
  460. -moz-box-shadow:none;
  461. -webkit-box-shadow:none;
  462. box-shadow:none;
  463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  464. font-weight:400;
  465. font-style:normal;
  466. font-size:12px;
  467. }
  468. #u33180 {
  469. border-width:0px;
  470. position:absolute;
  471. left:69px;
  472. top:817px;
  473. width:25px;
  474. height:17px;
  475. display:flex;
  476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  477. font-weight:400;
  478. font-style:normal;
  479. font-size:12px;
  480. }
  481. #u33180 .text {
  482. position:absolute;
  483. align-self:flex-start;
  484. padding:0px 0px 0px 0px;
  485. box-sizing:border-box;
  486. width:100%;
  487. }
  488. #u33180_text {
  489. border-width:0px;
  490. white-space:nowrap;
  491. text-transform:none;
  492. }
  493. #u33181 {
  494. border-width:0px;
  495. position:absolute;
  496. left:0px;
  497. top:0px;
  498. width:0px;
  499. height:0px;
  500. }
  501. #u33182_img {
  502. border-width:0px;
  503. position:absolute;
  504. left:0px;
  505. top:0px;
  506. width:24px;
  507. height:24px;
  508. }
  509. #u33182 {
  510. border-width:0px;
  511. position:absolute;
  512. left:339px;
  513. top:794px;
  514. width:24px;
  515. height:24px;
  516. display:flex;
  517. font-size:8px;
  518. }
  519. #u33182 .text {
  520. position:absolute;
  521. align-self:center;
  522. padding:2px 2px 2px 2px;
  523. box-sizing:border-box;
  524. width:100%;
  525. }
  526. #u33182_text {
  527. border-width:0px;
  528. word-wrap:break-word;
  529. text-transform:none;
  530. }
  531. #u33183_div {
  532. border-width:0px;
  533. position:absolute;
  534. left:0px;
  535. top:0px;
  536. width:25px;
  537. height:17px;
  538. background:inherit;
  539. background-color:rgba(255, 255, 255, 0);
  540. border:none;
  541. border-radius:0px;
  542. -moz-box-shadow:none;
  543. -webkit-box-shadow:none;
  544. box-shadow:none;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:12px;
  549. }
  550. #u33183 {
  551. border-width:0px;
  552. position:absolute;
  553. left:339px;
  554. top:819px;
  555. width:25px;
  556. height:17px;
  557. display:flex;
  558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  559. font-weight:400;
  560. font-style:normal;
  561. font-size:12px;
  562. }
  563. #u33183 .text {
  564. position:absolute;
  565. align-self:flex-start;
  566. padding:0px 0px 0px 0px;
  567. box-sizing:border-box;
  568. width:100%;
  569. }
  570. #u33183_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u33184_div {
  576. border-width:0px;
  577. position:absolute;
  578. left:0px;
  579. top:0px;
  580. width:375px;
  581. height:681px;
  582. background:inherit;
  583. background-color:rgba(242, 242, 242, 0.462745098039216);
  584. border:none;
  585. border-radius:0px;
  586. -moz-box-shadow:none;
  587. -webkit-box-shadow:none;
  588. box-shadow:none;
  589. }
  590. #u33184 {
  591. border-width:0px;
  592. position:absolute;
  593. left:29px;
  594. top:107px;
  595. width:375px;
  596. height:681px;
  597. display:flex;
  598. }
  599. #u33184 .text {
  600. position:absolute;
  601. align-self:center;
  602. padding:2px 2px 2px 2px;
  603. box-sizing:border-box;
  604. width:100%;
  605. }
  606. #u33184_text {
  607. border-width:0px;
  608. word-wrap:break-word;
  609. text-transform:none;
  610. visibility:hidden;
  611. }
  612. #u33185 {
  613. border-width:0px;
  614. position:absolute;
  615. left:0px;
  616. top:0px;
  617. width:0px;
  618. height:0px;
  619. }
  620. #u33186_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:24px;
  626. height:24px;
  627. }
  628. #u33186 {
  629. border-width:0px;
  630. position:absolute;
  631. left:251px;
  632. top:792px;
  633. width:24px;
  634. height:24px;
  635. display:flex;
  636. font-size:8px;
  637. }
  638. #u33186 .text {
  639. position:absolute;
  640. align-self:center;
  641. padding:2px 2px 2px 2px;
  642. box-sizing:border-box;
  643. width:100%;
  644. }
  645. #u33186_text {
  646. border-width:0px;
  647. word-wrap:break-word;
  648. text-transform:none;
  649. }
  650. #u33187_div {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:37px;
  656. height:17px;
  657. background:inherit;
  658. background-color:rgba(255, 255, 255, 0);
  659. border:none;
  660. border-radius:0px;
  661. -moz-box-shadow:none;
  662. -webkit-box-shadow:none;
  663. box-shadow:none;
  664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  665. font-weight:400;
  666. font-style:normal;
  667. font-size:12px;
  668. }
  669. #u33187 {
  670. border-width:0px;
  671. position:absolute;
  672. left:245px;
  673. top:817px;
  674. width:37px;
  675. height:17px;
  676. display:flex;
  677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  678. font-weight:400;
  679. font-style:normal;
  680. font-size:12px;
  681. }
  682. #u33187 .text {
  683. position:absolute;
  684. align-self:flex-start;
  685. padding:0px 0px 0px 0px;
  686. box-sizing:border-box;
  687. width:100%;
  688. }
  689. #u33187_text {
  690. border-width:0px;
  691. white-space:nowrap;
  692. text-transform:none;
  693. }
  694. #u33188 {
  695. border-width:0px;
  696. position:absolute;
  697. left:0px;
  698. top:0px;
  699. width:0px;
  700. height:0px;
  701. }
  702. #u33189_img {
  703. border-width:0px;
  704. position:absolute;
  705. left:0px;
  706. top:0px;
  707. width:24px;
  708. height:24px;
  709. }
  710. #u33189 {
  711. border-width:0px;
  712. position:absolute;
  713. left:157px;
  714. top:792px;
  715. width:24px;
  716. height:24px;
  717. display:flex;
  718. font-size:8px;
  719. }
  720. #u33189 .text {
  721. position:absolute;
  722. align-self:center;
  723. padding:2px 2px 2px 2px;
  724. box-sizing:border-box;
  725. width:100%;
  726. }
  727. #u33189_text {
  728. border-width:0px;
  729. word-wrap:break-word;
  730. text-transform:none;
  731. }
  732. #u33190_div {
  733. border-width:0px;
  734. position:absolute;
  735. left:0px;
  736. top:0px;
  737. width:37px;
  738. height:17px;
  739. background:inherit;
  740. background-color:rgba(255, 255, 255, 0);
  741. border:none;
  742. border-radius:0px;
  743. -moz-box-shadow:none;
  744. -webkit-box-shadow:none;
  745. box-shadow:none;
  746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  747. font-weight:400;
  748. font-style:normal;
  749. font-size:12px;
  750. }
  751. #u33190 {
  752. border-width:0px;
  753. position:absolute;
  754. left:151px;
  755. top:817px;
  756. width:37px;
  757. height:17px;
  758. display:flex;
  759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  760. font-weight:400;
  761. font-style:normal;
  762. font-size:12px;
  763. }
  764. #u33190 .text {
  765. position:absolute;
  766. align-self:flex-start;
  767. padding:0px 0px 0px 0px;
  768. box-sizing:border-box;
  769. width:100%;
  770. }
  771. #u33190_text {
  772. border-width:0px;
  773. white-space:nowrap;
  774. text-transform:none;
  775. }
  776. #u33191_div {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:375px;
  782. height:736px;
  783. background:inherit;
  784. background-color:rgba(242, 242, 242, 1);
  785. box-sizing:border-box;
  786. border-width:1px;
  787. border-style:solid;
  788. border-color:rgba(242, 242, 242, 1);
  789. border-radius:26px;
  790. border-top-left-radius:0px;
  791. border-top-right-radius:0px;
  792. -moz-box-shadow:none;
  793. -webkit-box-shadow:none;
  794. box-shadow:none;
  795. }
  796. #u33191 {
  797. border-width:0px;
  798. position:absolute;
  799. left:29px;
  800. top:105px;
  801. width:375px;
  802. height:736px;
  803. display:flex;
  804. }
  805. #u33191 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u33191_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u33192 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u33193_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:197px;
  832. height:20px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. }
  844. #u33193 {
  845. border-width:0px;
  846. position:absolute;
  847. left:45px;
  848. top:74px;
  849. width:197px;
  850. height:20px;
  851. display:flex;
  852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  853. font-weight:400;
  854. font-style:normal;
  855. }
  856. #u33193 .text {
  857. position:absolute;
  858. align-self:flex-start;
  859. padding:0px 0px 0px 0px;
  860. box-sizing:border-box;
  861. width:100%;
  862. }
  863. #u33193_text {
  864. border-width:0px;
  865. white-space:nowrap;
  866. text-transform:none;
  867. }
  868. #u33194_img {
  869. border-width:0px;
  870. position:absolute;
  871. left:0px;
  872. top:0px;
  873. width:18px;
  874. height:14px;
  875. }
  876. #u33194 {
  877. border-width:0px;
  878. position:absolute;
  879. left:264px;
  880. top:78px;
  881. width:18px;
  882. height:14px;
  883. display:flex;
  884. }
  885. #u33194 .text {
  886. position:absolute;
  887. align-self:center;
  888. padding:2px 2px 2px 2px;
  889. box-sizing:border-box;
  890. width:100%;
  891. }
  892. #u33194_text {
  893. border-width:0px;
  894. word-wrap:break-word;
  895. text-transform:none;
  896. visibility:hidden;
  897. }
  898. #u33195_div {
  899. border-width:0px;
  900. position:absolute;
  901. left:0px;
  902. top:0px;
  903. width:375px;
  904. height:100px;
  905. background:inherit;
  906. background-color:rgba(255, 255, 255, 1);
  907. border:none;
  908. border-bottom:0px;
  909. border-radius:0px;
  910. border-bottom-right-radius:0px;
  911. border-bottom-left-radius:0px;
  912. -moz-box-shadow:none;
  913. -webkit-box-shadow:none;
  914. box-shadow:none;
  915. }
  916. #u33195 {
  917. border-width:0px;
  918. position:absolute;
  919. left:29px;
  920. top:105px;
  921. width:375px;
  922. height:100px;
  923. display:flex;
  924. }
  925. #u33195 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:2px 2px 2px 2px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u33195_text {
  933. border-width:0px;
  934. word-wrap:break-word;
  935. text-transform:none;
  936. }
  937. #u33196_img {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:15px;
  943. height:7px;
  944. }
  945. #u33196 {
  946. border-width:0px;
  947. position:absolute;
  948. left:209px;
  949. top:188px;
  950. width:15px;
  951. height:7px;
  952. display:flex;
  953. }
  954. #u33196 .text {
  955. position:absolute;
  956. align-self:center;
  957. padding:2px 2px 2px 2px;
  958. box-sizing:border-box;
  959. width:100%;
  960. }
  961. #u33196_text {
  962. border-width:0px;
  963. word-wrap:break-word;
  964. text-transform:none;
  965. visibility:hidden;
  966. }
  967. #u33197_div {
  968. border-width:0px;
  969. position:absolute;
  970. left:0px;
  971. top:0px;
  972. width:49px;
  973. height:30px;
  974. background:inherit;
  975. background-color:rgba(255, 255, 255, 0);
  976. border:none;
  977. border-radius:0px;
  978. -moz-box-shadow:none;
  979. -webkit-box-shadow:none;
  980. box-shadow:none;
  981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  982. font-weight:400;
  983. font-style:normal;
  984. font-size:12px;
  985. color:#7F7F7F;
  986. }
  987. #u33197 {
  988. border-width:0px;
  989. position:absolute;
  990. left:39px;
  991. top:215px;
  992. width:49px;
  993. height:30px;
  994. display:flex;
  995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  996. font-weight:400;
  997. font-style:normal;
  998. font-size:12px;
  999. color:#7F7F7F;
  1000. }
  1001. #u33197 .text {
  1002. position:absolute;
  1003. align-self:center;
  1004. padding:0px 0px 0px 0px;
  1005. box-sizing:border-box;
  1006. width:100%;
  1007. }
  1008. #u33197_text {
  1009. border-width:0px;
  1010. white-space:nowrap;
  1011. text-transform:none;
  1012. }
  1013. #u33198 {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:0px;
  1019. height:0px;
  1020. }
  1021. #u33199_div {
  1022. border-width:0px;
  1023. position:absolute;
  1024. left:0px;
  1025. top:0px;
  1026. width:355px;
  1027. height:128px;
  1028. background:inherit;
  1029. background-color:rgba(255, 255, 255, 1);
  1030. border:none;
  1031. border-radius:10px;
  1032. -moz-box-shadow:none;
  1033. -webkit-box-shadow:none;
  1034. box-shadow:none;
  1035. }
  1036. #u33199 {
  1037. border-width:0px;
  1038. position:absolute;
  1039. left:39px;
  1040. top:245px;
  1041. width:355px;
  1042. height:128px;
  1043. display:flex;
  1044. }
  1045. #u33199 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:2px 2px 2px 2px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u33199_text {
  1053. border-width:0px;
  1054. word-wrap:break-word;
  1055. text-transform:none;
  1056. }
  1057. #u33200_div {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:19px;
  1063. height:13px;
  1064. background:inherit;
  1065. background-color:rgba(0, 0, 0, 1);
  1066. border:none;
  1067. border-radius:0px;
  1068. -moz-box-shadow:none;
  1069. -webkit-box-shadow:none;
  1070. box-shadow:none;
  1071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1072. font-weight:400;
  1073. font-style:normal;
  1074. font-size:9px;
  1075. color:#FFFFFF;
  1076. }
  1077. #u33200 {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:375px;
  1081. top:245px;
  1082. width:19px;
  1083. height:13px;
  1084. display:flex;
  1085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1086. font-weight:400;
  1087. font-style:normal;
  1088. font-size:9px;
  1089. color:#FFFFFF;
  1090. }
  1091. #u33200 .text {
  1092. position:absolute;
  1093. align-self:center;
  1094. padding:0px 0px 0px 0px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u33200_text {
  1099. border-width:0px;
  1100. white-space:nowrap;
  1101. text-transform:none;
  1102. }
  1103. #u33201_div {
  1104. border-width:0px;
  1105. position:absolute;
  1106. left:0px;
  1107. top:0px;
  1108. width:127px;
  1109. height:30px;
  1110. background:inherit;
  1111. background-color:rgba(255, 255, 255, 0);
  1112. border:none;
  1113. border-left:0px;
  1114. border-top:0px;
  1115. border-right:0px;
  1116. border-radius:0px;
  1117. border-bottom-right-radius:0px;
  1118. border-bottom-left-radius:0px;
  1119. -moz-box-shadow:none;
  1120. -webkit-box-shadow:none;
  1121. box-shadow:none;
  1122. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1123. font-weight:500;
  1124. font-style:normal;
  1125. font-size:14px;
  1126. line-height:30px;
  1127. }
  1128. #u33201 {
  1129. border-width:0px;
  1130. position:absolute;
  1131. left:60px;
  1132. top:255px;
  1133. width:127px;
  1134. height:30px;
  1135. display:flex;
  1136. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1137. font-weight:500;
  1138. font-style:normal;
  1139. font-size:14px;
  1140. line-height:30px;
  1141. }
  1142. #u33201 .text {
  1143. position:absolute;
  1144. align-self:flex-start;
  1145. padding:0px 0px 0px 0px;
  1146. box-sizing:border-box;
  1147. width:100%;
  1148. }
  1149. #u33201_text {
  1150. border-width:0px;
  1151. white-space:nowrap;
  1152. text-transform:none;
  1153. }
  1154. #u33202_div {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:325px;
  1160. height:80px;
  1161. background:inherit;
  1162. background-color:rgba(255, 255, 255, 0);
  1163. border:none;
  1164. border-left:0px;
  1165. border-top:0px;
  1166. border-right:0px;
  1167. border-radius:0px;
  1168. border-bottom-right-radius:0px;
  1169. border-bottom-left-radius:0px;
  1170. -moz-box-shadow:none;
  1171. -webkit-box-shadow:none;
  1172. box-shadow:none;
  1173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1174. font-weight:400;
  1175. font-style:normal;
  1176. font-size:12px;
  1177. line-height:20px;
  1178. }
  1179. #u33202 {
  1180. border-width:0px;
  1181. position:absolute;
  1182. left:59px;
  1183. top:284px;
  1184. width:325px;
  1185. height:80px;
  1186. display:flex;
  1187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1188. font-weight:400;
  1189. font-style:normal;
  1190. font-size:12px;
  1191. line-height:20px;
  1192. }
  1193. #u33202 .text {
  1194. position:absolute;
  1195. align-self:flex-start;
  1196. padding:0px 0px 0px 0px;
  1197. box-sizing:border-box;
  1198. width:100%;
  1199. }
  1200. #u33202_text {
  1201. border-width:0px;
  1202. word-wrap:break-word;
  1203. text-transform:none;
  1204. }
  1205. #u33204_img {
  1206. border-width:0px;
  1207. position:absolute;
  1208. left:0px;
  1209. top:0px;
  1210. width:433px;
  1211. height:865px;
  1212. }
  1213. #u33204 {
  1214. border-width:0px;
  1215. position:absolute;
  1216. left:453px;
  1217. top:0px;
  1218. width:433px;
  1219. height:865px;
  1220. display:flex;
  1221. }
  1222. #u33204 .text {
  1223. position:absolute;
  1224. align-self:center;
  1225. padding:2px 2px 2px 2px;
  1226. box-sizing:border-box;
  1227. width:100%;
  1228. }
  1229. #u33204_text {
  1230. border-width:0px;
  1231. word-wrap:break-word;
  1232. text-transform:none;
  1233. visibility:hidden;
  1234. }
  1235. #u33205_div {
  1236. border-width:0px;
  1237. position:absolute;
  1238. left:0px;
  1239. top:0px;
  1240. width:375px;
  1241. height:40px;
  1242. background:inherit;
  1243. background-color:rgba(255, 255, 255, 1);
  1244. border:none;
  1245. border-left:0px;
  1246. border-top:0px;
  1247. border-right:0px;
  1248. border-radius:0px;
  1249. border-bottom-right-radius:0px;
  1250. border-bottom-left-radius:0px;
  1251. -moz-box-shadow:none;
  1252. -webkit-box-shadow:none;
  1253. box-shadow:none;
  1254. }
  1255. #u33205 {
  1256. border-width:0px;
  1257. position:absolute;
  1258. left:482px;
  1259. top:67px;
  1260. width:375px;
  1261. height:40px;
  1262. display:flex;
  1263. }
  1264. #u33205 .text {
  1265. position:absolute;
  1266. align-self:center;
  1267. padding:2px 2px 2px 2px;
  1268. box-sizing:border-box;
  1269. width:100%;
  1270. }
  1271. #u33205_text {
  1272. border-width:0px;
  1273. word-wrap:break-word;
  1274. text-transform:none;
  1275. visibility:hidden;
  1276. }
  1277. #u33206 {
  1278. border-width:0px;
  1279. position:absolute;
  1280. left:0px;
  1281. top:0px;
  1282. width:0px;
  1283. height:0px;
  1284. }
  1285. #u33207_div {
  1286. border-width:0px;
  1287. position:absolute;
  1288. left:0px;
  1289. top:0px;
  1290. width:88px;
  1291. height:32px;
  1292. background:inherit;
  1293. background-color:rgba(255, 255, 255, 1);
  1294. box-sizing:border-box;
  1295. border-width:1px;
  1296. border-style:solid;
  1297. border-color:rgba(242, 242, 242, 1);
  1298. border-radius:33px;
  1299. -moz-box-shadow:none;
  1300. -webkit-box-shadow:none;
  1301. box-shadow:none;
  1302. }
  1303. #u33207 {
  1304. border-width:0px;
  1305. position:absolute;
  1306. left:762px;
  1307. top:71px;
  1308. width:88px;
  1309. height:32px;
  1310. display:flex;
  1311. }
  1312. #u33207 .text {
  1313. position:absolute;
  1314. align-self:center;
  1315. padding:2px 2px 2px 2px;
  1316. box-sizing:border-box;
  1317. width:100%;
  1318. }
  1319. #u33207_text {
  1320. border-width:0px;
  1321. word-wrap:break-word;
  1322. text-transform:none;
  1323. visibility:hidden;
  1324. }
  1325. #u33208 {
  1326. border-width:0px;
  1327. position:absolute;
  1328. left:0px;
  1329. top:0px;
  1330. width:0px;
  1331. height:0px;
  1332. }
  1333. #u33209_img {
  1334. border-width:0px;
  1335. position:absolute;
  1336. left:0px;
  1337. top:0px;
  1338. width:18px;
  1339. height:18px;
  1340. }
  1341. #u33209 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:825px;
  1345. top:78px;
  1346. width:18px;
  1347. height:18px;
  1348. display:flex;
  1349. }
  1350. #u33209 .text {
  1351. position:absolute;
  1352. align-self:center;
  1353. padding:2px 2px 2px 2px;
  1354. box-sizing:border-box;
  1355. width:100%;
  1356. }
  1357. #u33209_text {
  1358. border-width:0px;
  1359. word-wrap:break-word;
  1360. text-transform:none;
  1361. visibility:hidden;
  1362. }
  1363. #u33210_img {
  1364. border-width:0px;
  1365. position:absolute;
  1366. left:0px;
  1367. top:0px;
  1368. width:6px;
  1369. height:6px;
  1370. }
  1371. #u33210 {
  1372. border-width:0px;
  1373. position:absolute;
  1374. left:831px;
  1375. top:84px;
  1376. width:6px;
  1377. height:6px;
  1378. display:flex;
  1379. }
  1380. #u33210 .text {
  1381. position:absolute;
  1382. align-self:center;
  1383. padding:2px 2px 2px 2px;
  1384. box-sizing:border-box;
  1385. width:100%;
  1386. }
  1387. #u33210_text {
  1388. border-width:0px;
  1389. word-wrap:break-word;
  1390. text-transform:none;
  1391. visibility:hidden;
  1392. }
  1393. #u33211 {
  1394. border-width:0px;
  1395. position:absolute;
  1396. left:0px;
  1397. top:0px;
  1398. width:0px;
  1399. height:0px;
  1400. }
  1401. #u33212_img {
  1402. border-width:0px;
  1403. position:absolute;
  1404. left:0px;
  1405. top:0px;
  1406. width:5px;
  1407. height:5px;
  1408. }
  1409. #u33212 {
  1410. border-width:0px;
  1411. position:absolute;
  1412. left:776px;
  1413. top:85px;
  1414. width:5px;
  1415. height:5px;
  1416. display:flex;
  1417. }
  1418. #u33212 .text {
  1419. position:absolute;
  1420. align-self:center;
  1421. padding:2px 2px 2px 2px;
  1422. box-sizing:border-box;
  1423. width:100%;
  1424. }
  1425. #u33212_text {
  1426. border-width:0px;
  1427. word-wrap:break-word;
  1428. text-transform:none;
  1429. visibility:hidden;
  1430. }
  1431. #u33213_img {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:0px;
  1435. top:0px;
  1436. width:5px;
  1437. height:5px;
  1438. }
  1439. #u33213 {
  1440. border-width:0px;
  1441. position:absolute;
  1442. left:792px;
  1443. top:85px;
  1444. width:5px;
  1445. height:5px;
  1446. display:flex;
  1447. }
  1448. #u33213 .text {
  1449. position:absolute;
  1450. align-self:center;
  1451. padding:2px 2px 2px 2px;
  1452. box-sizing:border-box;
  1453. width:100%;
  1454. }
  1455. #u33213_text {
  1456. border-width:0px;
  1457. word-wrap:break-word;
  1458. text-transform:none;
  1459. visibility:hidden;
  1460. }
  1461. #u33214_img {
  1462. border-width:0px;
  1463. position:absolute;
  1464. left:0px;
  1465. top:0px;
  1466. width:7px;
  1467. height:7px;
  1468. }
  1469. #u33214 {
  1470. border-width:0px;
  1471. position:absolute;
  1472. left:783px;
  1473. top:84px;
  1474. width:7px;
  1475. height:7px;
  1476. display:flex;
  1477. }
  1478. #u33214 .text {
  1479. position:absolute;
  1480. align-self:center;
  1481. padding:2px 2px 2px 2px;
  1482. box-sizing:border-box;
  1483. width:100%;
  1484. }
  1485. #u33214_text {
  1486. border-width:0px;
  1487. word-wrap:break-word;
  1488. text-transform:none;
  1489. visibility:hidden;
  1490. }
  1491. #u33215_img {
  1492. border-width:0px;
  1493. position:absolute;
  1494. left:0px;
  1495. top:0px;
  1496. width:19px;
  1497. height:2px;
  1498. }
  1499. #u33215 {
  1500. border-width:0px;
  1501. position:absolute;
  1502. left:800px;
  1503. top:87px;
  1504. width:18px;
  1505. height:1px;
  1506. display:flex;
  1507. -webkit-transform:rotate(90deg);
  1508. -moz-transform:rotate(90deg);
  1509. -ms-transform:rotate(90deg);
  1510. transform:rotate(90deg);
  1511. }
  1512. #u33215 .text {
  1513. position:absolute;
  1514. align-self:center;
  1515. padding:2px 2px 2px 2px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u33215_text {
  1520. border-width:0px;
  1521. word-wrap:break-word;
  1522. text-transform:none;
  1523. visibility:hidden;
  1524. }
  1525. #u33216_img {
  1526. border-width:0px;
  1527. position:absolute;
  1528. left:0px;
  1529. top:0px;
  1530. width:375px;
  1531. height:44px;
  1532. }
  1533. #u33216 {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:482px;
  1537. top:24px;
  1538. width:375px;
  1539. height:44px;
  1540. display:flex;
  1541. }
  1542. #u33216 .text {
  1543. position:absolute;
  1544. align-self:center;
  1545. padding:2px 2px 2px 2px;
  1546. box-sizing:border-box;
  1547. width:100%;
  1548. }
  1549. #u33216_text {
  1550. border-width:0px;
  1551. word-wrap:break-word;
  1552. text-transform:none;
  1553. visibility:hidden;
  1554. }
  1555. #u33217_div {
  1556. border-width:0px;
  1557. position:absolute;
  1558. left:0px;
  1559. top:0px;
  1560. width:375px;
  1561. height:50px;
  1562. background:inherit;
  1563. background-color:rgba(255, 255, 255, 1);
  1564. box-sizing:border-box;
  1565. border-width:1px;
  1566. border-style:solid;
  1567. border-color:rgba(242, 242, 242, 1);
  1568. border-radius:26px;
  1569. border-top-left-radius:0px;
  1570. border-top-right-radius:0px;
  1571. -moz-box-shadow:none;
  1572. -webkit-box-shadow:none;
  1573. box-shadow:none;
  1574. }
  1575. #u33217 {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:482px;
  1579. top:788px;
  1580. width:375px;
  1581. height:50px;
  1582. display:flex;
  1583. }
  1584. #u33217 .text {
  1585. position:absolute;
  1586. align-self:center;
  1587. padding:2px 2px 2px 2px;
  1588. box-sizing:border-box;
  1589. width:100%;
  1590. }
  1591. #u33217_text {
  1592. border-width:0px;
  1593. word-wrap:break-word;
  1594. text-transform:none;
  1595. visibility:hidden;
  1596. }
  1597. #u33218 {
  1598. border-width:0px;
  1599. position:absolute;
  1600. left:0px;
  1601. top:0px;
  1602. width:0px;
  1603. height:0px;
  1604. }
  1605. #u33219_img {
  1606. border-width:0px;
  1607. position:absolute;
  1608. left:0px;
  1609. top:0px;
  1610. width:24px;
  1611. height:24px;
  1612. }
  1613. #u33219 {
  1614. border-width:0px;
  1615. position:absolute;
  1616. left:522px;
  1617. top:792px;
  1618. width:24px;
  1619. height:24px;
  1620. display:flex;
  1621. font-size:8px;
  1622. }
  1623. #u33219 .text {
  1624. position:absolute;
  1625. align-self:center;
  1626. padding:2px 2px 2px 2px;
  1627. box-sizing:border-box;
  1628. width:100%;
  1629. }
  1630. #u33219_text {
  1631. border-width:0px;
  1632. word-wrap:break-word;
  1633. text-transform:none;
  1634. }
  1635. #u33220_div {
  1636. border-width:0px;
  1637. position:absolute;
  1638. left:0px;
  1639. top:0px;
  1640. width:25px;
  1641. height:17px;
  1642. background:inherit;
  1643. background-color:rgba(255, 255, 255, 0);
  1644. border:none;
  1645. border-radius:0px;
  1646. -moz-box-shadow:none;
  1647. -webkit-box-shadow:none;
  1648. box-shadow:none;
  1649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1650. font-weight:400;
  1651. font-style:normal;
  1652. font-size:12px;
  1653. }
  1654. #u33220 {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:522px;
  1658. top:817px;
  1659. width:25px;
  1660. height:17px;
  1661. display:flex;
  1662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1663. font-weight:400;
  1664. font-style:normal;
  1665. font-size:12px;
  1666. }
  1667. #u33220 .text {
  1668. position:absolute;
  1669. align-self:flex-start;
  1670. padding:0px 0px 0px 0px;
  1671. box-sizing:border-box;
  1672. width:100%;
  1673. }
  1674. #u33220_text {
  1675. border-width:0px;
  1676. white-space:nowrap;
  1677. text-transform:none;
  1678. }
  1679. #u33221 {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:0px;
  1683. top:0px;
  1684. width:0px;
  1685. height:0px;
  1686. }
  1687. #u33222_img {
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:0px;
  1691. top:0px;
  1692. width:24px;
  1693. height:24px;
  1694. }
  1695. #u33222 {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:792px;
  1699. top:794px;
  1700. width:24px;
  1701. height:24px;
  1702. display:flex;
  1703. font-size:8px;
  1704. }
  1705. #u33222 .text {
  1706. position:absolute;
  1707. align-self:center;
  1708. padding:2px 2px 2px 2px;
  1709. box-sizing:border-box;
  1710. width:100%;
  1711. }
  1712. #u33222_text {
  1713. border-width:0px;
  1714. word-wrap:break-word;
  1715. text-transform:none;
  1716. }
  1717. #u33223_div {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:0px;
  1721. top:0px;
  1722. width:25px;
  1723. height:17px;
  1724. background:inherit;
  1725. background-color:rgba(255, 255, 255, 0);
  1726. border:none;
  1727. border-radius:0px;
  1728. -moz-box-shadow:none;
  1729. -webkit-box-shadow:none;
  1730. box-shadow:none;
  1731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1732. font-weight:400;
  1733. font-style:normal;
  1734. font-size:12px;
  1735. }
  1736. #u33223 {
  1737. border-width:0px;
  1738. position:absolute;
  1739. left:792px;
  1740. top:819px;
  1741. width:25px;
  1742. height:17px;
  1743. display:flex;
  1744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1745. font-weight:400;
  1746. font-style:normal;
  1747. font-size:12px;
  1748. }
  1749. #u33223 .text {
  1750. position:absolute;
  1751. align-self:flex-start;
  1752. padding:0px 0px 0px 0px;
  1753. box-sizing:border-box;
  1754. width:100%;
  1755. }
  1756. #u33223_text {
  1757. border-width:0px;
  1758. white-space:nowrap;
  1759. text-transform:none;
  1760. }
  1761. #u33224_div {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:0px;
  1765. top:0px;
  1766. width:375px;
  1767. height:681px;
  1768. background:inherit;
  1769. background-color:rgba(242, 242, 242, 0.462745098039216);
  1770. border:none;
  1771. border-radius:0px;
  1772. -moz-box-shadow:none;
  1773. -webkit-box-shadow:none;
  1774. box-shadow:none;
  1775. }
  1776. #u33224 {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:482px;
  1780. top:107px;
  1781. width:375px;
  1782. height:681px;
  1783. display:flex;
  1784. }
  1785. #u33224 .text {
  1786. position:absolute;
  1787. align-self:center;
  1788. padding:2px 2px 2px 2px;
  1789. box-sizing:border-box;
  1790. width:100%;
  1791. }
  1792. #u33224_text {
  1793. border-width:0px;
  1794. word-wrap:break-word;
  1795. text-transform:none;
  1796. visibility:hidden;
  1797. }
  1798. #u33225 {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:0px;
  1802. top:0px;
  1803. width:0px;
  1804. height:0px;
  1805. }
  1806. #u33226_img {
  1807. border-width:0px;
  1808. position:absolute;
  1809. left:0px;
  1810. top:0px;
  1811. width:24px;
  1812. height:24px;
  1813. }
  1814. #u33226 {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:704px;
  1818. top:792px;
  1819. width:24px;
  1820. height:24px;
  1821. display:flex;
  1822. font-size:8px;
  1823. }
  1824. #u33226 .text {
  1825. position:absolute;
  1826. align-self:center;
  1827. padding:2px 2px 2px 2px;
  1828. box-sizing:border-box;
  1829. width:100%;
  1830. }
  1831. #u33226_text {
  1832. border-width:0px;
  1833. word-wrap:break-word;
  1834. text-transform:none;
  1835. }
  1836. #u33227_div {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:0px;
  1840. top:0px;
  1841. width:37px;
  1842. height:17px;
  1843. background:inherit;
  1844. background-color:rgba(255, 255, 255, 0);
  1845. border:none;
  1846. border-radius:0px;
  1847. -moz-box-shadow:none;
  1848. -webkit-box-shadow:none;
  1849. box-shadow:none;
  1850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1851. font-weight:400;
  1852. font-style:normal;
  1853. font-size:12px;
  1854. }
  1855. #u33227 {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:698px;
  1859. top:817px;
  1860. width:37px;
  1861. height:17px;
  1862. display:flex;
  1863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1864. font-weight:400;
  1865. font-style:normal;
  1866. font-size:12px;
  1867. }
  1868. #u33227 .text {
  1869. position:absolute;
  1870. align-self:flex-start;
  1871. padding:0px 0px 0px 0px;
  1872. box-sizing:border-box;
  1873. width:100%;
  1874. }
  1875. #u33227_text {
  1876. border-width:0px;
  1877. white-space:nowrap;
  1878. text-transform:none;
  1879. }
  1880. #u33228 {
  1881. border-width:0px;
  1882. position:absolute;
  1883. left:0px;
  1884. top:0px;
  1885. width:0px;
  1886. height:0px;
  1887. }
  1888. #u33229_img {
  1889. border-width:0px;
  1890. position:absolute;
  1891. left:0px;
  1892. top:0px;
  1893. width:24px;
  1894. height:24px;
  1895. }
  1896. #u33229 {
  1897. border-width:0px;
  1898. position:absolute;
  1899. left:610px;
  1900. top:792px;
  1901. width:24px;
  1902. height:24px;
  1903. display:flex;
  1904. font-size:8px;
  1905. }
  1906. #u33229 .text {
  1907. position:absolute;
  1908. align-self:center;
  1909. padding:2px 2px 2px 2px;
  1910. box-sizing:border-box;
  1911. width:100%;
  1912. }
  1913. #u33229_text {
  1914. border-width:0px;
  1915. word-wrap:break-word;
  1916. text-transform:none;
  1917. }
  1918. #u33230_div {
  1919. border-width:0px;
  1920. position:absolute;
  1921. left:0px;
  1922. top:0px;
  1923. width:37px;
  1924. height:17px;
  1925. background:inherit;
  1926. background-color:rgba(255, 255, 255, 0);
  1927. border:none;
  1928. border-radius:0px;
  1929. -moz-box-shadow:none;
  1930. -webkit-box-shadow:none;
  1931. box-shadow:none;
  1932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1933. font-weight:400;
  1934. font-style:normal;
  1935. font-size:12px;
  1936. }
  1937. #u33230 {
  1938. border-width:0px;
  1939. position:absolute;
  1940. left:604px;
  1941. top:817px;
  1942. width:37px;
  1943. height:17px;
  1944. display:flex;
  1945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1946. font-weight:400;
  1947. font-style:normal;
  1948. font-size:12px;
  1949. }
  1950. #u33230 .text {
  1951. position:absolute;
  1952. align-self:flex-start;
  1953. padding:0px 0px 0px 0px;
  1954. box-sizing:border-box;
  1955. width:100%;
  1956. }
  1957. #u33230_text {
  1958. border-width:0px;
  1959. white-space:nowrap;
  1960. text-transform:none;
  1961. }
  1962. #u33231_div {
  1963. border-width:0px;
  1964. position:absolute;
  1965. left:0px;
  1966. top:0px;
  1967. width:375px;
  1968. height:736px;
  1969. background:inherit;
  1970. background-color:rgba(242, 242, 242, 1);
  1971. box-sizing:border-box;
  1972. border-width:1px;
  1973. border-style:solid;
  1974. border-color:rgba(242, 242, 242, 1);
  1975. border-radius:26px;
  1976. border-top-left-radius:0px;
  1977. border-top-right-radius:0px;
  1978. -moz-box-shadow:none;
  1979. -webkit-box-shadow:none;
  1980. box-shadow:none;
  1981. }
  1982. #u33231 {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:482px;
  1986. top:105px;
  1987. width:375px;
  1988. height:736px;
  1989. display:flex;
  1990. }
  1991. #u33231 .text {
  1992. position:absolute;
  1993. align-self:center;
  1994. padding:2px 2px 2px 2px;
  1995. box-sizing:border-box;
  1996. width:100%;
  1997. }
  1998. #u33231_text {
  1999. border-width:0px;
  2000. word-wrap:break-word;
  2001. text-transform:none;
  2002. visibility:hidden;
  2003. }
  2004. #u33232 {
  2005. border-width:0px;
  2006. position:absolute;
  2007. left:0px;
  2008. top:0px;
  2009. width:0px;
  2010. height:0px;
  2011. }
  2012. #u33233_div {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:0px;
  2016. top:0px;
  2017. width:197px;
  2018. height:20px;
  2019. background:inherit;
  2020. background-color:rgba(255, 255, 255, 0);
  2021. border:none;
  2022. border-radius:0px;
  2023. -moz-box-shadow:none;
  2024. -webkit-box-shadow:none;
  2025. box-shadow:none;
  2026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2027. font-weight:400;
  2028. font-style:normal;
  2029. }
  2030. #u33233 {
  2031. border-width:0px;
  2032. position:absolute;
  2033. left:498px;
  2034. top:74px;
  2035. width:197px;
  2036. height:20px;
  2037. display:flex;
  2038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2039. font-weight:400;
  2040. font-style:normal;
  2041. }
  2042. #u33233 .text {
  2043. position:absolute;
  2044. align-self:flex-start;
  2045. padding:0px 0px 0px 0px;
  2046. box-sizing:border-box;
  2047. width:100%;
  2048. }
  2049. #u33233_text {
  2050. border-width:0px;
  2051. white-space:nowrap;
  2052. text-transform:none;
  2053. }
  2054. #u33234_img {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:0px;
  2058. top:0px;
  2059. width:18px;
  2060. height:14px;
  2061. }
  2062. #u33234 {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:717px;
  2066. top:78px;
  2067. width:18px;
  2068. height:14px;
  2069. display:flex;
  2070. }
  2071. #u33234 .text {
  2072. position:absolute;
  2073. align-self:center;
  2074. padding:2px 2px 2px 2px;
  2075. box-sizing:border-box;
  2076. width:100%;
  2077. }
  2078. #u33234_text {
  2079. border-width:0px;
  2080. word-wrap:break-word;
  2081. text-transform:none;
  2082. visibility:hidden;
  2083. }
  2084. #u33235 {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:0px;
  2088. top:0px;
  2089. width:0px;
  2090. height:0px;
  2091. }
  2092. #u33236_div {
  2093. border-width:0px;
  2094. position:absolute;
  2095. left:0px;
  2096. top:0px;
  2097. width:375px;
  2098. height:30px;
  2099. background:inherit;
  2100. background-color:rgba(255, 255, 255, 1);
  2101. border:none;
  2102. border-bottom:0px;
  2103. border-radius:0px;
  2104. border-bottom-right-radius:0px;
  2105. border-bottom-left-radius:0px;
  2106. -moz-box-shadow:none;
  2107. -webkit-box-shadow:none;
  2108. box-shadow:none;
  2109. }
  2110. #u33236 {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:482px;
  2114. top:105px;
  2115. width:375px;
  2116. height:30px;
  2117. display:flex;
  2118. }
  2119. #u33236 .text {
  2120. position:absolute;
  2121. align-self:center;
  2122. padding:2px 2px 2px 2px;
  2123. box-sizing:border-box;
  2124. width:100%;
  2125. }
  2126. #u33236_text {
  2127. border-width:0px;
  2128. word-wrap:break-word;
  2129. text-transform:none;
  2130. }
  2131. #u33237_img {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:0px;
  2135. top:0px;
  2136. width:15px;
  2137. height:7px;
  2138. }
  2139. #u33237 {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:666px;
  2143. top:117px;
  2144. width:15px;
  2145. height:7px;
  2146. display:flex;
  2147. -webkit-transform:rotate(180deg);
  2148. -moz-transform:rotate(180deg);
  2149. -ms-transform:rotate(180deg);
  2150. transform:rotate(180deg);
  2151. }
  2152. #u33237 .text {
  2153. position:absolute;
  2154. align-self:center;
  2155. padding:2px 2px 2px 2px;
  2156. box-sizing:border-box;
  2157. width:100%;
  2158. }
  2159. #u33237_text {
  2160. border-width:0px;
  2161. word-wrap:break-word;
  2162. text-transform:none;
  2163. visibility:hidden;
  2164. }
  2165. #u33239_img {
  2166. border-width:0px;
  2167. position:absolute;
  2168. left:0px;
  2169. top:0px;
  2170. width:433px;
  2171. height:865px;
  2172. }
  2173. #u33239 {
  2174. border-width:0px;
  2175. position:absolute;
  2176. left:906px;
  2177. top:0px;
  2178. width:433px;
  2179. height:865px;
  2180. display:flex;
  2181. }
  2182. #u33239 .text {
  2183. position:absolute;
  2184. align-self:center;
  2185. padding:2px 2px 2px 2px;
  2186. box-sizing:border-box;
  2187. width:100%;
  2188. }
  2189. #u33239_text {
  2190. border-width:0px;
  2191. word-wrap:break-word;
  2192. text-transform:none;
  2193. visibility:hidden;
  2194. }
  2195. #u33240_div {
  2196. border-width:0px;
  2197. position:absolute;
  2198. left:0px;
  2199. top:0px;
  2200. width:375px;
  2201. height:40px;
  2202. background:inherit;
  2203. background-color:rgba(255, 255, 255, 1);
  2204. border:none;
  2205. border-left:0px;
  2206. border-top:0px;
  2207. border-right:0px;
  2208. border-radius:0px;
  2209. border-bottom-right-radius:0px;
  2210. border-bottom-left-radius:0px;
  2211. -moz-box-shadow:none;
  2212. -webkit-box-shadow:none;
  2213. box-shadow:none;
  2214. }
  2215. #u33240 {
  2216. border-width:0px;
  2217. position:absolute;
  2218. left:935px;
  2219. top:67px;
  2220. width:375px;
  2221. height:40px;
  2222. display:flex;
  2223. }
  2224. #u33240 .text {
  2225. position:absolute;
  2226. align-self:center;
  2227. padding:2px 2px 2px 2px;
  2228. box-sizing:border-box;
  2229. width:100%;
  2230. }
  2231. #u33240_text {
  2232. border-width:0px;
  2233. word-wrap:break-word;
  2234. text-transform:none;
  2235. visibility:hidden;
  2236. }
  2237. #u33241 {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:0px;
  2241. top:0px;
  2242. width:0px;
  2243. height:0px;
  2244. }
  2245. #u33242_div {
  2246. border-width:0px;
  2247. position:absolute;
  2248. left:0px;
  2249. top:0px;
  2250. width:88px;
  2251. height:32px;
  2252. background:inherit;
  2253. background-color:rgba(255, 255, 255, 1);
  2254. box-sizing:border-box;
  2255. border-width:1px;
  2256. border-style:solid;
  2257. border-color:rgba(242, 242, 242, 1);
  2258. border-radius:33px;
  2259. -moz-box-shadow:none;
  2260. -webkit-box-shadow:none;
  2261. box-shadow:none;
  2262. }
  2263. #u33242 {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:1215px;
  2267. top:71px;
  2268. width:88px;
  2269. height:32px;
  2270. display:flex;
  2271. }
  2272. #u33242 .text {
  2273. position:absolute;
  2274. align-self:center;
  2275. padding:2px 2px 2px 2px;
  2276. box-sizing:border-box;
  2277. width:100%;
  2278. }
  2279. #u33242_text {
  2280. border-width:0px;
  2281. word-wrap:break-word;
  2282. text-transform:none;
  2283. visibility:hidden;
  2284. }
  2285. #u33243 {
  2286. border-width:0px;
  2287. position:absolute;
  2288. left:0px;
  2289. top:0px;
  2290. width:0px;
  2291. height:0px;
  2292. }
  2293. #u33244_img {
  2294. border-width:0px;
  2295. position:absolute;
  2296. left:0px;
  2297. top:0px;
  2298. width:18px;
  2299. height:18px;
  2300. }
  2301. #u33244 {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:1278px;
  2305. top:78px;
  2306. width:18px;
  2307. height:18px;
  2308. display:flex;
  2309. }
  2310. #u33244 .text {
  2311. position:absolute;
  2312. align-self:center;
  2313. padding:2px 2px 2px 2px;
  2314. box-sizing:border-box;
  2315. width:100%;
  2316. }
  2317. #u33244_text {
  2318. border-width:0px;
  2319. word-wrap:break-word;
  2320. text-transform:none;
  2321. visibility:hidden;
  2322. }
  2323. #u33245_img {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:0px;
  2327. top:0px;
  2328. width:6px;
  2329. height:6px;
  2330. }
  2331. #u33245 {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:1284px;
  2335. top:84px;
  2336. width:6px;
  2337. height:6px;
  2338. display:flex;
  2339. }
  2340. #u33245 .text {
  2341. position:absolute;
  2342. align-self:center;
  2343. padding:2px 2px 2px 2px;
  2344. box-sizing:border-box;
  2345. width:100%;
  2346. }
  2347. #u33245_text {
  2348. border-width:0px;
  2349. word-wrap:break-word;
  2350. text-transform:none;
  2351. visibility:hidden;
  2352. }
  2353. #u33246 {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:0px;
  2357. top:0px;
  2358. width:0px;
  2359. height:0px;
  2360. }
  2361. #u33247_img {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:0px;
  2365. top:0px;
  2366. width:5px;
  2367. height:5px;
  2368. }
  2369. #u33247 {
  2370. border-width:0px;
  2371. position:absolute;
  2372. left:1229px;
  2373. top:85px;
  2374. width:5px;
  2375. height:5px;
  2376. display:flex;
  2377. }
  2378. #u33247 .text {
  2379. position:absolute;
  2380. align-self:center;
  2381. padding:2px 2px 2px 2px;
  2382. box-sizing:border-box;
  2383. width:100%;
  2384. }
  2385. #u33247_text {
  2386. border-width:0px;
  2387. word-wrap:break-word;
  2388. text-transform:none;
  2389. visibility:hidden;
  2390. }
  2391. #u33248_img {
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:0px;
  2395. top:0px;
  2396. width:5px;
  2397. height:5px;
  2398. }
  2399. #u33248 {
  2400. border-width:0px;
  2401. position:absolute;
  2402. left:1245px;
  2403. top:85px;
  2404. width:5px;
  2405. height:5px;
  2406. display:flex;
  2407. }
  2408. #u33248 .text {
  2409. position:absolute;
  2410. align-self:center;
  2411. padding:2px 2px 2px 2px;
  2412. box-sizing:border-box;
  2413. width:100%;
  2414. }
  2415. #u33248_text {
  2416. border-width:0px;
  2417. word-wrap:break-word;
  2418. text-transform:none;
  2419. visibility:hidden;
  2420. }
  2421. #u33249_img {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:0px;
  2425. top:0px;
  2426. width:7px;
  2427. height:7px;
  2428. }
  2429. #u33249 {
  2430. border-width:0px;
  2431. position:absolute;
  2432. left:1236px;
  2433. top:84px;
  2434. width:7px;
  2435. height:7px;
  2436. display:flex;
  2437. }
  2438. #u33249 .text {
  2439. position:absolute;
  2440. align-self:center;
  2441. padding:2px 2px 2px 2px;
  2442. box-sizing:border-box;
  2443. width:100%;
  2444. }
  2445. #u33249_text {
  2446. border-width:0px;
  2447. word-wrap:break-word;
  2448. text-transform:none;
  2449. visibility:hidden;
  2450. }
  2451. #u33250_img {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:0px;
  2455. top:0px;
  2456. width:19px;
  2457. height:2px;
  2458. }
  2459. #u33250 {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:1253px;
  2463. top:87px;
  2464. width:18px;
  2465. height:1px;
  2466. display:flex;
  2467. -webkit-transform:rotate(90deg);
  2468. -moz-transform:rotate(90deg);
  2469. -ms-transform:rotate(90deg);
  2470. transform:rotate(90deg);
  2471. }
  2472. #u33250 .text {
  2473. position:absolute;
  2474. align-self:center;
  2475. padding:2px 2px 2px 2px;
  2476. box-sizing:border-box;
  2477. width:100%;
  2478. }
  2479. #u33250_text {
  2480. border-width:0px;
  2481. word-wrap:break-word;
  2482. text-transform:none;
  2483. visibility:hidden;
  2484. }
  2485. #u33251_img {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:0px;
  2489. top:0px;
  2490. width:375px;
  2491. height:44px;
  2492. }
  2493. #u33251 {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:935px;
  2497. top:24px;
  2498. width:375px;
  2499. height:44px;
  2500. display:flex;
  2501. }
  2502. #u33251 .text {
  2503. position:absolute;
  2504. align-self:center;
  2505. padding:2px 2px 2px 2px;
  2506. box-sizing:border-box;
  2507. width:100%;
  2508. }
  2509. #u33251_text {
  2510. border-width:0px;
  2511. word-wrap:break-word;
  2512. text-transform:none;
  2513. visibility:hidden;
  2514. }
  2515. #u33252_div {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:0px;
  2519. top:0px;
  2520. width:375px;
  2521. height:50px;
  2522. background:inherit;
  2523. background-color:rgba(255, 255, 255, 1);
  2524. box-sizing:border-box;
  2525. border-width:1px;
  2526. border-style:solid;
  2527. border-color:rgba(242, 242, 242, 1);
  2528. border-radius:26px;
  2529. border-top-left-radius:0px;
  2530. border-top-right-radius:0px;
  2531. -moz-box-shadow:none;
  2532. -webkit-box-shadow:none;
  2533. box-shadow:none;
  2534. }
  2535. #u33252 {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:935px;
  2539. top:788px;
  2540. width:375px;
  2541. height:50px;
  2542. display:flex;
  2543. }
  2544. #u33252 .text {
  2545. position:absolute;
  2546. align-self:center;
  2547. padding:2px 2px 2px 2px;
  2548. box-sizing:border-box;
  2549. width:100%;
  2550. }
  2551. #u33252_text {
  2552. border-width:0px;
  2553. word-wrap:break-word;
  2554. text-transform:none;
  2555. visibility:hidden;
  2556. }
  2557. #u33253 {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:0px;
  2561. top:0px;
  2562. width:0px;
  2563. height:0px;
  2564. }
  2565. #u33254_img {
  2566. border-width:0px;
  2567. position:absolute;
  2568. left:0px;
  2569. top:0px;
  2570. width:24px;
  2571. height:24px;
  2572. }
  2573. #u33254 {
  2574. border-width:0px;
  2575. position:absolute;
  2576. left:975px;
  2577. top:792px;
  2578. width:24px;
  2579. height:24px;
  2580. display:flex;
  2581. font-size:8px;
  2582. }
  2583. #u33254 .text {
  2584. position:absolute;
  2585. align-self:center;
  2586. padding:2px 2px 2px 2px;
  2587. box-sizing:border-box;
  2588. width:100%;
  2589. }
  2590. #u33254_text {
  2591. border-width:0px;
  2592. word-wrap:break-word;
  2593. text-transform:none;
  2594. }
  2595. #u33255_div {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:0px;
  2599. top:0px;
  2600. width:25px;
  2601. height:17px;
  2602. background:inherit;
  2603. background-color:rgba(255, 255, 255, 0);
  2604. border:none;
  2605. border-radius:0px;
  2606. -moz-box-shadow:none;
  2607. -webkit-box-shadow:none;
  2608. box-shadow:none;
  2609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2610. font-weight:400;
  2611. font-style:normal;
  2612. font-size:12px;
  2613. }
  2614. #u33255 {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:975px;
  2618. top:817px;
  2619. width:25px;
  2620. height:17px;
  2621. display:flex;
  2622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2623. font-weight:400;
  2624. font-style:normal;
  2625. font-size:12px;
  2626. }
  2627. #u33255 .text {
  2628. position:absolute;
  2629. align-self:flex-start;
  2630. padding:0px 0px 0px 0px;
  2631. box-sizing:border-box;
  2632. width:100%;
  2633. }
  2634. #u33255_text {
  2635. border-width:0px;
  2636. white-space:nowrap;
  2637. text-transform:none;
  2638. }
  2639. #u33256 {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:0px;
  2643. top:0px;
  2644. width:0px;
  2645. height:0px;
  2646. }
  2647. #u33257_img {
  2648. border-width:0px;
  2649. position:absolute;
  2650. left:0px;
  2651. top:0px;
  2652. width:24px;
  2653. height:24px;
  2654. }
  2655. #u33257 {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:1245px;
  2659. top:794px;
  2660. width:24px;
  2661. height:24px;
  2662. display:flex;
  2663. font-size:8px;
  2664. }
  2665. #u33257 .text {
  2666. position:absolute;
  2667. align-self:center;
  2668. padding:2px 2px 2px 2px;
  2669. box-sizing:border-box;
  2670. width:100%;
  2671. }
  2672. #u33257_text {
  2673. border-width:0px;
  2674. word-wrap:break-word;
  2675. text-transform:none;
  2676. }
  2677. #u33258_div {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:0px;
  2681. top:0px;
  2682. width:25px;
  2683. height:17px;
  2684. background:inherit;
  2685. background-color:rgba(255, 255, 255, 0);
  2686. border:none;
  2687. border-radius:0px;
  2688. -moz-box-shadow:none;
  2689. -webkit-box-shadow:none;
  2690. box-shadow:none;
  2691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2692. font-weight:400;
  2693. font-style:normal;
  2694. font-size:12px;
  2695. }
  2696. #u33258 {
  2697. border-width:0px;
  2698. position:absolute;
  2699. left:1245px;
  2700. top:819px;
  2701. width:25px;
  2702. height:17px;
  2703. display:flex;
  2704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2705. font-weight:400;
  2706. font-style:normal;
  2707. font-size:12px;
  2708. }
  2709. #u33258 .text {
  2710. position:absolute;
  2711. align-self:flex-start;
  2712. padding:0px 0px 0px 0px;
  2713. box-sizing:border-box;
  2714. width:100%;
  2715. }
  2716. #u33258_text {
  2717. border-width:0px;
  2718. white-space:nowrap;
  2719. text-transform:none;
  2720. }
  2721. #u33259_div {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:0px;
  2725. top:0px;
  2726. width:375px;
  2727. height:681px;
  2728. background:inherit;
  2729. background-color:rgba(242, 242, 242, 0.462745098039216);
  2730. border:none;
  2731. border-radius:0px;
  2732. -moz-box-shadow:none;
  2733. -webkit-box-shadow:none;
  2734. box-shadow:none;
  2735. }
  2736. #u33259 {
  2737. border-width:0px;
  2738. position:absolute;
  2739. left:935px;
  2740. top:107px;
  2741. width:375px;
  2742. height:681px;
  2743. display:flex;
  2744. }
  2745. #u33259 .text {
  2746. position:absolute;
  2747. align-self:center;
  2748. padding:2px 2px 2px 2px;
  2749. box-sizing:border-box;
  2750. width:100%;
  2751. }
  2752. #u33259_text {
  2753. border-width:0px;
  2754. word-wrap:break-word;
  2755. text-transform:none;
  2756. visibility:hidden;
  2757. }
  2758. #u33260 {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:0px;
  2762. top:0px;
  2763. width:0px;
  2764. height:0px;
  2765. }
  2766. #u33261_img {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:0px;
  2770. top:0px;
  2771. width:24px;
  2772. height:24px;
  2773. }
  2774. #u33261 {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:1157px;
  2778. top:792px;
  2779. width:24px;
  2780. height:24px;
  2781. display:flex;
  2782. font-size:8px;
  2783. }
  2784. #u33261 .text {
  2785. position:absolute;
  2786. align-self:center;
  2787. padding:2px 2px 2px 2px;
  2788. box-sizing:border-box;
  2789. width:100%;
  2790. }
  2791. #u33261_text {
  2792. border-width:0px;
  2793. word-wrap:break-word;
  2794. text-transform:none;
  2795. }
  2796. #u33262_div {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:0px;
  2800. top:0px;
  2801. width:37px;
  2802. height:17px;
  2803. background:inherit;
  2804. background-color:rgba(255, 255, 255, 0);
  2805. border:none;
  2806. border-radius:0px;
  2807. -moz-box-shadow:none;
  2808. -webkit-box-shadow:none;
  2809. box-shadow:none;
  2810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2811. font-weight:400;
  2812. font-style:normal;
  2813. font-size:12px;
  2814. }
  2815. #u33262 {
  2816. border-width:0px;
  2817. position:absolute;
  2818. left:1151px;
  2819. top:817px;
  2820. width:37px;
  2821. height:17px;
  2822. display:flex;
  2823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2824. font-weight:400;
  2825. font-style:normal;
  2826. font-size:12px;
  2827. }
  2828. #u33262 .text {
  2829. position:absolute;
  2830. align-self:flex-start;
  2831. padding:0px 0px 0px 0px;
  2832. box-sizing:border-box;
  2833. width:100%;
  2834. }
  2835. #u33262_text {
  2836. border-width:0px;
  2837. white-space:nowrap;
  2838. text-transform:none;
  2839. }
  2840. #u33263 {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:0px;
  2844. top:0px;
  2845. width:0px;
  2846. height:0px;
  2847. }
  2848. #u33264_img {
  2849. border-width:0px;
  2850. position:absolute;
  2851. left:0px;
  2852. top:0px;
  2853. width:24px;
  2854. height:24px;
  2855. }
  2856. #u33264 {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:1063px;
  2860. top:792px;
  2861. width:24px;
  2862. height:24px;
  2863. display:flex;
  2864. font-size:8px;
  2865. }
  2866. #u33264 .text {
  2867. position:absolute;
  2868. align-self:center;
  2869. padding:2px 2px 2px 2px;
  2870. box-sizing:border-box;
  2871. width:100%;
  2872. }
  2873. #u33264_text {
  2874. border-width:0px;
  2875. word-wrap:break-word;
  2876. text-transform:none;
  2877. }
  2878. #u33265_div {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:0px;
  2882. top:0px;
  2883. width:37px;
  2884. height:17px;
  2885. background:inherit;
  2886. background-color:rgba(255, 255, 255, 0);
  2887. border:none;
  2888. border-radius:0px;
  2889. -moz-box-shadow:none;
  2890. -webkit-box-shadow:none;
  2891. box-shadow:none;
  2892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2893. font-weight:400;
  2894. font-style:normal;
  2895. font-size:12px;
  2896. }
  2897. #u33265 {
  2898. border-width:0px;
  2899. position:absolute;
  2900. left:1057px;
  2901. top:817px;
  2902. width:37px;
  2903. height:17px;
  2904. display:flex;
  2905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2906. font-weight:400;
  2907. font-style:normal;
  2908. font-size:12px;
  2909. }
  2910. #u33265 .text {
  2911. position:absolute;
  2912. align-self:flex-start;
  2913. padding:0px 0px 0px 0px;
  2914. box-sizing:border-box;
  2915. width:100%;
  2916. }
  2917. #u33265_text {
  2918. border-width:0px;
  2919. white-space:nowrap;
  2920. text-transform:none;
  2921. }
  2922. #u33266_div {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:0px;
  2926. top:0px;
  2927. width:375px;
  2928. height:736px;
  2929. background:inherit;
  2930. background-color:rgba(242, 242, 242, 1);
  2931. box-sizing:border-box;
  2932. border-width:1px;
  2933. border-style:solid;
  2934. border-color:rgba(242, 242, 242, 1);
  2935. border-radius:26px;
  2936. border-top-left-radius:0px;
  2937. border-top-right-radius:0px;
  2938. -moz-box-shadow:none;
  2939. -webkit-box-shadow:none;
  2940. box-shadow:none;
  2941. }
  2942. #u33266 {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:935px;
  2946. top:105px;
  2947. width:375px;
  2948. height:736px;
  2949. display:flex;
  2950. }
  2951. #u33266 .text {
  2952. position:absolute;
  2953. align-self:center;
  2954. padding:2px 2px 2px 2px;
  2955. box-sizing:border-box;
  2956. width:100%;
  2957. }
  2958. #u33266_text {
  2959. border-width:0px;
  2960. word-wrap:break-word;
  2961. text-transform:none;
  2962. visibility:hidden;
  2963. }
  2964. #u33267 {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:0px;
  2968. top:0px;
  2969. width:0px;
  2970. height:0px;
  2971. }
  2972. #u33268_div {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:0px;
  2976. top:0px;
  2977. width:197px;
  2978. height:20px;
  2979. background:inherit;
  2980. background-color:rgba(255, 255, 255, 0);
  2981. border:none;
  2982. border-radius:0px;
  2983. -moz-box-shadow:none;
  2984. -webkit-box-shadow:none;
  2985. box-shadow:none;
  2986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2987. font-weight:400;
  2988. font-style:normal;
  2989. }
  2990. #u33268 {
  2991. border-width:0px;
  2992. position:absolute;
  2993. left:951px;
  2994. top:74px;
  2995. width:197px;
  2996. height:20px;
  2997. display:flex;
  2998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2999. font-weight:400;
  3000. font-style:normal;
  3001. }
  3002. #u33268 .text {
  3003. position:absolute;
  3004. align-self:flex-start;
  3005. padding:0px 0px 0px 0px;
  3006. box-sizing:border-box;
  3007. width:100%;
  3008. }
  3009. #u33268_text {
  3010. border-width:0px;
  3011. white-space:nowrap;
  3012. text-transform:none;
  3013. }
  3014. #u33269_img {
  3015. border-width:0px;
  3016. position:absolute;
  3017. left:0px;
  3018. top:0px;
  3019. width:18px;
  3020. height:14px;
  3021. }
  3022. #u33269 {
  3023. border-width:0px;
  3024. position:absolute;
  3025. left:1170px;
  3026. top:78px;
  3027. width:18px;
  3028. height:14px;
  3029. display:flex;
  3030. }
  3031. #u33269 .text {
  3032. position:absolute;
  3033. align-self:center;
  3034. padding:2px 2px 2px 2px;
  3035. box-sizing:border-box;
  3036. width:100%;
  3037. }
  3038. #u33269_text {
  3039. border-width:0px;
  3040. word-wrap:break-word;
  3041. text-transform:none;
  3042. visibility:hidden;
  3043. }
  3044. #u33270 {
  3045. border-width:0px;
  3046. position:absolute;
  3047. left:0px;
  3048. top:0px;
  3049. width:0px;
  3050. height:0px;
  3051. }
  3052. #u33271_div {
  3053. border-width:0px;
  3054. position:absolute;
  3055. left:0px;
  3056. top:0px;
  3057. width:375px;
  3058. height:30px;
  3059. background:inherit;
  3060. background-color:rgba(255, 255, 255, 1);
  3061. border:none;
  3062. border-bottom:0px;
  3063. border-radius:0px;
  3064. border-bottom-right-radius:0px;
  3065. border-bottom-left-radius:0px;
  3066. -moz-box-shadow:none;
  3067. -webkit-box-shadow:none;
  3068. box-shadow:none;
  3069. }
  3070. #u33271 {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:935px;
  3074. top:105px;
  3075. width:375px;
  3076. height:30px;
  3077. display:flex;
  3078. }
  3079. #u33271 .text {
  3080. position:absolute;
  3081. align-self:center;
  3082. padding:2px 2px 2px 2px;
  3083. box-sizing:border-box;
  3084. width:100%;
  3085. }
  3086. #u33271_text {
  3087. border-width:0px;
  3088. word-wrap:break-word;
  3089. text-transform:none;
  3090. }
  3091. #u33272_img {
  3092. border-width:0px;
  3093. position:absolute;
  3094. left:0px;
  3095. top:0px;
  3096. width:15px;
  3097. height:7px;
  3098. }
  3099. #u33272 {
  3100. border-width:0px;
  3101. position:absolute;
  3102. left:1119px;
  3103. top:117px;
  3104. width:15px;
  3105. height:7px;
  3106. display:flex;
  3107. -webkit-transform:rotate(180deg);
  3108. -moz-transform:rotate(180deg);
  3109. -ms-transform:rotate(180deg);
  3110. transform:rotate(180deg);
  3111. }
  3112. #u33272 .text {
  3113. position:absolute;
  3114. align-self:center;
  3115. padding:2px 2px 2px 2px;
  3116. box-sizing:border-box;
  3117. width:100%;
  3118. }
  3119. #u33272_text {
  3120. border-width:0px;
  3121. word-wrap:break-word;
  3122. text-transform:none;
  3123. visibility:hidden;
  3124. }
  3125. #u33273_div {
  3126. border-width:0px;
  3127. position:absolute;
  3128. left:0px;
  3129. top:0px;
  3130. width:49px;
  3131. height:30px;
  3132. background:inherit;
  3133. background-color:rgba(255, 255, 255, 0);
  3134. border:none;
  3135. border-radius:0px;
  3136. -moz-box-shadow:none;
  3137. -webkit-box-shadow:none;
  3138. box-shadow:none;
  3139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3140. font-weight:400;
  3141. font-style:normal;
  3142. font-size:12px;
  3143. color:#7F7F7F;
  3144. }
  3145. #u33273 {
  3146. border-width:0px;
  3147. position:absolute;
  3148. left:945px;
  3149. top:145px;
  3150. width:49px;
  3151. height:30px;
  3152. display:flex;
  3153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3154. font-weight:400;
  3155. font-style:normal;
  3156. font-size:12px;
  3157. color:#7F7F7F;
  3158. }
  3159. #u33273 .text {
  3160. position:absolute;
  3161. align-self:center;
  3162. padding:0px 0px 0px 0px;
  3163. box-sizing:border-box;
  3164. width:100%;
  3165. }
  3166. #u33273_text {
  3167. border-width:0px;
  3168. white-space:nowrap;
  3169. text-transform:none;
  3170. }
  3171. #u33274_div {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:0px;
  3175. top:0px;
  3176. width:81px;
  3177. height:30px;
  3178. background:inherit;
  3179. background-color:rgba(51, 51, 51, 0.545098039215686);
  3180. border:none;
  3181. border-right:0px;
  3182. border-radius:23px;
  3183. border-top-right-radius:0px;
  3184. border-bottom-right-radius:0px;
  3185. -moz-box-shadow:none;
  3186. -webkit-box-shadow:none;
  3187. box-shadow:none;
  3188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3189. font-weight:400;
  3190. font-style:normal;
  3191. color:#FFFFFF;
  3192. }
  3193. #u33274 {
  3194. border-width:0px;
  3195. position:absolute;
  3196. left:1229px;
  3197. top:115px;
  3198. width:81px;
  3199. height:30px;
  3200. display:flex;
  3201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3202. font-weight:400;
  3203. font-style:normal;
  3204. color:#FFFFFF;
  3205. }
  3206. #u33274 .text {
  3207. position:absolute;
  3208. align-self:center;
  3209. padding:0px 5px 0px 5px;
  3210. box-sizing:border-box;
  3211. width:100%;
  3212. }
  3213. #u33274_text {
  3214. border-width:0px;
  3215. white-space:nowrap;
  3216. text-transform:none;
  3217. }
  3218. #u33275_div {
  3219. border-width:0px;
  3220. position:absolute;
  3221. left:0px;
  3222. top:0px;
  3223. width:169px;
  3224. height:30px;
  3225. background:inherit;
  3226. background-color:rgba(255, 255, 255, 0);
  3227. border:none;
  3228. border-radius:0px;
  3229. -moz-box-shadow:none;
  3230. -webkit-box-shadow:none;
  3231. box-shadow:none;
  3232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3233. font-weight:400;
  3234. font-style:normal;
  3235. font-size:12px;
  3236. color:#D9001B;
  3237. }
  3238. #u33275 {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:1095px;
  3242. top:149px;
  3243. width:169px;
  3244. height:30px;
  3245. display:flex;
  3246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3247. font-weight:400;
  3248. font-style:normal;
  3249. font-size:12px;
  3250. color:#D9001B;
  3251. }
  3252. #u33275 .text {
  3253. position:absolute;
  3254. align-self:center;
  3255. padding:0px 0px 0px 0px;
  3256. box-sizing:border-box;
  3257. width:100%;
  3258. }
  3259. #u33275_text {
  3260. border-width:0px;
  3261. white-space:nowrap;
  3262. text-transform:none;
  3263. }
  3264. #u33276 {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:1229px;
  3268. top:130px;
  3269. width:0px;
  3270. height:0px;
  3271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3272. font-weight:400;
  3273. font-style:normal;
  3274. font-size:12px;
  3275. color:#333333;
  3276. }
  3277. #u33276_seg0 {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:-54px;
  3281. top:-5px;
  3282. width:54px;
  3283. height:10px;
  3284. }
  3285. #u33276_seg1 {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:-54px;
  3289. top:-5px;
  3290. width:10px;
  3291. height:24px;
  3292. }
  3293. #u33276_seg2 {
  3294. border-width:0px;
  3295. position:absolute;
  3296. left:-58px;
  3297. top:9px;
  3298. width:18px;
  3299. height:18px;
  3300. }
  3301. #u33276_text {
  3302. border-width:0px;
  3303. position:absolute;
  3304. left:-84px;
  3305. top:-8px;
  3306. width:100px;
  3307. word-wrap:break-word;
  3308. text-transform:none;
  3309. visibility:hidden;
  3310. }
  3311. #u33277 {
  3312. border-width:0px;
  3313. position:absolute;
  3314. left:0px;
  3315. top:0px;
  3316. width:0px;
  3317. height:0px;
  3318. }
  3319. #u33278_div {
  3320. border-width:0px;
  3321. position:absolute;
  3322. left:0px;
  3323. top:0px;
  3324. width:61px;
  3325. height:14px;
  3326. background:inherit;
  3327. background-color:rgba(255, 255, 255, 0);
  3328. border:none;
  3329. border-left:0px;
  3330. border-top:0px;
  3331. border-right:0px;
  3332. border-radius:0px;
  3333. border-bottom-right-radius:0px;
  3334. border-bottom-left-radius:0px;
  3335. -moz-box-shadow:none;
  3336. -webkit-box-shadow:none;
  3337. box-shadow:none;
  3338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3339. font-weight:400;
  3340. font-style:normal;
  3341. font-size:10px;
  3342. text-align:center;
  3343. }
  3344. #u33278 {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:46px;
  3348. top:160px;
  3349. width:61px;
  3350. height:14px;
  3351. display:flex;
  3352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3353. font-weight:400;
  3354. font-style:normal;
  3355. font-size:10px;
  3356. text-align:center;
  3357. }
  3358. #u33278 .text {
  3359. position:absolute;
  3360. align-self:flex-start;
  3361. padding:0px 0px 0px 0px;
  3362. box-sizing:border-box;
  3363. width:100%;
  3364. }
  3365. #u33278_text {
  3366. border-width:0px;
  3367. white-space:nowrap;
  3368. text-transform:none;
  3369. }
  3370. #u33279_img {
  3371. border-width:0px;
  3372. position:absolute;
  3373. left:0px;
  3374. top:0px;
  3375. width:30px;
  3376. height:30px;
  3377. }
  3378. #u33279 {
  3379. border-width:0px;
  3380. position:absolute;
  3381. left:61px;
  3382. top:120px;
  3383. width:30px;
  3384. height:30px;
  3385. display:flex;
  3386. }
  3387. #u33279 .text {
  3388. position:absolute;
  3389. align-self:center;
  3390. padding:2px 2px 2px 2px;
  3391. box-sizing:border-box;
  3392. width:100%;
  3393. }
  3394. #u33279_text {
  3395. border-width:0px;
  3396. word-wrap:break-word;
  3397. text-transform:none;
  3398. visibility:hidden;
  3399. }
  3400. #u33280_div {
  3401. border-width:0px;
  3402. position:absolute;
  3403. left:0px;
  3404. top:0px;
  3405. width:9px;
  3406. height:11px;
  3407. background:inherit;
  3408. background-color:rgba(217, 0, 27, 1);
  3409. border:none;
  3410. border-radius:4px;
  3411. -moz-box-shadow:none;
  3412. -webkit-box-shadow:none;
  3413. box-shadow:none;
  3414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3415. font-weight:400;
  3416. font-style:normal;
  3417. font-size:8px;
  3418. color:#FFFFFF;
  3419. text-align:center;
  3420. }
  3421. #u33280 {
  3422. border-width:0px;
  3423. position:absolute;
  3424. left:85px;
  3425. top:115px;
  3426. width:9px;
  3427. height:11px;
  3428. display:flex;
  3429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3430. font-weight:400;
  3431. font-style:normal;
  3432. font-size:8px;
  3433. color:#FFFFFF;
  3434. text-align:center;
  3435. }
  3436. #u33280 .text {
  3437. position:absolute;
  3438. align-self:flex-start;
  3439. padding:0px 0px 0px 0px;
  3440. box-sizing:border-box;
  3441. width:100%;
  3442. }
  3443. #u33280_text {
  3444. border-width:0px;
  3445. white-space:nowrap;
  3446. text-transform:none;
  3447. }
  3448. #u33281_div {
  3449. border-width:0px;
  3450. position:absolute;
  3451. left:0px;
  3452. top:0px;
  3453. width:49px;
  3454. height:30px;
  3455. background:inherit;
  3456. background-color:rgba(255, 255, 255, 0);
  3457. border:none;
  3458. border-radius:0px;
  3459. -moz-box-shadow:none;
  3460. -webkit-box-shadow:none;
  3461. box-shadow:none;
  3462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3463. font-weight:400;
  3464. font-style:normal;
  3465. font-size:12px;
  3466. color:#7F7F7F;
  3467. }
  3468. #u33281 {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:492px;
  3472. top:142px;
  3473. width:49px;
  3474. height:30px;
  3475. display:flex;
  3476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3477. font-weight:400;
  3478. font-style:normal;
  3479. font-size:12px;
  3480. color:#7F7F7F;
  3481. }
  3482. #u33281 .text {
  3483. position:absolute;
  3484. align-self:center;
  3485. padding:0px 0px 0px 0px;
  3486. box-sizing:border-box;
  3487. width:100%;
  3488. }
  3489. #u33281_text {
  3490. border-width:0px;
  3491. white-space:nowrap;
  3492. text-transform:none;
  3493. }
  3494. #u33282 {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:0px;
  3498. top:0px;
  3499. width:0px;
  3500. height:0px;
  3501. }
  3502. #u33283_div {
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:0px;
  3506. top:0px;
  3507. width:355px;
  3508. height:128px;
  3509. background:inherit;
  3510. background-color:rgba(255, 255, 255, 1);
  3511. border:none;
  3512. border-radius:10px;
  3513. -moz-box-shadow:none;
  3514. -webkit-box-shadow:none;
  3515. box-shadow:none;
  3516. }
  3517. #u33283 {
  3518. border-width:0px;
  3519. position:absolute;
  3520. left:492px;
  3521. top:172px;
  3522. width:355px;
  3523. height:128px;
  3524. display:flex;
  3525. }
  3526. #u33283 .text {
  3527. position:absolute;
  3528. align-self:center;
  3529. padding:2px 2px 2px 2px;
  3530. box-sizing:border-box;
  3531. width:100%;
  3532. }
  3533. #u33283_text {
  3534. border-width:0px;
  3535. word-wrap:break-word;
  3536. text-transform:none;
  3537. }
  3538. #u33284_div {
  3539. border-width:0px;
  3540. position:absolute;
  3541. left:0px;
  3542. top:0px;
  3543. width:19px;
  3544. height:13px;
  3545. background:inherit;
  3546. background-color:rgba(0, 0, 0, 1);
  3547. border:none;
  3548. border-radius:0px;
  3549. -moz-box-shadow:none;
  3550. -webkit-box-shadow:none;
  3551. box-shadow:none;
  3552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3553. font-weight:400;
  3554. font-style:normal;
  3555. font-size:9px;
  3556. color:#FFFFFF;
  3557. }
  3558. #u33284 {
  3559. border-width:0px;
  3560. position:absolute;
  3561. left:828px;
  3562. top:172px;
  3563. width:19px;
  3564. height:13px;
  3565. display:flex;
  3566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3567. font-weight:400;
  3568. font-style:normal;
  3569. font-size:9px;
  3570. color:#FFFFFF;
  3571. }
  3572. #u33284 .text {
  3573. position:absolute;
  3574. align-self:center;
  3575. padding:0px 0px 0px 0px;
  3576. box-sizing:border-box;
  3577. width:100%;
  3578. }
  3579. #u33284_text {
  3580. border-width:0px;
  3581. white-space:nowrap;
  3582. text-transform:none;
  3583. }
  3584. #u33285_div {
  3585. border-width:0px;
  3586. position:absolute;
  3587. left:0px;
  3588. top:0px;
  3589. width:127px;
  3590. height:30px;
  3591. background:inherit;
  3592. background-color:rgba(255, 255, 255, 0);
  3593. border:none;
  3594. border-left:0px;
  3595. border-top:0px;
  3596. border-right:0px;
  3597. border-radius:0px;
  3598. border-bottom-right-radius:0px;
  3599. border-bottom-left-radius:0px;
  3600. -moz-box-shadow:none;
  3601. -webkit-box-shadow:none;
  3602. box-shadow:none;
  3603. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3604. font-weight:500;
  3605. font-style:normal;
  3606. font-size:14px;
  3607. line-height:30px;
  3608. }
  3609. #u33285 {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:513px;
  3613. top:182px;
  3614. width:127px;
  3615. height:30px;
  3616. display:flex;
  3617. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3618. font-weight:500;
  3619. font-style:normal;
  3620. font-size:14px;
  3621. line-height:30px;
  3622. }
  3623. #u33285 .text {
  3624. position:absolute;
  3625. align-self:flex-start;
  3626. padding:0px 0px 0px 0px;
  3627. box-sizing:border-box;
  3628. width:100%;
  3629. }
  3630. #u33285_text {
  3631. border-width:0px;
  3632. white-space:nowrap;
  3633. text-transform:none;
  3634. }
  3635. #u33286_div {
  3636. border-width:0px;
  3637. position:absolute;
  3638. left:0px;
  3639. top:0px;
  3640. width:325px;
  3641. height:80px;
  3642. background:inherit;
  3643. background-color:rgba(255, 255, 255, 0);
  3644. border:none;
  3645. border-left:0px;
  3646. border-top:0px;
  3647. border-right:0px;
  3648. border-radius:0px;
  3649. border-bottom-right-radius:0px;
  3650. border-bottom-left-radius:0px;
  3651. -moz-box-shadow:none;
  3652. -webkit-box-shadow:none;
  3653. box-shadow:none;
  3654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3655. font-weight:400;
  3656. font-style:normal;
  3657. font-size:12px;
  3658. line-height:20px;
  3659. }
  3660. #u33286 {
  3661. border-width:0px;
  3662. position:absolute;
  3663. left:512px;
  3664. top:211px;
  3665. width:325px;
  3666. height:80px;
  3667. display:flex;
  3668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3669. font-weight:400;
  3670. font-style:normal;
  3671. font-size:12px;
  3672. line-height:20px;
  3673. }
  3674. #u33286 .text {
  3675. position:absolute;
  3676. align-self:flex-start;
  3677. padding:0px 0px 0px 0px;
  3678. box-sizing:border-box;
  3679. width:100%;
  3680. }
  3681. #u33286_text {
  3682. border-width:0px;
  3683. word-wrap:break-word;
  3684. text-transform:none;
  3685. }
  3686. #u33287 {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:0px;
  3690. top:0px;
  3691. width:0px;
  3692. height:0px;
  3693. }
  3694. #u33288_div {
  3695. border-width:0px;
  3696. position:absolute;
  3697. left:0px;
  3698. top:0px;
  3699. width:355px;
  3700. height:128px;
  3701. background:inherit;
  3702. background-color:rgba(255, 255, 255, 1);
  3703. border:none;
  3704. border-radius:10px;
  3705. -moz-box-shadow:none;
  3706. -webkit-box-shadow:none;
  3707. box-shadow:none;
  3708. }
  3709. #u33288 {
  3710. border-width:0px;
  3711. position:absolute;
  3712. left:945px;
  3713. top:172px;
  3714. width:355px;
  3715. height:128px;
  3716. display:flex;
  3717. }
  3718. #u33288 .text {
  3719. position:absolute;
  3720. align-self:center;
  3721. padding:2px 2px 2px 2px;
  3722. box-sizing:border-box;
  3723. width:100%;
  3724. }
  3725. #u33288_text {
  3726. border-width:0px;
  3727. word-wrap:break-word;
  3728. text-transform:none;
  3729. }
  3730. #u33289_div {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:0px;
  3734. top:0px;
  3735. width:19px;
  3736. height:13px;
  3737. background:inherit;
  3738. background-color:rgba(0, 0, 0, 1);
  3739. border:none;
  3740. border-radius:0px;
  3741. -moz-box-shadow:none;
  3742. -webkit-box-shadow:none;
  3743. box-shadow:none;
  3744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3745. font-weight:400;
  3746. font-style:normal;
  3747. font-size:9px;
  3748. color:#FFFFFF;
  3749. }
  3750. #u33289 {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:1281px;
  3754. top:172px;
  3755. width:19px;
  3756. height:13px;
  3757. display:flex;
  3758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3759. font-weight:400;
  3760. font-style:normal;
  3761. font-size:9px;
  3762. color:#FFFFFF;
  3763. }
  3764. #u33289 .text {
  3765. position:absolute;
  3766. align-self:center;
  3767. padding:0px 0px 0px 0px;
  3768. box-sizing:border-box;
  3769. width:100%;
  3770. }
  3771. #u33289_text {
  3772. border-width:0px;
  3773. white-space:nowrap;
  3774. text-transform:none;
  3775. }
  3776. #u33290_div {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:0px;
  3780. top:0px;
  3781. width:127px;
  3782. height:30px;
  3783. background:inherit;
  3784. background-color:rgba(255, 255, 255, 0);
  3785. border:none;
  3786. border-left:0px;
  3787. border-top:0px;
  3788. border-right:0px;
  3789. border-radius:0px;
  3790. border-bottom-right-radius:0px;
  3791. border-bottom-left-radius:0px;
  3792. -moz-box-shadow:none;
  3793. -webkit-box-shadow:none;
  3794. box-shadow:none;
  3795. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3796. font-weight:500;
  3797. font-style:normal;
  3798. font-size:14px;
  3799. line-height:30px;
  3800. }
  3801. #u33290 {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:966px;
  3805. top:182px;
  3806. width:127px;
  3807. height:30px;
  3808. display:flex;
  3809. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3810. font-weight:500;
  3811. font-style:normal;
  3812. font-size:14px;
  3813. line-height:30px;
  3814. }
  3815. #u33290 .text {
  3816. position:absolute;
  3817. align-self:flex-start;
  3818. padding:0px 0px 0px 0px;
  3819. box-sizing:border-box;
  3820. width:100%;
  3821. }
  3822. #u33290_text {
  3823. border-width:0px;
  3824. white-space:nowrap;
  3825. text-transform:none;
  3826. }
  3827. #u33291_div {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:0px;
  3831. top:0px;
  3832. width:325px;
  3833. height:80px;
  3834. background:inherit;
  3835. background-color:rgba(255, 255, 255, 0);
  3836. border:none;
  3837. border-left:0px;
  3838. border-top:0px;
  3839. border-right:0px;
  3840. border-radius:0px;
  3841. border-bottom-right-radius:0px;
  3842. border-bottom-left-radius:0px;
  3843. -moz-box-shadow:none;
  3844. -webkit-box-shadow:none;
  3845. box-shadow:none;
  3846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3847. font-weight:400;
  3848. font-style:normal;
  3849. font-size:12px;
  3850. line-height:20px;
  3851. }
  3852. #u33291 {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:965px;
  3856. top:211px;
  3857. width:325px;
  3858. height:80px;
  3859. display:flex;
  3860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3861. font-weight:400;
  3862. font-style:normal;
  3863. font-size:12px;
  3864. line-height:20px;
  3865. }
  3866. #u33291 .text {
  3867. position:absolute;
  3868. align-self:flex-start;
  3869. padding:0px 0px 0px 0px;
  3870. box-sizing:border-box;
  3871. width:100%;
  3872. }
  3873. #u33291_text {
  3874. border-width:0px;
  3875. word-wrap:break-word;
  3876. text-transform:none;
  3877. }
  3878. #u33292 {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:0px;
  3882. top:0px;
  3883. width:0px;
  3884. height:0px;
  3885. }
  3886. #u33294_img {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:0px;
  3890. top:0px;
  3891. width:433px;
  3892. height:865px;
  3893. }
  3894. #u33294 {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:1359px;
  3898. top:0px;
  3899. width:433px;
  3900. height:865px;
  3901. display:flex;
  3902. }
  3903. #u33294 .text {
  3904. position:absolute;
  3905. align-self:center;
  3906. padding:2px 2px 2px 2px;
  3907. box-sizing:border-box;
  3908. width:100%;
  3909. }
  3910. #u33294_text {
  3911. border-width:0px;
  3912. word-wrap:break-word;
  3913. text-transform:none;
  3914. visibility:hidden;
  3915. }
  3916. #u33295_div {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:0px;
  3920. top:0px;
  3921. width:375px;
  3922. height:40px;
  3923. background:inherit;
  3924. background-color:rgba(255, 255, 255, 1);
  3925. border:none;
  3926. border-left:0px;
  3927. border-top:0px;
  3928. border-right:0px;
  3929. border-radius:0px;
  3930. border-bottom-right-radius:0px;
  3931. border-bottom-left-radius:0px;
  3932. -moz-box-shadow:none;
  3933. -webkit-box-shadow:none;
  3934. box-shadow:none;
  3935. }
  3936. #u33295 {
  3937. border-width:0px;
  3938. position:absolute;
  3939. left:1388px;
  3940. top:67px;
  3941. width:375px;
  3942. height:40px;
  3943. display:flex;
  3944. }
  3945. #u33295 .text {
  3946. position:absolute;
  3947. align-self:center;
  3948. padding:2px 2px 2px 2px;
  3949. box-sizing:border-box;
  3950. width:100%;
  3951. }
  3952. #u33295_text {
  3953. border-width:0px;
  3954. word-wrap:break-word;
  3955. text-transform:none;
  3956. visibility:hidden;
  3957. }
  3958. #u33296 {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:0px;
  3962. top:0px;
  3963. width:0px;
  3964. height:0px;
  3965. }
  3966. #u33297_div {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:0px;
  3970. top:0px;
  3971. width:88px;
  3972. height:32px;
  3973. background:inherit;
  3974. background-color:rgba(255, 255, 255, 1);
  3975. box-sizing:border-box;
  3976. border-width:1px;
  3977. border-style:solid;
  3978. border-color:rgba(242, 242, 242, 1);
  3979. border-radius:33px;
  3980. -moz-box-shadow:none;
  3981. -webkit-box-shadow:none;
  3982. box-shadow:none;
  3983. }
  3984. #u33297 {
  3985. border-width:0px;
  3986. position:absolute;
  3987. left:1668px;
  3988. top:71px;
  3989. width:88px;
  3990. height:32px;
  3991. display:flex;
  3992. }
  3993. #u33297 .text {
  3994. position:absolute;
  3995. align-self:center;
  3996. padding:2px 2px 2px 2px;
  3997. box-sizing:border-box;
  3998. width:100%;
  3999. }
  4000. #u33297_text {
  4001. border-width:0px;
  4002. word-wrap:break-word;
  4003. text-transform:none;
  4004. visibility:hidden;
  4005. }
  4006. #u33298 {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:0px;
  4010. top:0px;
  4011. width:0px;
  4012. height:0px;
  4013. }
  4014. #u33299_img {
  4015. border-width:0px;
  4016. position:absolute;
  4017. left:0px;
  4018. top:0px;
  4019. width:18px;
  4020. height:18px;
  4021. }
  4022. #u33299 {
  4023. border-width:0px;
  4024. position:absolute;
  4025. left:1731px;
  4026. top:78px;
  4027. width:18px;
  4028. height:18px;
  4029. display:flex;
  4030. }
  4031. #u33299 .text {
  4032. position:absolute;
  4033. align-self:center;
  4034. padding:2px 2px 2px 2px;
  4035. box-sizing:border-box;
  4036. width:100%;
  4037. }
  4038. #u33299_text {
  4039. border-width:0px;
  4040. word-wrap:break-word;
  4041. text-transform:none;
  4042. visibility:hidden;
  4043. }
  4044. #u33300_img {
  4045. border-width:0px;
  4046. position:absolute;
  4047. left:0px;
  4048. top:0px;
  4049. width:6px;
  4050. height:6px;
  4051. }
  4052. #u33300 {
  4053. border-width:0px;
  4054. position:absolute;
  4055. left:1737px;
  4056. top:84px;
  4057. width:6px;
  4058. height:6px;
  4059. display:flex;
  4060. }
  4061. #u33300 .text {
  4062. position:absolute;
  4063. align-self:center;
  4064. padding:2px 2px 2px 2px;
  4065. box-sizing:border-box;
  4066. width:100%;
  4067. }
  4068. #u33300_text {
  4069. border-width:0px;
  4070. word-wrap:break-word;
  4071. text-transform:none;
  4072. visibility:hidden;
  4073. }
  4074. #u33301 {
  4075. border-width:0px;
  4076. position:absolute;
  4077. left:0px;
  4078. top:0px;
  4079. width:0px;
  4080. height:0px;
  4081. }
  4082. #u33302_img {
  4083. border-width:0px;
  4084. position:absolute;
  4085. left:0px;
  4086. top:0px;
  4087. width:5px;
  4088. height:5px;
  4089. }
  4090. #u33302 {
  4091. border-width:0px;
  4092. position:absolute;
  4093. left:1682px;
  4094. top:85px;
  4095. width:5px;
  4096. height:5px;
  4097. display:flex;
  4098. }
  4099. #u33302 .text {
  4100. position:absolute;
  4101. align-self:center;
  4102. padding:2px 2px 2px 2px;
  4103. box-sizing:border-box;
  4104. width:100%;
  4105. }
  4106. #u33302_text {
  4107. border-width:0px;
  4108. word-wrap:break-word;
  4109. text-transform:none;
  4110. visibility:hidden;
  4111. }
  4112. #u33303_img {
  4113. border-width:0px;
  4114. position:absolute;
  4115. left:0px;
  4116. top:0px;
  4117. width:5px;
  4118. height:5px;
  4119. }
  4120. #u33303 {
  4121. border-width:0px;
  4122. position:absolute;
  4123. left:1698px;
  4124. top:85px;
  4125. width:5px;
  4126. height:5px;
  4127. display:flex;
  4128. }
  4129. #u33303 .text {
  4130. position:absolute;
  4131. align-self:center;
  4132. padding:2px 2px 2px 2px;
  4133. box-sizing:border-box;
  4134. width:100%;
  4135. }
  4136. #u33303_text {
  4137. border-width:0px;
  4138. word-wrap:break-word;
  4139. text-transform:none;
  4140. visibility:hidden;
  4141. }
  4142. #u33304_img {
  4143. border-width:0px;
  4144. position:absolute;
  4145. left:0px;
  4146. top:0px;
  4147. width:7px;
  4148. height:7px;
  4149. }
  4150. #u33304 {
  4151. border-width:0px;
  4152. position:absolute;
  4153. left:1689px;
  4154. top:84px;
  4155. width:7px;
  4156. height:7px;
  4157. display:flex;
  4158. }
  4159. #u33304 .text {
  4160. position:absolute;
  4161. align-self:center;
  4162. padding:2px 2px 2px 2px;
  4163. box-sizing:border-box;
  4164. width:100%;
  4165. }
  4166. #u33304_text {
  4167. border-width:0px;
  4168. word-wrap:break-word;
  4169. text-transform:none;
  4170. visibility:hidden;
  4171. }
  4172. #u33305_img {
  4173. border-width:0px;
  4174. position:absolute;
  4175. left:0px;
  4176. top:0px;
  4177. width:19px;
  4178. height:2px;
  4179. }
  4180. #u33305 {
  4181. border-width:0px;
  4182. position:absolute;
  4183. left:1706px;
  4184. top:87px;
  4185. width:18px;
  4186. height:1px;
  4187. display:flex;
  4188. -webkit-transform:rotate(90deg);
  4189. -moz-transform:rotate(90deg);
  4190. -ms-transform:rotate(90deg);
  4191. transform:rotate(90deg);
  4192. }
  4193. #u33305 .text {
  4194. position:absolute;
  4195. align-self:center;
  4196. padding:2px 2px 2px 2px;
  4197. box-sizing:border-box;
  4198. width:100%;
  4199. }
  4200. #u33305_text {
  4201. border-width:0px;
  4202. word-wrap:break-word;
  4203. text-transform:none;
  4204. visibility:hidden;
  4205. }
  4206. #u33306_img {
  4207. border-width:0px;
  4208. position:absolute;
  4209. left:0px;
  4210. top:0px;
  4211. width:375px;
  4212. height:44px;
  4213. }
  4214. #u33306 {
  4215. border-width:0px;
  4216. position:absolute;
  4217. left:1388px;
  4218. top:24px;
  4219. width:375px;
  4220. height:44px;
  4221. display:flex;
  4222. }
  4223. #u33306 .text {
  4224. position:absolute;
  4225. align-self:center;
  4226. padding:2px 2px 2px 2px;
  4227. box-sizing:border-box;
  4228. width:100%;
  4229. }
  4230. #u33306_text {
  4231. border-width:0px;
  4232. word-wrap:break-word;
  4233. text-transform:none;
  4234. visibility:hidden;
  4235. }
  4236. #u33307_div {
  4237. border-width:0px;
  4238. position:absolute;
  4239. left:0px;
  4240. top:0px;
  4241. width:375px;
  4242. height:50px;
  4243. background:inherit;
  4244. background-color:rgba(255, 255, 255, 1);
  4245. box-sizing:border-box;
  4246. border-width:1px;
  4247. border-style:solid;
  4248. border-color:rgba(242, 242, 242, 1);
  4249. border-radius:26px;
  4250. border-top-left-radius:0px;
  4251. border-top-right-radius:0px;
  4252. -moz-box-shadow:none;
  4253. -webkit-box-shadow:none;
  4254. box-shadow:none;
  4255. }
  4256. #u33307 {
  4257. border-width:0px;
  4258. position:absolute;
  4259. left:1388px;
  4260. top:788px;
  4261. width:375px;
  4262. height:50px;
  4263. display:flex;
  4264. }
  4265. #u33307 .text {
  4266. position:absolute;
  4267. align-self:center;
  4268. padding:2px 2px 2px 2px;
  4269. box-sizing:border-box;
  4270. width:100%;
  4271. }
  4272. #u33307_text {
  4273. border-width:0px;
  4274. word-wrap:break-word;
  4275. text-transform:none;
  4276. visibility:hidden;
  4277. }
  4278. #u33308 {
  4279. border-width:0px;
  4280. position:absolute;
  4281. left:0px;
  4282. top:0px;
  4283. width:0px;
  4284. height:0px;
  4285. }
  4286. #u33309_img {
  4287. border-width:0px;
  4288. position:absolute;
  4289. left:0px;
  4290. top:0px;
  4291. width:24px;
  4292. height:24px;
  4293. }
  4294. #u33309 {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:1428px;
  4298. top:792px;
  4299. width:24px;
  4300. height:24px;
  4301. display:flex;
  4302. font-size:8px;
  4303. }
  4304. #u33309 .text {
  4305. position:absolute;
  4306. align-self:center;
  4307. padding:2px 2px 2px 2px;
  4308. box-sizing:border-box;
  4309. width:100%;
  4310. }
  4311. #u33309_text {
  4312. border-width:0px;
  4313. word-wrap:break-word;
  4314. text-transform:none;
  4315. }
  4316. #u33310_div {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:0px;
  4320. top:0px;
  4321. width:25px;
  4322. height:17px;
  4323. background:inherit;
  4324. background-color:rgba(255, 255, 255, 0);
  4325. border:none;
  4326. border-radius:0px;
  4327. -moz-box-shadow:none;
  4328. -webkit-box-shadow:none;
  4329. box-shadow:none;
  4330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4331. font-weight:400;
  4332. font-style:normal;
  4333. font-size:12px;
  4334. }
  4335. #u33310 {
  4336. border-width:0px;
  4337. position:absolute;
  4338. left:1428px;
  4339. top:817px;
  4340. width:25px;
  4341. height:17px;
  4342. display:flex;
  4343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4344. font-weight:400;
  4345. font-style:normal;
  4346. font-size:12px;
  4347. }
  4348. #u33310 .text {
  4349. position:absolute;
  4350. align-self:flex-start;
  4351. padding:0px 0px 0px 0px;
  4352. box-sizing:border-box;
  4353. width:100%;
  4354. }
  4355. #u33310_text {
  4356. border-width:0px;
  4357. white-space:nowrap;
  4358. text-transform:none;
  4359. }
  4360. #u33311 {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:0px;
  4364. top:0px;
  4365. width:0px;
  4366. height:0px;
  4367. }
  4368. #u33312_img {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:0px;
  4372. top:0px;
  4373. width:24px;
  4374. height:24px;
  4375. }
  4376. #u33312 {
  4377. border-width:0px;
  4378. position:absolute;
  4379. left:1698px;
  4380. top:794px;
  4381. width:24px;
  4382. height:24px;
  4383. display:flex;
  4384. font-size:8px;
  4385. }
  4386. #u33312 .text {
  4387. position:absolute;
  4388. align-self:center;
  4389. padding:2px 2px 2px 2px;
  4390. box-sizing:border-box;
  4391. width:100%;
  4392. }
  4393. #u33312_text {
  4394. border-width:0px;
  4395. word-wrap:break-word;
  4396. text-transform:none;
  4397. }
  4398. #u33313_div {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:0px;
  4402. top:0px;
  4403. width:25px;
  4404. height:17px;
  4405. background:inherit;
  4406. background-color:rgba(255, 255, 255, 0);
  4407. border:none;
  4408. border-radius:0px;
  4409. -moz-box-shadow:none;
  4410. -webkit-box-shadow:none;
  4411. box-shadow:none;
  4412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4413. font-weight:400;
  4414. font-style:normal;
  4415. font-size:12px;
  4416. }
  4417. #u33313 {
  4418. border-width:0px;
  4419. position:absolute;
  4420. left:1698px;
  4421. top:819px;
  4422. width:25px;
  4423. height:17px;
  4424. display:flex;
  4425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4426. font-weight:400;
  4427. font-style:normal;
  4428. font-size:12px;
  4429. }
  4430. #u33313 .text {
  4431. position:absolute;
  4432. align-self:flex-start;
  4433. padding:0px 0px 0px 0px;
  4434. box-sizing:border-box;
  4435. width:100%;
  4436. }
  4437. #u33313_text {
  4438. border-width:0px;
  4439. white-space:nowrap;
  4440. text-transform:none;
  4441. }
  4442. #u33314_div {
  4443. border-width:0px;
  4444. position:absolute;
  4445. left:0px;
  4446. top:0px;
  4447. width:375px;
  4448. height:681px;
  4449. background:inherit;
  4450. background-color:rgba(242, 242, 242, 0.462745098039216);
  4451. border:none;
  4452. border-radius:0px;
  4453. -moz-box-shadow:none;
  4454. -webkit-box-shadow:none;
  4455. box-shadow:none;
  4456. }
  4457. #u33314 {
  4458. border-width:0px;
  4459. position:absolute;
  4460. left:1388px;
  4461. top:107px;
  4462. width:375px;
  4463. height:681px;
  4464. display:flex;
  4465. }
  4466. #u33314 .text {
  4467. position:absolute;
  4468. align-self:center;
  4469. padding:2px 2px 2px 2px;
  4470. box-sizing:border-box;
  4471. width:100%;
  4472. }
  4473. #u33314_text {
  4474. border-width:0px;
  4475. word-wrap:break-word;
  4476. text-transform:none;
  4477. visibility:hidden;
  4478. }
  4479. #u33315 {
  4480. border-width:0px;
  4481. position:absolute;
  4482. left:0px;
  4483. top:0px;
  4484. width:0px;
  4485. height:0px;
  4486. }
  4487. #u33316_img {
  4488. border-width:0px;
  4489. position:absolute;
  4490. left:0px;
  4491. top:0px;
  4492. width:24px;
  4493. height:24px;
  4494. }
  4495. #u33316 {
  4496. border-width:0px;
  4497. position:absolute;
  4498. left:1610px;
  4499. top:792px;
  4500. width:24px;
  4501. height:24px;
  4502. display:flex;
  4503. font-size:8px;
  4504. }
  4505. #u33316 .text {
  4506. position:absolute;
  4507. align-self:center;
  4508. padding:2px 2px 2px 2px;
  4509. box-sizing:border-box;
  4510. width:100%;
  4511. }
  4512. #u33316_text {
  4513. border-width:0px;
  4514. word-wrap:break-word;
  4515. text-transform:none;
  4516. }
  4517. #u33317_div {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:0px;
  4521. top:0px;
  4522. width:37px;
  4523. height:17px;
  4524. background:inherit;
  4525. background-color:rgba(255, 255, 255, 0);
  4526. border:none;
  4527. border-radius:0px;
  4528. -moz-box-shadow:none;
  4529. -webkit-box-shadow:none;
  4530. box-shadow:none;
  4531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4532. font-weight:400;
  4533. font-style:normal;
  4534. font-size:12px;
  4535. }
  4536. #u33317 {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:1604px;
  4540. top:817px;
  4541. width:37px;
  4542. height:17px;
  4543. display:flex;
  4544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4545. font-weight:400;
  4546. font-style:normal;
  4547. font-size:12px;
  4548. }
  4549. #u33317 .text {
  4550. position:absolute;
  4551. align-self:flex-start;
  4552. padding:0px 0px 0px 0px;
  4553. box-sizing:border-box;
  4554. width:100%;
  4555. }
  4556. #u33317_text {
  4557. border-width:0px;
  4558. white-space:nowrap;
  4559. text-transform:none;
  4560. }
  4561. #u33318 {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:0px;
  4565. top:0px;
  4566. width:0px;
  4567. height:0px;
  4568. }
  4569. #u33319_img {
  4570. border-width:0px;
  4571. position:absolute;
  4572. left:0px;
  4573. top:0px;
  4574. width:24px;
  4575. height:24px;
  4576. }
  4577. #u33319 {
  4578. border-width:0px;
  4579. position:absolute;
  4580. left:1516px;
  4581. top:792px;
  4582. width:24px;
  4583. height:24px;
  4584. display:flex;
  4585. font-size:8px;
  4586. }
  4587. #u33319 .text {
  4588. position:absolute;
  4589. align-self:center;
  4590. padding:2px 2px 2px 2px;
  4591. box-sizing:border-box;
  4592. width:100%;
  4593. }
  4594. #u33319_text {
  4595. border-width:0px;
  4596. word-wrap:break-word;
  4597. text-transform:none;
  4598. }
  4599. #u33320_div {
  4600. border-width:0px;
  4601. position:absolute;
  4602. left:0px;
  4603. top:0px;
  4604. width:37px;
  4605. height:17px;
  4606. background:inherit;
  4607. background-color:rgba(255, 255, 255, 0);
  4608. border:none;
  4609. border-radius:0px;
  4610. -moz-box-shadow:none;
  4611. -webkit-box-shadow:none;
  4612. box-shadow:none;
  4613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4614. font-weight:400;
  4615. font-style:normal;
  4616. font-size:12px;
  4617. }
  4618. #u33320 {
  4619. border-width:0px;
  4620. position:absolute;
  4621. left:1510px;
  4622. top:817px;
  4623. width:37px;
  4624. height:17px;
  4625. display:flex;
  4626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4627. font-weight:400;
  4628. font-style:normal;
  4629. font-size:12px;
  4630. }
  4631. #u33320 .text {
  4632. position:absolute;
  4633. align-self:flex-start;
  4634. padding:0px 0px 0px 0px;
  4635. box-sizing:border-box;
  4636. width:100%;
  4637. }
  4638. #u33320_text {
  4639. border-width:0px;
  4640. white-space:nowrap;
  4641. text-transform:none;
  4642. }
  4643. #u33321_div {
  4644. border-width:0px;
  4645. position:absolute;
  4646. left:0px;
  4647. top:0px;
  4648. width:375px;
  4649. height:736px;
  4650. background:inherit;
  4651. background-color:rgba(242, 242, 242, 1);
  4652. box-sizing:border-box;
  4653. border-width:1px;
  4654. border-style:solid;
  4655. border-color:rgba(242, 242, 242, 1);
  4656. border-radius:26px;
  4657. border-top-left-radius:0px;
  4658. border-top-right-radius:0px;
  4659. -moz-box-shadow:none;
  4660. -webkit-box-shadow:none;
  4661. box-shadow:none;
  4662. }
  4663. #u33321 {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:1388px;
  4667. top:105px;
  4668. width:375px;
  4669. height:736px;
  4670. display:flex;
  4671. }
  4672. #u33321 .text {
  4673. position:absolute;
  4674. align-self:center;
  4675. padding:2px 2px 2px 2px;
  4676. box-sizing:border-box;
  4677. width:100%;
  4678. }
  4679. #u33321_text {
  4680. border-width:0px;
  4681. word-wrap:break-word;
  4682. text-transform:none;
  4683. visibility:hidden;
  4684. }
  4685. #u33322 {
  4686. border-width:0px;
  4687. position:absolute;
  4688. left:0px;
  4689. top:0px;
  4690. width:0px;
  4691. height:0px;
  4692. }
  4693. #u33323_div {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:0px;
  4697. top:0px;
  4698. width:197px;
  4699. height:20px;
  4700. background:inherit;
  4701. background-color:rgba(255, 255, 255, 0);
  4702. border:none;
  4703. border-radius:0px;
  4704. -moz-box-shadow:none;
  4705. -webkit-box-shadow:none;
  4706. box-shadow:none;
  4707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4708. font-weight:400;
  4709. font-style:normal;
  4710. }
  4711. #u33323 {
  4712. border-width:0px;
  4713. position:absolute;
  4714. left:1404px;
  4715. top:74px;
  4716. width:197px;
  4717. height:20px;
  4718. display:flex;
  4719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4720. font-weight:400;
  4721. font-style:normal;
  4722. }
  4723. #u33323 .text {
  4724. position:absolute;
  4725. align-self:flex-start;
  4726. padding:0px 0px 0px 0px;
  4727. box-sizing:border-box;
  4728. width:100%;
  4729. }
  4730. #u33323_text {
  4731. border-width:0px;
  4732. white-space:nowrap;
  4733. text-transform:none;
  4734. }
  4735. #u33324_img {
  4736. border-width:0px;
  4737. position:absolute;
  4738. left:0px;
  4739. top:0px;
  4740. width:18px;
  4741. height:14px;
  4742. }
  4743. #u33324 {
  4744. border-width:0px;
  4745. position:absolute;
  4746. left:1623px;
  4747. top:78px;
  4748. width:18px;
  4749. height:14px;
  4750. display:flex;
  4751. }
  4752. #u33324 .text {
  4753. position:absolute;
  4754. align-self:center;
  4755. padding:2px 2px 2px 2px;
  4756. box-sizing:border-box;
  4757. width:100%;
  4758. }
  4759. #u33324_text {
  4760. border-width:0px;
  4761. word-wrap:break-word;
  4762. text-transform:none;
  4763. visibility:hidden;
  4764. }
  4765. #u33325_div {
  4766. border-width:0px;
  4767. position:absolute;
  4768. left:0px;
  4769. top:0px;
  4770. width:375px;
  4771. height:42px;
  4772. background:inherit;
  4773. background-color:rgba(255, 255, 255, 1);
  4774. border:none;
  4775. border-bottom:0px;
  4776. border-radius:0px;
  4777. border-bottom-right-radius:0px;
  4778. border-bottom-left-radius:0px;
  4779. -moz-box-shadow:none;
  4780. -webkit-box-shadow:none;
  4781. box-shadow:none;
  4782. }
  4783. #u33325 {
  4784. border-width:0px;
  4785. position:absolute;
  4786. left:1388px;
  4787. top:105px;
  4788. width:375px;
  4789. height:42px;
  4790. display:flex;
  4791. }
  4792. #u33325 .text {
  4793. position:absolute;
  4794. align-self:center;
  4795. padding:2px 2px 2px 2px;
  4796. box-sizing:border-box;
  4797. width:100%;
  4798. }
  4799. #u33325_text {
  4800. border-width:0px;
  4801. word-wrap:break-word;
  4802. text-transform:none;
  4803. visibility:hidden;
  4804. }
  4805. #u33326_div {
  4806. border-width:0px;
  4807. position:absolute;
  4808. left:0px;
  4809. top:0px;
  4810. width:29px;
  4811. height:30px;
  4812. background:inherit;
  4813. background-color:rgba(255, 255, 255, 0);
  4814. border:none;
  4815. border-left:0px;
  4816. border-top:0px;
  4817. border-right:0px;
  4818. border-radius:0px;
  4819. border-bottom-right-radius:0px;
  4820. border-bottom-left-radius:0px;
  4821. -moz-box-shadow:none;
  4822. -webkit-box-shadow:none;
  4823. box-shadow:none;
  4824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4825. font-weight:400;
  4826. font-style:normal;
  4827. color:#1890FF;
  4828. }
  4829. #u33326 {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:1408px;
  4833. top:111px;
  4834. width:29px;
  4835. height:30px;
  4836. display:flex;
  4837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4838. font-weight:400;
  4839. font-style:normal;
  4840. color:#1890FF;
  4841. }
  4842. #u33326 .text {
  4843. position:absolute;
  4844. align-self:center;
  4845. padding:0px 0px 0px 0px;
  4846. box-sizing:border-box;
  4847. width:100%;
  4848. }
  4849. #u33326_text {
  4850. border-width:0px;
  4851. white-space:nowrap;
  4852. text-transform:none;
  4853. }
  4854. #u33327_div {
  4855. border-width:0px;
  4856. position:absolute;
  4857. left:0px;
  4858. top:0px;
  4859. width:29px;
  4860. height:30px;
  4861. background:inherit;
  4862. background-color:rgba(255, 255, 255, 0);
  4863. border:none;
  4864. border-left:0px;
  4865. border-top:0px;
  4866. border-right:0px;
  4867. border-radius:0px;
  4868. border-bottom-right-radius:0px;
  4869. border-bottom-left-radius:0px;
  4870. -moz-box-shadow:none;
  4871. -webkit-box-shadow:none;
  4872. box-shadow:none;
  4873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4874. font-weight:400;
  4875. font-style:normal;
  4876. }
  4877. #u33327 {
  4878. border-width:0px;
  4879. position:absolute;
  4880. left:1457px;
  4881. top:111px;
  4882. width:29px;
  4883. height:30px;
  4884. display:flex;
  4885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4886. font-weight:400;
  4887. font-style:normal;
  4888. }
  4889. #u33327 .text {
  4890. position:absolute;
  4891. align-self:center;
  4892. padding:0px 0px 0px 0px;
  4893. box-sizing:border-box;
  4894. width:100%;
  4895. }
  4896. #u33327_text {
  4897. border-width:0px;
  4898. white-space:nowrap;
  4899. text-transform:none;
  4900. }
  4901. #u33328_div {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:0px;
  4905. top:0px;
  4906. width:375px;
  4907. height:91px;
  4908. background:inherit;
  4909. background-color:rgba(255, 255, 255, 1);
  4910. border:none;
  4911. border-bottom:0px;
  4912. border-radius:0px;
  4913. border-bottom-right-radius:0px;
  4914. border-bottom-left-radius:0px;
  4915. -moz-box-shadow:none;
  4916. -webkit-box-shadow:none;
  4917. box-shadow:none;
  4918. }
  4919. #u33328 {
  4920. border-width:0px;
  4921. position:absolute;
  4922. left:1388px;
  4923. top:297px;
  4924. width:375px;
  4925. height:91px;
  4926. display:flex;
  4927. }
  4928. #u33328 .text {
  4929. position:absolute;
  4930. align-self:center;
  4931. padding:2px 2px 2px 2px;
  4932. box-sizing:border-box;
  4933. width:100%;
  4934. }
  4935. #u33328_text {
  4936. border-width:0px;
  4937. word-wrap:break-word;
  4938. text-transform:none;
  4939. }
  4940. #u33329_div {
  4941. border-width:0px;
  4942. position:absolute;
  4943. left:0px;
  4944. top:0px;
  4945. width:85px;
  4946. height:30px;
  4947. background:inherit;
  4948. background-color:rgba(255, 255, 255, 0);
  4949. border:none;
  4950. border-left:0px;
  4951. border-top:0px;
  4952. border-right:0px;
  4953. border-radius:0px;
  4954. border-bottom-right-radius:0px;
  4955. border-bottom-left-radius:0px;
  4956. -moz-box-shadow:none;
  4957. -webkit-box-shadow:none;
  4958. box-shadow:none;
  4959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4960. font-weight:400;
  4961. font-style:normal;
  4962. color:#7F7F7F;
  4963. }
  4964. #u33329 {
  4965. border-width:0px;
  4966. position:absolute;
  4967. left:1408px;
  4968. top:267px;
  4969. width:85px;
  4970. height:30px;
  4971. display:flex;
  4972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4973. font-weight:400;
  4974. font-style:normal;
  4975. color:#7F7F7F;
  4976. }
  4977. #u33329 .text {
  4978. position:absolute;
  4979. align-self:center;
  4980. padding:0px 0px 0px 0px;
  4981. box-sizing:border-box;
  4982. width:100%;
  4983. }
  4984. #u33329_text {
  4985. border-width:0px;
  4986. white-space:nowrap;
  4987. text-transform:none;
  4988. }
  4989. #u33330 {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:0px;
  4993. top:0px;
  4994. width:0px;
  4995. height:0px;
  4996. }
  4997. #u33331_div {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:0px;
  5001. top:0px;
  5002. width:51px;
  5003. height:17px;
  5004. background:inherit;
  5005. background-color:rgba(255, 255, 255, 0);
  5006. border:none;
  5007. border-left:0px;
  5008. border-top:0px;
  5009. border-right:0px;
  5010. border-radius:0px;
  5011. border-bottom-right-radius:0px;
  5012. border-bottom-left-radius:0px;
  5013. -moz-box-shadow:none;
  5014. -webkit-box-shadow:none;
  5015. box-shadow:none;
  5016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5017. font-weight:400;
  5018. font-style:normal;
  5019. font-size:12px;
  5020. text-align:center;
  5021. }
  5022. #u33331 {
  5023. border-width:0px;
  5024. position:absolute;
  5025. left:1410px;
  5026. top:354px;
  5027. width:51px;
  5028. height:17px;
  5029. display:flex;
  5030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5031. font-weight:400;
  5032. font-style:normal;
  5033. font-size:12px;
  5034. text-align:center;
  5035. }
  5036. #u33331 .text {
  5037. position:absolute;
  5038. align-self:flex-start;
  5039. padding:0px 0px 0px 0px;
  5040. box-sizing:border-box;
  5041. width:100%;
  5042. }
  5043. #u33331_text {
  5044. border-width:0px;
  5045. word-wrap:break-word;
  5046. text-transform:none;
  5047. }
  5048. #u33332_img {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:0px;
  5052. top:0px;
  5053. width:30px;
  5054. height:30px;
  5055. }
  5056. #u33332 {
  5057. border-width:0px;
  5058. position:absolute;
  5059. left:1420px;
  5060. top:314px;
  5061. width:30px;
  5062. height:30px;
  5063. display:flex;
  5064. }
  5065. #u33332 .text {
  5066. position:absolute;
  5067. align-self:center;
  5068. padding:2px 2px 2px 2px;
  5069. box-sizing:border-box;
  5070. width:100%;
  5071. }
  5072. #u33332_text {
  5073. border-width:0px;
  5074. word-wrap:break-word;
  5075. text-transform:none;
  5076. visibility:hidden;
  5077. }
  5078. #u33333 {
  5079. border-width:0px;
  5080. position:absolute;
  5081. left:0px;
  5082. top:0px;
  5083. width:0px;
  5084. height:0px;
  5085. }
  5086. #u33334_div {
  5087. border-width:0px;
  5088. position:absolute;
  5089. left:0px;
  5090. top:0px;
  5091. width:49px;
  5092. height:17px;
  5093. background:inherit;
  5094. background-color:rgba(255, 255, 255, 0);
  5095. border:none;
  5096. border-left:0px;
  5097. border-top:0px;
  5098. border-right:0px;
  5099. border-radius:0px;
  5100. border-bottom-right-radius:0px;
  5101. border-bottom-left-radius:0px;
  5102. -moz-box-shadow:none;
  5103. -webkit-box-shadow:none;
  5104. box-shadow:none;
  5105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5106. font-weight:400;
  5107. font-style:normal;
  5108. font-size:12px;
  5109. text-align:center;
  5110. }
  5111. #u33334 {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:1593px;
  5115. top:354px;
  5116. width:49px;
  5117. height:17px;
  5118. display:flex;
  5119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5120. font-weight:400;
  5121. font-style:normal;
  5122. font-size:12px;
  5123. text-align:center;
  5124. }
  5125. #u33334 .text {
  5126. position:absolute;
  5127. align-self:flex-start;
  5128. padding:0px 0px 0px 0px;
  5129. box-sizing:border-box;
  5130. width:100%;
  5131. }
  5132. #u33334_text {
  5133. border-width:0px;
  5134. white-space:nowrap;
  5135. text-transform:none;
  5136. }
  5137. #u33335_img {
  5138. border-width:0px;
  5139. position:absolute;
  5140. left:0px;
  5141. top:0px;
  5142. width:30px;
  5143. height:30px;
  5144. }
  5145. #u33335 {
  5146. border-width:0px;
  5147. position:absolute;
  5148. left:1603px;
  5149. top:314px;
  5150. width:30px;
  5151. height:30px;
  5152. display:flex;
  5153. }
  5154. #u33335 .text {
  5155. position:absolute;
  5156. align-self:center;
  5157. padding:2px 2px 2px 2px;
  5158. box-sizing:border-box;
  5159. width:100%;
  5160. }
  5161. #u33335_text {
  5162. border-width:0px;
  5163. word-wrap:break-word;
  5164. text-transform:none;
  5165. visibility:hidden;
  5166. }
  5167. #u33336 {
  5168. border-width:0px;
  5169. position:absolute;
  5170. left:0px;
  5171. top:0px;
  5172. width:0px;
  5173. height:0px;
  5174. }
  5175. #u33337_div {
  5176. border-width:0px;
  5177. position:absolute;
  5178. left:0px;
  5179. top:0px;
  5180. width:49px;
  5181. height:17px;
  5182. background:inherit;
  5183. background-color:rgba(255, 255, 255, 0);
  5184. border:none;
  5185. border-left:0px;
  5186. border-top:0px;
  5187. border-right:0px;
  5188. border-radius:0px;
  5189. border-bottom-right-radius:0px;
  5190. border-bottom-left-radius:0px;
  5191. -moz-box-shadow:none;
  5192. -webkit-box-shadow:none;
  5193. box-shadow:none;
  5194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5195. font-weight:400;
  5196. font-style:normal;
  5197. font-size:12px;
  5198. text-align:center;
  5199. }
  5200. #u33337 {
  5201. border-width:0px;
  5202. position:absolute;
  5203. left:1684px;
  5204. top:354px;
  5205. width:49px;
  5206. height:17px;
  5207. display:flex;
  5208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5209. font-weight:400;
  5210. font-style:normal;
  5211. font-size:12px;
  5212. text-align:center;
  5213. }
  5214. #u33337 .text {
  5215. position:absolute;
  5216. align-self:flex-start;
  5217. padding:0px 0px 0px 0px;
  5218. box-sizing:border-box;
  5219. width:100%;
  5220. }
  5221. #u33337_text {
  5222. border-width:0px;
  5223. white-space:nowrap;
  5224. text-transform:none;
  5225. }
  5226. #u33338_img {
  5227. border-width:0px;
  5228. position:absolute;
  5229. left:0px;
  5230. top:0px;
  5231. width:30px;
  5232. height:30px;
  5233. }
  5234. #u33338 {
  5235. border-width:0px;
  5236. position:absolute;
  5237. left:1694px;
  5238. top:314px;
  5239. width:30px;
  5240. height:30px;
  5241. display:flex;
  5242. }
  5243. #u33338 .text {
  5244. position:absolute;
  5245. align-self:center;
  5246. padding:2px 2px 2px 2px;
  5247. box-sizing:border-box;
  5248. width:100%;
  5249. }
  5250. #u33338_text {
  5251. border-width:0px;
  5252. word-wrap:break-word;
  5253. text-transform:none;
  5254. visibility:hidden;
  5255. }
  5256. #u33339 {
  5257. border-width:0px;
  5258. position:absolute;
  5259. left:0px;
  5260. top:0px;
  5261. width:0px;
  5262. height:0px;
  5263. }
  5264. #u33340_div {
  5265. border-width:0px;
  5266. position:absolute;
  5267. left:0px;
  5268. top:0px;
  5269. width:51px;
  5270. height:17px;
  5271. background:inherit;
  5272. background-color:rgba(255, 255, 255, 0);
  5273. border:none;
  5274. border-left:0px;
  5275. border-top:0px;
  5276. border-right:0px;
  5277. border-radius:0px;
  5278. border-bottom-right-radius:0px;
  5279. border-bottom-left-radius:0px;
  5280. -moz-box-shadow:none;
  5281. -webkit-box-shadow:none;
  5282. box-shadow:none;
  5283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5284. font-weight:400;
  5285. font-style:normal;
  5286. font-size:12px;
  5287. text-align:center;
  5288. }
  5289. #u33340 {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:1501px;
  5293. top:354px;
  5294. width:51px;
  5295. height:17px;
  5296. display:flex;
  5297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5298. font-weight:400;
  5299. font-style:normal;
  5300. font-size:12px;
  5301. text-align:center;
  5302. }
  5303. #u33340 .text {
  5304. position:absolute;
  5305. align-self:flex-start;
  5306. padding:0px 0px 0px 0px;
  5307. box-sizing:border-box;
  5308. width:100%;
  5309. }
  5310. #u33340_text {
  5311. border-width:0px;
  5312. word-wrap:break-word;
  5313. text-transform:none;
  5314. }
  5315. #u33341_img {
  5316. border-width:0px;
  5317. position:absolute;
  5318. left:0px;
  5319. top:0px;
  5320. width:30px;
  5321. height:30px;
  5322. }
  5323. #u33341 {
  5324. border-width:0px;
  5325. position:absolute;
  5326. left:1511px;
  5327. top:314px;
  5328. width:30px;
  5329. height:30px;
  5330. display:flex;
  5331. }
  5332. #u33341 .text {
  5333. position:absolute;
  5334. align-self:center;
  5335. padding:2px 2px 2px 2px;
  5336. box-sizing:border-box;
  5337. width:100%;
  5338. }
  5339. #u33341_text {
  5340. border-width:0px;
  5341. word-wrap:break-word;
  5342. text-transform:none;
  5343. visibility:hidden;
  5344. }
  5345. #u33342_div {
  5346. border-width:0px;
  5347. position:absolute;
  5348. left:0px;
  5349. top:0px;
  5350. width:375px;
  5351. height:87px;
  5352. background:inherit;
  5353. background-color:rgba(255, 255, 255, 1);
  5354. border:none;
  5355. border-bottom:0px;
  5356. border-radius:0px;
  5357. border-bottom-right-radius:0px;
  5358. border-bottom-left-radius:0px;
  5359. -moz-box-shadow:none;
  5360. -webkit-box-shadow:none;
  5361. box-shadow:none;
  5362. }
  5363. #u33342 {
  5364. border-width:0px;
  5365. position:absolute;
  5366. left:1388px;
  5367. top:539px;
  5368. width:375px;
  5369. height:87px;
  5370. display:flex;
  5371. }
  5372. #u33342 .text {
  5373. position:absolute;
  5374. align-self:center;
  5375. padding:2px 2px 2px 2px;
  5376. box-sizing:border-box;
  5377. width:100%;
  5378. }
  5379. #u33342_text {
  5380. border-width:0px;
  5381. word-wrap:break-word;
  5382. text-transform:none;
  5383. }
  5384. #u33343_div {
  5385. border-width:0px;
  5386. position:absolute;
  5387. left:0px;
  5388. top:0px;
  5389. width:57px;
  5390. height:30px;
  5391. background:inherit;
  5392. background-color:rgba(255, 255, 255, 0);
  5393. border:none;
  5394. border-left:0px;
  5395. border-top:0px;
  5396. border-right:0px;
  5397. border-radius:0px;
  5398. border-bottom-right-radius:0px;
  5399. border-bottom-left-radius:0px;
  5400. -moz-box-shadow:none;
  5401. -webkit-box-shadow:none;
  5402. box-shadow:none;
  5403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5404. font-weight:400;
  5405. font-style:normal;
  5406. color:#7F7F7F;
  5407. }
  5408. #u33343 {
  5409. border-width:0px;
  5410. position:absolute;
  5411. left:1408px;
  5412. top:507px;
  5413. width:57px;
  5414. height:30px;
  5415. display:flex;
  5416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5417. font-weight:400;
  5418. font-style:normal;
  5419. color:#7F7F7F;
  5420. }
  5421. #u33343 .text {
  5422. position:absolute;
  5423. align-self:center;
  5424. padding:0px 0px 0px 0px;
  5425. box-sizing:border-box;
  5426. width:100%;
  5427. }
  5428. #u33343_text {
  5429. border-width:0px;
  5430. white-space:nowrap;
  5431. text-transform:none;
  5432. }
  5433. #u33344 {
  5434. border-width:0px;
  5435. position:absolute;
  5436. left:0px;
  5437. top:0px;
  5438. width:0px;
  5439. height:0px;
  5440. }
  5441. #u33345_div {
  5442. border-width:0px;
  5443. position:absolute;
  5444. left:0px;
  5445. top:0px;
  5446. width:51px;
  5447. height:17px;
  5448. background:inherit;
  5449. background-color:rgba(255, 255, 255, 0);
  5450. border:none;
  5451. border-left:0px;
  5452. border-top:0px;
  5453. border-right:0px;
  5454. border-radius:0px;
  5455. border-bottom-right-radius:0px;
  5456. border-bottom-left-radius:0px;
  5457. -moz-box-shadow:none;
  5458. -webkit-box-shadow:none;
  5459. box-shadow:none;
  5460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5461. font-weight:400;
  5462. font-style:normal;
  5463. font-size:12px;
  5464. text-align:center;
  5465. }
  5466. #u33345 {
  5467. border-width:0px;
  5468. position:absolute;
  5469. left:1408px;
  5470. top:594px;
  5471. width:51px;
  5472. height:17px;
  5473. display:flex;
  5474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5475. font-weight:400;
  5476. font-style:normal;
  5477. font-size:12px;
  5478. text-align:center;
  5479. }
  5480. #u33345 .text {
  5481. position:absolute;
  5482. align-self:flex-start;
  5483. padding:0px 0px 0px 0px;
  5484. box-sizing:border-box;
  5485. width:100%;
  5486. }
  5487. #u33345_text {
  5488. border-width:0px;
  5489. word-wrap:break-word;
  5490. text-transform:none;
  5491. }
  5492. #u33346_img {
  5493. border-width:0px;
  5494. position:absolute;
  5495. left:0px;
  5496. top:0px;
  5497. width:30px;
  5498. height:30px;
  5499. }
  5500. #u33346 {
  5501. border-width:0px;
  5502. position:absolute;
  5503. left:1418px;
  5504. top:554px;
  5505. width:30px;
  5506. height:30px;
  5507. display:flex;
  5508. }
  5509. #u33346 .text {
  5510. position:absolute;
  5511. align-self:center;
  5512. padding:2px 2px 2px 2px;
  5513. box-sizing:border-box;
  5514. width:100%;
  5515. }
  5516. #u33346_text {
  5517. border-width:0px;
  5518. word-wrap:break-word;
  5519. text-transform:none;
  5520. visibility:hidden;
  5521. }
  5522. #u33347_div {
  5523. border-width:0px;
  5524. position:absolute;
  5525. left:0px;
  5526. top:0px;
  5527. width:375px;
  5528. height:87px;
  5529. background:inherit;
  5530. background-color:rgba(255, 255, 255, 1);
  5531. border:none;
  5532. border-bottom:0px;
  5533. border-radius:0px;
  5534. border-bottom-right-radius:0px;
  5535. border-bottom-left-radius:0px;
  5536. -moz-box-shadow:none;
  5537. -webkit-box-shadow:none;
  5538. box-shadow:none;
  5539. }
  5540. #u33347 {
  5541. border-width:0px;
  5542. position:absolute;
  5543. left:1388px;
  5544. top:420px;
  5545. width:375px;
  5546. height:87px;
  5547. display:flex;
  5548. }
  5549. #u33347 .text {
  5550. position:absolute;
  5551. align-self:center;
  5552. padding:2px 2px 2px 2px;
  5553. box-sizing:border-box;
  5554. width:100%;
  5555. }
  5556. #u33347_text {
  5557. border-width:0px;
  5558. word-wrap:break-word;
  5559. text-transform:none;
  5560. }
  5561. #u33348_div {
  5562. border-width:0px;
  5563. position:absolute;
  5564. left:0px;
  5565. top:0px;
  5566. width:71px;
  5567. height:30px;
  5568. background:inherit;
  5569. background-color:rgba(255, 255, 255, 0);
  5570. border:none;
  5571. border-left:0px;
  5572. border-top:0px;
  5573. border-right:0px;
  5574. border-radius:0px;
  5575. border-bottom-right-radius:0px;
  5576. border-bottom-left-radius:0px;
  5577. -moz-box-shadow:none;
  5578. -webkit-box-shadow:none;
  5579. box-shadow:none;
  5580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5581. font-weight:400;
  5582. font-style:normal;
  5583. color:#7F7F7F;
  5584. }
  5585. #u33348 {
  5586. border-width:0px;
  5587. position:absolute;
  5588. left:1408px;
  5589. top:388px;
  5590. width:71px;
  5591. height:30px;
  5592. display:flex;
  5593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5594. font-weight:400;
  5595. font-style:normal;
  5596. color:#7F7F7F;
  5597. }
  5598. #u33348 .text {
  5599. position:absolute;
  5600. align-self:center;
  5601. padding:0px 0px 0px 0px;
  5602. box-sizing:border-box;
  5603. width:100%;
  5604. }
  5605. #u33348_text {
  5606. border-width:0px;
  5607. white-space:nowrap;
  5608. text-transform:none;
  5609. }
  5610. #u33349 {
  5611. border-width:0px;
  5612. position:absolute;
  5613. left:0px;
  5614. top:0px;
  5615. width:0px;
  5616. height:0px;
  5617. }
  5618. #u33350_div {
  5619. border-width:0px;
  5620. position:absolute;
  5621. left:0px;
  5622. top:0px;
  5623. width:61px;
  5624. height:17px;
  5625. background:inherit;
  5626. background-color:rgba(255, 255, 255, 0);
  5627. border:none;
  5628. border-left:0px;
  5629. border-top:0px;
  5630. border-right:0px;
  5631. border-radius:0px;
  5632. border-bottom-right-radius:0px;
  5633. border-bottom-left-radius:0px;
  5634. -moz-box-shadow:none;
  5635. -webkit-box-shadow:none;
  5636. box-shadow:none;
  5637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5638. font-weight:400;
  5639. font-style:normal;
  5640. font-size:12px;
  5641. text-align:center;
  5642. }
  5643. #u33350 {
  5644. border-width:0px;
  5645. position:absolute;
  5646. left:1496px;
  5647. top:475px;
  5648. width:61px;
  5649. height:17px;
  5650. display:flex;
  5651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5652. font-weight:400;
  5653. font-style:normal;
  5654. font-size:12px;
  5655. text-align:center;
  5656. }
  5657. #u33350 .text {
  5658. position:absolute;
  5659. align-self:flex-start;
  5660. padding:0px 0px 0px 0px;
  5661. box-sizing:border-box;
  5662. width:100%;
  5663. }
  5664. #u33350_text {
  5665. border-width:0px;
  5666. white-space:nowrap;
  5667. text-transform:none;
  5668. }
  5669. #u33351_img {
  5670. border-width:0px;
  5671. position:absolute;
  5672. left:0px;
  5673. top:0px;
  5674. width:30px;
  5675. height:30px;
  5676. }
  5677. #u33351 {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:1511px;
  5681. top:435px;
  5682. width:30px;
  5683. height:30px;
  5684. display:flex;
  5685. }
  5686. #u33351 .text {
  5687. position:absolute;
  5688. align-self:center;
  5689. padding:2px 2px 2px 2px;
  5690. box-sizing:border-box;
  5691. width:100%;
  5692. }
  5693. #u33351_text {
  5694. border-width:0px;
  5695. word-wrap:break-word;
  5696. text-transform:none;
  5697. visibility:hidden;
  5698. }
  5699. #u33352 {
  5700. border-width:0px;
  5701. position:absolute;
  5702. left:0px;
  5703. top:0px;
  5704. width:0px;
  5705. height:0px;
  5706. }
  5707. #u33353_div {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:0px;
  5711. top:0px;
  5712. width:61px;
  5713. height:17px;
  5714. background:inherit;
  5715. background-color:rgba(255, 255, 255, 0);
  5716. border:none;
  5717. border-left:0px;
  5718. border-top:0px;
  5719. border-right:0px;
  5720. border-radius:0px;
  5721. border-bottom-right-radius:0px;
  5722. border-bottom-left-radius:0px;
  5723. -moz-box-shadow:none;
  5724. -webkit-box-shadow:none;
  5725. box-shadow:none;
  5726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5727. font-weight:400;
  5728. font-style:normal;
  5729. font-size:12px;
  5730. text-align:center;
  5731. }
  5732. #u33353 {
  5733. border-width:0px;
  5734. position:absolute;
  5735. left:1587px;
  5736. top:475px;
  5737. width:61px;
  5738. height:17px;
  5739. display:flex;
  5740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5741. font-weight:400;
  5742. font-style:normal;
  5743. font-size:12px;
  5744. text-align:center;
  5745. }
  5746. #u33353 .text {
  5747. position:absolute;
  5748. align-self:flex-start;
  5749. padding:0px 0px 0px 0px;
  5750. box-sizing:border-box;
  5751. width:100%;
  5752. }
  5753. #u33353_text {
  5754. border-width:0px;
  5755. white-space:nowrap;
  5756. text-transform:none;
  5757. }
  5758. #u33354_img {
  5759. border-width:0px;
  5760. position:absolute;
  5761. left:0px;
  5762. top:0px;
  5763. width:30px;
  5764. height:30px;
  5765. }
  5766. #u33354 {
  5767. border-width:0px;
  5768. position:absolute;
  5769. left:1603px;
  5770. top:435px;
  5771. width:30px;
  5772. height:30px;
  5773. display:flex;
  5774. }
  5775. #u33354 .text {
  5776. position:absolute;
  5777. align-self:center;
  5778. padding:2px 2px 2px 2px;
  5779. box-sizing:border-box;
  5780. width:100%;
  5781. }
  5782. #u33354_text {
  5783. border-width:0px;
  5784. word-wrap:break-word;
  5785. text-transform:none;
  5786. visibility:hidden;
  5787. }
  5788. #u33355 {
  5789. border-width:0px;
  5790. position:absolute;
  5791. left:0px;
  5792. top:0px;
  5793. width:0px;
  5794. height:0px;
  5795. }
  5796. #u33356_div {
  5797. border-width:0px;
  5798. position:absolute;
  5799. left:0px;
  5800. top:0px;
  5801. width:61px;
  5802. height:17px;
  5803. background:inherit;
  5804. background-color:rgba(255, 255, 255, 0);
  5805. border:none;
  5806. border-left:0px;
  5807. border-top:0px;
  5808. border-right:0px;
  5809. border-radius:0px;
  5810. border-bottom-right-radius:0px;
  5811. border-bottom-left-radius:0px;
  5812. -moz-box-shadow:none;
  5813. -webkit-box-shadow:none;
  5814. box-shadow:none;
  5815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5816. font-weight:400;
  5817. font-style:normal;
  5818. font-size:12px;
  5819. text-align:center;
  5820. }
  5821. #u33356 {
  5822. border-width:0px;
  5823. position:absolute;
  5824. left:1678px;
  5825. top:475px;
  5826. width:61px;
  5827. height:17px;
  5828. display:flex;
  5829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5830. font-weight:400;
  5831. font-style:normal;
  5832. font-size:12px;
  5833. text-align:center;
  5834. }
  5835. #u33356 .text {
  5836. position:absolute;
  5837. align-self:flex-start;
  5838. padding:0px 0px 0px 0px;
  5839. box-sizing:border-box;
  5840. width:100%;
  5841. }
  5842. #u33356_text {
  5843. border-width:0px;
  5844. white-space:nowrap;
  5845. text-transform:none;
  5846. }
  5847. #u33357_img {
  5848. border-width:0px;
  5849. position:absolute;
  5850. left:0px;
  5851. top:0px;
  5852. width:30px;
  5853. height:30px;
  5854. }
  5855. #u33357 {
  5856. border-width:0px;
  5857. position:absolute;
  5858. left:1694px;
  5859. top:435px;
  5860. width:30px;
  5861. height:30px;
  5862. display:flex;
  5863. }
  5864. #u33357 .text {
  5865. position:absolute;
  5866. align-self:center;
  5867. padding:2px 2px 2px 2px;
  5868. box-sizing:border-box;
  5869. width:100%;
  5870. }
  5871. #u33357_text {
  5872. border-width:0px;
  5873. word-wrap:break-word;
  5874. text-transform:none;
  5875. visibility:hidden;
  5876. }
  5877. #u33358 {
  5878. border-width:0px;
  5879. position:absolute;
  5880. left:0px;
  5881. top:0px;
  5882. width:0px;
  5883. height:0px;
  5884. }
  5885. #u33359_div {
  5886. border-width:0px;
  5887. position:absolute;
  5888. left:0px;
  5889. top:0px;
  5890. width:51px;
  5891. height:17px;
  5892. background:inherit;
  5893. background-color:rgba(255, 255, 255, 0);
  5894. border:none;
  5895. border-left:0px;
  5896. border-top:0px;
  5897. border-right:0px;
  5898. border-radius:0px;
  5899. border-bottom-right-radius:0px;
  5900. border-bottom-left-radius:0px;
  5901. -moz-box-shadow:none;
  5902. -webkit-box-shadow:none;
  5903. box-shadow:none;
  5904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5905. font-weight:400;
  5906. font-style:normal;
  5907. font-size:12px;
  5908. text-align:center;
  5909. }
  5910. #u33359 {
  5911. border-width:0px;
  5912. position:absolute;
  5913. left:1408px;
  5914. top:475px;
  5915. width:51px;
  5916. height:17px;
  5917. display:flex;
  5918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5919. font-weight:400;
  5920. font-style:normal;
  5921. font-size:12px;
  5922. text-align:center;
  5923. }
  5924. #u33359 .text {
  5925. position:absolute;
  5926. align-self:flex-start;
  5927. padding:0px 0px 0px 0px;
  5928. box-sizing:border-box;
  5929. width:100%;
  5930. }
  5931. #u33359_text {
  5932. border-width:0px;
  5933. word-wrap:break-word;
  5934. text-transform:none;
  5935. }
  5936. #u33360_img {
  5937. border-width:0px;
  5938. position:absolute;
  5939. left:0px;
  5940. top:0px;
  5941. width:30px;
  5942. height:30px;
  5943. }
  5944. #u33360 {
  5945. border-width:0px;
  5946. position:absolute;
  5947. left:1418px;
  5948. top:435px;
  5949. width:30px;
  5950. height:30px;
  5951. display:flex;
  5952. }
  5953. #u33360 .text {
  5954. position:absolute;
  5955. align-self:center;
  5956. padding:2px 2px 2px 2px;
  5957. box-sizing:border-box;
  5958. width:100%;
  5959. }
  5960. #u33360_text {
  5961. border-width:0px;
  5962. word-wrap:break-word;
  5963. text-transform:none;
  5964. visibility:hidden;
  5965. }
  5966. #u33361 {
  5967. border-width:0px;
  5968. position:absolute;
  5969. left:0px;
  5970. top:0px;
  5971. width:0px;
  5972. height:0px;
  5973. }
  5974. #u33362_div {
  5975. border-width:0px;
  5976. position:absolute;
  5977. left:0px;
  5978. top:0px;
  5979. width:355px;
  5980. height:100px;
  5981. background:inherit;
  5982. background-color:rgba(41, 143, 255, 1);
  5983. border:none;
  5984. border-radius:4px;
  5985. -moz-box-shadow:none;
  5986. -webkit-box-shadow:none;
  5987. box-shadow:none;
  5988. }
  5989. #u33362 {
  5990. border-width:0px;
  5991. position:absolute;
  5992. left:1398px;
  5993. top:157px;
  5994. width:355px;
  5995. height:100px;
  5996. display:flex;
  5997. }
  5998. #u33362 .text {
  5999. position:absolute;
  6000. align-self:center;
  6001. padding:2px 2px 2px 2px;
  6002. box-sizing:border-box;
  6003. width:100%;
  6004. }
  6005. #u33362_text {
  6006. border-width:0px;
  6007. word-wrap:break-word;
  6008. text-transform:none;
  6009. visibility:hidden;
  6010. }
  6011. #u33363_div {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:0px;
  6015. top:0px;
  6016. width:73px;
  6017. height:25px;
  6018. background:inherit;
  6019. background-color:rgba(255, 255, 255, 0);
  6020. border:none;
  6021. border-radius:0px;
  6022. -moz-box-shadow:none;
  6023. -webkit-box-shadow:none;
  6024. box-shadow:none;
  6025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6026. font-weight:400;
  6027. font-style:normal;
  6028. font-size:18px;
  6029. color:#FFFFFF;
  6030. line-height:25px;
  6031. }
  6032. #u33363 {
  6033. border-width:0px;
  6034. position:absolute;
  6035. left:1433px;
  6036. top:171px;
  6037. width:73px;
  6038. height:25px;
  6039. display:flex;
  6040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6041. font-weight:400;
  6042. font-style:normal;
  6043. font-size:18px;
  6044. color:#FFFFFF;
  6045. line-height:25px;
  6046. }
  6047. #u33363 .text {
  6048. position:absolute;
  6049. align-self:flex-start;
  6050. padding:0px 0px 0px 0px;
  6051. box-sizing:border-box;
  6052. width:100%;
  6053. }
  6054. #u33363_text {
  6055. border-width:0px;
  6056. white-space:nowrap;
  6057. text-transform:none;
  6058. }
  6059. #u33364_div {
  6060. border-width:0px;
  6061. position:absolute;
  6062. left:0px;
  6063. top:0px;
  6064. width:25px;
  6065. height:14px;
  6066. background:inherit;
  6067. background-color:rgba(245, 109, 35, 1);
  6068. border:none;
  6069. border-radius:2px;
  6070. -moz-box-shadow:none;
  6071. -webkit-box-shadow:none;
  6072. box-shadow:none;
  6073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6074. font-weight:400;
  6075. font-style:normal;
  6076. font-size:10px;
  6077. color:#FFFFFF;
  6078. text-align:center;
  6079. }
  6080. #u33364 {
  6081. border-width:0px;
  6082. position:absolute;
  6083. left:1604px;
  6084. top:199px;
  6085. width:25px;
  6086. height:14px;
  6087. display:flex;
  6088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6089. font-weight:400;
  6090. font-style:normal;
  6091. font-size:10px;
  6092. color:#FFFFFF;
  6093. text-align:center;
  6094. }
  6095. #u33364 .text {
  6096. position:absolute;
  6097. align-self:flex-start;
  6098. padding:0px 2px 0px 2px;
  6099. box-sizing:border-box;
  6100. width:100%;
  6101. }
  6102. #u33364_text {
  6103. border-width:0px;
  6104. white-space:nowrap;
  6105. text-transform:none;
  6106. }
  6107. #u33365_div {
  6108. border-width:0px;
  6109. position:absolute;
  6110. left:0px;
  6111. top:0px;
  6112. width:181px;
  6113. height:25px;
  6114. background:inherit;
  6115. background-color:rgba(255, 255, 255, 0);
  6116. border:none;
  6117. border-radius:0px;
  6118. -moz-box-shadow:none;
  6119. -webkit-box-shadow:none;
  6120. box-shadow:none;
  6121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6122. font-weight:400;
  6123. font-style:normal;
  6124. font-size:18px;
  6125. color:#FFFFFF;
  6126. line-height:25px;
  6127. }
  6128. #u33365 {
  6129. border-width:0px;
  6130. position:absolute;
  6131. left:1418px;
  6132. top:209px;
  6133. width:181px;
  6134. height:25px;
  6135. display:flex;
  6136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6137. font-weight:400;
  6138. font-style:normal;
  6139. font-size:18px;
  6140. color:#FFFFFF;
  6141. line-height:25px;
  6142. }
  6143. #u33365 .text {
  6144. position:absolute;
  6145. align-self:flex-start;
  6146. padding:0px 0px 0px 0px;
  6147. box-sizing:border-box;
  6148. width:100%;
  6149. }
  6150. #u33365_text {
  6151. border-width:0px;
  6152. white-space:nowrap;
  6153. text-transform:none;
  6154. }
  6155. #u33366_img {
  6156. border-width:0px;
  6157. position:absolute;
  6158. left:0px;
  6159. top:0px;
  6160. width:20px;
  6161. height:18px;
  6162. }
  6163. #u33366 {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:1408px;
  6167. top:174px;
  6168. width:20px;
  6169. height:18px;
  6170. display:flex;
  6171. color:#D9001B;
  6172. }
  6173. #u33366 .text {
  6174. position:absolute;
  6175. align-self:center;
  6176. padding:2px 2px 2px 2px;
  6177. box-sizing:border-box;
  6178. width:100%;
  6179. }
  6180. #u33366_text {
  6181. border-width:0px;
  6182. word-wrap:break-word;
  6183. text-transform:none;
  6184. visibility:hidden;
  6185. }
  6186. #u33367_div {
  6187. border-width:0px;
  6188. position:absolute;
  6189. left:0px;
  6190. top:0px;
  6191. width:81px;
  6192. height:30px;
  6193. background:inherit;
  6194. background-color:rgba(51, 51, 51, 0.545098039215686);
  6195. border:none;
  6196. border-right:0px;
  6197. border-radius:23px;
  6198. border-top-right-radius:0px;
  6199. border-bottom-right-radius:0px;
  6200. -moz-box-shadow:none;
  6201. -webkit-box-shadow:none;
  6202. box-shadow:none;
  6203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6204. font-weight:400;
  6205. font-style:normal;
  6206. color:#FFFFFF;
  6207. }
  6208. #u33367 {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:1682px;
  6212. top:125px;
  6213. width:81px;
  6214. height:30px;
  6215. display:flex;
  6216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6217. font-weight:400;
  6218. font-style:normal;
  6219. color:#FFFFFF;
  6220. }
  6221. #u33367 .text {
  6222. position:absolute;
  6223. align-self:center;
  6224. padding:0px 5px 0px 5px;
  6225. box-sizing:border-box;
  6226. width:100%;
  6227. }
  6228. #u33367_text {
  6229. border-width:0px;
  6230. white-space:nowrap;
  6231. text-transform:none;
  6232. }
  6233. #u33368 {
  6234. border-width:0px;
  6235. position:absolute;
  6236. left:0px;
  6237. top:0px;
  6238. width:0px;
  6239. height:0px;
  6240. }
  6241. #u33369_div {
  6242. border-width:0px;
  6243. position:absolute;
  6244. left:0px;
  6245. top:0px;
  6246. width:51px;
  6247. height:14px;
  6248. background:inherit;
  6249. background-color:rgba(255, 255, 255, 0);
  6250. border:none;
  6251. border-left:0px;
  6252. border-top:0px;
  6253. border-right:0px;
  6254. border-radius:0px;
  6255. border-bottom-right-radius:0px;
  6256. border-bottom-left-radius:0px;
  6257. -moz-box-shadow:none;
  6258. -webkit-box-shadow:none;
  6259. box-shadow:none;
  6260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6261. font-weight:400;
  6262. font-style:normal;
  6263. font-size:10px;
  6264. text-align:center;
  6265. }
  6266. #u33369 {
  6267. border-width:0px;
  6268. position:absolute;
  6269. left:132px;
  6270. top:160px;
  6271. width:51px;
  6272. height:14px;
  6273. display:flex;
  6274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6275. font-weight:400;
  6276. font-style:normal;
  6277. font-size:10px;
  6278. text-align:center;
  6279. }
  6280. #u33369 .text {
  6281. position:absolute;
  6282. align-self:flex-start;
  6283. padding:0px 0px 0px 0px;
  6284. box-sizing:border-box;
  6285. width:100%;
  6286. }
  6287. #u33369_text {
  6288. border-width:0px;
  6289. white-space:nowrap;
  6290. text-transform:none;
  6291. }
  6292. #u33370_img {
  6293. border-width:0px;
  6294. position:absolute;
  6295. left:0px;
  6296. top:0px;
  6297. width:30px;
  6298. height:30px;
  6299. }
  6300. #u33370 {
  6301. border-width:0px;
  6302. position:absolute;
  6303. left:142px;
  6304. top:120px;
  6305. width:30px;
  6306. height:30px;
  6307. display:flex;
  6308. }
  6309. #u33370 .text {
  6310. position:absolute;
  6311. align-self:center;
  6312. padding:2px 2px 2px 2px;
  6313. box-sizing:border-box;
  6314. width:100%;
  6315. }
  6316. #u33370_text {
  6317. border-width:0px;
  6318. word-wrap:break-word;
  6319. text-transform:none;
  6320. visibility:hidden;
  6321. }