styles.css 83 KB

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