styles.css 100 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  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. #u146012_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u146012 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u146012 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u146012_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u146013_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u146013 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u146013 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u146013_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u146014_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u146014 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u146014 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u146014_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u146015 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u146016_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u146016 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u146016 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u146016_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u146017_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u146017 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u146017 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u146017_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u146018_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u146018 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u146018 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u146018_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u146019 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u146020_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u146020_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u146020_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u146020 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u146020 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u146020_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u146020.disabled {
  356. }
  357. .u146020_input_option {
  358. font-size:14px;
  359. }
  360. #u146021_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u146021 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u146021 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u146021_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u146022_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u146022 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u146022 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u146022_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u146023_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u146023 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u146023 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u146023_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u146024 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u146025_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u146025 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u146025 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u146025_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u146026_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u146026 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u146026 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u146026_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u146027 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u146028_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u146028 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u146028 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u146028_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u146029_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u146029 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u146029 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u146029_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u146030 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u146031_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u146031 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u146031 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u146031_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u146032_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u146032 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u146032 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u146032_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u146033 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u146034_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u146034 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u146034 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u146034_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u146035_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u146035 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u146035 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u146035_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u146036 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u146037_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u146037 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u146037 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u146037_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u146038_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u146038 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u146038 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u146038_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u146039 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u146040_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u146040 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u146040 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u146040_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u146041_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u146041 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u146041 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u146041_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u146042 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u146043_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u146043 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u146043 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u146043_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u146044_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u146044 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u146044 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u146044_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u146045 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u146046_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u146046 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u146046 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u146046_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u146047_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u146047 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u146047 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u146047_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u146048 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u146049_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u146049 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u146049 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u146049_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u146050_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u146050 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u146050 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u146050_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u146051 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u146052_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u146052 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u146052 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u146052_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u146053_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u146053 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u146053 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u146053_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u146054_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u146054 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u146054 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u146054_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u146055_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u146055 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u146055 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u146055_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u146056_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u146056 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u146056 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u146056_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u146057_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u146057 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u146057 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u146057_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u146058 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u146059_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u146059 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u146059 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u146059_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u146060_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u146060 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u146060 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u146060_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u146061 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u146062_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u146062 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u146062 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u146062_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u146063_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u146063 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u146063 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u146063_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u146064_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1260px;
  1644. height:1180px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. }
  1653. #u146064 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:329px;
  1657. top:50px;
  1658. width:1260px;
  1659. height:1180px;
  1660. display:flex;
  1661. }
  1662. #u146064 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u146064_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u146065_img {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:1260px;
  1681. height:1180px;
  1682. }
  1683. #u146065 {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:329px;
  1687. top:50px;
  1688. width:1260px;
  1689. height:1180px;
  1690. display:flex;
  1691. }
  1692. #u146065 .text {
  1693. position:absolute;
  1694. align-self:center;
  1695. padding:2px 2px 2px 2px;
  1696. box-sizing:border-box;
  1697. width:100%;
  1698. }
  1699. #u146065_text {
  1700. border-width:0px;
  1701. word-wrap:break-word;
  1702. text-transform:none;
  1703. visibility:hidden;
  1704. }
  1705. #u146066_div {
  1706. border-width:0px;
  1707. position:absolute;
  1708. left:0px;
  1709. top:0px;
  1710. width:275px;
  1711. height:320px;
  1712. background:inherit;
  1713. background-color:rgba(51, 51, 51, 1);
  1714. border:none;
  1715. border-radius:4px;
  1716. -moz-box-shadow:none;
  1717. -webkit-box-shadow:none;
  1718. box-shadow:none;
  1719. }
  1720. #u146066 {
  1721. border-width:0px;
  1722. position:absolute;
  1723. left:1265px;
  1724. top:354px;
  1725. width:275px;
  1726. height:320px;
  1727. display:flex;
  1728. }
  1729. #u146066 .text {
  1730. position:absolute;
  1731. align-self:center;
  1732. padding:2px 2px 2px 2px;
  1733. box-sizing:border-box;
  1734. width:100%;
  1735. }
  1736. #u146066_text {
  1737. border-width:0px;
  1738. word-wrap:break-word;
  1739. text-transform:none;
  1740. visibility:hidden;
  1741. }
  1742. #u146067_img {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:0px;
  1746. top:0px;
  1747. width:20px;
  1748. height:30px;
  1749. }
  1750. #u146067 {
  1751. border-width:0px;
  1752. position:absolute;
  1753. left:519px;
  1754. top:272px;
  1755. width:20px;
  1756. height:30px;
  1757. display:flex;
  1758. }
  1759. #u146067 .text {
  1760. position:absolute;
  1761. align-self:center;
  1762. padding:2px 2px 2px 2px;
  1763. box-sizing:border-box;
  1764. width:100%;
  1765. }
  1766. #u146067_text {
  1767. border-width:0px;
  1768. word-wrap:break-word;
  1769. text-transform:none;
  1770. visibility:hidden;
  1771. }
  1772. #u146068 {
  1773. border-width:0px;
  1774. position:absolute;
  1775. left:0px;
  1776. top:0px;
  1777. width:0px;
  1778. height:0px;
  1779. }
  1780. #u146069_div {
  1781. border-width:0px;
  1782. position:absolute;
  1783. left:0px;
  1784. top:0px;
  1785. width:180px;
  1786. height:53px;
  1787. background:inherit;
  1788. background-color:rgba(255, 255, 255, 1);
  1789. border:none;
  1790. border-radius:2px;
  1791. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1792. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1793. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1795. font-weight:400;
  1796. font-style:normal;
  1797. font-size:12px;
  1798. color:#FFFFFF;
  1799. text-align:center;
  1800. }
  1801. #u146069 {
  1802. border-width:0px;
  1803. position:absolute;
  1804. left:529px;
  1805. top:229px;
  1806. width:180px;
  1807. height:53px;
  1808. display:flex;
  1809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1810. font-weight:400;
  1811. font-style:normal;
  1812. font-size:12px;
  1813. color:#FFFFFF;
  1814. text-align:center;
  1815. }
  1816. #u146069 .text {
  1817. position:absolute;
  1818. align-self:flex-start;
  1819. padding:2px 2px 2px 2px;
  1820. box-sizing:border-box;
  1821. width:100%;
  1822. }
  1823. #u146069_text {
  1824. border-width:0px;
  1825. word-wrap:break-word;
  1826. text-transform:none;
  1827. visibility:hidden;
  1828. }
  1829. #u146070 {
  1830. border-width:0px;
  1831. position:absolute;
  1832. left:0px;
  1833. top:0px;
  1834. width:0px;
  1835. height:0px;
  1836. }
  1837. #u146071_div {
  1838. border-width:0px;
  1839. position:absolute;
  1840. left:0px;
  1841. top:0px;
  1842. width:20px;
  1843. height:18px;
  1844. background:inherit;
  1845. background-color:rgba(245, 154, 35, 1);
  1846. border:none;
  1847. border-right:0px;
  1848. border-radius:2px;
  1849. border-top-right-radius:0px;
  1850. border-bottom-right-radius:0px;
  1851. -moz-box-shadow:none;
  1852. -webkit-box-shadow:none;
  1853. box-shadow:none;
  1854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1855. font-weight:400;
  1856. font-style:normal;
  1857. font-size:10px;
  1858. color:#FFFFFF;
  1859. text-align:center;
  1860. }
  1861. #u146071 {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:597px;
  1865. top:257px;
  1866. width:20px;
  1867. height:18px;
  1868. display:flex;
  1869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1870. font-weight:400;
  1871. font-style:normal;
  1872. font-size:10px;
  1873. color:#FFFFFF;
  1874. text-align:center;
  1875. }
  1876. #u146071 .text {
  1877. position:absolute;
  1878. align-self:center;
  1879. padding:2px 2px 2px 2px;
  1880. box-sizing:border-box;
  1881. width:100%;
  1882. }
  1883. #u146071_text {
  1884. border-width:0px;
  1885. word-wrap:break-word;
  1886. text-transform:none;
  1887. }
  1888. #u146072_div {
  1889. border-width:0px;
  1890. position:absolute;
  1891. left:0px;
  1892. top:0px;
  1893. width:35px;
  1894. height:18px;
  1895. background:inherit;
  1896. background-color:rgba(255, 255, 255, 1);
  1897. box-sizing:border-box;
  1898. border-width:1px;
  1899. border-style:solid;
  1900. border-color:rgba(245, 154, 35, 1);
  1901. border-left:0px;
  1902. border-radius:2px;
  1903. border-top-left-radius:0px;
  1904. border-bottom-left-radius:0px;
  1905. -moz-box-shadow:none;
  1906. -webkit-box-shadow:none;
  1907. box-shadow:none;
  1908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1909. font-weight:400;
  1910. font-style:normal;
  1911. font-size:10px;
  1912. color:#AAAAAA;
  1913. }
  1914. #u146072 {
  1915. border-width:0px;
  1916. position:absolute;
  1917. left:617px;
  1918. top:257px;
  1919. width:35px;
  1920. height:18px;
  1921. display:flex;
  1922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1923. font-weight:400;
  1924. font-style:normal;
  1925. font-size:10px;
  1926. color:#AAAAAA;
  1927. }
  1928. #u146072 .text {
  1929. position:absolute;
  1930. align-self:center;
  1931. padding:2px 2px 2px 2px;
  1932. box-sizing:border-box;
  1933. width:100%;
  1934. }
  1935. #u146072_text {
  1936. border-width:0px;
  1937. word-wrap:break-word;
  1938. text-transform:none;
  1939. }
  1940. #u146073 {
  1941. border-width:0px;
  1942. position:absolute;
  1943. left:0px;
  1944. top:0px;
  1945. width:0px;
  1946. height:0px;
  1947. }
  1948. #u146074_div {
  1949. border-width:0px;
  1950. position:absolute;
  1951. left:0px;
  1952. top:0px;
  1953. width:20px;
  1954. height:18px;
  1955. background:inherit;
  1956. background-color:rgba(0, 191, 191, 1);
  1957. border:none;
  1958. border-right:0px;
  1959. border-radius:2px;
  1960. border-top-right-radius:0px;
  1961. border-bottom-right-radius:0px;
  1962. -moz-box-shadow:none;
  1963. -webkit-box-shadow:none;
  1964. box-shadow:none;
  1965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1966. font-weight:400;
  1967. font-style:normal;
  1968. font-size:10px;
  1969. color:#FFFFFF;
  1970. text-align:center;
  1971. }
  1972. #u146074 {
  1973. border-width:0px;
  1974. position:absolute;
  1975. left:537px;
  1976. top:257px;
  1977. width:20px;
  1978. height:18px;
  1979. display:flex;
  1980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1981. font-weight:400;
  1982. font-style:normal;
  1983. font-size:10px;
  1984. color:#FFFFFF;
  1985. text-align:center;
  1986. }
  1987. #u146074 .text {
  1988. position:absolute;
  1989. align-self:center;
  1990. padding:2px 2px 2px 2px;
  1991. box-sizing:border-box;
  1992. width:100%;
  1993. }
  1994. #u146074_text {
  1995. border-width:0px;
  1996. word-wrap:break-word;
  1997. text-transform:none;
  1998. }
  1999. #u146075_div {
  2000. border-width:0px;
  2001. position:absolute;
  2002. left:0px;
  2003. top:0px;
  2004. width:35px;
  2005. height:18px;
  2006. background:inherit;
  2007. background-color:rgba(255, 255, 255, 1);
  2008. box-sizing:border-box;
  2009. border-width:1px;
  2010. border-style:solid;
  2011. border-color:rgba(0, 191, 191, 1);
  2012. border-left:0px;
  2013. border-radius:2px;
  2014. border-top-left-radius:0px;
  2015. border-bottom-left-radius:0px;
  2016. -moz-box-shadow:none;
  2017. -webkit-box-shadow:none;
  2018. box-shadow:none;
  2019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2020. font-weight:400;
  2021. font-style:normal;
  2022. font-size:10px;
  2023. color:#AAAAAA;
  2024. }
  2025. #u146075 {
  2026. border-width:0px;
  2027. position:absolute;
  2028. left:557px;
  2029. top:257px;
  2030. width:35px;
  2031. height:18px;
  2032. display:flex;
  2033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2034. font-weight:400;
  2035. font-style:normal;
  2036. font-size:10px;
  2037. color:#AAAAAA;
  2038. }
  2039. #u146075 .text {
  2040. position:absolute;
  2041. align-self:center;
  2042. padding:2px 2px 2px 2px;
  2043. box-sizing:border-box;
  2044. width:100%;
  2045. }
  2046. #u146075_text {
  2047. border-width:0px;
  2048. word-wrap:break-word;
  2049. text-transform:none;
  2050. }
  2051. #u146076_div {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:0px;
  2055. top:0px;
  2056. width:109px;
  2057. height:17px;
  2058. background:inherit;
  2059. background-color:rgba(255, 255, 255, 0);
  2060. border:none;
  2061. border-radius:0px;
  2062. -moz-box-shadow:none;
  2063. -webkit-box-shadow:none;
  2064. box-shadow:none;
  2065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2066. font-weight:400;
  2067. font-style:normal;
  2068. font-size:12px;
  2069. }
  2070. #u146076 {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:537px;
  2074. top:235px;
  2075. width:109px;
  2076. height:17px;
  2077. display:flex;
  2078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2079. font-weight:400;
  2080. font-style:normal;
  2081. font-size:12px;
  2082. }
  2083. #u146076 .text {
  2084. position:absolute;
  2085. align-self:flex-start;
  2086. padding:0px 0px 0px 0px;
  2087. box-sizing:border-box;
  2088. width:100%;
  2089. }
  2090. #u146076_text {
  2091. border-width:0px;
  2092. white-space:nowrap;
  2093. text-transform:none;
  2094. }
  2095. #u146077_div {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:0px;
  2099. top:0px;
  2100. width:36px;
  2101. height:17px;
  2102. background:inherit;
  2103. background-color:rgba(255, 255, 255, 0);
  2104. border:none;
  2105. border-radius:0px;
  2106. -moz-box-shadow:none;
  2107. -webkit-box-shadow:none;
  2108. box-shadow:none;
  2109. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2110. font-weight:500;
  2111. font-style:normal;
  2112. font-size:12px;
  2113. text-align:right;
  2114. }
  2115. #u146077 {
  2116. border-width:0px;
  2117. position:absolute;
  2118. left:660px;
  2119. top:235px;
  2120. width:36px;
  2121. height:17px;
  2122. display:flex;
  2123. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2124. font-weight:500;
  2125. font-style:normal;
  2126. font-size:12px;
  2127. text-align:right;
  2128. }
  2129. #u146077 .text {
  2130. position:absolute;
  2131. align-self:flex-start;
  2132. padding:0px 0px 0px 0px;
  2133. box-sizing:border-box;
  2134. width:100%;
  2135. }
  2136. #u146077_text {
  2137. border-width:0px;
  2138. white-space:nowrap;
  2139. text-transform:none;
  2140. }
  2141. #u146078_img {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:0px;
  2146. width:5px;
  2147. height:8px;
  2148. }
  2149. #u146078 {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:699px;
  2153. top:240px;
  2154. width:5px;
  2155. height:8px;
  2156. display:flex;
  2157. -webkit-transform:rotate(180deg);
  2158. -moz-transform:rotate(180deg);
  2159. -ms-transform:rotate(180deg);
  2160. transform:rotate(180deg);
  2161. }
  2162. #u146078 .text {
  2163. position:absolute;
  2164. align-self:center;
  2165. padding:2px 2px 2px 2px;
  2166. box-sizing:border-box;
  2167. width:100%;
  2168. }
  2169. #u146078_text {
  2170. border-width:0px;
  2171. word-wrap:break-word;
  2172. text-transform:none;
  2173. visibility:hidden;
  2174. }
  2175. #u146079 {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:0px;
  2179. top:0px;
  2180. width:0px;
  2181. height:0px;
  2182. }
  2183. #u146080_img {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:0px;
  2187. top:0px;
  2188. width:20px;
  2189. height:30px;
  2190. }
  2191. #u146080 {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:575px;
  2195. top:483px;
  2196. width:20px;
  2197. height:30px;
  2198. display:flex;
  2199. }
  2200. #u146080 .text {
  2201. position:absolute;
  2202. align-self:center;
  2203. padding:2px 2px 2px 2px;
  2204. box-sizing:border-box;
  2205. width:100%;
  2206. }
  2207. #u146080_text {
  2208. border-width:0px;
  2209. word-wrap:break-word;
  2210. text-transform:none;
  2211. visibility:hidden;
  2212. }
  2213. #u146081_div {
  2214. border-width:0px;
  2215. position:absolute;
  2216. left:0px;
  2217. top:0px;
  2218. width:50px;
  2219. height:20px;
  2220. background:inherit;
  2221. background-color:rgba(51, 51, 51, 1);
  2222. border:none;
  2223. border-radius:2px;
  2224. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2225. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2226. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2228. font-weight:400;
  2229. font-style:normal;
  2230. font-size:12px;
  2231. color:#FFFFFF;
  2232. text-align:center;
  2233. }
  2234. #u146081 {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:585px;
  2238. top:471px;
  2239. width:50px;
  2240. height:20px;
  2241. display:flex;
  2242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2243. font-weight:400;
  2244. font-style:normal;
  2245. font-size:12px;
  2246. color:#FFFFFF;
  2247. text-align:center;
  2248. }
  2249. #u146081 .text {
  2250. position:absolute;
  2251. align-self:flex-start;
  2252. padding:2px 2px 2px 2px;
  2253. box-sizing:border-box;
  2254. width:100%;
  2255. }
  2256. #u146081_text {
  2257. border-width:0px;
  2258. word-wrap:break-word;
  2259. text-transform:none;
  2260. }
  2261. #u146082_div {
  2262. border-width:0px;
  2263. position:absolute;
  2264. left:0px;
  2265. top:0px;
  2266. width:275px;
  2267. height:480px;
  2268. background:inherit;
  2269. background-color:rgba(51, 51, 51, 1);
  2270. border:none;
  2271. border-radius:4px;
  2272. -moz-box-shadow:none;
  2273. -webkit-box-shadow:none;
  2274. box-shadow:none;
  2275. }
  2276. #u146082 {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:1265px;
  2280. top:688px;
  2281. width:275px;
  2282. height:480px;
  2283. display:flex;
  2284. }
  2285. #u146082 .text {
  2286. position:absolute;
  2287. align-self:center;
  2288. padding:2px 2px 2px 2px;
  2289. box-sizing:border-box;
  2290. width:100%;
  2291. }
  2292. #u146082_text {
  2293. border-width:0px;
  2294. word-wrap:break-word;
  2295. text-transform:none;
  2296. visibility:hidden;
  2297. }
  2298. #u146083_div {
  2299. border-width:0px;
  2300. position:absolute;
  2301. left:0px;
  2302. top:0px;
  2303. width:110px;
  2304. height:40px;
  2305. background:inherit;
  2306. background-color:rgba(255, 255, 255, 0.0980392156862745);
  2307. border:none;
  2308. border-left:0px;
  2309. border-top:0px;
  2310. border-right:0px;
  2311. border-radius:0px;
  2312. border-bottom-right-radius:0px;
  2313. border-bottom-left-radius:0px;
  2314. -moz-box-shadow:none;
  2315. -webkit-box-shadow:none;
  2316. box-shadow:none;
  2317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2318. font-style:normal;
  2319. color:#FFFFFF;
  2320. text-align:center;
  2321. line-height:40px;
  2322. }
  2323. #u146083 {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:1283px;
  2327. top:409px;
  2328. width:110px;
  2329. height:40px;
  2330. display:flex;
  2331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2332. font-style:normal;
  2333. color:#FFFFFF;
  2334. text-align:center;
  2335. line-height:40px;
  2336. }
  2337. #u146083 .text {
  2338. position:absolute;
  2339. align-self:center;
  2340. padding:0px 0px 0px 0px;
  2341. box-sizing:border-box;
  2342. width:100%;
  2343. }
  2344. #u146083_text {
  2345. border-width:0px;
  2346. word-wrap:break-word;
  2347. text-transform:none;
  2348. }
  2349. #u146084_div {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:0px;
  2353. top:0px;
  2354. width:122px;
  2355. height:40px;
  2356. background:inherit;
  2357. background-color:rgba(255, 255, 255, 0);
  2358. border:none;
  2359. border-left:0px;
  2360. border-top:0px;
  2361. border-right:0px;
  2362. border-radius:0px;
  2363. border-bottom-right-radius:0px;
  2364. border-bottom-left-radius:0px;
  2365. -moz-box-shadow:none;
  2366. -webkit-box-shadow:none;
  2367. box-shadow:none;
  2368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2369. font-weight:400;
  2370. font-style:normal;
  2371. font-size:14px;
  2372. color:#FFFFFF;
  2373. line-height:40px;
  2374. }
  2375. #u146084 {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:1308px;
  2379. top:460px;
  2380. width:122px;
  2381. height:40px;
  2382. display:flex;
  2383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2384. font-weight:400;
  2385. font-style:normal;
  2386. font-size:14px;
  2387. color:#FFFFFF;
  2388. line-height:40px;
  2389. }
  2390. #u146084 .text {
  2391. position:absolute;
  2392. align-self:center;
  2393. padding:0px 0px 0px 0px;
  2394. box-sizing:border-box;
  2395. width:100%;
  2396. }
  2397. #u146084_text {
  2398. border-width:0px;
  2399. white-space:nowrap;
  2400. text-transform:none;
  2401. }
  2402. #u146085_div {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:0px;
  2406. top:0px;
  2407. width:121px;
  2408. height:40px;
  2409. background:inherit;
  2410. background-color:rgba(255, 255, 255, 0);
  2411. border:none;
  2412. border-left:0px;
  2413. border-top:0px;
  2414. border-right:0px;
  2415. border-radius:0px;
  2416. border-bottom-right-radius:0px;
  2417. border-bottom-left-radius:0px;
  2418. -moz-box-shadow:none;
  2419. -webkit-box-shadow:none;
  2420. box-shadow:none;
  2421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2422. font-weight:400;
  2423. font-style:normal;
  2424. font-size:14px;
  2425. color:#FFFFFF;
  2426. line-height:40px;
  2427. }
  2428. #u146085 {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:1308px;
  2432. top:500px;
  2433. width:121px;
  2434. height:40px;
  2435. display:flex;
  2436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2437. font-weight:400;
  2438. font-style:normal;
  2439. font-size:14px;
  2440. color:#FFFFFF;
  2441. line-height:40px;
  2442. }
  2443. #u146085 .text {
  2444. position:absolute;
  2445. align-self:center;
  2446. padding:0px 0px 0px 0px;
  2447. box-sizing:border-box;
  2448. width:100%;
  2449. }
  2450. #u146085_text {
  2451. border-width:0px;
  2452. white-space:nowrap;
  2453. text-transform:none;
  2454. }
  2455. #u146086_div {
  2456. border-width:0px;
  2457. position:absolute;
  2458. left:0px;
  2459. top:0px;
  2460. width:121px;
  2461. height:40px;
  2462. background:inherit;
  2463. background-color:rgba(255, 255, 255, 0);
  2464. border:none;
  2465. border-left:0px;
  2466. border-top:0px;
  2467. border-right:0px;
  2468. border-radius:0px;
  2469. border-bottom-right-radius:0px;
  2470. border-bottom-left-radius:0px;
  2471. -moz-box-shadow:none;
  2472. -webkit-box-shadow:none;
  2473. box-shadow:none;
  2474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2475. font-weight:400;
  2476. font-style:normal;
  2477. font-size:14px;
  2478. color:#FFFFFF;
  2479. line-height:40px;
  2480. }
  2481. #u146086 {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:1308px;
  2485. top:540px;
  2486. width:121px;
  2487. height:40px;
  2488. display:flex;
  2489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2490. font-weight:400;
  2491. font-style:normal;
  2492. font-size:14px;
  2493. color:#FFFFFF;
  2494. line-height:40px;
  2495. }
  2496. #u146086 .text {
  2497. position:absolute;
  2498. align-self:center;
  2499. padding:0px 0px 0px 0px;
  2500. box-sizing:border-box;
  2501. width:100%;
  2502. }
  2503. #u146086_text {
  2504. border-width:0px;
  2505. white-space:nowrap;
  2506. text-transform:none;
  2507. }
  2508. #u146087_div {
  2509. border-width:0px;
  2510. position:absolute;
  2511. left:0px;
  2512. top:0px;
  2513. width:121px;
  2514. height:40px;
  2515. background:inherit;
  2516. background-color:rgba(255, 255, 255, 0);
  2517. border:none;
  2518. border-left:0px;
  2519. border-top:0px;
  2520. border-right:0px;
  2521. border-radius:0px;
  2522. border-bottom-right-radius:0px;
  2523. border-bottom-left-radius:0px;
  2524. -moz-box-shadow:none;
  2525. -webkit-box-shadow:none;
  2526. box-shadow:none;
  2527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2528. font-weight:400;
  2529. font-style:normal;
  2530. font-size:14px;
  2531. color:#FFFFFF;
  2532. line-height:40px;
  2533. }
  2534. #u146087 {
  2535. border-width:0px;
  2536. position:absolute;
  2537. left:1308px;
  2538. top:580px;
  2539. width:121px;
  2540. height:40px;
  2541. display:flex;
  2542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2543. font-weight:400;
  2544. font-style:normal;
  2545. font-size:14px;
  2546. color:#FFFFFF;
  2547. line-height:40px;
  2548. }
  2549. #u146087 .text {
  2550. position:absolute;
  2551. align-self:center;
  2552. padding:0px 0px 0px 0px;
  2553. box-sizing:border-box;
  2554. width:100%;
  2555. }
  2556. #u146087_text {
  2557. border-width:0px;
  2558. white-space:nowrap;
  2559. text-transform:none;
  2560. }
  2561. #u146088_div {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:0px;
  2565. top:0px;
  2566. width:110px;
  2567. height:40px;
  2568. background:inherit;
  2569. background-color:rgba(255, 255, 255, 0.0980392156862745);
  2570. border:none;
  2571. border-left:0px;
  2572. border-top:0px;
  2573. border-right:0px;
  2574. border-radius:0px;
  2575. border-bottom-right-radius:0px;
  2576. border-bottom-left-radius:0px;
  2577. -moz-box-shadow:none;
  2578. -webkit-box-shadow:none;
  2579. box-shadow:none;
  2580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2581. font-style:normal;
  2582. color:#FFFFFF;
  2583. text-align:center;
  2584. line-height:40px;
  2585. }
  2586. #u146088 {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:1413px;
  2590. top:409px;
  2591. width:110px;
  2592. height:40px;
  2593. display:flex;
  2594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2595. font-style:normal;
  2596. color:#FFFFFF;
  2597. text-align:center;
  2598. line-height:40px;
  2599. }
  2600. #u146088 .text {
  2601. position:absolute;
  2602. align-self:center;
  2603. padding:0px 0px 0px 0px;
  2604. box-sizing:border-box;
  2605. width:100%;
  2606. }
  2607. #u146088_text {
  2608. border-width:0px;
  2609. word-wrap:break-word;
  2610. text-transform:none;
  2611. }
  2612. #u146089_div {
  2613. border-width:0px;
  2614. position:absolute;
  2615. left:0px;
  2616. top:0px;
  2617. width:26px;
  2618. height:11px;
  2619. background:inherit;
  2620. background-color:rgba(0, 191, 191, 1);
  2621. border:none;
  2622. border-radius:4px;
  2623. -moz-box-shadow:none;
  2624. -webkit-box-shadow:none;
  2625. box-shadow:none;
  2626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2627. font-weight:400;
  2628. font-style:normal;
  2629. font-size:8px;
  2630. color:#FFFFFF;
  2631. text-align:center;
  2632. }
  2633. #u146089 {
  2634. border-width:0px;
  2635. position:absolute;
  2636. left:1276px;
  2637. top:475px;
  2638. width:26px;
  2639. height:11px;
  2640. display:flex;
  2641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2642. font-weight:400;
  2643. font-style:normal;
  2644. font-size:8px;
  2645. color:#FFFFFF;
  2646. text-align:center;
  2647. }
  2648. #u146089 .text {
  2649. position:absolute;
  2650. align-self:center;
  2651. padding:0px 0px 0px 0px;
  2652. box-sizing:border-box;
  2653. width:100%;
  2654. }
  2655. #u146089_text {
  2656. border-width:0px;
  2657. word-wrap:break-word;
  2658. text-transform:none;
  2659. }
  2660. #u146090_div {
  2661. border-width:0px;
  2662. position:absolute;
  2663. left:0px;
  2664. top:0px;
  2665. width:26px;
  2666. height:11px;
  2667. background:inherit;
  2668. background-color:rgba(0, 191, 191, 1);
  2669. border:none;
  2670. border-radius:4px;
  2671. -moz-box-shadow:none;
  2672. -webkit-box-shadow:none;
  2673. box-shadow:none;
  2674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2675. font-weight:400;
  2676. font-style:normal;
  2677. font-size:8px;
  2678. color:#FFFFFF;
  2679. text-align:center;
  2680. }
  2681. #u146090 {
  2682. border-width:0px;
  2683. position:absolute;
  2684. left:1276px;
  2685. top:514px;
  2686. width:26px;
  2687. height:11px;
  2688. display:flex;
  2689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2690. font-weight:400;
  2691. font-style:normal;
  2692. font-size:8px;
  2693. color:#FFFFFF;
  2694. text-align:center;
  2695. }
  2696. #u146090 .text {
  2697. position:absolute;
  2698. align-self:center;
  2699. padding:0px 0px 0px 0px;
  2700. box-sizing:border-box;
  2701. width:100%;
  2702. }
  2703. #u146090_text {
  2704. border-width:0px;
  2705. word-wrap:break-word;
  2706. text-transform:none;
  2707. }
  2708. #u146091_div {
  2709. border-width:0px;
  2710. position:absolute;
  2711. left:0px;
  2712. top:0px;
  2713. width:26px;
  2714. height:11px;
  2715. background:inherit;
  2716. background-color:rgba(0, 191, 191, 1);
  2717. border:none;
  2718. border-radius:4px;
  2719. -moz-box-shadow:none;
  2720. -webkit-box-shadow:none;
  2721. box-shadow:none;
  2722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2723. font-weight:400;
  2724. font-style:normal;
  2725. font-size:8px;
  2726. color:#FFFFFF;
  2727. text-align:center;
  2728. }
  2729. #u146091 {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:1276px;
  2733. top:554px;
  2734. width:26px;
  2735. height:11px;
  2736. display:flex;
  2737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2738. font-weight:400;
  2739. font-style:normal;
  2740. font-size:8px;
  2741. color:#FFFFFF;
  2742. text-align:center;
  2743. }
  2744. #u146091 .text {
  2745. position:absolute;
  2746. align-self:center;
  2747. padding:0px 0px 0px 0px;
  2748. box-sizing:border-box;
  2749. width:100%;
  2750. }
  2751. #u146091_text {
  2752. border-width:0px;
  2753. word-wrap:break-word;
  2754. text-transform:none;
  2755. }
  2756. #u146092_div {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:0px;
  2760. top:0px;
  2761. width:121px;
  2762. height:40px;
  2763. background:inherit;
  2764. background-color:rgba(255, 255, 255, 0);
  2765. border:none;
  2766. border-left:0px;
  2767. border-top:0px;
  2768. border-right:0px;
  2769. border-radius:0px;
  2770. border-bottom-right-radius:0px;
  2771. border-bottom-left-radius:0px;
  2772. -moz-box-shadow:none;
  2773. -webkit-box-shadow:none;
  2774. box-shadow:none;
  2775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2776. font-weight:400;
  2777. font-style:normal;
  2778. font-size:14px;
  2779. color:#FFFFFF;
  2780. line-height:40px;
  2781. }
  2782. #u146092 {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:1308px;
  2786. top:620px;
  2787. width:121px;
  2788. height:40px;
  2789. display:flex;
  2790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2791. font-weight:400;
  2792. font-style:normal;
  2793. font-size:14px;
  2794. color:#FFFFFF;
  2795. line-height:40px;
  2796. }
  2797. #u146092 .text {
  2798. position:absolute;
  2799. align-self:center;
  2800. padding:0px 0px 0px 0px;
  2801. box-sizing:border-box;
  2802. width:100%;
  2803. }
  2804. #u146092_text {
  2805. border-width:0px;
  2806. white-space:nowrap;
  2807. text-transform:none;
  2808. }
  2809. #u146093_div {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:0px;
  2813. top:0px;
  2814. width:26px;
  2815. height:11px;
  2816. background:inherit;
  2817. background-color:rgba(127, 127, 127, 1);
  2818. border:none;
  2819. border-radius:4px;
  2820. -moz-box-shadow:none;
  2821. -webkit-box-shadow:none;
  2822. box-shadow:none;
  2823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2824. font-weight:400;
  2825. font-style:normal;
  2826. font-size:8px;
  2827. color:#FFFFFF;
  2828. text-align:center;
  2829. }
  2830. #u146093 {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:1276px;
  2834. top:633px;
  2835. width:26px;
  2836. height:11px;
  2837. display:flex;
  2838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2839. font-weight:400;
  2840. font-style:normal;
  2841. font-size:8px;
  2842. color:#FFFFFF;
  2843. text-align:center;
  2844. }
  2845. #u146093 .text {
  2846. position:absolute;
  2847. align-self:center;
  2848. padding:0px 0px 0px 0px;
  2849. box-sizing:border-box;
  2850. width:100%;
  2851. }
  2852. #u146093_text {
  2853. border-width:0px;
  2854. word-wrap:break-word;
  2855. text-transform:none;
  2856. }
  2857. #u146094_div {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:0px;
  2861. top:0px;
  2862. width:26px;
  2863. height:11px;
  2864. background:inherit;
  2865. background-color:rgba(0, 191, 191, 1);
  2866. border:none;
  2867. border-radius:4px;
  2868. -moz-box-shadow:none;
  2869. -webkit-box-shadow:none;
  2870. box-shadow:none;
  2871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2872. font-weight:400;
  2873. font-style:normal;
  2874. font-size:8px;
  2875. color:#FFFFFF;
  2876. text-align:center;
  2877. }
  2878. #u146094 {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:1276px;
  2882. top:595px;
  2883. width:26px;
  2884. height:11px;
  2885. display:flex;
  2886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2887. font-weight:400;
  2888. font-style:normal;
  2889. font-size:8px;
  2890. color:#FFFFFF;
  2891. text-align:center;
  2892. }
  2893. #u146094 .text {
  2894. position:absolute;
  2895. align-self:center;
  2896. padding:0px 0px 0px 0px;
  2897. box-sizing:border-box;
  2898. width:100%;
  2899. }
  2900. #u146094_text {
  2901. border-width:0px;
  2902. word-wrap:break-word;
  2903. text-transform:none;
  2904. }
  2905. #u146095_img {
  2906. border-width:0px;
  2907. position:absolute;
  2908. left:0px;
  2909. top:0px;
  2910. width:13px;
  2911. height:20px;
  2912. }
  2913. #u146095 {
  2914. border-width:0px;
  2915. position:absolute;
  2916. left:1510px;
  2917. top:463px;
  2918. width:13px;
  2919. height:20px;
  2920. display:flex;
  2921. }
  2922. #u146095 .text {
  2923. position:absolute;
  2924. align-self:center;
  2925. padding:2px 2px 2px 2px;
  2926. box-sizing:border-box;
  2927. width:100%;
  2928. }
  2929. #u146095_text {
  2930. border-width:0px;
  2931. word-wrap:break-word;
  2932. text-transform:none;
  2933. visibility:hidden;
  2934. }
  2935. #u146096_img {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:0px;
  2939. top:0px;
  2940. width:13px;
  2941. height:20px;
  2942. }
  2943. #u146096 {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:1510px;
  2947. top:505px;
  2948. width:13px;
  2949. height:20px;
  2950. display:flex;
  2951. }
  2952. #u146096 .text {
  2953. position:absolute;
  2954. align-self:center;
  2955. padding:2px 2px 2px 2px;
  2956. box-sizing:border-box;
  2957. width:100%;
  2958. }
  2959. #u146096_text {
  2960. border-width:0px;
  2961. word-wrap:break-word;
  2962. text-transform:none;
  2963. visibility:hidden;
  2964. }
  2965. #u146097_img {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:0px;
  2969. top:0px;
  2970. width:13px;
  2971. height:20px;
  2972. }
  2973. #u146097 {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:1510px;
  2977. top:545px;
  2978. width:13px;
  2979. height:20px;
  2980. display:flex;
  2981. }
  2982. #u146097 .text {
  2983. position:absolute;
  2984. align-self:center;
  2985. padding:2px 2px 2px 2px;
  2986. box-sizing:border-box;
  2987. width:100%;
  2988. }
  2989. #u146097_text {
  2990. border-width:0px;
  2991. word-wrap:break-word;
  2992. text-transform:none;
  2993. visibility:hidden;
  2994. }
  2995. #u146098_img {
  2996. border-width:0px;
  2997. position:absolute;
  2998. left:0px;
  2999. top:0px;
  3000. width:13px;
  3001. height:20px;
  3002. }
  3003. #u146098 {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:1510px;
  3007. top:586px;
  3008. width:13px;
  3009. height:20px;
  3010. display:flex;
  3011. }
  3012. #u146098 .text {
  3013. position:absolute;
  3014. align-self:center;
  3015. padding:2px 2px 2px 2px;
  3016. box-sizing:border-box;
  3017. width:100%;
  3018. }
  3019. #u146098_text {
  3020. border-width:0px;
  3021. word-wrap:break-word;
  3022. text-transform:none;
  3023. visibility:hidden;
  3024. }
  3025. #u146099_img {
  3026. border-width:0px;
  3027. position:absolute;
  3028. left:0px;
  3029. top:0px;
  3030. width:13px;
  3031. height:20px;
  3032. }
  3033. #u146099 {
  3034. border-width:0px;
  3035. position:absolute;
  3036. left:1510px;
  3037. top:624px;
  3038. width:13px;
  3039. height:20px;
  3040. display:flex;
  3041. }
  3042. #u146099 .text {
  3043. position:absolute;
  3044. align-self:center;
  3045. padding:2px 2px 2px 2px;
  3046. box-sizing:border-box;
  3047. width:100%;
  3048. }
  3049. #u146099_text {
  3050. border-width:0px;
  3051. word-wrap:break-word;
  3052. text-transform:none;
  3053. visibility:hidden;
  3054. }
  3055. #u146100_div {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:0px;
  3059. top:0px;
  3060. width:75px;
  3061. height:150px;
  3062. background:inherit;
  3063. background-color:rgba(255, 255, 255, 0);
  3064. border:none;
  3065. border-left:0px;
  3066. border-top:0px;
  3067. border-right:0px;
  3068. border-radius:0px;
  3069. border-bottom-right-radius:0px;
  3070. border-bottom-left-radius:0px;
  3071. -moz-box-shadow:none;
  3072. -webkit-box-shadow:none;
  3073. box-shadow:none;
  3074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3075. font-weight:400;
  3076. font-style:normal;
  3077. font-size:12px;
  3078. color:#FFFFFF;
  3079. line-height:30px;
  3080. }
  3081. #u146100 {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:1442px;
  3085. top:743px;
  3086. width:75px;
  3087. height:150px;
  3088. display:flex;
  3089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3090. font-weight:400;
  3091. font-style:normal;
  3092. font-size:12px;
  3093. color:#FFFFFF;
  3094. line-height:30px;
  3095. }
  3096. #u146100 .text {
  3097. position:absolute;
  3098. align-self:center;
  3099. padding:0px 0px 0px 0px;
  3100. box-sizing:border-box;
  3101. width:100%;
  3102. }
  3103. #u146100_text {
  3104. border-width:0px;
  3105. white-space:nowrap;
  3106. text-transform:none;
  3107. }
  3108. #u146101 {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:0px;
  3112. top:0px;
  3113. width:0px;
  3114. height:0px;
  3115. }
  3116. #u146102_img {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:0px;
  3120. top:0px;
  3121. width:140px;
  3122. height:140px;
  3123. }
  3124. #u146102 {
  3125. border-width:0px;
  3126. position:absolute;
  3127. left:1281px;
  3128. top:751px;
  3129. width:140px;
  3130. height:140px;
  3131. display:flex;
  3132. }
  3133. #u146102 .text {
  3134. position:absolute;
  3135. align-self:center;
  3136. padding:2px 2px 2px 2px;
  3137. box-sizing:border-box;
  3138. width:100%;
  3139. }
  3140. #u146102_text {
  3141. border-width:0px;
  3142. word-wrap:break-word;
  3143. text-transform:none;
  3144. visibility:hidden;
  3145. }
  3146. #u146103_img {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:0px;
  3150. top:0px;
  3151. width:102px;
  3152. height:102px;
  3153. }
  3154. #u146103 {
  3155. border-width:0px;
  3156. position:absolute;
  3157. left:1300px;
  3158. top:770px;
  3159. width:102px;
  3160. height:102px;
  3161. display:flex;
  3162. }
  3163. #u146103 .text {
  3164. position:absolute;
  3165. align-self:center;
  3166. padding:2px 2px 2px 2px;
  3167. box-sizing:border-box;
  3168. width:100%;
  3169. }
  3170. #u146103_text {
  3171. border-width:0px;
  3172. word-wrap:break-word;
  3173. text-transform:none;
  3174. }
  3175. #u146104_div {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:0px;
  3179. top:0px;
  3180. width:49px;
  3181. height:36px;
  3182. background:inherit;
  3183. background-color:rgba(255, 255, 255, 0);
  3184. border:none;
  3185. border-left:0px;
  3186. border-top:0px;
  3187. border-right:0px;
  3188. border-radius:0px;
  3189. border-bottom-right-radius:0px;
  3190. border-bottom-left-radius:0px;
  3191. -moz-box-shadow:none;
  3192. -webkit-box-shadow:none;
  3193. box-shadow:none;
  3194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3195. font-weight:400;
  3196. font-style:normal;
  3197. font-size:10px;
  3198. color:#AAAAAA;
  3199. line-height:30px;
  3200. }
  3201. #u146104 {
  3202. border-width:0px;
  3203. position:absolute;
  3204. left:1331px;
  3205. top:745px;
  3206. width:49px;
  3207. height:36px;
  3208. display:flex;
  3209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3210. font-weight:400;
  3211. font-style:normal;
  3212. font-size:10px;
  3213. color:#AAAAAA;
  3214. line-height:30px;
  3215. }
  3216. #u146104 .text {
  3217. position:absolute;
  3218. align-self:center;
  3219. padding:0px 0px 0px 0px;
  3220. box-sizing:border-box;
  3221. width:100%;
  3222. }
  3223. #u146104_text {
  3224. border-width:0px;
  3225. word-wrap:break-word;
  3226. text-transform:none;
  3227. }
  3228. #u146105_div {
  3229. border-width:0px;
  3230. position:absolute;
  3231. left:0px;
  3232. top:0px;
  3233. width:85px;
  3234. height:40px;
  3235. background:inherit;
  3236. background-color:rgba(255, 255, 255, 0);
  3237. border:none;
  3238. border-left:0px;
  3239. border-top:0px;
  3240. border-right:0px;
  3241. border-radius:0px;
  3242. border-bottom-right-radius:0px;
  3243. border-bottom-left-radius:0px;
  3244. -moz-box-shadow:none;
  3245. -webkit-box-shadow:none;
  3246. box-shadow:none;
  3247. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3248. font-weight:500;
  3249. font-style:normal;
  3250. font-size:14px;
  3251. color:#FFFFFF;
  3252. line-height:40px;
  3253. }
  3254. #u146105 {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:1281px;
  3258. top:697px;
  3259. width:85px;
  3260. height:40px;
  3261. display:flex;
  3262. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3263. font-weight:500;
  3264. font-style:normal;
  3265. font-size:14px;
  3266. color:#FFFFFF;
  3267. line-height:40px;
  3268. }
  3269. #u146105 .text {
  3270. position:absolute;
  3271. align-self:center;
  3272. padding:0px 0px 0px 0px;
  3273. box-sizing:border-box;
  3274. width:100%;
  3275. }
  3276. #u146105_text {
  3277. border-width:0px;
  3278. white-space:nowrap;
  3279. text-transform:none;
  3280. }
  3281. #u146106_div {
  3282. border-width:0px;
  3283. position:absolute;
  3284. left:0px;
  3285. top:0px;
  3286. width:25px;
  3287. height:40px;
  3288. background:inherit;
  3289. background-color:rgba(255, 255, 255, 0);
  3290. box-sizing:border-box;
  3291. border-width:3px;
  3292. border-style:solid;
  3293. border-color:rgba(41, 143, 255, 1);
  3294. border-left:0px;
  3295. border-top:0px;
  3296. border-right:0px;
  3297. border-radius:0px;
  3298. border-bottom-right-radius:0px;
  3299. border-bottom-left-radius:0px;
  3300. -moz-box-shadow:none;
  3301. -webkit-box-shadow:none;
  3302. box-shadow:none;
  3303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3304. font-weight:400;
  3305. font-style:normal;
  3306. font-size:12px;
  3307. color:#298FFF;
  3308. line-height:40px;
  3309. }
  3310. #u146106 {
  3311. border-width:0px;
  3312. position:absolute;
  3313. left:1281px;
  3314. top:913px;
  3315. width:25px;
  3316. height:40px;
  3317. display:flex;
  3318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3319. font-weight:400;
  3320. font-style:normal;
  3321. font-size:12px;
  3322. color:#298FFF;
  3323. line-height:40px;
  3324. }
  3325. #u146106 .text {
  3326. position:absolute;
  3327. align-self:center;
  3328. padding:0px 0px 0px 0px;
  3329. box-sizing:border-box;
  3330. width:100%;
  3331. }
  3332. #u146106_text {
  3333. border-width:0px;
  3334. white-space:nowrap;
  3335. text-transform:none;
  3336. }
  3337. #u146107_div {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:0px;
  3341. top:0px;
  3342. width:57px;
  3343. height:40px;
  3344. background:inherit;
  3345. background-color:rgba(255, 255, 255, 0);
  3346. border:none;
  3347. border-left:0px;
  3348. border-top:0px;
  3349. border-right:0px;
  3350. border-radius:0px;
  3351. border-bottom-right-radius:0px;
  3352. border-bottom-left-radius:0px;
  3353. -moz-box-shadow:none;
  3354. -webkit-box-shadow:none;
  3355. box-shadow:none;
  3356. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3357. font-weight:500;
  3358. font-style:normal;
  3359. font-size:14px;
  3360. color:#FFFFFF;
  3361. line-height:40px;
  3362. }
  3363. #u146107 {
  3364. border-width:0px;
  3365. position:absolute;
  3366. left:1281px;
  3367. top:364px;
  3368. width:57px;
  3369. height:40px;
  3370. display:flex;
  3371. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3372. font-weight:500;
  3373. font-style:normal;
  3374. font-size:14px;
  3375. color:#FFFFFF;
  3376. line-height:40px;
  3377. }
  3378. #u146107 .text {
  3379. position:absolute;
  3380. align-self:center;
  3381. padding:0px 0px 0px 0px;
  3382. box-sizing:border-box;
  3383. width:100%;
  3384. }
  3385. #u146107_text {
  3386. border-width:0px;
  3387. white-space:nowrap;
  3388. text-transform:none;
  3389. }
  3390. #u146108_div {
  3391. border-width:0px;
  3392. position:absolute;
  3393. left:0px;
  3394. top:0px;
  3395. width:111px;
  3396. height:40px;
  3397. background:inherit;
  3398. background-color:rgba(255, 255, 255, 0);
  3399. border:none;
  3400. border-left:0px;
  3401. border-top:0px;
  3402. border-right:0px;
  3403. border-radius:0px;
  3404. border-bottom-right-radius:0px;
  3405. border-bottom-left-radius:0px;
  3406. -moz-box-shadow:none;
  3407. -webkit-box-shadow:none;
  3408. box-shadow:none;
  3409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3410. font-weight:400;
  3411. font-style:normal;
  3412. font-size:14px;
  3413. color:#FFFFFF;
  3414. line-height:40px;
  3415. }
  3416. #u146108 {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:1281px;
  3420. top:953px;
  3421. width:111px;
  3422. height:40px;
  3423. display:flex;
  3424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3425. font-weight:400;
  3426. font-style:normal;
  3427. font-size:14px;
  3428. color:#FFFFFF;
  3429. line-height:40px;
  3430. }
  3431. #u146108 .text {
  3432. position:absolute;
  3433. align-self:center;
  3434. padding:0px 0px 0px 0px;
  3435. box-sizing:border-box;
  3436. width:100%;
  3437. }
  3438. #u146108_text {
  3439. border-width:0px;
  3440. white-space:nowrap;
  3441. text-transform:none;
  3442. }
  3443. #u146109_div {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:0px;
  3447. top:0px;
  3448. width:21px;
  3449. height:11px;
  3450. background:inherit;
  3451. background-color:rgba(0, 191, 191, 1);
  3452. border:none;
  3453. border-radius:4px;
  3454. -moz-box-shadow:none;
  3455. -webkit-box-shadow:none;
  3456. box-shadow:none;
  3457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3458. font-weight:400;
  3459. font-style:normal;
  3460. font-size:8px;
  3461. color:#FFFFFF;
  3462. text-align:center;
  3463. }
  3464. #u146109 {
  3465. border-width:0px;
  3466. position:absolute;
  3467. left:1398px;
  3468. top:968px;
  3469. width:21px;
  3470. height:11px;
  3471. display:flex;
  3472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3473. font-weight:400;
  3474. font-style:normal;
  3475. font-size:8px;
  3476. color:#FFFFFF;
  3477. text-align:center;
  3478. }
  3479. #u146109 .text {
  3480. position:absolute;
  3481. align-self:center;
  3482. padding:0px 0px 0px 0px;
  3483. box-sizing:border-box;
  3484. width:100%;
  3485. }
  3486. #u146109_text {
  3487. border-width:0px;
  3488. word-wrap:break-word;
  3489. text-transform:none;
  3490. }
  3491. #u146110_div {
  3492. border-width:0px;
  3493. position:absolute;
  3494. left:0px;
  3495. top:0px;
  3496. width:111px;
  3497. height:40px;
  3498. background:inherit;
  3499. background-color:rgba(255, 255, 255, 0);
  3500. border:none;
  3501. border-left:0px;
  3502. border-top:0px;
  3503. border-right:0px;
  3504. border-radius:0px;
  3505. border-bottom-right-radius:0px;
  3506. border-bottom-left-radius:0px;
  3507. -moz-box-shadow:none;
  3508. -webkit-box-shadow:none;
  3509. box-shadow:none;
  3510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3511. font-weight:400;
  3512. font-style:normal;
  3513. font-size:14px;
  3514. color:#FFFFFF;
  3515. line-height:40px;
  3516. }
  3517. #u146110 {
  3518. border-width:0px;
  3519. position:absolute;
  3520. left:1281px;
  3521. top:993px;
  3522. width:111px;
  3523. height:40px;
  3524. display:flex;
  3525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3526. font-weight:400;
  3527. font-style:normal;
  3528. font-size:14px;
  3529. color:#FFFFFF;
  3530. line-height:40px;
  3531. }
  3532. #u146110 .text {
  3533. position:absolute;
  3534. align-self:center;
  3535. padding:0px 0px 0px 0px;
  3536. box-sizing:border-box;
  3537. width:100%;
  3538. }
  3539. #u146110_text {
  3540. border-width:0px;
  3541. white-space:nowrap;
  3542. text-transform:none;
  3543. }
  3544. #u146111_div {
  3545. border-width:0px;
  3546. position:absolute;
  3547. left:0px;
  3548. top:0px;
  3549. width:21px;
  3550. height:11px;
  3551. background:inherit;
  3552. background-color:rgba(0, 191, 191, 1);
  3553. border:none;
  3554. border-radius:4px;
  3555. -moz-box-shadow:none;
  3556. -webkit-box-shadow:none;
  3557. box-shadow:none;
  3558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3559. font-weight:400;
  3560. font-style:normal;
  3561. font-size:8px;
  3562. color:#FFFFFF;
  3563. text-align:center;
  3564. }
  3565. #u146111 {
  3566. border-width:0px;
  3567. position:absolute;
  3568. left:1398px;
  3569. top:1008px;
  3570. width:21px;
  3571. height:11px;
  3572. display:flex;
  3573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3574. font-weight:400;
  3575. font-style:normal;
  3576. font-size:8px;
  3577. color:#FFFFFF;
  3578. text-align:center;
  3579. }
  3580. #u146111 .text {
  3581. position:absolute;
  3582. align-self:center;
  3583. padding:0px 0px 0px 0px;
  3584. box-sizing:border-box;
  3585. width:100%;
  3586. }
  3587. #u146111_text {
  3588. border-width:0px;
  3589. word-wrap:break-word;
  3590. text-transform:none;
  3591. }
  3592. #u146112_div {
  3593. border-width:0px;
  3594. position:absolute;
  3595. left:0px;
  3596. top:0px;
  3597. width:111px;
  3598. height:40px;
  3599. background:inherit;
  3600. background-color:rgba(255, 255, 255, 0);
  3601. border:none;
  3602. border-left:0px;
  3603. border-top:0px;
  3604. border-right:0px;
  3605. border-radius:0px;
  3606. border-bottom-right-radius:0px;
  3607. border-bottom-left-radius:0px;
  3608. -moz-box-shadow:none;
  3609. -webkit-box-shadow:none;
  3610. box-shadow:none;
  3611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3612. font-weight:400;
  3613. font-style:normal;
  3614. font-size:14px;
  3615. color:#FFFFFF;
  3616. line-height:40px;
  3617. }
  3618. #u146112 {
  3619. border-width:0px;
  3620. position:absolute;
  3621. left:1281px;
  3622. top:1033px;
  3623. width:111px;
  3624. height:40px;
  3625. display:flex;
  3626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3627. font-weight:400;
  3628. font-style:normal;
  3629. font-size:14px;
  3630. color:#FFFFFF;
  3631. line-height:40px;
  3632. }
  3633. #u146112 .text {
  3634. position:absolute;
  3635. align-self:center;
  3636. padding:0px 0px 0px 0px;
  3637. box-sizing:border-box;
  3638. width:100%;
  3639. }
  3640. #u146112_text {
  3641. border-width:0px;
  3642. white-space:nowrap;
  3643. text-transform:none;
  3644. }
  3645. #u146113_div {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:0px;
  3649. top:0px;
  3650. width:21px;
  3651. height:11px;
  3652. background:inherit;
  3653. background-color:rgba(0, 191, 191, 1);
  3654. border:none;
  3655. border-radius:4px;
  3656. -moz-box-shadow:none;
  3657. -webkit-box-shadow:none;
  3658. box-shadow:none;
  3659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3660. font-weight:400;
  3661. font-style:normal;
  3662. font-size:8px;
  3663. color:#FFFFFF;
  3664. text-align:center;
  3665. }
  3666. #u146113 {
  3667. border-width:0px;
  3668. position:absolute;
  3669. left:1398px;
  3670. top:1048px;
  3671. width:21px;
  3672. height:11px;
  3673. display:flex;
  3674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3675. font-weight:400;
  3676. font-style:normal;
  3677. font-size:8px;
  3678. color:#FFFFFF;
  3679. text-align:center;
  3680. }
  3681. #u146113 .text {
  3682. position:absolute;
  3683. align-self:center;
  3684. padding:0px 0px 0px 0px;
  3685. box-sizing:border-box;
  3686. width:100%;
  3687. }
  3688. #u146113_text {
  3689. border-width:0px;
  3690. word-wrap:break-word;
  3691. text-transform:none;
  3692. }
  3693. #u146114_div {
  3694. border-width:0px;
  3695. position:absolute;
  3696. left:0px;
  3697. top:0px;
  3698. width:111px;
  3699. height:40px;
  3700. background:inherit;
  3701. background-color:rgba(255, 255, 255, 0);
  3702. border:none;
  3703. border-left:0px;
  3704. border-top:0px;
  3705. border-right:0px;
  3706. border-radius:0px;
  3707. border-bottom-right-radius:0px;
  3708. border-bottom-left-radius:0px;
  3709. -moz-box-shadow:none;
  3710. -webkit-box-shadow:none;
  3711. box-shadow:none;
  3712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3713. font-weight:400;
  3714. font-style:normal;
  3715. font-size:14px;
  3716. color:#FFFFFF;
  3717. line-height:40px;
  3718. }
  3719. #u146114 {
  3720. border-width:0px;
  3721. position:absolute;
  3722. left:1281px;
  3723. top:1073px;
  3724. width:111px;
  3725. height:40px;
  3726. display:flex;
  3727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3728. font-weight:400;
  3729. font-style:normal;
  3730. font-size:14px;
  3731. color:#FFFFFF;
  3732. line-height:40px;
  3733. }
  3734. #u146114 .text {
  3735. position:absolute;
  3736. align-self:center;
  3737. padding:0px 0px 0px 0px;
  3738. box-sizing:border-box;
  3739. width:100%;
  3740. }
  3741. #u146114_text {
  3742. border-width:0px;
  3743. white-space:nowrap;
  3744. text-transform:none;
  3745. }
  3746. #u146115_div {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:0px;
  3750. top:0px;
  3751. width:21px;
  3752. height:11px;
  3753. background:inherit;
  3754. background-color:rgba(0, 191, 191, 1);
  3755. border:none;
  3756. border-radius:4px;
  3757. -moz-box-shadow:none;
  3758. -webkit-box-shadow:none;
  3759. box-shadow:none;
  3760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3761. font-weight:400;
  3762. font-style:normal;
  3763. font-size:8px;
  3764. color:#FFFFFF;
  3765. text-align:center;
  3766. }
  3767. #u146115 {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:1398px;
  3771. top:1088px;
  3772. width:21px;
  3773. height:11px;
  3774. display:flex;
  3775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3776. font-weight:400;
  3777. font-style:normal;
  3778. font-size:8px;
  3779. color:#FFFFFF;
  3780. text-align:center;
  3781. }
  3782. #u146115 .text {
  3783. position:absolute;
  3784. align-self:center;
  3785. padding:0px 0px 0px 0px;
  3786. box-sizing:border-box;
  3787. width:100%;
  3788. }
  3789. #u146115_text {
  3790. border-width:0px;
  3791. word-wrap:break-word;
  3792. text-transform:none;
  3793. }
  3794. #u146116_div {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:0px;
  3798. top:0px;
  3799. width:111px;
  3800. height:40px;
  3801. background:inherit;
  3802. background-color:rgba(255, 255, 255, 0);
  3803. border:none;
  3804. border-left:0px;
  3805. border-top:0px;
  3806. border-right:0px;
  3807. border-radius:0px;
  3808. border-bottom-right-radius:0px;
  3809. border-bottom-left-radius:0px;
  3810. -moz-box-shadow:none;
  3811. -webkit-box-shadow:none;
  3812. box-shadow:none;
  3813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3814. font-weight:400;
  3815. font-style:normal;
  3816. font-size:14px;
  3817. color:#FFFFFF;
  3818. line-height:40px;
  3819. }
  3820. #u146116 {
  3821. border-width:0px;
  3822. position:absolute;
  3823. left:1281px;
  3824. top:1113px;
  3825. width:111px;
  3826. height:40px;
  3827. display:flex;
  3828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3829. font-weight:400;
  3830. font-style:normal;
  3831. font-size:14px;
  3832. color:#FFFFFF;
  3833. line-height:40px;
  3834. }
  3835. #u146116 .text {
  3836. position:absolute;
  3837. align-self:center;
  3838. padding:0px 0px 0px 0px;
  3839. box-sizing:border-box;
  3840. width:100%;
  3841. }
  3842. #u146116_text {
  3843. border-width:0px;
  3844. white-space:nowrap;
  3845. text-transform:none;
  3846. }
  3847. #u146117_div {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:0px;
  3851. top:0px;
  3852. width:21px;
  3853. height:11px;
  3854. background:inherit;
  3855. background-color:rgba(0, 191, 191, 1);
  3856. border:none;
  3857. border-radius:4px;
  3858. -moz-box-shadow:none;
  3859. -webkit-box-shadow:none;
  3860. box-shadow:none;
  3861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3862. font-weight:400;
  3863. font-style:normal;
  3864. font-size:8px;
  3865. color:#FFFFFF;
  3866. text-align:center;
  3867. }
  3868. #u146117 {
  3869. border-width:0px;
  3870. position:absolute;
  3871. left:1398px;
  3872. top:1128px;
  3873. width:21px;
  3874. height:11px;
  3875. display:flex;
  3876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3877. font-weight:400;
  3878. font-style:normal;
  3879. font-size:8px;
  3880. color:#FFFFFF;
  3881. text-align:center;
  3882. }
  3883. #u146117 .text {
  3884. position:absolute;
  3885. align-self:center;
  3886. padding:0px 0px 0px 0px;
  3887. box-sizing:border-box;
  3888. width:100%;
  3889. }
  3890. #u146117_text {
  3891. border-width:0px;
  3892. word-wrap:break-word;
  3893. text-transform:none;
  3894. }
  3895. #u146118_div {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:0px;
  3899. top:0px;
  3900. width:25px;
  3901. height:40px;
  3902. background:inherit;
  3903. background-color:rgba(255, 255, 255, 0);
  3904. border:none;
  3905. border-left:0px;
  3906. border-top:0px;
  3907. border-right:0px;
  3908. border-radius:0px;
  3909. border-bottom-right-radius:0px;
  3910. border-bottom-left-radius:0px;
  3911. -moz-box-shadow:none;
  3912. -webkit-box-shadow:none;
  3913. box-shadow:none;
  3914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3915. font-weight:400;
  3916. font-style:normal;
  3917. font-size:12px;
  3918. color:#FFFFFF;
  3919. line-height:40px;
  3920. }
  3921. #u146118 {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:1325px;
  3925. top:913px;
  3926. width:25px;
  3927. height:40px;
  3928. display:flex;
  3929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3930. font-weight:400;
  3931. font-style:normal;
  3932. font-size:12px;
  3933. color:#FFFFFF;
  3934. line-height:40px;
  3935. }
  3936. #u146118 .text {
  3937. position:absolute;
  3938. align-self:center;
  3939. padding:0px 0px 0px 0px;
  3940. box-sizing:border-box;
  3941. width:100%;
  3942. }
  3943. #u146118_text {
  3944. border-width:0px;
  3945. white-space:nowrap;
  3946. text-transform:none;
  3947. }
  3948. #u146119_div {
  3949. border-width:0px;
  3950. position:absolute;
  3951. left:0px;
  3952. top:0px;
  3953. width:25px;
  3954. height:40px;
  3955. background:inherit;
  3956. background-color:rgba(255, 255, 255, 0);
  3957. border:none;
  3958. border-left:0px;
  3959. border-top:0px;
  3960. border-right:0px;
  3961. border-radius:0px;
  3962. border-bottom-right-radius:0px;
  3963. border-bottom-left-radius:0px;
  3964. -moz-box-shadow:none;
  3965. -webkit-box-shadow:none;
  3966. box-shadow:none;
  3967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3968. font-weight:400;
  3969. font-style:normal;
  3970. font-size:12px;
  3971. color:#FFFFFF;
  3972. line-height:40px;
  3973. }
  3974. #u146119 {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:1369px;
  3978. top:913px;
  3979. width:25px;
  3980. height:40px;
  3981. display:flex;
  3982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3983. font-weight:400;
  3984. font-style:normal;
  3985. font-size:12px;
  3986. color:#FFFFFF;
  3987. line-height:40px;
  3988. }
  3989. #u146119 .text {
  3990. position:absolute;
  3991. align-self:center;
  3992. padding:0px 0px 0px 0px;
  3993. box-sizing:border-box;
  3994. width:100%;
  3995. }
  3996. #u146119_text {
  3997. border-width:0px;
  3998. white-space:nowrap;
  3999. text-transform:none;
  4000. }
  4001. #u146120_div {
  4002. border-width:0px;
  4003. position:absolute;
  4004. left:0px;
  4005. top:0px;
  4006. width:25px;
  4007. height:40px;
  4008. background:inherit;
  4009. background-color:rgba(255, 255, 255, 0);
  4010. border:none;
  4011. border-left:0px;
  4012. border-top:0px;
  4013. border-right:0px;
  4014. border-radius:0px;
  4015. border-bottom-right-radius:0px;
  4016. border-bottom-left-radius:0px;
  4017. -moz-box-shadow:none;
  4018. -webkit-box-shadow:none;
  4019. box-shadow:none;
  4020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4021. font-weight:400;
  4022. font-style:normal;
  4023. font-size:12px;
  4024. color:#FFFFFF;
  4025. line-height:40px;
  4026. }
  4027. #u146120 {
  4028. border-width:0px;
  4029. position:absolute;
  4030. left:1414px;
  4031. top:913px;
  4032. width:25px;
  4033. height:40px;
  4034. display:flex;
  4035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4036. font-weight:400;
  4037. font-style:normal;
  4038. font-size:12px;
  4039. color:#FFFFFF;
  4040. line-height:40px;
  4041. }
  4042. #u146120 .text {
  4043. position:absolute;
  4044. align-self:center;
  4045. padding:0px 0px 0px 0px;
  4046. box-sizing:border-box;
  4047. width:100%;
  4048. }
  4049. #u146120_text {
  4050. border-width:0px;
  4051. white-space:nowrap;
  4052. text-transform:none;
  4053. }
  4054. #u146121_div {
  4055. border-width:0px;
  4056. position:absolute;
  4057. left:0px;
  4058. top:0px;
  4059. width:25px;
  4060. height:40px;
  4061. background:inherit;
  4062. background-color:rgba(255, 255, 255, 0);
  4063. border:none;
  4064. border-left:0px;
  4065. border-top:0px;
  4066. border-right:0px;
  4067. border-radius:0px;
  4068. border-bottom-right-radius:0px;
  4069. border-bottom-left-radius:0px;
  4070. -moz-box-shadow:none;
  4071. -webkit-box-shadow:none;
  4072. box-shadow:none;
  4073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4074. font-weight:400;
  4075. font-style:normal;
  4076. font-size:12px;
  4077. color:#FFFFFF;
  4078. line-height:40px;
  4079. }
  4080. #u146121 {
  4081. border-width:0px;
  4082. position:absolute;
  4083. left:1458px;
  4084. top:913px;
  4085. width:25px;
  4086. height:40px;
  4087. display:flex;
  4088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4089. font-weight:400;
  4090. font-style:normal;
  4091. font-size:12px;
  4092. color:#FFFFFF;
  4093. line-height:40px;
  4094. }
  4095. #u146121 .text {
  4096. position:absolute;
  4097. align-self:center;
  4098. padding:0px 0px 0px 0px;
  4099. box-sizing:border-box;
  4100. width:100%;
  4101. }
  4102. #u146121_text {
  4103. border-width:0px;
  4104. white-space:nowrap;
  4105. text-transform:none;
  4106. }
  4107. #u146122_div {
  4108. border-width:0px;
  4109. position:absolute;
  4110. left:0px;
  4111. top:0px;
  4112. width:25px;
  4113. height:40px;
  4114. background:inherit;
  4115. background-color:rgba(255, 255, 255, 0);
  4116. border:none;
  4117. border-left:0px;
  4118. border-top:0px;
  4119. border-right:0px;
  4120. border-radius:0px;
  4121. border-bottom-right-radius:0px;
  4122. border-bottom-left-radius:0px;
  4123. -moz-box-shadow:none;
  4124. -webkit-box-shadow:none;
  4125. box-shadow:none;
  4126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4127. font-weight:400;
  4128. font-style:normal;
  4129. font-size:12px;
  4130. color:#FFFFFF;
  4131. line-height:40px;
  4132. }
  4133. #u146122 {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:1502px;
  4137. top:913px;
  4138. width:25px;
  4139. height:40px;
  4140. display:flex;
  4141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4142. font-weight:400;
  4143. font-style:normal;
  4144. font-size:12px;
  4145. color:#FFFFFF;
  4146. line-height:40px;
  4147. }
  4148. #u146122 .text {
  4149. position:absolute;
  4150. align-self:center;
  4151. padding:0px 0px 0px 0px;
  4152. box-sizing:border-box;
  4153. width:100%;
  4154. }
  4155. #u146122_text {
  4156. border-width:0px;
  4157. white-space:nowrap;
  4158. text-transform:none;
  4159. }
  4160. #u146123 {
  4161. border-width:0px;
  4162. position:absolute;
  4163. left:0px;
  4164. top:0px;
  4165. width:0px;
  4166. height:0px;
  4167. }
  4168. #u146124_div {
  4169. border-width:0px;
  4170. position:absolute;
  4171. left:0px;
  4172. top:0px;
  4173. width:275px;
  4174. height:200px;
  4175. background:inherit;
  4176. background-color:rgba(51, 51, 51, 1);
  4177. border:none;
  4178. border-radius:4px;
  4179. -moz-box-shadow:none;
  4180. -webkit-box-shadow:none;
  4181. box-shadow:none;
  4182. }
  4183. #u146124 {
  4184. border-width:0px;
  4185. position:absolute;
  4186. left:1265px;
  4187. top:143px;
  4188. width:275px;
  4189. height:200px;
  4190. display:flex;
  4191. }
  4192. #u146124 .text {
  4193. position:absolute;
  4194. align-self:center;
  4195. padding:2px 2px 2px 2px;
  4196. box-sizing:border-box;
  4197. width:100%;
  4198. }
  4199. #u146124_text {
  4200. border-width:0px;
  4201. word-wrap:break-word;
  4202. text-transform:none;
  4203. visibility:hidden;
  4204. }
  4205. #u146125_div {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:0px;
  4209. top:0px;
  4210. width:57px;
  4211. height:40px;
  4212. background:inherit;
  4213. background-color:rgba(255, 255, 255, 0);
  4214. border:none;
  4215. border-left:0px;
  4216. border-top:0px;
  4217. border-right:0px;
  4218. border-radius:0px;
  4219. border-bottom-right-radius:0px;
  4220. border-bottom-left-radius:0px;
  4221. -moz-box-shadow:none;
  4222. -webkit-box-shadow:none;
  4223. box-shadow:none;
  4224. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4225. font-weight:500;
  4226. font-style:normal;
  4227. font-size:14px;
  4228. color:#FFFFFF;
  4229. line-height:40px;
  4230. }
  4231. #u146125 {
  4232. border-width:0px;
  4233. position:absolute;
  4234. left:1281px;
  4235. top:153px;
  4236. width:57px;
  4237. height:40px;
  4238. display:flex;
  4239. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4240. font-weight:500;
  4241. font-style:normal;
  4242. font-size:14px;
  4243. color:#FFFFFF;
  4244. line-height:40px;
  4245. }
  4246. #u146125 .text {
  4247. position:absolute;
  4248. align-self:center;
  4249. padding:0px 0px 0px 0px;
  4250. box-sizing:border-box;
  4251. width:100%;
  4252. }
  4253. #u146125_text {
  4254. border-width:0px;
  4255. white-space:nowrap;
  4256. text-transform:none;
  4257. }
  4258. #u146126_div {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:0px;
  4262. top:0px;
  4263. width:119px;
  4264. height:40px;
  4265. background:inherit;
  4266. background-color:rgba(255, 255, 255, 0);
  4267. border:none;
  4268. border-left:0px;
  4269. border-top:0px;
  4270. border-right:0px;
  4271. border-radius:0px;
  4272. border-bottom-right-radius:0px;
  4273. border-bottom-left-radius:0px;
  4274. -moz-box-shadow:none;
  4275. -webkit-box-shadow:none;
  4276. box-shadow:none;
  4277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4278. font-style:normal;
  4279. color:#FFFFFF;
  4280. line-height:40px;
  4281. }
  4282. #u146126 {
  4283. border-width:0px;
  4284. position:absolute;
  4285. left:1343px;
  4286. top:206px;
  4287. width:119px;
  4288. height:40px;
  4289. display:flex;
  4290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4291. font-style:normal;
  4292. color:#FFFFFF;
  4293. line-height:40px;
  4294. }
  4295. #u146126 .text {
  4296. position:absolute;
  4297. align-self:center;
  4298. padding:0px 0px 0px 0px;
  4299. box-sizing:border-box;
  4300. width:100%;
  4301. }
  4302. #u146126_text {
  4303. border-width:0px;
  4304. white-space:nowrap;
  4305. text-transform:none;
  4306. }
  4307. #u146127_div {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:0px;
  4311. top:0px;
  4312. width:88px;
  4313. height:40px;
  4314. background:inherit;
  4315. background-color:rgba(255, 255, 255, 0);
  4316. border:none;
  4317. border-left:0px;
  4318. border-top:0px;
  4319. border-right:0px;
  4320. border-radius:0px;
  4321. border-bottom-right-radius:0px;
  4322. border-bottom-left-radius:0px;
  4323. -moz-box-shadow:none;
  4324. -webkit-box-shadow:none;
  4325. box-shadow:none;
  4326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4327. font-weight:400;
  4328. font-style:normal;
  4329. font-size:14px;
  4330. color:#FFFFFF;
  4331. line-height:40px;
  4332. }
  4333. #u146127 {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:1297px;
  4337. top:272px;
  4338. width:88px;
  4339. height:40px;
  4340. display:flex;
  4341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4342. font-weight:400;
  4343. font-style:normal;
  4344. font-size:14px;
  4345. color:#FFFFFF;
  4346. line-height:40px;
  4347. }
  4348. #u146127 .text {
  4349. position:absolute;
  4350. align-self:center;
  4351. padding:0px 0px 0px 0px;
  4352. box-sizing:border-box;
  4353. width:100%;
  4354. }
  4355. #u146127_text {
  4356. border-width:0px;
  4357. white-space:nowrap;
  4358. text-transform:none;
  4359. }
  4360. #u146128_div {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:0px;
  4364. top:0px;
  4365. width:101px;
  4366. height:40px;
  4367. background:inherit;
  4368. background-color:rgba(255, 255, 255, 0);
  4369. border:none;
  4370. border-left:0px;
  4371. border-top:0px;
  4372. border-right:0px;
  4373. border-radius:0px;
  4374. border-bottom-right-radius:0px;
  4375. border-bottom-left-radius:0px;
  4376. -moz-box-shadow:none;
  4377. -webkit-box-shadow:none;
  4378. box-shadow:none;
  4379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4380. font-weight:400;
  4381. font-style:normal;
  4382. font-size:14px;
  4383. color:#FFFFFF;
  4384. line-height:40px;
  4385. }
  4386. #u146128 {
  4387. border-width:0px;
  4388. position:absolute;
  4389. left:1417px;
  4390. top:272px;
  4391. width:101px;
  4392. height:40px;
  4393. display:flex;
  4394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4395. font-weight:400;
  4396. font-style:normal;
  4397. font-size:14px;
  4398. color:#FFFFFF;
  4399. line-height:40px;
  4400. }
  4401. #u146128 .text {
  4402. position:absolute;
  4403. align-self:center;
  4404. padding:0px 0px 0px 0px;
  4405. box-sizing:border-box;
  4406. width:100%;
  4407. }
  4408. #u146128_text {
  4409. border-width:0px;
  4410. white-space:nowrap;
  4411. text-transform:none;
  4412. }
  4413. #u146129_div {
  4414. border-width:0px;
  4415. position:absolute;
  4416. left:0px;
  4417. top:0px;
  4418. width:197px;
  4419. height:50px;
  4420. background:inherit;
  4421. background-color:rgba(255, 255, 255, 0);
  4422. border:none;
  4423. border-left:0px;
  4424. border-top:0px;
  4425. border-right:0px;
  4426. border-radius:0px;
  4427. border-bottom-right-radius:0px;
  4428. border-bottom-left-radius:0px;
  4429. -moz-box-shadow:none;
  4430. -webkit-box-shadow:none;
  4431. box-shadow:none;
  4432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4433. font-weight:400;
  4434. font-style:normal;
  4435. font-size:28px;
  4436. color:#000000;
  4437. text-align:center;
  4438. line-height:40px;
  4439. }
  4440. #u146129 {
  4441. border-width:0px;
  4442. position:absolute;
  4443. left:800px;
  4444. top:80px;
  4445. width:197px;
  4446. height:50px;
  4447. display:flex;
  4448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4449. font-weight:400;
  4450. font-style:normal;
  4451. font-size:28px;
  4452. color:#000000;
  4453. text-align:center;
  4454. line-height:40px;
  4455. }
  4456. #u146129 .text {
  4457. position:absolute;
  4458. align-self:center;
  4459. padding:0px 0px 0px 0px;
  4460. box-sizing:border-box;
  4461. width:100%;
  4462. }
  4463. #u146129_text {
  4464. border-width:0px;
  4465. white-space:nowrap;
  4466. text-transform:none;
  4467. }
  4468. #u146130 {
  4469. border-width:0px;
  4470. position:absolute;
  4471. left:0px;
  4472. top:0px;
  4473. width:0px;
  4474. height:0px;
  4475. }
  4476. #u146131_div {
  4477. border-width:0px;
  4478. position:absolute;
  4479. left:0px;
  4480. top:0px;
  4481. width:200px;
  4482. height:1187px;
  4483. background:inherit;
  4484. background-color:rgba(255, 255, 255, 1);
  4485. border:none;
  4486. border-radius:0px;
  4487. -moz-box-shadow:none;
  4488. -webkit-box-shadow:none;
  4489. box-shadow:none;
  4490. }
  4491. #u146131 {
  4492. border-width:0px;
  4493. position:absolute;
  4494. left:120px;
  4495. top:50px;
  4496. width:200px;
  4497. height:1187px;
  4498. display:flex;
  4499. }
  4500. #u146131 .text {
  4501. position:absolute;
  4502. align-self:center;
  4503. padding:2px 2px 2px 2px;
  4504. box-sizing:border-box;
  4505. width:100%;
  4506. }
  4507. #u146131_text {
  4508. border-width:0px;
  4509. word-wrap:break-word;
  4510. text-transform:none;
  4511. visibility:hidden;
  4512. }
  4513. #u146132_div {
  4514. border-width:0px;
  4515. position:absolute;
  4516. left:0px;
  4517. top:0px;
  4518. width:200px;
  4519. height:60px;
  4520. background:inherit;
  4521. background-color:rgba(224, 231, 247, 1);
  4522. border:none;
  4523. border-radius:0px;
  4524. -moz-box-shadow:none;
  4525. -webkit-box-shadow:none;
  4526. box-shadow:none;
  4527. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4528. font-weight:500;
  4529. font-style:normal;
  4530. font-size:18px;
  4531. }
  4532. #u146132 {
  4533. border-width:0px;
  4534. position:absolute;
  4535. left:120px;
  4536. top:50px;
  4537. width:200px;
  4538. height:60px;
  4539. display:flex;
  4540. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4541. font-weight:500;
  4542. font-style:normal;
  4543. font-size:18px;
  4544. }
  4545. #u146132 .text {
  4546. position:absolute;
  4547. align-self:center;
  4548. padding:0px 0px 0px 20px;
  4549. box-sizing:border-box;
  4550. width:100%;
  4551. }
  4552. #u146132_text {
  4553. border-width:0px;
  4554. word-wrap:break-word;
  4555. text-transform:none;
  4556. }
  4557. #u146133_div {
  4558. border-width:0px;
  4559. position:absolute;
  4560. left:0px;
  4561. top:0px;
  4562. width:97px;
  4563. height:22px;
  4564. background:inherit;
  4565. background-color:rgba(255, 255, 255, 0);
  4566. border:none;
  4567. border-radius:0px;
  4568. -moz-box-shadow:none;
  4569. -webkit-box-shadow:none;
  4570. box-shadow:none;
  4571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4572. font-weight:400;
  4573. font-style:normal;
  4574. font-size:16px;
  4575. }
  4576. #u146133 {
  4577. border-width:0px;
  4578. position:absolute;
  4579. left:147px;
  4580. top:167px;
  4581. width:97px;
  4582. height:22px;
  4583. display:flex;
  4584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4585. font-weight:400;
  4586. font-style:normal;
  4587. font-size:16px;
  4588. }
  4589. #u146133 .text {
  4590. position:absolute;
  4591. align-self:flex-start;
  4592. padding:0px 0px 0px 0px;
  4593. box-sizing:border-box;
  4594. width:100%;
  4595. }
  4596. #u146133_text {
  4597. border-width:0px;
  4598. word-wrap:break-word;
  4599. text-transform:none;
  4600. }
  4601. #u146134_img {
  4602. border-width:0px;
  4603. position:absolute;
  4604. left:0px;
  4605. top:0px;
  4606. width:201px;
  4607. height:2px;
  4608. }
  4609. #u146134 {
  4610. border-width:0px;
  4611. position:absolute;
  4612. left:120px;
  4613. top:255px;
  4614. width:200px;
  4615. height:1px;
  4616. display:flex;
  4617. }
  4618. #u146134 .text {
  4619. position:absolute;
  4620. align-self:center;
  4621. padding:2px 2px 2px 2px;
  4622. box-sizing:border-box;
  4623. width:100%;
  4624. }
  4625. #u146134_text {
  4626. border-width:0px;
  4627. word-wrap:break-word;
  4628. text-transform:none;
  4629. visibility:hidden;
  4630. }
  4631. #u146135_div {
  4632. border-width:0px;
  4633. position:absolute;
  4634. left:0px;
  4635. top:0px;
  4636. width:65px;
  4637. height:22px;
  4638. background:inherit;
  4639. background-color:rgba(255, 255, 255, 0);
  4640. border:none;
  4641. border-radius:0px;
  4642. -moz-box-shadow:none;
  4643. -webkit-box-shadow:none;
  4644. box-shadow:none;
  4645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4646. font-weight:400;
  4647. font-style:normal;
  4648. font-size:16px;
  4649. }
  4650. #u146135 {
  4651. border-width:0px;
  4652. position:absolute;
  4653. left:147px;
  4654. top:208px;
  4655. width:65px;
  4656. height:22px;
  4657. display:flex;
  4658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4659. font-weight:400;
  4660. font-style:normal;
  4661. font-size:16px;
  4662. }
  4663. #u146135 .text {
  4664. position:absolute;
  4665. align-self:flex-start;
  4666. padding:0px 0px 0px 0px;
  4667. box-sizing:border-box;
  4668. width:100%;
  4669. }
  4670. #u146135_text {
  4671. border-width:0px;
  4672. white-space:nowrap;
  4673. text-transform:none;
  4674. }
  4675. #u146136_img {
  4676. border-width:0px;
  4677. position:absolute;
  4678. left:0px;
  4679. top:0px;
  4680. width:201px;
  4681. height:2px;
  4682. }
  4683. #u146136 {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:120px;
  4687. top:583px;
  4688. width:200px;
  4689. height:1px;
  4690. display:flex;
  4691. }
  4692. #u146136 .text {
  4693. position:absolute;
  4694. align-self:center;
  4695. padding:2px 2px 2px 2px;
  4696. box-sizing:border-box;
  4697. width:100%;
  4698. }
  4699. #u146136_text {
  4700. border-width:0px;
  4701. word-wrap:break-word;
  4702. text-transform:none;
  4703. visibility:hidden;
  4704. }
  4705. #u146137_div {
  4706. border-width:0px;
  4707. position:absolute;
  4708. left:0px;
  4709. top:0px;
  4710. width:65px;
  4711. height:22px;
  4712. background:inherit;
  4713. background-color:rgba(255, 255, 255, 0);
  4714. border:none;
  4715. border-radius:0px;
  4716. -moz-box-shadow:none;
  4717. -webkit-box-shadow:none;
  4718. box-shadow:none;
  4719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4720. font-weight:400;
  4721. font-style:normal;
  4722. font-size:16px;
  4723. }
  4724. #u146137 {
  4725. border-width:0px;
  4726. position:absolute;
  4727. left:147px;
  4728. top:640px;
  4729. width:65px;
  4730. height:22px;
  4731. display:flex;
  4732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4733. font-weight:400;
  4734. font-style:normal;
  4735. font-size:16px;
  4736. }
  4737. #u146137 .text {
  4738. position:absolute;
  4739. align-self:flex-start;
  4740. padding:0px 0px 0px 0px;
  4741. box-sizing:border-box;
  4742. width:100%;
  4743. }
  4744. #u146137_text {
  4745. border-width:0px;
  4746. white-space:nowrap;
  4747. text-transform:none;
  4748. }
  4749. #u146138_div {
  4750. border-width:0px;
  4751. position:absolute;
  4752. left:0px;
  4753. top:0px;
  4754. width:49px;
  4755. height:17px;
  4756. background:inherit;
  4757. background-color:rgba(255, 255, 255, 0);
  4758. border:none;
  4759. border-radius:0px;
  4760. -moz-box-shadow:none;
  4761. -webkit-box-shadow:none;
  4762. box-shadow:none;
  4763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4764. font-weight:400;
  4765. font-style:normal;
  4766. font-size:12px;
  4767. color:#AAAAAA;
  4768. }
  4769. #u146138 {
  4770. border-width:0px;
  4771. position:absolute;
  4772. left:147px;
  4773. top:603px;
  4774. width:49px;
  4775. height:17px;
  4776. display:flex;
  4777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4778. font-weight:400;
  4779. font-style:normal;
  4780. font-size:12px;
  4781. color:#AAAAAA;
  4782. }
  4783. #u146138 .text {
  4784. position:absolute;
  4785. align-self:flex-start;
  4786. padding:0px 0px 0px 0px;
  4787. box-sizing:border-box;
  4788. width:100%;
  4789. }
  4790. #u146138_text {
  4791. border-width:0px;
  4792. white-space:nowrap;
  4793. text-transform:none;
  4794. }
  4795. #u146139_div {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:0px;
  4799. top:0px;
  4800. width:65px;
  4801. height:22px;
  4802. background:inherit;
  4803. background-color:rgba(255, 255, 255, 0);
  4804. border:none;
  4805. border-radius:0px;
  4806. -moz-box-shadow:none;
  4807. -webkit-box-shadow:none;
  4808. box-shadow:none;
  4809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4810. font-weight:400;
  4811. font-style:normal;
  4812. font-size:16px;
  4813. }
  4814. #u146139 {
  4815. border-width:0px;
  4816. position:absolute;
  4817. left:147px;
  4818. top:312px;
  4819. width:65px;
  4820. height:22px;
  4821. display:flex;
  4822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4823. font-weight:400;
  4824. font-style:normal;
  4825. font-size:16px;
  4826. }
  4827. #u146139 .text {
  4828. position:absolute;
  4829. align-self:flex-start;
  4830. padding:0px 0px 0px 0px;
  4831. box-sizing:border-box;
  4832. width:100%;
  4833. }
  4834. #u146139_text {
  4835. border-width:0px;
  4836. white-space:nowrap;
  4837. text-transform:none;
  4838. }
  4839. #u146140_div {
  4840. border-width:0px;
  4841. position:absolute;
  4842. left:0px;
  4843. top:0px;
  4844. width:49px;
  4845. height:17px;
  4846. background:inherit;
  4847. background-color:rgba(255, 255, 255, 0);
  4848. border:none;
  4849. border-radius:0px;
  4850. -moz-box-shadow:none;
  4851. -webkit-box-shadow:none;
  4852. box-shadow:none;
  4853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4854. font-weight:400;
  4855. font-style:normal;
  4856. font-size:12px;
  4857. color:#AAAAAA;
  4858. }
  4859. #u146140 {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:147px;
  4863. top:275px;
  4864. width:49px;
  4865. height:17px;
  4866. display:flex;
  4867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4868. font-weight:400;
  4869. font-style:normal;
  4870. font-size:12px;
  4871. color:#AAAAAA;
  4872. }
  4873. #u146140 .text {
  4874. position:absolute;
  4875. align-self:flex-start;
  4876. padding:0px 0px 0px 0px;
  4877. box-sizing:border-box;
  4878. width:100%;
  4879. }
  4880. #u146140_text {
  4881. border-width:0px;
  4882. white-space:nowrap;
  4883. text-transform:none;
  4884. }
  4885. #u146141_div {
  4886. border-width:0px;
  4887. position:absolute;
  4888. left:0px;
  4889. top:0px;
  4890. width:65px;
  4891. height:22px;
  4892. background:inherit;
  4893. background-color:rgba(255, 255, 255, 0);
  4894. border:none;
  4895. border-radius:0px;
  4896. -moz-box-shadow:none;
  4897. -webkit-box-shadow:none;
  4898. box-shadow:none;
  4899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4900. font-weight:400;
  4901. font-style:normal;
  4902. font-size:16px;
  4903. }
  4904. #u146141 {
  4905. border-width:0px;
  4906. position:absolute;
  4907. left:147px;
  4908. top:724px;
  4909. width:65px;
  4910. height:22px;
  4911. display:flex;
  4912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4913. font-weight:400;
  4914. font-style:normal;
  4915. font-size:16px;
  4916. }
  4917. #u146141 .text {
  4918. position:absolute;
  4919. align-self:flex-start;
  4920. padding:0px 0px 0px 0px;
  4921. box-sizing:border-box;
  4922. width:100%;
  4923. }
  4924. #u146141_text {
  4925. border-width:0px;
  4926. white-space:nowrap;
  4927. text-transform:none;
  4928. }
  4929. #u146142_div {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:0px;
  4933. top:0px;
  4934. width:49px;
  4935. height:17px;
  4936. background:inherit;
  4937. background-color:rgba(255, 255, 255, 0);
  4938. border:none;
  4939. border-radius:0px;
  4940. -moz-box-shadow:none;
  4941. -webkit-box-shadow:none;
  4942. box-shadow:none;
  4943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4944. font-weight:400;
  4945. font-style:normal;
  4946. font-size:12px;
  4947. color:#AAAAAA;
  4948. }
  4949. #u146142 {
  4950. border-width:0px;
  4951. position:absolute;
  4952. left:147px;
  4953. top:130px;
  4954. width:49px;
  4955. height:17px;
  4956. display:flex;
  4957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4958. font-weight:400;
  4959. font-style:normal;
  4960. font-size:12px;
  4961. color:#AAAAAA;
  4962. }
  4963. #u146142 .text {
  4964. position:absolute;
  4965. align-self:flex-start;
  4966. padding:0px 0px 0px 0px;
  4967. box-sizing:border-box;
  4968. width:100%;
  4969. }
  4970. #u146142_text {
  4971. border-width:0px;
  4972. white-space:nowrap;
  4973. text-transform:none;
  4974. }
  4975. #u146143_img {
  4976. border-width:0px;
  4977. position:absolute;
  4978. left:0px;
  4979. top:0px;
  4980. width:201px;
  4981. height:2px;
  4982. }
  4983. #u146143 {
  4984. border-width:0px;
  4985. position:absolute;
  4986. left:120px;
  4987. top:857px;
  4988. width:200px;
  4989. height:1px;
  4990. display:flex;
  4991. }
  4992. #u146143 .text {
  4993. position:absolute;
  4994. align-self:center;
  4995. padding:2px 2px 2px 2px;
  4996. box-sizing:border-box;
  4997. width:100%;
  4998. }
  4999. #u146143_text {
  5000. border-width:0px;
  5001. word-wrap:break-word;
  5002. text-transform:none;
  5003. visibility:hidden;
  5004. }
  5005. #u146144_div {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:0px;
  5009. top:0px;
  5010. width:65px;
  5011. height:22px;
  5012. background:inherit;
  5013. background-color:rgba(255, 255, 255, 0);
  5014. border:none;
  5015. border-radius:0px;
  5016. -moz-box-shadow:none;
  5017. -webkit-box-shadow:none;
  5018. box-shadow:none;
  5019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5020. font-weight:400;
  5021. font-style:normal;
  5022. font-size:16px;
  5023. }
  5024. #u146144 {
  5025. border-width:0px;
  5026. position:absolute;
  5027. left:147px;
  5028. top:914px;
  5029. width:65px;
  5030. height:22px;
  5031. display:flex;
  5032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5033. font-weight:400;
  5034. font-style:normal;
  5035. font-size:16px;
  5036. }
  5037. #u146144 .text {
  5038. position:absolute;
  5039. align-self:flex-start;
  5040. padding:0px 0px 0px 0px;
  5041. box-sizing:border-box;
  5042. width:100%;
  5043. }
  5044. #u146144_text {
  5045. border-width:0px;
  5046. white-space:nowrap;
  5047. text-transform:none;
  5048. }
  5049. #u146145_div {
  5050. border-width:0px;
  5051. position:absolute;
  5052. left:0px;
  5053. top:0px;
  5054. width:49px;
  5055. height:17px;
  5056. background:inherit;
  5057. background-color:rgba(255, 255, 255, 0);
  5058. border:none;
  5059. border-radius:0px;
  5060. -moz-box-shadow:none;
  5061. -webkit-box-shadow:none;
  5062. box-shadow:none;
  5063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5064. font-weight:400;
  5065. font-style:normal;
  5066. font-size:12px;
  5067. color:#AAAAAA;
  5068. }
  5069. #u146145 {
  5070. border-width:0px;
  5071. position:absolute;
  5072. left:147px;
  5073. top:877px;
  5074. width:49px;
  5075. height:17px;
  5076. display:flex;
  5077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5078. font-weight:400;
  5079. font-style:normal;
  5080. font-size:12px;
  5081. color:#AAAAAA;
  5082. }
  5083. #u146145 .text {
  5084. position:absolute;
  5085. align-self:flex-start;
  5086. padding:0px 0px 0px 0px;
  5087. box-sizing:border-box;
  5088. width:100%;
  5089. }
  5090. #u146145_text {
  5091. border-width:0px;
  5092. white-space:nowrap;
  5093. text-transform:none;
  5094. }
  5095. #u146146_div {
  5096. border-width:0px;
  5097. position:absolute;
  5098. left:0px;
  5099. top:0px;
  5100. width:65px;
  5101. height:22px;
  5102. background:inherit;
  5103. background-color:rgba(255, 255, 255, 0);
  5104. border:none;
  5105. border-radius:0px;
  5106. -moz-box-shadow:none;
  5107. -webkit-box-shadow:none;
  5108. box-shadow:none;
  5109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5110. font-weight:400;
  5111. font-style:normal;
  5112. font-size:16px;
  5113. }
  5114. #u146146 {
  5115. border-width:0px;
  5116. position:absolute;
  5117. left:147px;
  5118. top:806px;
  5119. width:65px;
  5120. height:22px;
  5121. display:flex;
  5122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5123. font-weight:400;
  5124. font-style:normal;
  5125. font-size:16px;
  5126. }
  5127. #u146146 .text {
  5128. position:absolute;
  5129. align-self:flex-start;
  5130. padding:0px 0px 0px 0px;
  5131. box-sizing:border-box;
  5132. width:100%;
  5133. }
  5134. #u146146_text {
  5135. border-width:0px;
  5136. white-space:nowrap;
  5137. text-transform:none;
  5138. }
  5139. #u146147_img {
  5140. border-width:0px;
  5141. position:absolute;
  5142. left:0px;
  5143. top:0px;
  5144. width:201px;
  5145. height:2px;
  5146. }
  5147. #u146147 {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:120px;
  5151. top:435px;
  5152. width:200px;
  5153. height:1px;
  5154. display:flex;
  5155. }
  5156. #u146147 .text {
  5157. position:absolute;
  5158. align-self:center;
  5159. padding:2px 2px 2px 2px;
  5160. box-sizing:border-box;
  5161. width:100%;
  5162. }
  5163. #u146147_text {
  5164. border-width:0px;
  5165. word-wrap:break-word;
  5166. text-transform:none;
  5167. visibility:hidden;
  5168. }
  5169. #u146148_div {
  5170. border-width:0px;
  5171. position:absolute;
  5172. left:0px;
  5173. top:0px;
  5174. width:65px;
  5175. height:22px;
  5176. background:inherit;
  5177. background-color:rgba(255, 255, 255, 0);
  5178. border:none;
  5179. border-radius:0px;
  5180. -moz-box-shadow:none;
  5181. -webkit-box-shadow:none;
  5182. box-shadow:none;
  5183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5184. font-weight:400;
  5185. font-style:normal;
  5186. font-size:16px;
  5187. }
  5188. #u146148 {
  5189. border-width:0px;
  5190. position:absolute;
  5191. left:147px;
  5192. top:492px;
  5193. width:65px;
  5194. height:22px;
  5195. display:flex;
  5196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5197. font-weight:400;
  5198. font-style:normal;
  5199. font-size:16px;
  5200. }
  5201. #u146148 .text {
  5202. position:absolute;
  5203. align-self:flex-start;
  5204. padding:0px 0px 0px 0px;
  5205. box-sizing:border-box;
  5206. width:100%;
  5207. }
  5208. #u146148_text {
  5209. border-width:0px;
  5210. white-space:nowrap;
  5211. text-transform:none;
  5212. }
  5213. #u146149_div {
  5214. border-width:0px;
  5215. position:absolute;
  5216. left:0px;
  5217. top:0px;
  5218. width:49px;
  5219. height:17px;
  5220. background:inherit;
  5221. background-color:rgba(255, 255, 255, 0);
  5222. border:none;
  5223. border-radius:0px;
  5224. -moz-box-shadow:none;
  5225. -webkit-box-shadow:none;
  5226. box-shadow:none;
  5227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5228. font-weight:400;
  5229. font-style:normal;
  5230. font-size:12px;
  5231. color:#AAAAAA;
  5232. }
  5233. #u146149 {
  5234. border-width:0px;
  5235. position:absolute;
  5236. left:147px;
  5237. top:455px;
  5238. width:49px;
  5239. height:17px;
  5240. display:flex;
  5241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5242. font-weight:400;
  5243. font-style:normal;
  5244. font-size:12px;
  5245. color:#AAAAAA;
  5246. }
  5247. #u146149 .text {
  5248. position:absolute;
  5249. align-self:flex-start;
  5250. padding:0px 0px 0px 0px;
  5251. box-sizing:border-box;
  5252. width:100%;
  5253. }
  5254. #u146149_text {
  5255. border-width:0px;
  5256. white-space:nowrap;
  5257. text-transform:none;
  5258. }
  5259. #u146150_div {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:0px;
  5263. top:0px;
  5264. width:97px;
  5265. height:22px;
  5266. background:inherit;
  5267. background-color:rgba(255, 255, 255, 0);
  5268. border:none;
  5269. border-radius:0px;
  5270. -moz-box-shadow:none;
  5271. -webkit-box-shadow:none;
  5272. box-shadow:none;
  5273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5274. font-weight:400;
  5275. font-style:normal;
  5276. font-size:16px;
  5277. }
  5278. #u146150 {
  5279. border-width:0px;
  5280. position:absolute;
  5281. left:147px;
  5282. top:533px;
  5283. width:97px;
  5284. height:22px;
  5285. display:flex;
  5286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5287. font-weight:400;
  5288. font-style:normal;
  5289. font-size:16px;
  5290. }
  5291. #u146150 .text {
  5292. position:absolute;
  5293. align-self:flex-start;
  5294. padding:0px 0px 0px 0px;
  5295. box-sizing:border-box;
  5296. width:100%;
  5297. }
  5298. #u146150_text {
  5299. border-width:0px;
  5300. word-wrap:break-word;
  5301. text-transform:none;
  5302. }
  5303. #u146151_div {
  5304. border-width:0px;
  5305. position:absolute;
  5306. left:0px;
  5307. top:0px;
  5308. width:65px;
  5309. height:22px;
  5310. background:inherit;
  5311. background-color:rgba(255, 255, 255, 0);
  5312. border:none;
  5313. border-radius:0px;
  5314. -moz-box-shadow:none;
  5315. -webkit-box-shadow:none;
  5316. box-shadow:none;
  5317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5318. font-weight:400;
  5319. font-style:normal;
  5320. font-size:16px;
  5321. }
  5322. #u146151 {
  5323. border-width:0px;
  5324. position:absolute;
  5325. left:147px;
  5326. top:354px;
  5327. width:65px;
  5328. height:22px;
  5329. display:flex;
  5330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5331. font-weight:400;
  5332. font-style:normal;
  5333. font-size:16px;
  5334. }
  5335. #u146151 .text {
  5336. position:absolute;
  5337. align-self:flex-start;
  5338. padding:0px 0px 0px 0px;
  5339. box-sizing:border-box;
  5340. width:100%;
  5341. }
  5342. #u146151_text {
  5343. border-width:0px;
  5344. white-space:nowrap;
  5345. text-transform:none;
  5346. }
  5347. #u146152_div {
  5348. border-width:0px;
  5349. position:absolute;
  5350. left:0px;
  5351. top:0px;
  5352. width:65px;
  5353. height:22px;
  5354. background:inherit;
  5355. background-color:rgba(255, 255, 255, 0);
  5356. border:none;
  5357. border-radius:0px;
  5358. -moz-box-shadow:none;
  5359. -webkit-box-shadow:none;
  5360. box-shadow:none;
  5361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5362. font-weight:400;
  5363. font-style:normal;
  5364. font-size:16px;
  5365. }
  5366. #u146152 {
  5367. border-width:0px;
  5368. position:absolute;
  5369. left:147px;
  5370. top:682px;
  5371. width:65px;
  5372. height:22px;
  5373. display:flex;
  5374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5375. font-weight:400;
  5376. font-style:normal;
  5377. font-size:16px;
  5378. }
  5379. #u146152 .text {
  5380. position:absolute;
  5381. align-self:flex-start;
  5382. padding:0px 0px 0px 0px;
  5383. box-sizing:border-box;
  5384. width:100%;
  5385. }
  5386. #u146152_text {
  5387. border-width:0px;
  5388. white-space:nowrap;
  5389. text-transform:none;
  5390. }
  5391. #u146153_div {
  5392. border-width:0px;
  5393. position:absolute;
  5394. left:0px;
  5395. top:0px;
  5396. width:65px;
  5397. height:22px;
  5398. background:inherit;
  5399. background-color:rgba(255, 255, 255, 0);
  5400. border:none;
  5401. border-radius:0px;
  5402. -moz-box-shadow:none;
  5403. -webkit-box-shadow:none;
  5404. box-shadow:none;
  5405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5406. font-weight:400;
  5407. font-style:normal;
  5408. font-size:16px;
  5409. }
  5410. #u146153 {
  5411. border-width:0px;
  5412. position:absolute;
  5413. left:147px;
  5414. top:765px;
  5415. width:65px;
  5416. height:22px;
  5417. display:flex;
  5418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5419. font-weight:400;
  5420. font-style:normal;
  5421. font-size:16px;
  5422. }
  5423. #u146153 .text {
  5424. position:absolute;
  5425. align-self:flex-start;
  5426. padding:0px 0px 0px 0px;
  5427. box-sizing:border-box;
  5428. width:100%;
  5429. }
  5430. #u146153_text {
  5431. border-width:0px;
  5432. white-space:nowrap;
  5433. text-transform:none;
  5434. }
  5435. #u146154_div {
  5436. border-width:0px;
  5437. position:absolute;
  5438. left:0px;
  5439. top:0px;
  5440. width:65px;
  5441. height:22px;
  5442. background:inherit;
  5443. background-color:rgba(255, 255, 255, 0);
  5444. border:none;
  5445. border-radius:0px;
  5446. -moz-box-shadow:none;
  5447. -webkit-box-shadow:none;
  5448. box-shadow:none;
  5449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5450. font-weight:400;
  5451. font-style:normal;
  5452. font-size:16px;
  5453. }
  5454. #u146154 {
  5455. border-width:0px;
  5456. position:absolute;
  5457. left:147px;
  5458. top:396px;
  5459. width:65px;
  5460. height:22px;
  5461. display:flex;
  5462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5463. font-weight:400;
  5464. font-style:normal;
  5465. font-size:16px;
  5466. }
  5467. #u146154 .text {
  5468. position:absolute;
  5469. align-self:flex-start;
  5470. padding:0px 0px 0px 0px;
  5471. box-sizing:border-box;
  5472. width:100%;
  5473. }
  5474. #u146154_text {
  5475. border-width:0px;
  5476. white-space:nowrap;
  5477. text-transform:none;
  5478. }