styles.css 105 KB

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