styles.css 110 KB

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