styles.css 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:433px;
  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. #u207149_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u207149 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u207149 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u207149_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u207150_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. box-sizing:border-box;
  59. border-width:1px;
  60. border-style:solid;
  61. border-color:rgba(215, 215, 215, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. }
  72. #u207150 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u207150 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u207150_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u207151 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u207152_div {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:88px;
  108. height:32px;
  109. background:inherit;
  110. background-color:rgba(255, 255, 255, 1);
  111. box-sizing:border-box;
  112. border-width:1px;
  113. border-style:solid;
  114. border-color:rgba(242, 242, 242, 1);
  115. border-radius:33px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. }
  120. #u207152 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u207152 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u207152_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u207153 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u207154_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u207154 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u207154 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u207154_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u207155_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u207155 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u207155 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u207155_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u207156 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u207157_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u207157 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u207157 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u207157_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u207158_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u207158 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u207158 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u207158_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u207159_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u207159 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u207159 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u207159_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u207160_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u207160 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u207160 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u207160_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u207161_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u207161 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u207161 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u207161_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u207162_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:50px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 1);
  381. box-sizing:border-box;
  382. border-width:1px;
  383. border-style:solid;
  384. border-color:rgba(242, 242, 242, 1);
  385. border-radius:26px;
  386. border-top-left-radius:0px;
  387. border-top-right-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. }
  392. #u207162 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u207162 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u207162_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u207163 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u207164_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u207164 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u207164 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u207164_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u207165_div {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:25px;
  458. height:17px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:12px;
  470. }
  471. #u207165 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u207165 .text {
  485. position:absolute;
  486. align-self:flex-start;
  487. padding:0px 0px 0px 0px;
  488. box-sizing:border-box;
  489. width:100%;
  490. }
  491. #u207165_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u207166 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u207167_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u207167 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u207167 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u207167_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u207168_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:25px;
  540. height:17px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:12px;
  552. }
  553. #u207168 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u207168 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 0px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u207168_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u207169_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:375px;
  584. height:681px;
  585. background:inherit;
  586. background-color:rgba(242, 242, 242, 0.462745098039216);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u207169 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u207169 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u207169_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u207170 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u207171_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u207171 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u207171 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u207171_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u207172_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:37px;
  659. height:17px;
  660. background:inherit;
  661. background-color:rgba(255, 255, 255, 0);
  662. border:none;
  663. border-radius:0px;
  664. -moz-box-shadow:none;
  665. -webkit-box-shadow:none;
  666. box-shadow:none;
  667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:12px;
  671. }
  672. #u207172 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u207172 .text {
  686. position:absolute;
  687. align-self:flex-start;
  688. padding:0px 0px 0px 0px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u207172_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u207173 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u207174_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u207174 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u207174 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u207174_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u207175_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:37px;
  741. height:17px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. }
  754. #u207175 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u207175 .text {
  768. position:absolute;
  769. align-self:flex-start;
  770. padding:0px 0px 0px 0px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u207175_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u207176_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:772px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. box-sizing:border-box;
  789. border-width:1px;
  790. border-style:solid;
  791. border-color:rgba(242, 242, 242, 1);
  792. border-radius:26px;
  793. border-top-left-radius:0px;
  794. border-top-right-radius:0px;
  795. -moz-box-shadow:none;
  796. -webkit-box-shadow:none;
  797. box-shadow:none;
  798. }
  799. #u207176 {
  800. border-width:0px;
  801. position:absolute;
  802. left:29px;
  803. top:105px;
  804. width:375px;
  805. height:772px;
  806. display:flex;
  807. }
  808. #u207176 .text {
  809. position:absolute;
  810. align-self:center;
  811. padding:2px 2px 2px 2px;
  812. box-sizing:border-box;
  813. width:100%;
  814. }
  815. #u207176_text {
  816. border-width:0px;
  817. word-wrap:break-word;
  818. text-transform:none;
  819. visibility:hidden;
  820. }
  821. #u207177_div {
  822. border-width:0px;
  823. position:absolute;
  824. left:0px;
  825. top:0px;
  826. width:375px;
  827. height:140px;
  828. background:inherit;
  829. background-color:rgba(242, 242, 242, 1);
  830. border:none;
  831. border-left:0px;
  832. border-top:0px;
  833. border-right:0px;
  834. border-radius:0px;
  835. border-bottom-right-radius:0px;
  836. border-bottom-left-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. }
  841. #u207177 {
  842. border-width:0px;
  843. position:absolute;
  844. left:29px;
  845. top:66px;
  846. width:375px;
  847. height:140px;
  848. display:flex;
  849. }
  850. #u207177 .text {
  851. position:absolute;
  852. align-self:center;
  853. padding:2px 2px 2px 2px;
  854. box-sizing:border-box;
  855. width:100%;
  856. }
  857. #u207177_text {
  858. border-width:0px;
  859. word-wrap:break-word;
  860. text-transform:none;
  861. visibility:hidden;
  862. }
  863. #u207178_img {
  864. border-width:0px;
  865. position:absolute;
  866. left:0px;
  867. top:0px;
  868. width:65px;
  869. height:65px;
  870. }
  871. #u207178 {
  872. border-width:0px;
  873. position:absolute;
  874. left:54px;
  875. top:113px;
  876. width:65px;
  877. height:65px;
  878. display:flex;
  879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  880. font-weight:400;
  881. font-style:normal;
  882. color:#FFFFFF;
  883. }
  884. #u207178 .text {
  885. position:absolute;
  886. align-self:center;
  887. padding:2px 2px 2px 2px;
  888. box-sizing:border-box;
  889. width:100%;
  890. }
  891. #u207178_text {
  892. border-width:0px;
  893. word-wrap:break-word;
  894. text-transform:none;
  895. }
  896. #u207179_div {
  897. border-width:0px;
  898. position:absolute;
  899. left:0px;
  900. top:0px;
  901. width:37px;
  902. height:25px;
  903. background:inherit;
  904. background-color:rgba(127, 127, 127, 0);
  905. border:none;
  906. border-radius:3px;
  907. -moz-box-shadow:none;
  908. -webkit-box-shadow:none;
  909. box-shadow:none;
  910. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  911. font-weight:650;
  912. font-style:normal;
  913. font-size:18px;
  914. color:#555555;
  915. }
  916. #u207179 {
  917. border-width:0px;
  918. position:absolute;
  919. left:136px;
  920. top:121px;
  921. width:37px;
  922. height:25px;
  923. display:flex;
  924. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  925. font-weight:650;
  926. font-style:normal;
  927. font-size:18px;
  928. color:#555555;
  929. }
  930. #u207179 .text {
  931. position:absolute;
  932. align-self:center;
  933. padding:0px 0px 0px 0px;
  934. box-sizing:border-box;
  935. width:100%;
  936. }
  937. #u207179_text {
  938. border-width:0px;
  939. white-space:nowrap;
  940. text-transform:none;
  941. }
  942. #u207180 {
  943. border-width:0px;
  944. position:absolute;
  945. left:0px;
  946. top:0px;
  947. width:0px;
  948. height:0px;
  949. }
  950. #u207181_div {
  951. border-width:0px;
  952. position:absolute;
  953. left:0px;
  954. top:0px;
  955. width:60px;
  956. height:20px;
  957. background:inherit;
  958. background-color:rgba(255, 255, 255, 1);
  959. box-sizing:border-box;
  960. border-width:1px;
  961. border-style:solid;
  962. border-color:rgba(215, 215, 215, 1);
  963. border-radius:2px;
  964. -moz-box-shadow:none;
  965. -webkit-box-shadow:none;
  966. box-shadow:none;
  967. }
  968. #u207181 {
  969. border-width:0px;
  970. position:absolute;
  971. left:193px;
  972. top:121px;
  973. width:60px;
  974. height:20px;
  975. display:flex;
  976. }
  977. #u207181 .text {
  978. position:absolute;
  979. align-self:center;
  980. padding:2px 2px 2px 2px;
  981. box-sizing:border-box;
  982. width:100%;
  983. }
  984. #u207181_text {
  985. border-width:0px;
  986. word-wrap:break-word;
  987. text-transform:none;
  988. visibility:hidden;
  989. }
  990. #u207182 {
  991. border-width:0px;
  992. position:absolute;
  993. left:0px;
  994. top:0px;
  995. width:0px;
  996. height:0px;
  997. }
  998. #u207183_div {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:0px;
  1002. top:0px;
  1003. width:37px;
  1004. height:17px;
  1005. background:inherit;
  1006. background-color:rgba(255, 255, 255, 0);
  1007. border:none;
  1008. border-left:0px;
  1009. border-top:0px;
  1010. border-right:0px;
  1011. border-radius:0px;
  1012. border-bottom-right-radius:0px;
  1013. border-bottom-left-radius:0px;
  1014. -moz-box-shadow:none;
  1015. -webkit-box-shadow:none;
  1016. box-shadow:none;
  1017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1018. font-weight:400;
  1019. font-style:normal;
  1020. font-size:12px;
  1021. color:#7F7F7F;
  1022. }
  1023. #u207183 {
  1024. border-width:0px;
  1025. position:absolute;
  1026. left:212px;
  1027. top:123px;
  1028. width:37px;
  1029. height:17px;
  1030. display:flex;
  1031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1032. font-weight:400;
  1033. font-style:normal;
  1034. font-size:12px;
  1035. color:#7F7F7F;
  1036. }
  1037. #u207183 .text {
  1038. position:absolute;
  1039. align-self:flex-start;
  1040. padding:0px 0px 0px 0px;
  1041. box-sizing:border-box;
  1042. width:100%;
  1043. }
  1044. #u207183_text {
  1045. border-width:0px;
  1046. white-space:nowrap;
  1047. text-transform:none;
  1048. }
  1049. #u207184 {
  1050. border-width:0px;
  1051. position:absolute;
  1052. left:0px;
  1053. top:0px;
  1054. width:0px;
  1055. height:0px;
  1056. }
  1057. #u207185_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:12px;
  1063. height:12px;
  1064. }
  1065. #u207185 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:197px;
  1069. top:125px;
  1070. width:12px;
  1071. height:12px;
  1072. display:flex;
  1073. }
  1074. #u207185 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u207185_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u207186_img {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:4px;
  1093. height:5px;
  1094. }
  1095. #u207186 {
  1096. border-width:0px;
  1097. position:absolute;
  1098. left:201px;
  1099. top:129px;
  1100. width:4px;
  1101. height:5px;
  1102. display:flex;
  1103. }
  1104. #u207186 .text {
  1105. position:absolute;
  1106. align-self:center;
  1107. padding:2px 2px 2px 2px;
  1108. box-sizing:border-box;
  1109. width:100%;
  1110. }
  1111. #u207186_text {
  1112. border-width:0px;
  1113. word-wrap:break-word;
  1114. text-transform:none;
  1115. visibility:hidden;
  1116. }
  1117. #u207187_img {
  1118. border-width:0px;
  1119. position:absolute;
  1120. left:0px;
  1121. top:0px;
  1122. width:20px;
  1123. height:20px;
  1124. }
  1125. #u207187 {
  1126. border-width:0px;
  1127. position:absolute;
  1128. left:44px;
  1129. top:76px;
  1130. width:20px;
  1131. height:20px;
  1132. display:flex;
  1133. }
  1134. #u207187 .text {
  1135. position:absolute;
  1136. align-self:center;
  1137. padding:2px 2px 2px 2px;
  1138. box-sizing:border-box;
  1139. width:100%;
  1140. }
  1141. #u207187_text {
  1142. border-width:0px;
  1143. word-wrap:break-word;
  1144. text-transform:none;
  1145. visibility:hidden;
  1146. }
  1147. #u207188 {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:0px;
  1153. height:0px;
  1154. }
  1155. #u207189_img {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:0px;
  1159. top:0px;
  1160. width:18px;
  1161. height:20px;
  1162. }
  1163. #u207189 {
  1164. border-width:0px;
  1165. position:absolute;
  1166. left:88px;
  1167. top:76px;
  1168. width:18px;
  1169. height:20px;
  1170. display:flex;
  1171. }
  1172. #u207189 .text {
  1173. position:absolute;
  1174. align-self:center;
  1175. padding:2px 2px 2px 2px;
  1176. box-sizing:border-box;
  1177. width:100%;
  1178. }
  1179. #u207189_text {
  1180. border-width:0px;
  1181. word-wrap:break-word;
  1182. text-transform:none;
  1183. visibility:hidden;
  1184. }
  1185. #u207190_div {
  1186. border-width:0px;
  1187. position:absolute;
  1188. left:0px;
  1189. top:0px;
  1190. width:8px;
  1191. height:11px;
  1192. background:inherit;
  1193. background-color:rgba(217, 0, 27, 1);
  1194. border:none;
  1195. border-radius:4px;
  1196. -moz-box-shadow:none;
  1197. -webkit-box-shadow:none;
  1198. box-shadow:none;
  1199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1200. font-weight:400;
  1201. font-style:normal;
  1202. font-size:8px;
  1203. color:#FFFFFF;
  1204. text-align:center;
  1205. }
  1206. #u207190 {
  1207. border-width:0px;
  1208. position:absolute;
  1209. left:100px;
  1210. top:73px;
  1211. width:8px;
  1212. height:11px;
  1213. display:flex;
  1214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1215. font-weight:400;
  1216. font-style:normal;
  1217. font-size:8px;
  1218. color:#FFFFFF;
  1219. text-align:center;
  1220. }
  1221. #u207190 .text {
  1222. position:absolute;
  1223. align-self:flex-start;
  1224. padding:0px 0px 0px 0px;
  1225. box-sizing:border-box;
  1226. width:100%;
  1227. }
  1228. #u207190_text {
  1229. border-width:0px;
  1230. word-wrap:break-word;
  1231. text-transform:none;
  1232. }
  1233. #u207191 {
  1234. border-width:0px;
  1235. position:absolute;
  1236. left:0px;
  1237. top:0px;
  1238. width:0px;
  1239. height:0px;
  1240. }
  1241. #u207192_div {
  1242. border-width:0px;
  1243. position:absolute;
  1244. left:0px;
  1245. top:0px;
  1246. width:88px;
  1247. height:32px;
  1248. background:inherit;
  1249. background-color:rgba(255, 255, 255, 1);
  1250. box-sizing:border-box;
  1251. border-width:1px;
  1252. border-style:solid;
  1253. border-color:rgba(242, 242, 242, 1);
  1254. border-radius:33px;
  1255. -moz-box-shadow:none;
  1256. -webkit-box-shadow:none;
  1257. box-shadow:none;
  1258. }
  1259. #u207192 {
  1260. border-width:0px;
  1261. position:absolute;
  1262. left:306px;
  1263. top:72px;
  1264. width:88px;
  1265. height:32px;
  1266. display:flex;
  1267. }
  1268. #u207192 .text {
  1269. position:absolute;
  1270. align-self:center;
  1271. padding:2px 2px 2px 2px;
  1272. box-sizing:border-box;
  1273. width:100%;
  1274. }
  1275. #u207192_text {
  1276. border-width:0px;
  1277. word-wrap:break-word;
  1278. text-transform:none;
  1279. visibility:hidden;
  1280. }
  1281. #u207193 {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:0px;
  1285. top:0px;
  1286. width:0px;
  1287. height:0px;
  1288. }
  1289. #u207194_img {
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:0px;
  1293. top:0px;
  1294. width:18px;
  1295. height:18px;
  1296. }
  1297. #u207194 {
  1298. border-width:0px;
  1299. position:absolute;
  1300. left:369px;
  1301. top:79px;
  1302. width:18px;
  1303. height:18px;
  1304. display:flex;
  1305. }
  1306. #u207194 .text {
  1307. position:absolute;
  1308. align-self:center;
  1309. padding:2px 2px 2px 2px;
  1310. box-sizing:border-box;
  1311. width:100%;
  1312. }
  1313. #u207194_text {
  1314. border-width:0px;
  1315. word-wrap:break-word;
  1316. text-transform:none;
  1317. visibility:hidden;
  1318. }
  1319. #u207195_img {
  1320. border-width:0px;
  1321. position:absolute;
  1322. left:0px;
  1323. top:0px;
  1324. width:6px;
  1325. height:6px;
  1326. }
  1327. #u207195 {
  1328. border-width:0px;
  1329. position:absolute;
  1330. left:375px;
  1331. top:85px;
  1332. width:6px;
  1333. height:6px;
  1334. display:flex;
  1335. }
  1336. #u207195 .text {
  1337. position:absolute;
  1338. align-self:center;
  1339. padding:2px 2px 2px 2px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u207195_text {
  1344. border-width:0px;
  1345. word-wrap:break-word;
  1346. text-transform:none;
  1347. visibility:hidden;
  1348. }
  1349. #u207196 {
  1350. border-width:0px;
  1351. position:absolute;
  1352. left:0px;
  1353. top:0px;
  1354. width:0px;
  1355. height:0px;
  1356. }
  1357. #u207197_img {
  1358. border-width:0px;
  1359. position:absolute;
  1360. left:0px;
  1361. top:0px;
  1362. width:5px;
  1363. height:5px;
  1364. }
  1365. #u207197 {
  1366. border-width:0px;
  1367. position:absolute;
  1368. left:320px;
  1369. top:86px;
  1370. width:5px;
  1371. height:5px;
  1372. display:flex;
  1373. }
  1374. #u207197 .text {
  1375. position:absolute;
  1376. align-self:center;
  1377. padding:2px 2px 2px 2px;
  1378. box-sizing:border-box;
  1379. width:100%;
  1380. }
  1381. #u207197_text {
  1382. border-width:0px;
  1383. word-wrap:break-word;
  1384. text-transform:none;
  1385. visibility:hidden;
  1386. }
  1387. #u207198_img {
  1388. border-width:0px;
  1389. position:absolute;
  1390. left:0px;
  1391. top:0px;
  1392. width:5px;
  1393. height:5px;
  1394. }
  1395. #u207198 {
  1396. border-width:0px;
  1397. position:absolute;
  1398. left:336px;
  1399. top:86px;
  1400. width:5px;
  1401. height:5px;
  1402. display:flex;
  1403. }
  1404. #u207198 .text {
  1405. position:absolute;
  1406. align-self:center;
  1407. padding:2px 2px 2px 2px;
  1408. box-sizing:border-box;
  1409. width:100%;
  1410. }
  1411. #u207198_text {
  1412. border-width:0px;
  1413. word-wrap:break-word;
  1414. text-transform:none;
  1415. visibility:hidden;
  1416. }
  1417. #u207199_img {
  1418. border-width:0px;
  1419. position:absolute;
  1420. left:0px;
  1421. top:0px;
  1422. width:7px;
  1423. height:7px;
  1424. }
  1425. #u207199 {
  1426. border-width:0px;
  1427. position:absolute;
  1428. left:327px;
  1429. top:85px;
  1430. width:7px;
  1431. height:7px;
  1432. display:flex;
  1433. }
  1434. #u207199 .text {
  1435. position:absolute;
  1436. align-self:center;
  1437. padding:2px 2px 2px 2px;
  1438. box-sizing:border-box;
  1439. width:100%;
  1440. }
  1441. #u207199_text {
  1442. border-width:0px;
  1443. word-wrap:break-word;
  1444. text-transform:none;
  1445. visibility:hidden;
  1446. }
  1447. #u207200_img {
  1448. border-width:0px;
  1449. position:absolute;
  1450. left:0px;
  1451. top:0px;
  1452. width:19px;
  1453. height:2px;
  1454. }
  1455. #u207200 {
  1456. border-width:0px;
  1457. position:absolute;
  1458. left:344px;
  1459. top:88px;
  1460. width:18px;
  1461. height:1px;
  1462. display:flex;
  1463. -webkit-transform:rotate(90deg);
  1464. -moz-transform:rotate(90deg);
  1465. -ms-transform:rotate(90deg);
  1466. transform:rotate(90deg);
  1467. }
  1468. #u207200 .text {
  1469. position:absolute;
  1470. align-self:center;
  1471. padding:2px 2px 2px 2px;
  1472. box-sizing:border-box;
  1473. width:100%;
  1474. }
  1475. #u207200_text {
  1476. border-width:0px;
  1477. word-wrap:break-word;
  1478. text-transform:none;
  1479. visibility:hidden;
  1480. }
  1481. #u207201_div {
  1482. border-width:0px;
  1483. position:absolute;
  1484. left:0px;
  1485. top:0px;
  1486. width:84px;
  1487. height:20px;
  1488. background:inherit;
  1489. background-color:rgba(127, 127, 127, 0);
  1490. border:none;
  1491. border-radius:3px;
  1492. -moz-box-shadow:none;
  1493. -webkit-box-shadow:none;
  1494. box-shadow:none;
  1495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1496. font-weight:400;
  1497. font-style:normal;
  1498. font-size:14px;
  1499. color:#AAAAAA;
  1500. }
  1501. #u207201 {
  1502. border-width:0px;
  1503. position:absolute;
  1504. left:136px;
  1505. top:148px;
  1506. width:84px;
  1507. height:20px;
  1508. display:flex;
  1509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1510. font-weight:400;
  1511. font-style:normal;
  1512. font-size:14px;
  1513. color:#AAAAAA;
  1514. }
  1515. #u207201 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:0px 0px 0px 0px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u207201_text {
  1523. border-width:0px;
  1524. white-space:nowrap;
  1525. text-transform:none;
  1526. }
  1527. #u207202 {
  1528. border-width:0px;
  1529. position:absolute;
  1530. left:0px;
  1531. top:0px;
  1532. width:0px;
  1533. height:0px;
  1534. }
  1535. #u207203_div {
  1536. border-width:0px;
  1537. position:absolute;
  1538. left:0px;
  1539. top:0px;
  1540. width:355px;
  1541. height:130px;
  1542. background:inherit;
  1543. background-color:rgba(255, 255, 255, 1);
  1544. border:none;
  1545. border-radius:4px;
  1546. -moz-box-shadow:none;
  1547. -webkit-box-shadow:none;
  1548. box-shadow:none;
  1549. }
  1550. #u207203 {
  1551. border-width:0px;
  1552. position:absolute;
  1553. left:39px;
  1554. top:206px;
  1555. width:355px;
  1556. height:130px;
  1557. display:flex;
  1558. }
  1559. #u207203 .text {
  1560. position:absolute;
  1561. align-self:center;
  1562. padding:2px 2px 2px 2px;
  1563. box-sizing:border-box;
  1564. width:100%;
  1565. }
  1566. #u207203_text {
  1567. border-width:0px;
  1568. word-wrap:break-word;
  1569. text-transform:none;
  1570. visibility:hidden;
  1571. }
  1572. #u207204_div {
  1573. border-width:0px;
  1574. position:absolute;
  1575. left:0px;
  1576. top:0px;
  1577. width:57px;
  1578. height:20px;
  1579. background:inherit;
  1580. background-color:rgba(255, 255, 255, 0);
  1581. border:none;
  1582. border-left:0px;
  1583. border-top:0px;
  1584. border-right:0px;
  1585. border-radius:0px;
  1586. border-bottom-right-radius:0px;
  1587. border-bottom-left-radius:0px;
  1588. -moz-box-shadow:none;
  1589. -webkit-box-shadow:none;
  1590. box-shadow:none;
  1591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1592. font-weight:400;
  1593. font-style:normal;
  1594. font-size:14px;
  1595. }
  1596. #u207204 {
  1597. border-width:0px;
  1598. position:absolute;
  1599. left:51px;
  1600. top:213px;
  1601. width:57px;
  1602. height:20px;
  1603. display:flex;
  1604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1605. font-weight:400;
  1606. font-style:normal;
  1607. font-size:14px;
  1608. }
  1609. #u207204 .text {
  1610. position:absolute;
  1611. align-self:flex-start;
  1612. padding:0px 0px 0px 0px;
  1613. box-sizing:border-box;
  1614. width:100%;
  1615. }
  1616. #u207204_text {
  1617. border-width:0px;
  1618. white-space:nowrap;
  1619. text-transform:none;
  1620. }
  1621. #u207205 {
  1622. border-width:0px;
  1623. position:absolute;
  1624. left:0px;
  1625. top:0px;
  1626. width:0px;
  1627. height:0px;
  1628. }
  1629. #u207206_div {
  1630. border-width:0px;
  1631. position:absolute;
  1632. left:0px;
  1633. top:0px;
  1634. width:9px;
  1635. height:9px;
  1636. background:inherit;
  1637. background-color:rgba(255, 255, 255, 0);
  1638. box-sizing:border-box;
  1639. border-width:1px;
  1640. border-style:solid;
  1641. border-color:rgba(170, 170, 170, 1);
  1642. border-right:0px;
  1643. border-bottom:0px;
  1644. border-radius:0px;
  1645. border-top-right-radius:0px;
  1646. border-bottom-left-radius:0px;
  1647. -moz-box-shadow:none;
  1648. -webkit-box-shadow:none;
  1649. box-shadow:none;
  1650. }
  1651. #u207206 {
  1652. border-width:0px;
  1653. position:absolute;
  1654. left:373px;
  1655. top:220px;
  1656. width:9px;
  1657. height:9px;
  1658. display:flex;
  1659. -webkit-transform:rotate(135deg);
  1660. -moz-transform:rotate(135deg);
  1661. -ms-transform:rotate(135deg);
  1662. transform:rotate(135deg);
  1663. }
  1664. #u207206 .text {
  1665. position:absolute;
  1666. align-self:center;
  1667. padding:2px 2px 2px 2px;
  1668. box-sizing:border-box;
  1669. width:100%;
  1670. }
  1671. #u207206_text {
  1672. border-width:0px;
  1673. word-wrap:break-word;
  1674. text-transform:none;
  1675. visibility:hidden;
  1676. }
  1677. #u207207_div {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:0px;
  1681. top:0px;
  1682. width:49px;
  1683. height:17px;
  1684. background:inherit;
  1685. background-color:rgba(255, 255, 255, 0);
  1686. border:none;
  1687. border-left:0px;
  1688. border-top:0px;
  1689. border-right:0px;
  1690. border-radius:0px;
  1691. border-bottom-right-radius:0px;
  1692. border-bottom-left-radius:0px;
  1693. -moz-box-shadow:none;
  1694. -webkit-box-shadow:none;
  1695. box-shadow:none;
  1696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1697. font-weight:400;
  1698. font-style:normal;
  1699. font-size:12px;
  1700. color:#AAAAAA;
  1701. }
  1702. #u207207 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:317px;
  1706. top:216px;
  1707. width:49px;
  1708. height:17px;
  1709. display:flex;
  1710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1711. font-weight:400;
  1712. font-style:normal;
  1713. font-size:12px;
  1714. color:#AAAAAA;
  1715. }
  1716. #u207207 .text {
  1717. position:absolute;
  1718. align-self:flex-start;
  1719. padding:0px 0px 0px 0px;
  1720. box-sizing:border-box;
  1721. width:100%;
  1722. }
  1723. #u207207_text {
  1724. border-width:0px;
  1725. white-space:nowrap;
  1726. text-transform:none;
  1727. }
  1728. #u207208_img {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:0px;
  1732. top:0px;
  1733. width:71px;
  1734. height:55px;
  1735. }
  1736. #u207208 {
  1737. border-width:0px;
  1738. position:absolute;
  1739. left:61px;
  1740. top:244px;
  1741. width:71px;
  1742. height:55px;
  1743. display:flex;
  1744. }
  1745. #u207208 .text {
  1746. position:absolute;
  1747. align-self:center;
  1748. padding:2px 2px 2px 2px;
  1749. box-sizing:border-box;
  1750. width:100%;
  1751. }
  1752. #u207208_text {
  1753. border-width:0px;
  1754. word-wrap:break-word;
  1755. text-transform:none;
  1756. visibility:hidden;
  1757. }
  1758. #u207209_div {
  1759. border-width:0px;
  1760. position:absolute;
  1761. left:0px;
  1762. top:0px;
  1763. width:79px;
  1764. height:20px;
  1765. background:inherit;
  1766. background-color:rgba(255, 255, 255, 0);
  1767. border:none;
  1768. border-left:0px;
  1769. border-top:0px;
  1770. border-right:0px;
  1771. border-radius:0px;
  1772. border-bottom-right-radius:0px;
  1773. border-bottom-left-radius:0px;
  1774. -moz-box-shadow:none;
  1775. -webkit-box-shadow:none;
  1776. box-shadow:none;
  1777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1778. font-weight:400;
  1779. font-style:normal;
  1780. font-size:14px;
  1781. }
  1782. #u207209 {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:148px;
  1786. top:248px;
  1787. width:79px;
  1788. height:20px;
  1789. display:flex;
  1790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1791. font-weight:400;
  1792. font-style:normal;
  1793. font-size:14px;
  1794. }
  1795. #u207209 .text {
  1796. position:absolute;
  1797. align-self:flex-start;
  1798. padding:0px 0px 0px 0px;
  1799. box-sizing:border-box;
  1800. width:100%;
  1801. }
  1802. #u207209_text {
  1803. border-width:0px;
  1804. white-space:nowrap;
  1805. text-transform:none;
  1806. }
  1807. #u207210_div {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:0px;
  1811. top:0px;
  1812. width:141px;
  1813. height:17px;
  1814. background:inherit;
  1815. background-color:rgba(255, 255, 255, 0);
  1816. border:none;
  1817. border-left:0px;
  1818. border-top:0px;
  1819. border-right:0px;
  1820. border-radius:0px;
  1821. border-bottom-right-radius:0px;
  1822. border-bottom-left-radius:0px;
  1823. -moz-box-shadow:none;
  1824. -webkit-box-shadow:none;
  1825. box-shadow:none;
  1826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1827. font-weight:400;
  1828. font-style:normal;
  1829. font-size:12px;
  1830. color:#AAAAAA;
  1831. }
  1832. #u207210 {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:148px;
  1836. top:278px;
  1837. width:141px;
  1838. height:17px;
  1839. display:flex;
  1840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1841. font-weight:400;
  1842. font-style:normal;
  1843. font-size:12px;
  1844. color:#AAAAAA;
  1845. }
  1846. #u207210 .text {
  1847. position:absolute;
  1848. align-self:flex-start;
  1849. padding:0px 0px 0px 0px;
  1850. box-sizing:border-box;
  1851. width:100%;
  1852. }
  1853. #u207210_text {
  1854. border-width:0px;
  1855. white-space:nowrap;
  1856. text-transform:none;
  1857. }
  1858. #u207211_div {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:0px;
  1862. top:0px;
  1863. width:321px;
  1864. height:17px;
  1865. background:inherit;
  1866. background-color:rgba(255, 255, 255, 0);
  1867. border:none;
  1868. border-left:0px;
  1869. border-top:0px;
  1870. border-right:0px;
  1871. border-radius:0px;
  1872. border-bottom-right-radius:0px;
  1873. border-bottom-left-radius:0px;
  1874. -moz-box-shadow:none;
  1875. -webkit-box-shadow:none;
  1876. box-shadow:none;
  1877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1878. font-weight:400;
  1879. font-style:normal;
  1880. font-size:12px;
  1881. color:#AAAAAA;
  1882. }
  1883. #u207211 {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:61px;
  1887. top:309px;
  1888. width:321px;
  1889. height:17px;
  1890. display:flex;
  1891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1892. font-weight:400;
  1893. font-style:normal;
  1894. font-size:12px;
  1895. color:#AAAAAA;
  1896. }
  1897. #u207211 .text {
  1898. position:absolute;
  1899. align-self:flex-start;
  1900. padding:0px 0px 0px 0px;
  1901. box-sizing:border-box;
  1902. width:100%;
  1903. }
  1904. #u207211_text {
  1905. border-width:0px;
  1906. white-space:nowrap;
  1907. text-transform:none;
  1908. }
  1909. #u207212 {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:0px;
  1915. height:0px;
  1916. }
  1917. #u207213_div {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:0px;
  1921. top:0px;
  1922. width:375px;
  1923. height:190px;
  1924. background:inherit;
  1925. background-color:rgba(255, 255, 255, 1);
  1926. box-sizing:border-box;
  1927. border-width:1px;
  1928. border-style:solid;
  1929. border-color:rgba(242, 242, 242, 1);
  1930. border-left:0px;
  1931. border-top:0px;
  1932. border-right:0px;
  1933. border-radius:0px;
  1934. border-bottom-right-radius:0px;
  1935. border-bottom-left-radius:0px;
  1936. -moz-box-shadow:none;
  1937. -webkit-box-shadow:none;
  1938. box-shadow:none;
  1939. }
  1940. #u207213 {
  1941. border-width:0px;
  1942. position:absolute;
  1943. left:29px;
  1944. top:436px;
  1945. width:375px;
  1946. height:190px;
  1947. display:flex;
  1948. }
  1949. #u207213 .text {
  1950. position:absolute;
  1951. align-self:center;
  1952. padding:2px 2px 2px 2px;
  1953. box-sizing:border-box;
  1954. width:100%;
  1955. }
  1956. #u207213_text {
  1957. border-width:0px;
  1958. word-wrap:break-word;
  1959. text-transform:none;
  1960. visibility:hidden;
  1961. }
  1962. #u207214 {
  1963. border-width:0px;
  1964. position:absolute;
  1965. left:0px;
  1966. top:0px;
  1967. width:0px;
  1968. height:0px;
  1969. }
  1970. #u207215_div {
  1971. border-width:0px;
  1972. position:absolute;
  1973. left:0px;
  1974. top:0px;
  1975. width:30px;
  1976. height:30px;
  1977. background:inherit;
  1978. background-color:rgba(255, 255, 255, 1);
  1979. box-sizing:border-box;
  1980. border-width:1px;
  1981. border-style:solid;
  1982. border-color:rgba(121, 121, 121, 1);
  1983. border-radius:4px;
  1984. -moz-box-shadow:none;
  1985. -webkit-box-shadow:none;
  1986. box-shadow:none;
  1987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1988. font-weight:400;
  1989. font-style:normal;
  1990. font-size:8px;
  1991. }
  1992. #u207215 {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:66px;
  1996. top:482px;
  1997. width:30px;
  1998. height:30px;
  1999. display:flex;
  2000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2001. font-weight:400;
  2002. font-style:normal;
  2003. font-size:8px;
  2004. }
  2005. #u207215 .text {
  2006. position:absolute;
  2007. align-self:center;
  2008. padding:2px 2px 2px 2px;
  2009. box-sizing:border-box;
  2010. width:100%;
  2011. }
  2012. #u207215_text {
  2013. border-width:0px;
  2014. word-wrap:break-word;
  2015. text-transform:none;
  2016. }
  2017. #u207216_div {
  2018. border-width:0px;
  2019. position:absolute;
  2020. left:0px;
  2021. top:0px;
  2022. width:49px;
  2023. height:17px;
  2024. background:inherit;
  2025. background-color:rgba(255, 255, 255, 0);
  2026. border:none;
  2027. border-radius:0px;
  2028. -moz-box-shadow:none;
  2029. -webkit-box-shadow:none;
  2030. box-shadow:none;
  2031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2032. font-weight:400;
  2033. font-style:normal;
  2034. font-size:12px;
  2035. }
  2036. #u207216 {
  2037. border-width:0px;
  2038. position:absolute;
  2039. left:59px;
  2040. top:517px;
  2041. width:49px;
  2042. height:17px;
  2043. display:flex;
  2044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2045. font-weight:400;
  2046. font-style:normal;
  2047. font-size:12px;
  2048. }
  2049. #u207216 .text {
  2050. position:absolute;
  2051. align-self:flex-start;
  2052. padding:0px 0px 0px 0px;
  2053. box-sizing:border-box;
  2054. width:100%;
  2055. }
  2056. #u207216_text {
  2057. border-width:0px;
  2058. white-space:nowrap;
  2059. text-transform:none;
  2060. }
  2061. #u207217 {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:0px;
  2065. top:0px;
  2066. width:0px;
  2067. height:0px;
  2068. }
  2069. #u207218_div {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:0px;
  2073. top:0px;
  2074. width:30px;
  2075. height:30px;
  2076. background:inherit;
  2077. background-color:rgba(255, 255, 255, 1);
  2078. box-sizing:border-box;
  2079. border-width:1px;
  2080. border-style:solid;
  2081. border-color:rgba(121, 121, 121, 1);
  2082. border-radius:4px;
  2083. -moz-box-shadow:none;
  2084. -webkit-box-shadow:none;
  2085. box-shadow:none;
  2086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2087. font-weight:400;
  2088. font-style:normal;
  2089. font-size:8px;
  2090. }
  2091. #u207218 {
  2092. border-width:0px;
  2093. position:absolute;
  2094. left:156px;
  2095. top:481px;
  2096. width:30px;
  2097. height:30px;
  2098. display:flex;
  2099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2100. font-weight:400;
  2101. font-style:normal;
  2102. font-size:8px;
  2103. }
  2104. #u207218 .text {
  2105. position:absolute;
  2106. align-self:center;
  2107. padding:2px 2px 2px 2px;
  2108. box-sizing:border-box;
  2109. width:100%;
  2110. }
  2111. #u207218_text {
  2112. border-width:0px;
  2113. word-wrap:break-word;
  2114. text-transform:none;
  2115. }
  2116. #u207219_div {
  2117. border-width:0px;
  2118. position:absolute;
  2119. left:0px;
  2120. top:0px;
  2121. width:49px;
  2122. height:17px;
  2123. background:inherit;
  2124. background-color:rgba(255, 255, 255, 0);
  2125. border:none;
  2126. border-radius:0px;
  2127. -moz-box-shadow:none;
  2128. -webkit-box-shadow:none;
  2129. box-shadow:none;
  2130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2131. font-weight:400;
  2132. font-style:normal;
  2133. font-size:12px;
  2134. }
  2135. #u207219 {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:147px;
  2139. top:516px;
  2140. width:49px;
  2141. height:17px;
  2142. display:flex;
  2143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2144. font-weight:400;
  2145. font-style:normal;
  2146. font-size:12px;
  2147. }
  2148. #u207219 .text {
  2149. position:absolute;
  2150. align-self:flex-start;
  2151. padding:0px 0px 0px 0px;
  2152. box-sizing:border-box;
  2153. width:100%;
  2154. }
  2155. #u207219_text {
  2156. border-width:0px;
  2157. white-space:nowrap;
  2158. text-transform:none;
  2159. }
  2160. #u207220 {
  2161. border-width:0px;
  2162. position:absolute;
  2163. left:0px;
  2164. top:0px;
  2165. width:0px;
  2166. height:0px;
  2167. }
  2168. #u207221_div {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:0px;
  2172. top:0px;
  2173. width:30px;
  2174. height:30px;
  2175. background:inherit;
  2176. background-color:rgba(255, 255, 255, 1);
  2177. box-sizing:border-box;
  2178. border-width:1px;
  2179. border-style:solid;
  2180. border-color:rgba(121, 121, 121, 1);
  2181. border-radius:4px;
  2182. -moz-box-shadow:none;
  2183. -webkit-box-shadow:none;
  2184. box-shadow:none;
  2185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2186. font-weight:400;
  2187. font-style:normal;
  2188. font-size:8px;
  2189. }
  2190. #u207221 {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:237px;
  2194. top:481px;
  2195. width:30px;
  2196. height:30px;
  2197. display:flex;
  2198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2199. font-weight:400;
  2200. font-style:normal;
  2201. font-size:8px;
  2202. }
  2203. #u207221 .text {
  2204. position:absolute;
  2205. align-self:center;
  2206. padding:2px 2px 2px 2px;
  2207. box-sizing:border-box;
  2208. width:100%;
  2209. }
  2210. #u207221_text {
  2211. border-width:0px;
  2212. word-wrap:break-word;
  2213. text-transform:none;
  2214. }
  2215. #u207222_div {
  2216. border-width:0px;
  2217. position:absolute;
  2218. left:0px;
  2219. top:0px;
  2220. width:49px;
  2221. height:17px;
  2222. background:inherit;
  2223. background-color:rgba(255, 255, 255, 0);
  2224. border:none;
  2225. border-radius:0px;
  2226. -moz-box-shadow:none;
  2227. -webkit-box-shadow:none;
  2228. box-shadow:none;
  2229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2230. font-weight:400;
  2231. font-style:normal;
  2232. font-size:12px;
  2233. }
  2234. #u207222 {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:228px;
  2238. top:516px;
  2239. width:49px;
  2240. height:17px;
  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. }
  2247. #u207222 .text {
  2248. position:absolute;
  2249. align-self:flex-start;
  2250. padding:0px 0px 0px 0px;
  2251. box-sizing:border-box;
  2252. width:100%;
  2253. }
  2254. #u207222_text {
  2255. border-width:0px;
  2256. white-space:nowrap;
  2257. text-transform:none;
  2258. }
  2259. #u207223 {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:0px;
  2263. top:0px;
  2264. width:0px;
  2265. height:0px;
  2266. }
  2267. #u207224_div {
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:0px;
  2271. top:0px;
  2272. width:30px;
  2273. height:30px;
  2274. background:inherit;
  2275. background-color:rgba(255, 255, 255, 1);
  2276. box-sizing:border-box;
  2277. border-width:1px;
  2278. border-style:solid;
  2279. border-color:rgba(121, 121, 121, 1);
  2280. border-radius:4px;
  2281. -moz-box-shadow:none;
  2282. -webkit-box-shadow:none;
  2283. box-shadow:none;
  2284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2285. font-weight:400;
  2286. font-style:normal;
  2287. font-size:8px;
  2288. }
  2289. #u207224 {
  2290. border-width:0px;
  2291. position:absolute;
  2292. left:327px;
  2293. top:481px;
  2294. width:30px;
  2295. height:30px;
  2296. display:flex;
  2297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2298. font-weight:400;
  2299. font-style:normal;
  2300. font-size:8px;
  2301. }
  2302. #u207224 .text {
  2303. position:absolute;
  2304. align-self:center;
  2305. padding:2px 2px 2px 2px;
  2306. box-sizing:border-box;
  2307. width:100%;
  2308. }
  2309. #u207224_text {
  2310. border-width:0px;
  2311. word-wrap:break-word;
  2312. text-transform:none;
  2313. }
  2314. #u207225_div {
  2315. border-width:0px;
  2316. position:absolute;
  2317. left:0px;
  2318. top:0px;
  2319. width:49px;
  2320. height:17px;
  2321. background:inherit;
  2322. background-color:rgba(255, 255, 255, 0);
  2323. border:none;
  2324. border-radius:0px;
  2325. -moz-box-shadow:none;
  2326. -webkit-box-shadow:none;
  2327. box-shadow:none;
  2328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2329. font-weight:400;
  2330. font-style:normal;
  2331. font-size:12px;
  2332. }
  2333. #u207225 {
  2334. border-width:0px;
  2335. position:absolute;
  2336. left:320px;
  2337. top:516px;
  2338. width:49px;
  2339. height:17px;
  2340. display:flex;
  2341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2342. font-weight:400;
  2343. font-style:normal;
  2344. font-size:12px;
  2345. }
  2346. #u207225 .text {
  2347. position:absolute;
  2348. align-self:flex-start;
  2349. padding:0px 0px 0px 0px;
  2350. box-sizing:border-box;
  2351. width:100%;
  2352. }
  2353. #u207225_text {
  2354. border-width:0px;
  2355. white-space:nowrap;
  2356. text-transform:none;
  2357. }
  2358. #u207226 {
  2359. border-width:0px;
  2360. position:absolute;
  2361. left:0px;
  2362. top:0px;
  2363. width:0px;
  2364. height:0px;
  2365. }
  2366. #u207227_div {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:0px;
  2370. top:0px;
  2371. width:30px;
  2372. height:30px;
  2373. background:inherit;
  2374. background-color:rgba(255, 255, 255, 1);
  2375. box-sizing:border-box;
  2376. border-width:1px;
  2377. border-style:solid;
  2378. border-color:rgba(121, 121, 121, 1);
  2379. border-radius:4px;
  2380. -moz-box-shadow:none;
  2381. -webkit-box-shadow:none;
  2382. box-shadow:none;
  2383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2384. font-weight:400;
  2385. font-style:normal;
  2386. font-size:8px;
  2387. }
  2388. #u207227 {
  2389. border-width:0px;
  2390. position:absolute;
  2391. left:154px;
  2392. top:551px;
  2393. width:30px;
  2394. height:30px;
  2395. display:flex;
  2396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2397. font-weight:400;
  2398. font-style:normal;
  2399. font-size:8px;
  2400. }
  2401. #u207227 .text {
  2402. position:absolute;
  2403. align-self:center;
  2404. padding:2px 2px 2px 2px;
  2405. box-sizing:border-box;
  2406. width:100%;
  2407. }
  2408. #u207227_text {
  2409. border-width:0px;
  2410. word-wrap:break-word;
  2411. text-transform:none;
  2412. }
  2413. #u207228_div {
  2414. border-width:0px;
  2415. position:absolute;
  2416. left:0px;
  2417. top:0px;
  2418. width:49px;
  2419. height:17px;
  2420. background:inherit;
  2421. background-color:rgba(255, 255, 255, 0);
  2422. border:none;
  2423. border-radius:0px;
  2424. -moz-box-shadow:none;
  2425. -webkit-box-shadow:none;
  2426. box-shadow:none;
  2427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2428. font-weight:400;
  2429. font-style:normal;
  2430. font-size:12px;
  2431. }
  2432. #u207228 {
  2433. border-width:0px;
  2434. position:absolute;
  2435. left:147px;
  2436. top:586px;
  2437. width:49px;
  2438. height:17px;
  2439. display:flex;
  2440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2441. font-weight:400;
  2442. font-style:normal;
  2443. font-size:12px;
  2444. }
  2445. #u207228 .text {
  2446. position:absolute;
  2447. align-self:flex-start;
  2448. padding:0px 0px 0px 0px;
  2449. box-sizing:border-box;
  2450. width:100%;
  2451. }
  2452. #u207228_text {
  2453. border-width:0px;
  2454. white-space:nowrap;
  2455. text-transform:none;
  2456. }
  2457. #u207229 {
  2458. border-width:0px;
  2459. position:absolute;
  2460. left:0px;
  2461. top:0px;
  2462. width:0px;
  2463. height:0px;
  2464. }
  2465. #u207230_div {
  2466. border-width:0px;
  2467. position:absolute;
  2468. left:0px;
  2469. top:0px;
  2470. width:30px;
  2471. height:30px;
  2472. background:inherit;
  2473. background-color:rgba(255, 255, 255, 1);
  2474. box-sizing:border-box;
  2475. border-width:1px;
  2476. border-style:solid;
  2477. border-color:rgba(121, 121, 121, 1);
  2478. border-radius:4px;
  2479. -moz-box-shadow:none;
  2480. -webkit-box-shadow:none;
  2481. box-shadow:none;
  2482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2483. font-weight:400;
  2484. font-style:normal;
  2485. font-size:8px;
  2486. }
  2487. #u207230 {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:236px;
  2491. top:551px;
  2492. width:30px;
  2493. height:30px;
  2494. display:flex;
  2495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2496. font-weight:400;
  2497. font-style:normal;
  2498. font-size:8px;
  2499. }
  2500. #u207230 .text {
  2501. position:absolute;
  2502. align-self:center;
  2503. padding:2px 2px 2px 2px;
  2504. box-sizing:border-box;
  2505. width:100%;
  2506. }
  2507. #u207230_text {
  2508. border-width:0px;
  2509. word-wrap:break-word;
  2510. text-transform:none;
  2511. }
  2512. #u207231_div {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:0px;
  2516. top:0px;
  2517. width:61px;
  2518. height:17px;
  2519. background:inherit;
  2520. background-color:rgba(255, 255, 255, 0);
  2521. border:none;
  2522. border-radius:0px;
  2523. -moz-box-shadow:none;
  2524. -webkit-box-shadow:none;
  2525. box-shadow:none;
  2526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2527. font-weight:400;
  2528. font-style:normal;
  2529. font-size:12px;
  2530. }
  2531. #u207231 {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:221px;
  2535. top:586px;
  2536. width:61px;
  2537. height:17px;
  2538. display:flex;
  2539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2540. font-weight:400;
  2541. font-style:normal;
  2542. font-size:12px;
  2543. }
  2544. #u207231 .text {
  2545. position:absolute;
  2546. align-self:flex-start;
  2547. padding:0px 0px 0px 0px;
  2548. box-sizing:border-box;
  2549. width:100%;
  2550. }
  2551. #u207231_text {
  2552. border-width:0px;
  2553. white-space:nowrap;
  2554. text-transform:none;
  2555. }
  2556. #u207232 {
  2557. border-width:0px;
  2558. position:absolute;
  2559. left:0px;
  2560. top:0px;
  2561. width:0px;
  2562. height:0px;
  2563. }
  2564. #u207233_div {
  2565. border-width:0px;
  2566. position:absolute;
  2567. left:0px;
  2568. top:0px;
  2569. width:30px;
  2570. height:30px;
  2571. background:inherit;
  2572. background-color:rgba(255, 255, 255, 1);
  2573. box-sizing:border-box;
  2574. border-width:1px;
  2575. border-style:solid;
  2576. border-color:rgba(121, 121, 121, 1);
  2577. border-radius:4px;
  2578. -moz-box-shadow:none;
  2579. -webkit-box-shadow:none;
  2580. box-shadow:none;
  2581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2582. font-weight:400;
  2583. font-style:normal;
  2584. font-size:8px;
  2585. }
  2586. #u207233 {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:328px;
  2590. top:551px;
  2591. width:30px;
  2592. height:30px;
  2593. display:flex;
  2594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2595. font-weight:400;
  2596. font-style:normal;
  2597. font-size:8px;
  2598. }
  2599. #u207233 .text {
  2600. position:absolute;
  2601. align-self:center;
  2602. padding:2px 2px 2px 2px;
  2603. box-sizing:border-box;
  2604. width:100%;
  2605. }
  2606. #u207233_text {
  2607. border-width:0px;
  2608. word-wrap:break-word;
  2609. text-transform:none;
  2610. }
  2611. #u207234_div {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:0px;
  2615. top:0px;
  2616. width:49px;
  2617. height:17px;
  2618. background:inherit;
  2619. background-color:rgba(255, 255, 255, 0);
  2620. border:none;
  2621. border-radius:0px;
  2622. -moz-box-shadow:none;
  2623. -webkit-box-shadow:none;
  2624. box-shadow:none;
  2625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2626. font-weight:400;
  2627. font-style:normal;
  2628. font-size:12px;
  2629. }
  2630. #u207234 {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:320px;
  2634. top:586px;
  2635. width:49px;
  2636. height:17px;
  2637. display:flex;
  2638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2639. font-weight:400;
  2640. font-style:normal;
  2641. font-size:12px;
  2642. }
  2643. #u207234 .text {
  2644. position:absolute;
  2645. align-self:flex-start;
  2646. padding:0px 0px 0px 0px;
  2647. box-sizing:border-box;
  2648. width:100%;
  2649. }
  2650. #u207234_text {
  2651. border-width:0px;
  2652. white-space:nowrap;
  2653. text-transform:none;
  2654. }
  2655. #u207235 {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:0px;
  2659. top:0px;
  2660. width:0px;
  2661. height:0px;
  2662. }
  2663. #u207236_div {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:0px;
  2667. top:0px;
  2668. width:30px;
  2669. height:30px;
  2670. background:inherit;
  2671. background-color:rgba(255, 255, 255, 1);
  2672. box-sizing:border-box;
  2673. border-width:1px;
  2674. border-style:solid;
  2675. border-color:rgba(121, 121, 121, 1);
  2676. border-radius:4px;
  2677. -moz-box-shadow:none;
  2678. -webkit-box-shadow:none;
  2679. box-shadow:none;
  2680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2681. font-weight:400;
  2682. font-style:normal;
  2683. font-size:8px;
  2684. }
  2685. #u207236 {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:66px;
  2689. top:551px;
  2690. width:30px;
  2691. height:30px;
  2692. display:flex;
  2693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2694. font-weight:400;
  2695. font-style:normal;
  2696. font-size:8px;
  2697. }
  2698. #u207236 .text {
  2699. position:absolute;
  2700. align-self:center;
  2701. padding:2px 2px 2px 2px;
  2702. box-sizing:border-box;
  2703. width:100%;
  2704. }
  2705. #u207236_text {
  2706. border-width:0px;
  2707. word-wrap:break-word;
  2708. text-transform:none;
  2709. }
  2710. #u207237_div {
  2711. border-width:0px;
  2712. position:absolute;
  2713. left:0px;
  2714. top:0px;
  2715. width:49px;
  2716. height:17px;
  2717. background:inherit;
  2718. background-color:rgba(255, 255, 255, 0);
  2719. border:none;
  2720. border-radius:0px;
  2721. -moz-box-shadow:none;
  2722. -webkit-box-shadow:none;
  2723. box-shadow:none;
  2724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2725. font-weight:400;
  2726. font-style:normal;
  2727. font-size:12px;
  2728. }
  2729. #u207237 {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:59px;
  2733. top:586px;
  2734. width:49px;
  2735. height:17px;
  2736. display:flex;
  2737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2738. font-weight:400;
  2739. font-style:normal;
  2740. font-size:12px;
  2741. }
  2742. #u207237 .text {
  2743. position:absolute;
  2744. align-self:flex-start;
  2745. padding:0px 0px 0px 0px;
  2746. box-sizing:border-box;
  2747. width:100%;
  2748. }
  2749. #u207237_text {
  2750. border-width:0px;
  2751. white-space:nowrap;
  2752. text-transform:none;
  2753. }
  2754. #u207238_div {
  2755. border-width:0px;
  2756. position:absolute;
  2757. left:0px;
  2758. top:0px;
  2759. width:49px;
  2760. height:17px;
  2761. background:inherit;
  2762. background-color:rgba(255, 255, 255, 0);
  2763. border:none;
  2764. border-radius:0px;
  2765. -moz-box-shadow:none;
  2766. -webkit-box-shadow:none;
  2767. box-shadow:none;
  2768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2769. font-weight:400;
  2770. font-style:normal;
  2771. font-size:12px;
  2772. }
  2773. #u207238 {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:47px;
  2777. top:449px;
  2778. width:49px;
  2779. height:17px;
  2780. display:flex;
  2781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2782. font-weight:400;
  2783. font-style:normal;
  2784. font-size:12px;
  2785. }
  2786. #u207238 .text {
  2787. position:absolute;
  2788. align-self:flex-start;
  2789. padding:0px 0px 0px 0px;
  2790. box-sizing:border-box;
  2791. width:100%;
  2792. }
  2793. #u207238_text {
  2794. border-width:0px;
  2795. white-space:nowrap;
  2796. text-transform:none;
  2797. }
  2798. #u207239 {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:0px;
  2802. top:0px;
  2803. width:0px;
  2804. height:0px;
  2805. }
  2806. #u207240_div {
  2807. border-width:0px;
  2808. position:absolute;
  2809. left:0px;
  2810. top:0px;
  2811. width:375px;
  2812. height:114px;
  2813. background:inherit;
  2814. background-color:rgba(255, 255, 255, 1);
  2815. box-sizing:border-box;
  2816. border-width:1px;
  2817. border-style:solid;
  2818. border-color:rgba(242, 242, 242, 1);
  2819. border-left:0px;
  2820. border-top:0px;
  2821. border-right:0px;
  2822. border-radius:0px;
  2823. border-bottom-right-radius:0px;
  2824. border-bottom-left-radius:0px;
  2825. -moz-box-shadow:none;
  2826. -webkit-box-shadow:none;
  2827. box-shadow:none;
  2828. }
  2829. #u207240 {
  2830. border-width:0px;
  2831. position:absolute;
  2832. left:29px;
  2833. top:626px;
  2834. width:375px;
  2835. height:114px;
  2836. display:flex;
  2837. }
  2838. #u207240 .text {
  2839. position:absolute;
  2840. align-self:center;
  2841. padding:2px 2px 2px 2px;
  2842. box-sizing:border-box;
  2843. width:100%;
  2844. }
  2845. #u207240_text {
  2846. border-width:0px;
  2847. word-wrap:break-word;
  2848. text-transform:none;
  2849. visibility:hidden;
  2850. }
  2851. #u207241 {
  2852. border-width:0px;
  2853. position:absolute;
  2854. left:0px;
  2855. top:0px;
  2856. width:0px;
  2857. height:0px;
  2858. }
  2859. #u207242_div {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:0px;
  2863. top:0px;
  2864. width:30px;
  2865. height:30px;
  2866. background:inherit;
  2867. background-color:rgba(255, 255, 255, 1);
  2868. box-sizing:border-box;
  2869. border-width:1px;
  2870. border-style:solid;
  2871. border-color:rgba(121, 121, 121, 1);
  2872. border-radius:4px;
  2873. -moz-box-shadow:none;
  2874. -webkit-box-shadow:none;
  2875. box-shadow:none;
  2876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2877. font-weight:400;
  2878. font-style:normal;
  2879. font-size:8px;
  2880. }
  2881. #u207242 {
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:68px;
  2885. top:671px;
  2886. width:30px;
  2887. height:30px;
  2888. display:flex;
  2889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2890. font-weight:400;
  2891. font-style:normal;
  2892. font-size:8px;
  2893. }
  2894. #u207242 .text {
  2895. position:absolute;
  2896. align-self:center;
  2897. padding:2px 2px 2px 2px;
  2898. box-sizing:border-box;
  2899. width:100%;
  2900. }
  2901. #u207242_text {
  2902. border-width:0px;
  2903. word-wrap:break-word;
  2904. text-transform:none;
  2905. }
  2906. #u207243_div {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:0px;
  2910. top:0px;
  2911. width:49px;
  2912. height:17px;
  2913. background:inherit;
  2914. background-color:rgba(255, 255, 255, 0);
  2915. border:none;
  2916. border-radius:0px;
  2917. -moz-box-shadow:none;
  2918. -webkit-box-shadow:none;
  2919. box-shadow:none;
  2920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2921. font-weight:400;
  2922. font-style:normal;
  2923. font-size:12px;
  2924. }
  2925. #u207243 {
  2926. border-width:0px;
  2927. position:absolute;
  2928. left:59px;
  2929. top:706px;
  2930. width:49px;
  2931. height:17px;
  2932. display:flex;
  2933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2934. font-weight:400;
  2935. font-style:normal;
  2936. font-size:12px;
  2937. }
  2938. #u207243 .text {
  2939. position:absolute;
  2940. align-self:flex-start;
  2941. padding:0px 0px 0px 0px;
  2942. box-sizing:border-box;
  2943. width:100%;
  2944. }
  2945. #u207243_text {
  2946. border-width:0px;
  2947. white-space:nowrap;
  2948. text-transform:none;
  2949. }
  2950. #u207244 {
  2951. border-width:0px;
  2952. position:absolute;
  2953. left:0px;
  2954. top:0px;
  2955. width:0px;
  2956. height:0px;
  2957. }
  2958. #u207245_div {
  2959. border-width:0px;
  2960. position:absolute;
  2961. left:0px;
  2962. top:0px;
  2963. width:30px;
  2964. height:30px;
  2965. background:inherit;
  2966. background-color:rgba(255, 255, 255, 1);
  2967. box-sizing:border-box;
  2968. border-width:1px;
  2969. border-style:solid;
  2970. border-color:rgba(121, 121, 121, 1);
  2971. border-radius:4px;
  2972. -moz-box-shadow:none;
  2973. -webkit-box-shadow:none;
  2974. box-shadow:none;
  2975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2976. font-weight:400;
  2977. font-style:normal;
  2978. font-size:8px;
  2979. }
  2980. #u207245 {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:154px;
  2984. top:671px;
  2985. width:30px;
  2986. height:30px;
  2987. display:flex;
  2988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2989. font-weight:400;
  2990. font-style:normal;
  2991. font-size:8px;
  2992. }
  2993. #u207245 .text {
  2994. position:absolute;
  2995. align-self:center;
  2996. padding:2px 2px 2px 2px;
  2997. box-sizing:border-box;
  2998. width:100%;
  2999. }
  3000. #u207245_text {
  3001. border-width:0px;
  3002. word-wrap:break-word;
  3003. text-transform:none;
  3004. }
  3005. #u207246_div {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:0px;
  3009. top:0px;
  3010. width:49px;
  3011. height:17px;
  3012. background:inherit;
  3013. background-color:rgba(255, 255, 255, 0);
  3014. border:none;
  3015. border-radius:0px;
  3016. -moz-box-shadow:none;
  3017. -webkit-box-shadow:none;
  3018. box-shadow:none;
  3019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3020. font-weight:400;
  3021. font-style:normal;
  3022. font-size:12px;
  3023. }
  3024. #u207246 {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:145px;
  3028. top:706px;
  3029. width:49px;
  3030. height:17px;
  3031. display:flex;
  3032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3033. font-weight:400;
  3034. font-style:normal;
  3035. font-size:12px;
  3036. }
  3037. #u207246 .text {
  3038. position:absolute;
  3039. align-self:flex-start;
  3040. padding:0px 0px 0px 0px;
  3041. box-sizing:border-box;
  3042. width:100%;
  3043. }
  3044. #u207246_text {
  3045. border-width:0px;
  3046. white-space:nowrap;
  3047. text-transform:none;
  3048. }
  3049. #u207247_div {
  3050. border-width:0px;
  3051. position:absolute;
  3052. left:0px;
  3053. top:0px;
  3054. width:49px;
  3055. height:17px;
  3056. background:inherit;
  3057. background-color:rgba(255, 255, 255, 0);
  3058. border:none;
  3059. border-radius:0px;
  3060. -moz-box-shadow:none;
  3061. -webkit-box-shadow:none;
  3062. box-shadow:none;
  3063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3064. font-weight:400;
  3065. font-style:normal;
  3066. font-size:12px;
  3067. }
  3068. #u207247 {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:47px;
  3072. top:638px;
  3073. width:49px;
  3074. height:17px;
  3075. display:flex;
  3076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3077. font-weight:400;
  3078. font-style:normal;
  3079. font-size:12px;
  3080. }
  3081. #u207247 .text {
  3082. position:absolute;
  3083. align-self:flex-start;
  3084. padding:0px 0px 0px 0px;
  3085. box-sizing:border-box;
  3086. width:100%;
  3087. }
  3088. #u207247_text {
  3089. border-width:0px;
  3090. white-space:nowrap;
  3091. text-transform:none;
  3092. }
  3093. #u207248 {
  3094. border-width:0px;
  3095. position:absolute;
  3096. left:0px;
  3097. top:0px;
  3098. width:0px;
  3099. height:0px;
  3100. }
  3101. #u207249_div {
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:0px;
  3105. top:0px;
  3106. width:30px;
  3107. height:30px;
  3108. background:inherit;
  3109. background-color:rgba(255, 255, 255, 1);
  3110. box-sizing:border-box;
  3111. border-width:1px;
  3112. border-style:solid;
  3113. border-color:rgba(121, 121, 121, 1);
  3114. border-radius:4px;
  3115. -moz-box-shadow:none;
  3116. -webkit-box-shadow:none;
  3117. box-shadow:none;
  3118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3119. font-weight:400;
  3120. font-style:normal;
  3121. font-size:8px;
  3122. }
  3123. #u207249 {
  3124. border-width:0px;
  3125. position:absolute;
  3126. left:239px;
  3127. top:671px;
  3128. width:30px;
  3129. height:30px;
  3130. display:flex;
  3131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3132. font-weight:400;
  3133. font-style:normal;
  3134. font-size:8px;
  3135. }
  3136. #u207249 .text {
  3137. position:absolute;
  3138. align-self:center;
  3139. padding:2px 2px 2px 2px;
  3140. box-sizing:border-box;
  3141. width:100%;
  3142. }
  3143. #u207249_text {
  3144. border-width:0px;
  3145. word-wrap:break-word;
  3146. text-transform:none;
  3147. }
  3148. #u207250_div {
  3149. border-width:0px;
  3150. position:absolute;
  3151. left:0px;
  3152. top:0px;
  3153. width:49px;
  3154. height:17px;
  3155. background:inherit;
  3156. background-color:rgba(255, 255, 255, 0);
  3157. border:none;
  3158. border-radius:0px;
  3159. -moz-box-shadow:none;
  3160. -webkit-box-shadow:none;
  3161. box-shadow:none;
  3162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3163. font-weight:400;
  3164. font-style:normal;
  3165. font-size:12px;
  3166. }
  3167. #u207250 {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:230px;
  3171. top:706px;
  3172. width:49px;
  3173. height:17px;
  3174. display:flex;
  3175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3176. font-weight:400;
  3177. font-style:normal;
  3178. font-size:12px;
  3179. }
  3180. #u207250 .text {
  3181. position:absolute;
  3182. align-self:flex-start;
  3183. padding:0px 0px 0px 0px;
  3184. box-sizing:border-box;
  3185. width:100%;
  3186. }
  3187. #u207250_text {
  3188. border-width:0px;
  3189. white-space:nowrap;
  3190. text-transform:none;
  3191. }
  3192. #u207251 {
  3193. border-width:0px;
  3194. position:absolute;
  3195. left:0px;
  3196. top:0px;
  3197. width:0px;
  3198. height:0px;
  3199. }
  3200. #u207252_div {
  3201. border-width:0px;
  3202. position:absolute;
  3203. left:0px;
  3204. top:0px;
  3205. width:30px;
  3206. height:30px;
  3207. background:inherit;
  3208. background-color:rgba(255, 255, 255, 1);
  3209. box-sizing:border-box;
  3210. border-width:1px;
  3211. border-style:solid;
  3212. border-color:rgba(121, 121, 121, 1);
  3213. border-radius:4px;
  3214. -moz-box-shadow:none;
  3215. -webkit-box-shadow:none;
  3216. box-shadow:none;
  3217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3218. font-weight:400;
  3219. font-style:normal;
  3220. font-size:8px;
  3221. }
  3222. #u207252 {
  3223. border-width:0px;
  3224. position:absolute;
  3225. left:325px;
  3226. top:671px;
  3227. width:30px;
  3228. height:30px;
  3229. display:flex;
  3230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3231. font-weight:400;
  3232. font-style:normal;
  3233. font-size:8px;
  3234. }
  3235. #u207252 .text {
  3236. position:absolute;
  3237. align-self:center;
  3238. padding:2px 2px 2px 2px;
  3239. box-sizing:border-box;
  3240. width:100%;
  3241. }
  3242. #u207252_text {
  3243. border-width:0px;
  3244. word-wrap:break-word;
  3245. text-transform:none;
  3246. }
  3247. #u207253_div {
  3248. border-width:0px;
  3249. position:absolute;
  3250. left:0px;
  3251. top:0px;
  3252. width:49px;
  3253. height:17px;
  3254. background:inherit;
  3255. background-color:rgba(255, 255, 255, 0);
  3256. border:none;
  3257. border-radius:0px;
  3258. -moz-box-shadow:none;
  3259. -webkit-box-shadow:none;
  3260. box-shadow:none;
  3261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3262. font-weight:400;
  3263. font-style:normal;
  3264. font-size:12px;
  3265. }
  3266. #u207253 {
  3267. border-width:0px;
  3268. position:absolute;
  3269. left:316px;
  3270. top:706px;
  3271. width:49px;
  3272. height:17px;
  3273. display:flex;
  3274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3275. font-weight:400;
  3276. font-style:normal;
  3277. font-size:12px;
  3278. }
  3279. #u207253 .text {
  3280. position:absolute;
  3281. align-self:flex-start;
  3282. padding:0px 0px 0px 0px;
  3283. box-sizing:border-box;
  3284. width:100%;
  3285. }
  3286. #u207253_text {
  3287. border-width:0px;
  3288. white-space:nowrap;
  3289. text-transform:none;
  3290. }
  3291. #u207254 {
  3292. border-width:0px;
  3293. position:absolute;
  3294. left:0px;
  3295. top:0px;
  3296. width:0px;
  3297. height:0px;
  3298. }
  3299. #u207255_div {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:0px;
  3303. top:0px;
  3304. width:375px;
  3305. height:80px;
  3306. background:inherit;
  3307. background-color:rgba(255, 255, 255, 1);
  3308. box-sizing:border-box;
  3309. border-width:1px;
  3310. border-style:solid;
  3311. border-color:rgba(242, 242, 242, 1);
  3312. border-left:0px;
  3313. border-top:0px;
  3314. border-right:0px;
  3315. border-radius:0px;
  3316. border-bottom-right-radius:0px;
  3317. border-bottom-left-radius:0px;
  3318. -moz-box-shadow:none;
  3319. -webkit-box-shadow:none;
  3320. box-shadow:none;
  3321. }
  3322. #u207255 {
  3323. border-width:0px;
  3324. position:absolute;
  3325. left:29px;
  3326. top:740px;
  3327. width:375px;
  3328. height:80px;
  3329. display:flex;
  3330. }
  3331. #u207255 .text {
  3332. position:absolute;
  3333. align-self:center;
  3334. padding:2px 2px 2px 2px;
  3335. box-sizing:border-box;
  3336. width:100%;
  3337. }
  3338. #u207255_text {
  3339. border-width:0px;
  3340. word-wrap:break-word;
  3341. text-transform:none;
  3342. visibility:hidden;
  3343. }
  3344. #u207256 {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:0px;
  3348. top:0px;
  3349. width:0px;
  3350. height:0px;
  3351. }
  3352. #u207257_div {
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:0px;
  3356. top:0px;
  3357. width:30px;
  3358. height:30px;
  3359. background:inherit;
  3360. background-color:rgba(255, 255, 255, 1);
  3361. box-sizing:border-box;
  3362. border-width:1px;
  3363. border-style:solid;
  3364. border-color:rgba(121, 121, 121, 1);
  3365. border-radius:4px;
  3366. -moz-box-shadow:none;
  3367. -webkit-box-shadow:none;
  3368. box-shadow:none;
  3369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3370. font-weight:400;
  3371. font-style:normal;
  3372. font-size:8px;
  3373. }
  3374. #u207257 {
  3375. border-width:0px;
  3376. position:absolute;
  3377. left:68px;
  3378. top:755px;
  3379. width:30px;
  3380. height:30px;
  3381. display:flex;
  3382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3383. font-weight:400;
  3384. font-style:normal;
  3385. font-size:8px;
  3386. }
  3387. #u207257 .text {
  3388. position:absolute;
  3389. align-self:center;
  3390. padding:2px 2px 2px 2px;
  3391. box-sizing:border-box;
  3392. width:100%;
  3393. }
  3394. #u207257_text {
  3395. border-width:0px;
  3396. word-wrap:break-word;
  3397. text-transform:none;
  3398. }
  3399. #u207258_div {
  3400. border-width:0px;
  3401. position:absolute;
  3402. left:0px;
  3403. top:0px;
  3404. width:55px;
  3405. height:17px;
  3406. background:inherit;
  3407. background-color:rgba(255, 255, 255, 0);
  3408. border:none;
  3409. border-radius:0px;
  3410. -moz-box-shadow:none;
  3411. -webkit-box-shadow:none;
  3412. box-shadow:none;
  3413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3414. font-weight:400;
  3415. font-style:normal;
  3416. font-size:12px;
  3417. }
  3418. #u207258 {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:54px;
  3422. top:790px;
  3423. width:55px;
  3424. height:17px;
  3425. display:flex;
  3426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3427. font-weight:400;
  3428. font-style:normal;
  3429. font-size:12px;
  3430. }
  3431. #u207258 .text {
  3432. position:absolute;
  3433. align-self:flex-start;
  3434. padding:0px 0px 0px 0px;
  3435. box-sizing:border-box;
  3436. width:100%;
  3437. }
  3438. #u207258_text {
  3439. border-width:0px;
  3440. white-space:nowrap;
  3441. text-transform:none;
  3442. }
  3443. #u207259 {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:0px;
  3447. top:0px;
  3448. width:0px;
  3449. height:0px;
  3450. }
  3451. #u207260_div {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:0px;
  3455. top:0px;
  3456. width:30px;
  3457. height:30px;
  3458. background:inherit;
  3459. background-color:rgba(255, 255, 255, 1);
  3460. box-sizing:border-box;
  3461. border-width:1px;
  3462. border-style:solid;
  3463. border-color:rgba(121, 121, 121, 1);
  3464. border-radius:4px;
  3465. -moz-box-shadow:none;
  3466. -webkit-box-shadow:none;
  3467. box-shadow:none;
  3468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3469. font-weight:400;
  3470. font-style:normal;
  3471. font-size:8px;
  3472. }
  3473. #u207260 {
  3474. border-width:0px;
  3475. position:absolute;
  3476. left:156px;
  3477. top:755px;
  3478. width:30px;
  3479. height:30px;
  3480. display:flex;
  3481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3482. font-weight:400;
  3483. font-style:normal;
  3484. font-size:8px;
  3485. }
  3486. #u207260 .text {
  3487. position:absolute;
  3488. align-self:center;
  3489. padding:2px 2px 2px 2px;
  3490. box-sizing:border-box;
  3491. width:100%;
  3492. }
  3493. #u207260_text {
  3494. border-width:0px;
  3495. word-wrap:break-word;
  3496. text-transform:none;
  3497. }
  3498. #u207261_div {
  3499. border-width:0px;
  3500. position:absolute;
  3501. left:0px;
  3502. top:0px;
  3503. width:49px;
  3504. height:17px;
  3505. background:inherit;
  3506. background-color:rgba(255, 255, 255, 0);
  3507. border:none;
  3508. border-radius:0px;
  3509. -moz-box-shadow:none;
  3510. -webkit-box-shadow:none;
  3511. box-shadow:none;
  3512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3513. font-weight:400;
  3514. font-style:normal;
  3515. font-size:12px;
  3516. }
  3517. #u207261 {
  3518. border-width:0px;
  3519. position:absolute;
  3520. left:147px;
  3521. top:790px;
  3522. width:49px;
  3523. height:17px;
  3524. display:flex;
  3525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3526. font-weight:400;
  3527. font-style:normal;
  3528. font-size:12px;
  3529. }
  3530. #u207261 .text {
  3531. position:absolute;
  3532. align-self:flex-start;
  3533. padding:0px 0px 0px 0px;
  3534. box-sizing:border-box;
  3535. width:100%;
  3536. }
  3537. #u207261_text {
  3538. border-width:0px;
  3539. white-space:nowrap;
  3540. text-transform:none;
  3541. }
  3542. #u207262 {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:0px;
  3546. top:0px;
  3547. width:0px;
  3548. height:0px;
  3549. }
  3550. #u207263_div {
  3551. border-width:0px;
  3552. position:absolute;
  3553. left:0px;
  3554. top:0px;
  3555. width:30px;
  3556. height:30px;
  3557. background:inherit;
  3558. background-color:rgba(255, 255, 255, 1);
  3559. box-sizing:border-box;
  3560. border-width:1px;
  3561. border-style:solid;
  3562. border-color:rgba(121, 121, 121, 1);
  3563. border-radius:4px;
  3564. -moz-box-shadow:none;
  3565. -webkit-box-shadow:none;
  3566. box-shadow:none;
  3567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3568. font-weight:400;
  3569. font-style:normal;
  3570. font-size:8px;
  3571. }
  3572. #u207263 {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:237px;
  3576. top:755px;
  3577. width:30px;
  3578. height:30px;
  3579. display:flex;
  3580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3581. font-weight:400;
  3582. font-style:normal;
  3583. font-size:8px;
  3584. }
  3585. #u207263 .text {
  3586. position:absolute;
  3587. align-self:center;
  3588. padding:2px 2px 2px 2px;
  3589. box-sizing:border-box;
  3590. width:100%;
  3591. }
  3592. #u207263_text {
  3593. border-width:0px;
  3594. word-wrap:break-word;
  3595. text-transform:none;
  3596. }
  3597. #u207264_div {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:0px;
  3601. top:0px;
  3602. width:61px;
  3603. height:17px;
  3604. background:inherit;
  3605. background-color:rgba(255, 255, 255, 0);
  3606. border:none;
  3607. border-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:12px;
  3615. }
  3616. #u207264 {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:221px;
  3620. top:790px;
  3621. width:61px;
  3622. height:17px;
  3623. display:flex;
  3624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3625. font-weight:400;
  3626. font-style:normal;
  3627. font-size:12px;
  3628. }
  3629. #u207264 .text {
  3630. position:absolute;
  3631. align-self:flex-start;
  3632. padding:0px 0px 0px 0px;
  3633. box-sizing:border-box;
  3634. width:100%;
  3635. }
  3636. #u207264_text {
  3637. border-width:0px;
  3638. white-space:nowrap;
  3639. text-transform:none;
  3640. }
  3641. #u207265 {
  3642. border-width:0px;
  3643. position:absolute;
  3644. left:0px;
  3645. top:0px;
  3646. width:0px;
  3647. height:0px;
  3648. }
  3649. #u207266_div {
  3650. border-width:0px;
  3651. position:absolute;
  3652. left:0px;
  3653. top:0px;
  3654. width:375px;
  3655. height:80px;
  3656. background:inherit;
  3657. background-color:rgba(255, 255, 255, 1);
  3658. box-sizing:border-box;
  3659. border-width:1px;
  3660. border-style:solid;
  3661. border-color:rgba(242, 242, 242, 1);
  3662. border-left:0px;
  3663. border-top:0px;
  3664. border-right:0px;
  3665. border-radius:0px;
  3666. border-bottom-right-radius:0px;
  3667. border-bottom-left-radius:0px;
  3668. -moz-box-shadow:none;
  3669. -webkit-box-shadow:none;
  3670. box-shadow:none;
  3671. }
  3672. #u207266 {
  3673. border-width:0px;
  3674. position:absolute;
  3675. left:29px;
  3676. top:346px;
  3677. width:375px;
  3678. height:80px;
  3679. display:flex;
  3680. }
  3681. #u207266 .text {
  3682. position:absolute;
  3683. align-self:center;
  3684. padding:2px 2px 2px 2px;
  3685. box-sizing:border-box;
  3686. width:100%;
  3687. }
  3688. #u207266_text {
  3689. border-width:0px;
  3690. word-wrap:break-word;
  3691. text-transform:none;
  3692. visibility:hidden;
  3693. }
  3694. #u207267 {
  3695. border-width:0px;
  3696. position:absolute;
  3697. left:0px;
  3698. top:0px;
  3699. width:0px;
  3700. height:0px;
  3701. }
  3702. #u207268_div {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:0px;
  3706. top:0px;
  3707. width:30px;
  3708. height:30px;
  3709. background:inherit;
  3710. background-color:rgba(255, 255, 255, 1);
  3711. box-sizing:border-box;
  3712. border-width:1px;
  3713. border-style:solid;
  3714. border-color:rgba(121, 121, 121, 1);
  3715. border-radius:4px;
  3716. -moz-box-shadow:none;
  3717. -webkit-box-shadow:none;
  3718. box-shadow:none;
  3719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3720. font-weight:400;
  3721. font-style:normal;
  3722. font-size:8px;
  3723. }
  3724. #u207268 {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:59px;
  3728. top:361px;
  3729. width:30px;
  3730. height:30px;
  3731. display:flex;
  3732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3733. font-weight:400;
  3734. font-style:normal;
  3735. font-size:8px;
  3736. }
  3737. #u207268 .text {
  3738. position:absolute;
  3739. align-self:center;
  3740. padding:2px 2px 2px 2px;
  3741. box-sizing:border-box;
  3742. width:100%;
  3743. }
  3744. #u207268_text {
  3745. border-width:0px;
  3746. word-wrap:break-word;
  3747. text-transform:none;
  3748. }
  3749. #u207269_div {
  3750. border-width:0px;
  3751. position:absolute;
  3752. left:0px;
  3753. top:0px;
  3754. width:25px;
  3755. height:17px;
  3756. background:inherit;
  3757. background-color:rgba(255, 255, 255, 0);
  3758. border:none;
  3759. border-radius:0px;
  3760. -moz-box-shadow:none;
  3761. -webkit-box-shadow:none;
  3762. box-shadow:none;
  3763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3764. font-weight:400;
  3765. font-style:normal;
  3766. font-size:12px;
  3767. }
  3768. #u207269 {
  3769. border-width:0px;
  3770. position:absolute;
  3771. left:61px;
  3772. top:396px;
  3773. width:25px;
  3774. height:17px;
  3775. display:flex;
  3776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3777. font-weight:400;
  3778. font-style:normal;
  3779. font-size:12px;
  3780. }
  3781. #u207269 .text {
  3782. position:absolute;
  3783. align-self:flex-start;
  3784. padding:0px 0px 0px 0px;
  3785. box-sizing:border-box;
  3786. width:100%;
  3787. }
  3788. #u207269_text {
  3789. border-width:0px;
  3790. white-space:nowrap;
  3791. text-transform:none;
  3792. }
  3793. #u207270 {
  3794. border-width:0px;
  3795. position:absolute;
  3796. left:0px;
  3797. top:0px;
  3798. width:0px;
  3799. height:0px;
  3800. }
  3801. #u207271_div {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:0px;
  3805. top:0px;
  3806. width:30px;
  3807. height:30px;
  3808. background:inherit;
  3809. background-color:rgba(255, 255, 255, 1);
  3810. box-sizing:border-box;
  3811. border-width:1px;
  3812. border-style:solid;
  3813. border-color:rgba(121, 121, 121, 1);
  3814. border-radius:4px;
  3815. -moz-box-shadow:none;
  3816. -webkit-box-shadow:none;
  3817. box-shadow:none;
  3818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3819. font-weight:400;
  3820. font-style:normal;
  3821. font-size:8px;
  3822. }
  3823. #u207271 {
  3824. border-width:0px;
  3825. position:absolute;
  3826. left:148px;
  3827. top:361px;
  3828. width:30px;
  3829. height:30px;
  3830. display:flex;
  3831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3832. font-weight:400;
  3833. font-style:normal;
  3834. font-size:8px;
  3835. }
  3836. #u207271 .text {
  3837. position:absolute;
  3838. align-self:center;
  3839. padding:2px 2px 2px 2px;
  3840. box-sizing:border-box;
  3841. width:100%;
  3842. }
  3843. #u207271_text {
  3844. border-width:0px;
  3845. word-wrap:break-word;
  3846. text-transform:none;
  3847. }
  3848. #u207272_div {
  3849. border-width:0px;
  3850. position:absolute;
  3851. left:0px;
  3852. top:0px;
  3853. width:25px;
  3854. height:17px;
  3855. background:inherit;
  3856. background-color:rgba(255, 255, 255, 0);
  3857. border:none;
  3858. border-radius:0px;
  3859. -moz-box-shadow:none;
  3860. -webkit-box-shadow:none;
  3861. box-shadow:none;
  3862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3863. font-weight:400;
  3864. font-style:normal;
  3865. font-size:12px;
  3866. }
  3867. #u207272 {
  3868. border-width:0px;
  3869. position:absolute;
  3870. left:151px;
  3871. top:396px;
  3872. width:25px;
  3873. height:17px;
  3874. display:flex;
  3875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3876. font-weight:400;
  3877. font-style:normal;
  3878. font-size:12px;
  3879. }
  3880. #u207272 .text {
  3881. position:absolute;
  3882. align-self:flex-start;
  3883. padding:0px 0px 0px 0px;
  3884. box-sizing:border-box;
  3885. width:100%;
  3886. }
  3887. #u207272_text {
  3888. border-width:0px;
  3889. white-space:nowrap;
  3890. text-transform:none;
  3891. }
  3892. #u207273 {
  3893. border-width:0px;
  3894. position:absolute;
  3895. left:0px;
  3896. top:0px;
  3897. width:0px;
  3898. height:0px;
  3899. }
  3900. #u207274_div {
  3901. border-width:0px;
  3902. position:absolute;
  3903. left:0px;
  3904. top:0px;
  3905. width:30px;
  3906. height:30px;
  3907. background:inherit;
  3908. background-color:rgba(255, 255, 255, 1);
  3909. box-sizing:border-box;
  3910. border-width:1px;
  3911. border-style:solid;
  3912. border-color:rgba(121, 121, 121, 1);
  3913. border-radius:4px;
  3914. -moz-box-shadow:none;
  3915. -webkit-box-shadow:none;
  3916. box-shadow:none;
  3917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3918. font-weight:400;
  3919. font-style:normal;
  3920. font-size:8px;
  3921. }
  3922. #u207274 {
  3923. border-width:0px;
  3924. position:absolute;
  3925. left:238px;
  3926. top:361px;
  3927. width:30px;
  3928. height:30px;
  3929. display:flex;
  3930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3931. font-weight:400;
  3932. font-style:normal;
  3933. font-size:8px;
  3934. }
  3935. #u207274 .text {
  3936. position:absolute;
  3937. align-self:center;
  3938. padding:2px 2px 2px 2px;
  3939. box-sizing:border-box;
  3940. width:100%;
  3941. }
  3942. #u207274_text {
  3943. border-width:0px;
  3944. word-wrap:break-word;
  3945. text-transform:none;
  3946. }
  3947. #u207275_div {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:0px;
  3951. top:0px;
  3952. width:25px;
  3953. height:17px;
  3954. background:inherit;
  3955. background-color:rgba(255, 255, 255, 0);
  3956. border:none;
  3957. border-radius:0px;
  3958. -moz-box-shadow:none;
  3959. -webkit-box-shadow:none;
  3960. box-shadow:none;
  3961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3962. font-weight:400;
  3963. font-style:normal;
  3964. font-size:12px;
  3965. }
  3966. #u207275 {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:241px;
  3970. top:396px;
  3971. width:25px;
  3972. height:17px;
  3973. display:flex;
  3974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3975. font-weight:400;
  3976. font-style:normal;
  3977. font-size:12px;
  3978. }
  3979. #u207275 .text {
  3980. position:absolute;
  3981. align-self:flex-start;
  3982. padding:0px 0px 0px 0px;
  3983. box-sizing:border-box;
  3984. width:100%;
  3985. }
  3986. #u207275_text {
  3987. border-width:0px;
  3988. white-space:nowrap;
  3989. text-transform:none;
  3990. }
  3991. #u207276 {
  3992. border-width:0px;
  3993. position:absolute;
  3994. left:0px;
  3995. top:0px;
  3996. width:0px;
  3997. height:0px;
  3998. }
  3999. #u207277_div {
  4000. border-width:0px;
  4001. position:absolute;
  4002. left:0px;
  4003. top:0px;
  4004. width:30px;
  4005. height:30px;
  4006. background:inherit;
  4007. background-color:rgba(255, 255, 255, 1);
  4008. box-sizing:border-box;
  4009. border-width:1px;
  4010. border-style:solid;
  4011. border-color:rgba(121, 121, 121, 1);
  4012. border-radius:4px;
  4013. -moz-box-shadow:none;
  4014. -webkit-box-shadow:none;
  4015. box-shadow:none;
  4016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4017. font-weight:400;
  4018. font-style:normal;
  4019. font-size:8px;
  4020. }
  4021. #u207277 {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:327px;
  4025. top:361px;
  4026. width:30px;
  4027. height:30px;
  4028. display:flex;
  4029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4030. font-weight:400;
  4031. font-style:normal;
  4032. font-size:8px;
  4033. }
  4034. #u207277 .text {
  4035. position:absolute;
  4036. align-self:center;
  4037. padding:2px 2px 2px 2px;
  4038. box-sizing:border-box;
  4039. width:100%;
  4040. }
  4041. #u207277_text {
  4042. border-width:0px;
  4043. word-wrap:break-word;
  4044. text-transform:none;
  4045. }
  4046. #u207278_div {
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:0px;
  4050. top:0px;
  4051. width:25px;
  4052. height:17px;
  4053. background:inherit;
  4054. background-color:rgba(255, 255, 255, 0);
  4055. border:none;
  4056. border-radius:0px;
  4057. -moz-box-shadow:none;
  4058. -webkit-box-shadow:none;
  4059. box-shadow:none;
  4060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4061. font-weight:400;
  4062. font-style:normal;
  4063. font-size:12px;
  4064. }
  4065. #u207278 {
  4066. border-width:0px;
  4067. position:absolute;
  4068. left:330px;
  4069. top:396px;
  4070. width:25px;
  4071. height:17px;
  4072. display:flex;
  4073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4074. font-weight:400;
  4075. font-style:normal;
  4076. font-size:12px;
  4077. }
  4078. #u207278 .text {
  4079. position:absolute;
  4080. align-self:flex-start;
  4081. padding:0px 0px 0px 0px;
  4082. box-sizing:border-box;
  4083. width:100%;
  4084. }
  4085. #u207278_text {
  4086. border-width:0px;
  4087. white-space:nowrap;
  4088. text-transform:none;
  4089. }
  4090. #u207279 {
  4091. border-width:0px;
  4092. position:absolute;
  4093. left:0px;
  4094. top:0px;
  4095. width:0px;
  4096. height:0px;
  4097. }
  4098. #u207280_div {
  4099. border-width:0px;
  4100. position:absolute;
  4101. left:0px;
  4102. top:0px;
  4103. width:375px;
  4104. height:50px;
  4105. background:inherit;
  4106. background-color:rgba(255, 255, 255, 1);
  4107. box-sizing:border-box;
  4108. border-width:1px;
  4109. border-style:solid;
  4110. border-color:rgba(242, 242, 242, 1);
  4111. border-radius:26px;
  4112. border-top-left-radius:0px;
  4113. border-top-right-radius:0px;
  4114. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4115. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4116. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4117. }
  4118. #u207280 {
  4119. border-width:0px;
  4120. position:absolute;
  4121. left:29px;
  4122. top:827px;
  4123. width:375px;
  4124. height:50px;
  4125. display:flex;
  4126. }
  4127. #u207280 .text {
  4128. position:absolute;
  4129. align-self:center;
  4130. padding:2px 2px 2px 2px;
  4131. box-sizing:border-box;
  4132. width:100%;
  4133. }
  4134. #u207280_text {
  4135. border-width:0px;
  4136. word-wrap:break-word;
  4137. text-transform:none;
  4138. visibility:hidden;
  4139. }
  4140. #u207281 {
  4141. border-width:0px;
  4142. position:absolute;
  4143. left:0px;
  4144. top:0px;
  4145. width:0px;
  4146. height:0px;
  4147. }
  4148. #u207282_div {
  4149. border-width:0px;
  4150. position:absolute;
  4151. left:0px;
  4152. top:0px;
  4153. width:77px;
  4154. height:50px;
  4155. background:inherit;
  4156. background-color:rgba(255, 255, 255, 1);
  4157. border:none;
  4158. border-radius:0px;
  4159. border-top-left-radius:0px;
  4160. border-top-right-radius:0px;
  4161. -moz-box-shadow:none;
  4162. -webkit-box-shadow:none;
  4163. box-shadow:none;
  4164. }
  4165. #u207282 {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:178px;
  4169. top:827px;
  4170. width:77px;
  4171. height:50px;
  4172. display:flex;
  4173. }
  4174. #u207282 .text {
  4175. position:absolute;
  4176. align-self:center;
  4177. padding:2px 2px 2px 2px;
  4178. box-sizing:border-box;
  4179. width:100%;
  4180. }
  4181. #u207282_text {
  4182. border-width:0px;
  4183. word-wrap:break-word;
  4184. text-transform:none;
  4185. visibility:hidden;
  4186. }
  4187. #u207283 {
  4188. border-width:0px;
  4189. position:absolute;
  4190. left:0px;
  4191. top:0px;
  4192. width:0px;
  4193. height:0px;
  4194. }
  4195. #u207284_img {
  4196. border-width:0px;
  4197. position:absolute;
  4198. left:0px;
  4199. top:0px;
  4200. width:38px;
  4201. height:38px;
  4202. }
  4203. #u207284 {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:198px;
  4207. top:817px;
  4208. width:38px;
  4209. height:38px;
  4210. display:flex;
  4211. font-size:12px;
  4212. color:#FFFFFF;
  4213. }
  4214. #u207284 .text {
  4215. position:absolute;
  4216. align-self:center;
  4217. padding:2px 2px 2px 2px;
  4218. box-sizing:border-box;
  4219. width:100%;
  4220. }
  4221. #u207284_text {
  4222. border-width:0px;
  4223. word-wrap:break-word;
  4224. text-transform:none;
  4225. }
  4226. #u207285_div {
  4227. border-width:0px;
  4228. position:absolute;
  4229. left:0px;
  4230. top:0px;
  4231. width:49px;
  4232. height:17px;
  4233. background:inherit;
  4234. background-color:rgba(255, 255, 255, 0);
  4235. border:none;
  4236. border-radius:0px;
  4237. -moz-box-shadow:none;
  4238. -webkit-box-shadow:none;
  4239. box-shadow:none;
  4240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4241. font-weight:400;
  4242. font-style:normal;
  4243. font-size:12px;
  4244. }
  4245. #u207285 {
  4246. border-width:0px;
  4247. position:absolute;
  4248. left:192px;
  4249. top:856px;
  4250. width:49px;
  4251. height:17px;
  4252. display:flex;
  4253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4254. font-weight:400;
  4255. font-style:normal;
  4256. font-size:12px;
  4257. }
  4258. #u207285 .text {
  4259. position:absolute;
  4260. align-self:flex-start;
  4261. padding:0px 0px 0px 0px;
  4262. box-sizing:border-box;
  4263. width:100%;
  4264. }
  4265. #u207285_text {
  4266. border-width:0px;
  4267. white-space:nowrap;
  4268. text-transform:none;
  4269. }
  4270. #u207286 {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:0px;
  4274. top:0px;
  4275. width:0px;
  4276. height:0px;
  4277. }
  4278. #u207287_div {
  4279. border-width:0px;
  4280. position:absolute;
  4281. left:0px;
  4282. top:0px;
  4283. width:75px;
  4284. height:50px;
  4285. background:inherit;
  4286. background-color:rgba(255, 255, 255, 1);
  4287. border:none;
  4288. border-right:0px;
  4289. border-radius:26px;
  4290. border-top-left-radius:0px;
  4291. border-top-right-radius:0px;
  4292. border-bottom-right-radius:0px;
  4293. -moz-box-shadow:none;
  4294. -webkit-box-shadow:none;
  4295. box-shadow:none;
  4296. }
  4297. #u207287 {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:29px;
  4301. top:827px;
  4302. width:75px;
  4303. height:50px;
  4304. display:flex;
  4305. }
  4306. #u207287 .text {
  4307. position:absolute;
  4308. align-self:center;
  4309. padding:2px 2px 2px 2px;
  4310. box-sizing:border-box;
  4311. width:100%;
  4312. }
  4313. #u207287_text {
  4314. border-width:0px;
  4315. word-wrap:break-word;
  4316. text-transform:none;
  4317. visibility:hidden;
  4318. }
  4319. #u207288 {
  4320. border-width:0px;
  4321. position:absolute;
  4322. left:0px;
  4323. top:0px;
  4324. width:0px;
  4325. height:0px;
  4326. }
  4327. #u207289_img {
  4328. border-width:0px;
  4329. position:absolute;
  4330. left:0px;
  4331. top:0px;
  4332. width:24px;
  4333. height:24px;
  4334. }
  4335. #u207289 {
  4336. border-width:0px;
  4337. position:absolute;
  4338. left:54px;
  4339. top:831px;
  4340. width:24px;
  4341. height:24px;
  4342. display:flex;
  4343. font-size:8px;
  4344. }
  4345. #u207289 .text {
  4346. position:absolute;
  4347. align-self:center;
  4348. padding:2px 2px 2px 2px;
  4349. box-sizing:border-box;
  4350. width:100%;
  4351. }
  4352. #u207289_text {
  4353. border-width:0px;
  4354. word-wrap:break-word;
  4355. text-transform:none;
  4356. }
  4357. #u207290_div {
  4358. border-width:0px;
  4359. position:absolute;
  4360. left:0px;
  4361. top:0px;
  4362. width:25px;
  4363. height:17px;
  4364. background:inherit;
  4365. background-color:rgba(255, 255, 255, 0);
  4366. border:none;
  4367. border-radius:0px;
  4368. -moz-box-shadow:none;
  4369. -webkit-box-shadow:none;
  4370. box-shadow:none;
  4371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4372. font-weight:400;
  4373. font-style:normal;
  4374. font-size:12px;
  4375. }
  4376. #u207290 {
  4377. border-width:0px;
  4378. position:absolute;
  4379. left:54px;
  4380. top:856px;
  4381. width:25px;
  4382. height:17px;
  4383. display:flex;
  4384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4385. font-weight:400;
  4386. font-style:normal;
  4387. font-size:12px;
  4388. }
  4389. #u207290 .text {
  4390. position:absolute;
  4391. align-self:flex-start;
  4392. padding:0px 0px 0px 0px;
  4393. box-sizing:border-box;
  4394. width:100%;
  4395. }
  4396. #u207290_text {
  4397. border-width:0px;
  4398. white-space:nowrap;
  4399. text-transform:none;
  4400. }
  4401. #u207291 {
  4402. border-width:0px;
  4403. position:absolute;
  4404. left:0px;
  4405. top:0px;
  4406. width:0px;
  4407. height:0px;
  4408. }
  4409. #u207292_div {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:0px;
  4413. top:0px;
  4414. width:75px;
  4415. height:50px;
  4416. background:inherit;
  4417. background-color:rgba(24, 144, 255, 1);
  4418. border:none;
  4419. border-left:0px;
  4420. border-radius:26px;
  4421. border-top-left-radius:0px;
  4422. border-top-right-radius:0px;
  4423. border-bottom-left-radius:0px;
  4424. -moz-box-shadow:none;
  4425. -webkit-box-shadow:none;
  4426. box-shadow:none;
  4427. }
  4428. #u207292 {
  4429. border-width:0px;
  4430. position:absolute;
  4431. left:329px;
  4432. top:827px;
  4433. width:75px;
  4434. height:50px;
  4435. display:flex;
  4436. }
  4437. #u207292 .text {
  4438. position:absolute;
  4439. align-self:center;
  4440. padding:2px 2px 2px 2px;
  4441. box-sizing:border-box;
  4442. width:100%;
  4443. }
  4444. #u207292_text {
  4445. border-width:0px;
  4446. word-wrap:break-word;
  4447. text-transform:none;
  4448. visibility:hidden;
  4449. }
  4450. #u207293 {
  4451. border-width:0px;
  4452. position:absolute;
  4453. left:0px;
  4454. top:0px;
  4455. width:0px;
  4456. height:0px;
  4457. }
  4458. #u207294_img {
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:0px;
  4462. top:0px;
  4463. width:24px;
  4464. height:24px;
  4465. }
  4466. #u207294 {
  4467. border-width:0px;
  4468. position:absolute;
  4469. left:354px;
  4470. top:833px;
  4471. width:24px;
  4472. height:24px;
  4473. display:flex;
  4474. font-size:8px;
  4475. }
  4476. #u207294 .text {
  4477. position:absolute;
  4478. align-self:center;
  4479. padding:2px 2px 2px 2px;
  4480. box-sizing:border-box;
  4481. width:100%;
  4482. }
  4483. #u207294_text {
  4484. border-width:0px;
  4485. word-wrap:break-word;
  4486. text-transform:none;
  4487. }
  4488. #u207295_div {
  4489. border-width:0px;
  4490. position:absolute;
  4491. left:0px;
  4492. top:0px;
  4493. width:25px;
  4494. height:17px;
  4495. background:inherit;
  4496. background-color:rgba(255, 255, 255, 0);
  4497. border:none;
  4498. border-radius:0px;
  4499. -moz-box-shadow:none;
  4500. -webkit-box-shadow:none;
  4501. box-shadow:none;
  4502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4503. font-weight:400;
  4504. font-style:normal;
  4505. font-size:12px;
  4506. color:#FFFFFF;
  4507. }
  4508. #u207295 {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:354px;
  4512. top:858px;
  4513. width:25px;
  4514. height:17px;
  4515. display:flex;
  4516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4517. font-weight:400;
  4518. font-style:normal;
  4519. font-size:12px;
  4520. color:#FFFFFF;
  4521. }
  4522. #u207295 .text {
  4523. position:absolute;
  4524. align-self:flex-start;
  4525. padding:0px 0px 0px 0px;
  4526. box-sizing:border-box;
  4527. width:100%;
  4528. }
  4529. #u207295_text {
  4530. border-width:0px;
  4531. white-space:nowrap;
  4532. text-transform:none;
  4533. }
  4534. #u207296 {
  4535. border-width:0px;
  4536. position:absolute;
  4537. left:0px;
  4538. top:0px;
  4539. width:0px;
  4540. height:0px;
  4541. }
  4542. #u207297_div {
  4543. border-width:0px;
  4544. position:absolute;
  4545. left:0px;
  4546. top:0px;
  4547. width:75px;
  4548. height:50px;
  4549. background:inherit;
  4550. background-color:rgba(255, 255, 255, 1);
  4551. border:none;
  4552. border-radius:0px;
  4553. border-top-left-radius:0px;
  4554. border-top-right-radius:0px;
  4555. -moz-box-shadow:none;
  4556. -webkit-box-shadow:none;
  4557. box-shadow:none;
  4558. }
  4559. #u207297 {
  4560. border-width:0px;
  4561. position:absolute;
  4562. left:254px;
  4563. top:827px;
  4564. width:75px;
  4565. height:50px;
  4566. display:flex;
  4567. }
  4568. #u207297 .text {
  4569. position:absolute;
  4570. align-self:center;
  4571. padding:2px 2px 2px 2px;
  4572. box-sizing:border-box;
  4573. width:100%;
  4574. }
  4575. #u207297_text {
  4576. border-width:0px;
  4577. word-wrap:break-word;
  4578. text-transform:none;
  4579. visibility:hidden;
  4580. }
  4581. #u207298 {
  4582. border-width:0px;
  4583. position:absolute;
  4584. left:0px;
  4585. top:0px;
  4586. width:0px;
  4587. height:0px;
  4588. }
  4589. #u207299_img {
  4590. border-width:0px;
  4591. position:absolute;
  4592. left:0px;
  4593. top:0px;
  4594. width:24px;
  4595. height:24px;
  4596. }
  4597. #u207299 {
  4598. border-width:0px;
  4599. position:absolute;
  4600. left:279px;
  4601. top:831px;
  4602. width:24px;
  4603. height:24px;
  4604. display:flex;
  4605. font-size:8px;
  4606. }
  4607. #u207299 .text {
  4608. position:absolute;
  4609. align-self:center;
  4610. padding:2px 2px 2px 2px;
  4611. box-sizing:border-box;
  4612. width:100%;
  4613. }
  4614. #u207299_text {
  4615. border-width:0px;
  4616. word-wrap:break-word;
  4617. text-transform:none;
  4618. }
  4619. #u207300_div {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:0px;
  4623. top:0px;
  4624. width:25px;
  4625. height:17px;
  4626. background:inherit;
  4627. background-color:rgba(255, 255, 255, 0);
  4628. border:none;
  4629. border-radius:0px;
  4630. -moz-box-shadow:none;
  4631. -webkit-box-shadow:none;
  4632. box-shadow:none;
  4633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4634. font-weight:400;
  4635. font-style:normal;
  4636. font-size:12px;
  4637. }
  4638. #u207300 {
  4639. border-width:0px;
  4640. position:absolute;
  4641. left:279px;
  4642. top:856px;
  4643. width:25px;
  4644. height:17px;
  4645. display:flex;
  4646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4647. font-weight:400;
  4648. font-style:normal;
  4649. font-size:12px;
  4650. }
  4651. #u207300 .text {
  4652. position:absolute;
  4653. align-self:flex-start;
  4654. padding:0px 0px 0px 0px;
  4655. box-sizing:border-box;
  4656. width:100%;
  4657. }
  4658. #u207300_text {
  4659. border-width:0px;
  4660. white-space:nowrap;
  4661. text-transform:none;
  4662. }
  4663. #u207301 {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:0px;
  4667. top:0px;
  4668. width:0px;
  4669. height:0px;
  4670. }
  4671. #u207302_div {
  4672. border-width:0px;
  4673. position:absolute;
  4674. left:0px;
  4675. top:0px;
  4676. width:75px;
  4677. height:50px;
  4678. background:inherit;
  4679. background-color:rgba(255, 255, 255, 1);
  4680. border:none;
  4681. border-radius:0px;
  4682. border-top-left-radius:0px;
  4683. border-top-right-radius:0px;
  4684. -moz-box-shadow:none;
  4685. -webkit-box-shadow:none;
  4686. box-shadow:none;
  4687. }
  4688. #u207302 {
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:104px;
  4692. top:827px;
  4693. width:75px;
  4694. height:50px;
  4695. display:flex;
  4696. }
  4697. #u207302 .text {
  4698. position:absolute;
  4699. align-self:center;
  4700. padding:2px 2px 2px 2px;
  4701. box-sizing:border-box;
  4702. width:100%;
  4703. }
  4704. #u207302_text {
  4705. border-width:0px;
  4706. word-wrap:break-word;
  4707. text-transform:none;
  4708. visibility:hidden;
  4709. }
  4710. #u207303 {
  4711. border-width:0px;
  4712. position:absolute;
  4713. left:0px;
  4714. top:0px;
  4715. width:0px;
  4716. height:0px;
  4717. }
  4718. #u207304_img {
  4719. border-width:0px;
  4720. position:absolute;
  4721. left:0px;
  4722. top:0px;
  4723. width:24px;
  4724. height:24px;
  4725. }
  4726. #u207304 {
  4727. border-width:0px;
  4728. position:absolute;
  4729. left:129px;
  4730. top:831px;
  4731. width:24px;
  4732. height:24px;
  4733. display:flex;
  4734. font-size:8px;
  4735. }
  4736. #u207304 .text {
  4737. position:absolute;
  4738. align-self:center;
  4739. padding:2px 2px 2px 2px;
  4740. box-sizing:border-box;
  4741. width:100%;
  4742. }
  4743. #u207304_text {
  4744. border-width:0px;
  4745. word-wrap:break-word;
  4746. text-transform:none;
  4747. }
  4748. #u207305_div {
  4749. border-width:0px;
  4750. position:absolute;
  4751. left:0px;
  4752. top:0px;
  4753. width:37px;
  4754. height:17px;
  4755. background:inherit;
  4756. background-color:rgba(255, 255, 255, 0);
  4757. border:none;
  4758. border-radius:0px;
  4759. -moz-box-shadow:none;
  4760. -webkit-box-shadow:none;
  4761. box-shadow:none;
  4762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4763. font-weight:400;
  4764. font-style:normal;
  4765. font-size:12px;
  4766. }
  4767. #u207305 {
  4768. border-width:0px;
  4769. position:absolute;
  4770. left:123px;
  4771. top:856px;
  4772. width:37px;
  4773. height:17px;
  4774. display:flex;
  4775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4776. font-weight:400;
  4777. font-style:normal;
  4778. font-size:12px;
  4779. }
  4780. #u207305 .text {
  4781. position:absolute;
  4782. align-self:flex-start;
  4783. padding:0px 0px 0px 0px;
  4784. box-sizing:border-box;
  4785. width:100%;
  4786. }
  4787. #u207305_text {
  4788. border-width:0px;
  4789. white-space:nowrap;
  4790. text-transform:none;
  4791. }