styles.css 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:-44px;
  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. #u227043_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u227043 {
  28. border-width:0px;
  29. position:absolute;
  30. left:-944px;
  31. top:-25px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u227043 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u227043_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u227044_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. box-sizing:border-box;
  59. border-width:1px;
  60. border-style:solid;
  61. border-color:rgba(215, 215, 215, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. }
  72. #u227044 {
  73. border-width:0px;
  74. position:absolute;
  75. left:-915px;
  76. top:42px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u227044 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u227044_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u227045 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u227046_div {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:88px;
  108. height:32px;
  109. background:inherit;
  110. background-color:rgba(255, 255, 255, 1);
  111. box-sizing:border-box;
  112. border-width:1px;
  113. border-style:solid;
  114. border-color:rgba(242, 242, 242, 1);
  115. border-radius:33px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. }
  120. #u227046 {
  121. border-width:0px;
  122. position:absolute;
  123. left:-635px;
  124. top:46px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u227046 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u227046_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u227047 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u227048_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u227048 {
  159. border-width:0px;
  160. position:absolute;
  161. left:-572px;
  162. top:53px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u227048 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u227048_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u227049_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u227049 {
  189. border-width:0px;
  190. position:absolute;
  191. left:-566px;
  192. top:59px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u227049 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u227049_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u227050 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u227051_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u227051 {
  227. border-width:0px;
  228. position:absolute;
  229. left:-621px;
  230. top:60px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u227051 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u227051_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u227052_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u227052 {
  257. border-width:0px;
  258. position:absolute;
  259. left:-605px;
  260. top:60px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u227052 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u227052_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u227053_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u227053 {
  287. border-width:0px;
  288. position:absolute;
  289. left:-614px;
  290. top:59px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u227053 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u227053_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u227054_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u227054 {
  317. border-width:0px;
  318. position:absolute;
  319. left:-597px;
  320. top:62px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u227054 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u227054_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u227055_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u227055 {
  351. border-width:0px;
  352. position:absolute;
  353. left:-915px;
  354. top:-1px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u227055 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u227055_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u227056_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:50px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 1);
  381. box-sizing:border-box;
  382. border-width:1px;
  383. border-style:solid;
  384. border-color:rgba(242, 242, 242, 1);
  385. border-radius:26px;
  386. border-top-left-radius:0px;
  387. border-top-right-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. }
  392. #u227056 {
  393. border-width:0px;
  394. position:absolute;
  395. left:-915px;
  396. top:763px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u227056 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u227056_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u227057 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u227058_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u227058 {
  431. border-width:0px;
  432. position:absolute;
  433. left:-875px;
  434. top:767px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u227058 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u227058_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u227059_div {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:25px;
  458. height:17px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:12px;
  470. }
  471. #u227059 {
  472. border-width:0px;
  473. position:absolute;
  474. left:-875px;
  475. top:792px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u227059 .text {
  485. position:absolute;
  486. align-self:flex-start;
  487. padding:0px 0px 0px 0px;
  488. box-sizing:border-box;
  489. width:100%;
  490. }
  491. #u227059_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u227060 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u227061_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u227061 {
  513. border-width:0px;
  514. position:absolute;
  515. left:-605px;
  516. top:769px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u227061 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u227061_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u227062_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:25px;
  540. height:17px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:12px;
  552. }
  553. #u227062 {
  554. border-width:0px;
  555. position:absolute;
  556. left:-605px;
  557. top:794px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u227062 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 0px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u227062_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u227063_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:375px;
  584. height:681px;
  585. background:inherit;
  586. background-color:rgba(242, 242, 242, 0.462745098039216);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u227063 {
  594. border-width:0px;
  595. position:absolute;
  596. left:-915px;
  597. top:82px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u227063 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u227063_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u227064 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u227065_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u227065 {
  632. border-width:0px;
  633. position:absolute;
  634. left:-693px;
  635. top:767px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u227065 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u227065_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u227066_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:37px;
  659. height:17px;
  660. background:inherit;
  661. background-color:rgba(255, 255, 255, 0);
  662. border:none;
  663. border-radius:0px;
  664. -moz-box-shadow:none;
  665. -webkit-box-shadow:none;
  666. box-shadow:none;
  667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:12px;
  671. }
  672. #u227066 {
  673. border-width:0px;
  674. position:absolute;
  675. left:-699px;
  676. top:792px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u227066 .text {
  686. position:absolute;
  687. align-self:flex-start;
  688. padding:0px 0px 0px 0px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u227066_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u227067 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u227068_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u227068 {
  714. border-width:0px;
  715. position:absolute;
  716. left:-787px;
  717. top:767px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u227068 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u227068_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u227069_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:37px;
  741. height:17px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. }
  754. #u227069 {
  755. border-width:0px;
  756. position:absolute;
  757. left:-793px;
  758. top:792px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u227069 .text {
  768. position:absolute;
  769. align-self:flex-start;
  770. padding:0px 0px 0px 0px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u227069_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u227070_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:735px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. border:none;
  789. border-top:0px;
  790. border-radius:25px;
  791. border-top-left-radius:0px;
  792. border-top-right-radius:0px;
  793. -moz-box-shadow:none;
  794. -webkit-box-shadow:none;
  795. box-shadow:none;
  796. }
  797. #u227070 {
  798. border-width:0px;
  799. position:absolute;
  800. left:-915px;
  801. top:80px;
  802. width:375px;
  803. height:735px;
  804. display:flex;
  805. }
  806. #u227070 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u227070_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u227071_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:145px;
  825. height:30px;
  826. background:inherit;
  827. background-color:rgba(255, 255, 255, 0);
  828. border:none;
  829. border-left:0px;
  830. border-top:0px;
  831. border-right:0px;
  832. border-radius:0px;
  833. border-bottom-right-radius:0px;
  834. border-bottom-left-radius:0px;
  835. -moz-box-shadow:none;
  836. -webkit-box-shadow:none;
  837. box-shadow:none;
  838. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  839. font-weight:500;
  840. font-style:normal;
  841. line-height:30px;
  842. }
  843. #u227071 {
  844. border-width:0px;
  845. position:absolute;
  846. left:-893px;
  847. top:100px;
  848. width:145px;
  849. height:30px;
  850. display:flex;
  851. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  852. font-weight:500;
  853. font-style:normal;
  854. line-height:30px;
  855. }
  856. #u227071 .text {
  857. position:absolute;
  858. align-self:flex-start;
  859. padding:0px 0px 0px 0px;
  860. box-sizing:border-box;
  861. width:100%;
  862. }
  863. #u227071_text {
  864. border-width:0px;
  865. white-space:nowrap;
  866. text-transform:none;
  867. }
  868. #u227072_img {
  869. border-width:0px;
  870. position:absolute;
  871. left:0px;
  872. top:0px;
  873. width:11px;
  874. height:18px;
  875. }
  876. #u227072 {
  877. border-width:0px;
  878. position:absolute;
  879. left:-902px;
  880. top:54px;
  881. width:11px;
  882. height:18px;
  883. display:flex;
  884. }
  885. #u227072 .text {
  886. position:absolute;
  887. align-self:center;
  888. padding:2px 2px 2px 2px;
  889. box-sizing:border-box;
  890. width:100%;
  891. }
  892. #u227072_text {
  893. border-width:0px;
  894. word-wrap:break-word;
  895. text-transform:none;
  896. visibility:hidden;
  897. }
  898. #u227073 {
  899. border-width:0px;
  900. position:absolute;
  901. left:0px;
  902. top:0px;
  903. width:0px;
  904. height:0px;
  905. }
  906. #u227074_div {
  907. border-width:0px;
  908. position:absolute;
  909. left:0px;
  910. top:0px;
  911. width:353px;
  912. height:80px;
  913. background:inherit;
  914. background-color:rgba(255, 255, 255, 1);
  915. box-sizing:border-box;
  916. border-width:1px;
  917. border-style:solid;
  918. border-color:rgba(242, 242, 242, 1);
  919. border-radius:4px;
  920. -moz-box-shadow:none;
  921. -webkit-box-shadow:none;
  922. box-shadow:none;
  923. }
  924. #u227074 {
  925. border-width:0px;
  926. position:absolute;
  927. left:-903px;
  928. top:236px;
  929. width:353px;
  930. height:80px;
  931. display:flex;
  932. }
  933. #u227074 .text {
  934. position:absolute;
  935. align-self:center;
  936. padding:2px 2px 2px 2px;
  937. box-sizing:border-box;
  938. width:100%;
  939. }
  940. #u227074_text {
  941. border-width:0px;
  942. word-wrap:break-word;
  943. text-transform:none;
  944. visibility:hidden;
  945. }
  946. #u227075 {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:0px;
  952. height:0px;
  953. }
  954. #u227076_div {
  955. border-width:0px;
  956. position:absolute;
  957. left:0px;
  958. top:0px;
  959. width:73px;
  960. height:30px;
  961. background:inherit;
  962. background-color:rgba(255, 255, 255, 0);
  963. border:none;
  964. border-left:0px;
  965. border-top:0px;
  966. border-right:0px;
  967. border-radius:0px;
  968. border-bottom-right-radius:0px;
  969. border-bottom-left-radius:0px;
  970. -moz-box-shadow:none;
  971. -webkit-box-shadow:none;
  972. box-shadow:none;
  973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  974. font-weight:400;
  975. font-style:normal;
  976. font-size:18px;
  977. line-height:30px;
  978. }
  979. #u227076 {
  980. border-width:0px;
  981. position:absolute;
  982. left:-831px;
  983. top:250px;
  984. width:73px;
  985. height:30px;
  986. display:flex;
  987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  988. font-weight:400;
  989. font-style:normal;
  990. font-size:18px;
  991. line-height:30px;
  992. }
  993. #u227076 .text {
  994. position:absolute;
  995. align-self:flex-start;
  996. padding:0px 0px 0px 0px;
  997. box-sizing:border-box;
  998. width:100%;
  999. }
  1000. #u227076_text {
  1001. border-width:0px;
  1002. white-space:nowrap;
  1003. text-transform:none;
  1004. }
  1005. #u227077_div {
  1006. border-width:0px;
  1007. position:absolute;
  1008. left:0px;
  1009. top:0px;
  1010. width:265px;
  1011. height:17px;
  1012. background:inherit;
  1013. background-color:rgba(255, 255, 255, 0);
  1014. border:none;
  1015. border-left:0px;
  1016. border-top:0px;
  1017. border-right:0px;
  1018. border-radius:0px;
  1019. border-bottom-right-radius:0px;
  1020. border-bottom-left-radius:0px;
  1021. -moz-box-shadow:none;
  1022. -webkit-box-shadow:none;
  1023. box-shadow:none;
  1024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1025. font-weight:400;
  1026. font-style:normal;
  1027. font-size:12px;
  1028. color:#AAAAAA;
  1029. }
  1030. #u227077 {
  1031. border-width:0px;
  1032. position:absolute;
  1033. left:-830px;
  1034. top:285px;
  1035. width:265px;
  1036. height:17px;
  1037. display:flex;
  1038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1039. font-weight:400;
  1040. font-style:normal;
  1041. font-size:12px;
  1042. color:#AAAAAA;
  1043. }
  1044. #u227077 .text {
  1045. position:absolute;
  1046. align-self:flex-start;
  1047. padding:0px 0px 0px 0px;
  1048. box-sizing:border-box;
  1049. width:100%;
  1050. }
  1051. #u227077_text {
  1052. border-width:0px;
  1053. white-space:nowrap;
  1054. text-transform:none;
  1055. }
  1056. #u227078_img {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:0px;
  1060. top:0px;
  1061. width:41px;
  1062. height:41px;
  1063. }
  1064. #u227078 {
  1065. border-width:0px;
  1066. position:absolute;
  1067. left:-883px;
  1068. top:253px;
  1069. width:41px;
  1070. height:41px;
  1071. display:flex;
  1072. }
  1073. #u227078 .text {
  1074. position:absolute;
  1075. align-self:center;
  1076. padding:2px 2px 2px 2px;
  1077. box-sizing:border-box;
  1078. width:100%;
  1079. }
  1080. #u227078_text {
  1081. border-width:0px;
  1082. word-wrap:break-word;
  1083. text-transform:none;
  1084. }
  1085. #u227079 {
  1086. border-width:0px;
  1087. position:absolute;
  1088. left:0px;
  1089. top:0px;
  1090. width:0px;
  1091. height:0px;
  1092. }
  1093. #u227080_div {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:353px;
  1099. height:80px;
  1100. background:inherit;
  1101. background-color:rgba(255, 255, 255, 1);
  1102. box-sizing:border-box;
  1103. border-width:1px;
  1104. border-style:solid;
  1105. border-color:rgba(242, 242, 242, 1);
  1106. border-radius:4px;
  1107. -moz-box-shadow:none;
  1108. -webkit-box-shadow:none;
  1109. box-shadow:none;
  1110. }
  1111. #u227080 {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:-903px;
  1115. top:326px;
  1116. width:353px;
  1117. height:80px;
  1118. display:flex;
  1119. }
  1120. #u227080 .text {
  1121. position:absolute;
  1122. align-self:center;
  1123. padding:2px 2px 2px 2px;
  1124. box-sizing:border-box;
  1125. width:100%;
  1126. }
  1127. #u227080_text {
  1128. border-width:0px;
  1129. word-wrap:break-word;
  1130. text-transform:none;
  1131. visibility:hidden;
  1132. }
  1133. #u227081 {
  1134. border-width:0px;
  1135. position:absolute;
  1136. left:0px;
  1137. top:0px;
  1138. width:0px;
  1139. height:0px;
  1140. }
  1141. #u227082_div {
  1142. border-width:0px;
  1143. position:absolute;
  1144. left:0px;
  1145. top:0px;
  1146. width:73px;
  1147. height:30px;
  1148. background:inherit;
  1149. background-color:rgba(255, 255, 255, 0);
  1150. border:none;
  1151. border-left:0px;
  1152. border-top:0px;
  1153. border-right:0px;
  1154. border-radius:0px;
  1155. border-bottom-right-radius:0px;
  1156. border-bottom-left-radius:0px;
  1157. -moz-box-shadow:none;
  1158. -webkit-box-shadow:none;
  1159. box-shadow:none;
  1160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1161. font-weight:400;
  1162. font-style:normal;
  1163. font-size:18px;
  1164. line-height:30px;
  1165. }
  1166. #u227082 {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:-831px;
  1170. top:340px;
  1171. width:73px;
  1172. height:30px;
  1173. display:flex;
  1174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1175. font-weight:400;
  1176. font-style:normal;
  1177. font-size:18px;
  1178. line-height:30px;
  1179. }
  1180. #u227082 .text {
  1181. position:absolute;
  1182. align-self:flex-start;
  1183. padding:0px 0px 0px 0px;
  1184. box-sizing:border-box;
  1185. width:100%;
  1186. }
  1187. #u227082_text {
  1188. border-width:0px;
  1189. white-space:nowrap;
  1190. text-transform:none;
  1191. }
  1192. #u227083_div {
  1193. border-width:0px;
  1194. position:absolute;
  1195. left:0px;
  1196. top:0px;
  1197. width:145px;
  1198. height:17px;
  1199. background:inherit;
  1200. background-color:rgba(255, 255, 255, 0);
  1201. border:none;
  1202. border-left:0px;
  1203. border-top:0px;
  1204. border-right:0px;
  1205. border-radius:0px;
  1206. border-bottom-right-radius:0px;
  1207. border-bottom-left-radius:0px;
  1208. -moz-box-shadow:none;
  1209. -webkit-box-shadow:none;
  1210. box-shadow:none;
  1211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1212. font-weight:400;
  1213. font-style:normal;
  1214. font-size:12px;
  1215. color:#AAAAAA;
  1216. }
  1217. #u227083 {
  1218. border-width:0px;
  1219. position:absolute;
  1220. left:-830px;
  1221. top:375px;
  1222. width:145px;
  1223. height:17px;
  1224. display:flex;
  1225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1226. font-weight:400;
  1227. font-style:normal;
  1228. font-size:12px;
  1229. color:#AAAAAA;
  1230. }
  1231. #u227083 .text {
  1232. position:absolute;
  1233. align-self:flex-start;
  1234. padding:0px 0px 0px 0px;
  1235. box-sizing:border-box;
  1236. width:100%;
  1237. }
  1238. #u227083_text {
  1239. border-width:0px;
  1240. white-space:nowrap;
  1241. text-transform:none;
  1242. }
  1243. #u227084_img {
  1244. border-width:0px;
  1245. position:absolute;
  1246. left:0px;
  1247. top:0px;
  1248. width:41px;
  1249. height:41px;
  1250. }
  1251. #u227084 {
  1252. border-width:0px;
  1253. position:absolute;
  1254. left:-883px;
  1255. top:343px;
  1256. width:41px;
  1257. height:41px;
  1258. display:flex;
  1259. }
  1260. #u227084 .text {
  1261. position:absolute;
  1262. align-self:center;
  1263. padding:2px 2px 2px 2px;
  1264. box-sizing:border-box;
  1265. width:100%;
  1266. }
  1267. #u227084_text {
  1268. border-width:0px;
  1269. word-wrap:break-word;
  1270. text-transform:none;
  1271. }
  1272. #u227085 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:0px;
  1276. top:0px;
  1277. width:0px;
  1278. height:0px;
  1279. }
  1280. #u227086_div {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:353px;
  1286. height:80px;
  1287. background:inherit;
  1288. background-color:rgba(255, 255, 255, 1);
  1289. box-sizing:border-box;
  1290. border-width:1px;
  1291. border-style:solid;
  1292. border-color:rgba(242, 242, 242, 1);
  1293. border-radius:4px;
  1294. -moz-box-shadow:none;
  1295. -webkit-box-shadow:none;
  1296. box-shadow:none;
  1297. }
  1298. #u227086 {
  1299. border-width:0px;
  1300. position:absolute;
  1301. left:-903px;
  1302. top:146px;
  1303. width:353px;
  1304. height:80px;
  1305. display:flex;
  1306. }
  1307. #u227086 .text {
  1308. position:absolute;
  1309. align-self:center;
  1310. padding:2px 2px 2px 2px;
  1311. box-sizing:border-box;
  1312. width:100%;
  1313. }
  1314. #u227086_text {
  1315. border-width:0px;
  1316. word-wrap:break-word;
  1317. text-transform:none;
  1318. visibility:hidden;
  1319. }
  1320. #u227087 {
  1321. border-width:0px;
  1322. position:absolute;
  1323. left:0px;
  1324. top:0px;
  1325. width:0px;
  1326. height:0px;
  1327. }
  1328. #u227088_div {
  1329. border-width:0px;
  1330. position:absolute;
  1331. left:0px;
  1332. top:0px;
  1333. width:73px;
  1334. height:30px;
  1335. background:inherit;
  1336. background-color:rgba(255, 255, 255, 0);
  1337. border:none;
  1338. border-left:0px;
  1339. border-top:0px;
  1340. border-right:0px;
  1341. border-radius:0px;
  1342. border-bottom-right-radius:0px;
  1343. border-bottom-left-radius:0px;
  1344. -moz-box-shadow:none;
  1345. -webkit-box-shadow:none;
  1346. box-shadow:none;
  1347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1348. font-weight:400;
  1349. font-style:normal;
  1350. font-size:18px;
  1351. line-height:30px;
  1352. }
  1353. #u227088 {
  1354. border-width:0px;
  1355. position:absolute;
  1356. left:-831px;
  1357. top:160px;
  1358. width:73px;
  1359. height:30px;
  1360. display:flex;
  1361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1362. font-weight:400;
  1363. font-style:normal;
  1364. font-size:18px;
  1365. line-height:30px;
  1366. }
  1367. #u227088 .text {
  1368. position:absolute;
  1369. align-self:flex-start;
  1370. padding:0px 0px 0px 0px;
  1371. box-sizing:border-box;
  1372. width:100%;
  1373. }
  1374. #u227088_text {
  1375. border-width:0px;
  1376. white-space:nowrap;
  1377. text-transform:none;
  1378. }
  1379. #u227089_div {
  1380. border-width:0px;
  1381. position:absolute;
  1382. left:0px;
  1383. top:0px;
  1384. width:109px;
  1385. height:17px;
  1386. background:inherit;
  1387. background-color:rgba(255, 255, 255, 0);
  1388. border:none;
  1389. border-left:0px;
  1390. border-top:0px;
  1391. border-right:0px;
  1392. border-radius:0px;
  1393. border-bottom-right-radius:0px;
  1394. border-bottom-left-radius:0px;
  1395. -moz-box-shadow:none;
  1396. -webkit-box-shadow:none;
  1397. box-shadow:none;
  1398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1399. font-weight:400;
  1400. font-style:normal;
  1401. font-size:12px;
  1402. color:#AAAAAA;
  1403. }
  1404. #u227089 {
  1405. border-width:0px;
  1406. position:absolute;
  1407. left:-830px;
  1408. top:195px;
  1409. width:109px;
  1410. height:17px;
  1411. display:flex;
  1412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1413. font-weight:400;
  1414. font-style:normal;
  1415. font-size:12px;
  1416. color:#AAAAAA;
  1417. }
  1418. #u227089 .text {
  1419. position:absolute;
  1420. align-self:flex-start;
  1421. padding:0px 0px 0px 0px;
  1422. box-sizing:border-box;
  1423. width:100%;
  1424. }
  1425. #u227089_text {
  1426. border-width:0px;
  1427. white-space:nowrap;
  1428. text-transform:none;
  1429. }
  1430. #u227090_img {
  1431. border-width:0px;
  1432. position:absolute;
  1433. left:0px;
  1434. top:0px;
  1435. width:41px;
  1436. height:41px;
  1437. }
  1438. #u227090 {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:-883px;
  1442. top:163px;
  1443. width:41px;
  1444. height:41px;
  1445. display:flex;
  1446. }
  1447. #u227090 .text {
  1448. position:absolute;
  1449. align-self:center;
  1450. padding:2px 2px 2px 2px;
  1451. box-sizing:border-box;
  1452. width:100%;
  1453. }
  1454. #u227090_text {
  1455. border-width:0px;
  1456. word-wrap:break-word;
  1457. text-transform:none;
  1458. }
  1459. #u227092_img {
  1460. border-width:0px;
  1461. position:absolute;
  1462. left:0px;
  1463. top:0px;
  1464. width:433px;
  1465. height:865px;
  1466. }
  1467. #u227092 {
  1468. border-width:0px;
  1469. position:absolute;
  1470. left:0px;
  1471. top:0px;
  1472. width:433px;
  1473. height:865px;
  1474. display:flex;
  1475. }
  1476. #u227092 .text {
  1477. position:absolute;
  1478. align-self:center;
  1479. padding:2px 2px 2px 2px;
  1480. box-sizing:border-box;
  1481. width:100%;
  1482. }
  1483. #u227092_text {
  1484. border-width:0px;
  1485. word-wrap:break-word;
  1486. text-transform:none;
  1487. visibility:hidden;
  1488. }
  1489. #u227093_div {
  1490. border-width:0px;
  1491. position:absolute;
  1492. left:0px;
  1493. top:0px;
  1494. width:375px;
  1495. height:40px;
  1496. background:inherit;
  1497. background-color:rgba(255, 255, 255, 1);
  1498. box-sizing:border-box;
  1499. border-width:1px;
  1500. border-style:solid;
  1501. border-color:rgba(215, 215, 215, 1);
  1502. border-left:0px;
  1503. border-top:0px;
  1504. border-right:0px;
  1505. border-radius:0px;
  1506. border-bottom-right-radius:0px;
  1507. border-bottom-left-radius:0px;
  1508. -moz-box-shadow:none;
  1509. -webkit-box-shadow:none;
  1510. box-shadow:none;
  1511. }
  1512. #u227093 {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:29px;
  1516. top:67px;
  1517. width:375px;
  1518. height:40px;
  1519. display:flex;
  1520. }
  1521. #u227093 .text {
  1522. position:absolute;
  1523. align-self:center;
  1524. padding:2px 2px 2px 2px;
  1525. box-sizing:border-box;
  1526. width:100%;
  1527. }
  1528. #u227093_text {
  1529. border-width:0px;
  1530. word-wrap:break-word;
  1531. text-transform:none;
  1532. visibility:hidden;
  1533. }
  1534. #u227094 {
  1535. border-width:0px;
  1536. position:absolute;
  1537. left:0px;
  1538. top:0px;
  1539. width:0px;
  1540. height:0px;
  1541. }
  1542. #u227095_div {
  1543. border-width:0px;
  1544. position:absolute;
  1545. left:0px;
  1546. top:0px;
  1547. width:88px;
  1548. height:32px;
  1549. background:inherit;
  1550. background-color:rgba(255, 255, 255, 1);
  1551. box-sizing:border-box;
  1552. border-width:1px;
  1553. border-style:solid;
  1554. border-color:rgba(242, 242, 242, 1);
  1555. border-radius:33px;
  1556. -moz-box-shadow:none;
  1557. -webkit-box-shadow:none;
  1558. box-shadow:none;
  1559. }
  1560. #u227095 {
  1561. border-width:0px;
  1562. position:absolute;
  1563. left:309px;
  1564. top:71px;
  1565. width:88px;
  1566. height:32px;
  1567. display:flex;
  1568. }
  1569. #u227095 .text {
  1570. position:absolute;
  1571. align-self:center;
  1572. padding:2px 2px 2px 2px;
  1573. box-sizing:border-box;
  1574. width:100%;
  1575. }
  1576. #u227095_text {
  1577. border-width:0px;
  1578. word-wrap:break-word;
  1579. text-transform:none;
  1580. visibility:hidden;
  1581. }
  1582. #u227096 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:0px;
  1588. height:0px;
  1589. }
  1590. #u227097_img {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:0px;
  1594. top:0px;
  1595. width:18px;
  1596. height:18px;
  1597. }
  1598. #u227097 {
  1599. border-width:0px;
  1600. position:absolute;
  1601. left:372px;
  1602. top:78px;
  1603. width:18px;
  1604. height:18px;
  1605. display:flex;
  1606. }
  1607. #u227097 .text {
  1608. position:absolute;
  1609. align-self:center;
  1610. padding:2px 2px 2px 2px;
  1611. box-sizing:border-box;
  1612. width:100%;
  1613. }
  1614. #u227097_text {
  1615. border-width:0px;
  1616. word-wrap:break-word;
  1617. text-transform:none;
  1618. visibility:hidden;
  1619. }
  1620. #u227098_img {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:0px;
  1624. top:0px;
  1625. width:6px;
  1626. height:6px;
  1627. }
  1628. #u227098 {
  1629. border-width:0px;
  1630. position:absolute;
  1631. left:378px;
  1632. top:84px;
  1633. width:6px;
  1634. height:6px;
  1635. display:flex;
  1636. }
  1637. #u227098 .text {
  1638. position:absolute;
  1639. align-self:center;
  1640. padding:2px 2px 2px 2px;
  1641. box-sizing:border-box;
  1642. width:100%;
  1643. }
  1644. #u227098_text {
  1645. border-width:0px;
  1646. word-wrap:break-word;
  1647. text-transform:none;
  1648. visibility:hidden;
  1649. }
  1650. #u227099 {
  1651. border-width:0px;
  1652. position:absolute;
  1653. left:0px;
  1654. top:0px;
  1655. width:0px;
  1656. height:0px;
  1657. }
  1658. #u227100_img {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:0px;
  1662. top:0px;
  1663. width:5px;
  1664. height:5px;
  1665. }
  1666. #u227100 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:323px;
  1670. top:85px;
  1671. width:5px;
  1672. height:5px;
  1673. display:flex;
  1674. }
  1675. #u227100 .text {
  1676. position:absolute;
  1677. align-self:center;
  1678. padding:2px 2px 2px 2px;
  1679. box-sizing:border-box;
  1680. width:100%;
  1681. }
  1682. #u227100_text {
  1683. border-width:0px;
  1684. word-wrap:break-word;
  1685. text-transform:none;
  1686. visibility:hidden;
  1687. }
  1688. #u227101_img {
  1689. border-width:0px;
  1690. position:absolute;
  1691. left:0px;
  1692. top:0px;
  1693. width:5px;
  1694. height:5px;
  1695. }
  1696. #u227101 {
  1697. border-width:0px;
  1698. position:absolute;
  1699. left:339px;
  1700. top:85px;
  1701. width:5px;
  1702. height:5px;
  1703. display:flex;
  1704. }
  1705. #u227101 .text {
  1706. position:absolute;
  1707. align-self:center;
  1708. padding:2px 2px 2px 2px;
  1709. box-sizing:border-box;
  1710. width:100%;
  1711. }
  1712. #u227101_text {
  1713. border-width:0px;
  1714. word-wrap:break-word;
  1715. text-transform:none;
  1716. visibility:hidden;
  1717. }
  1718. #u227102_img {
  1719. border-width:0px;
  1720. position:absolute;
  1721. left:0px;
  1722. top:0px;
  1723. width:7px;
  1724. height:7px;
  1725. }
  1726. #u227102 {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:330px;
  1730. top:84px;
  1731. width:7px;
  1732. height:7px;
  1733. display:flex;
  1734. }
  1735. #u227102 .text {
  1736. position:absolute;
  1737. align-self:center;
  1738. padding:2px 2px 2px 2px;
  1739. box-sizing:border-box;
  1740. width:100%;
  1741. }
  1742. #u227102_text {
  1743. border-width:0px;
  1744. word-wrap:break-word;
  1745. text-transform:none;
  1746. visibility:hidden;
  1747. }
  1748. #u227103_img {
  1749. border-width:0px;
  1750. position:absolute;
  1751. left:0px;
  1752. top:0px;
  1753. width:19px;
  1754. height:2px;
  1755. }
  1756. #u227103 {
  1757. border-width:0px;
  1758. position:absolute;
  1759. left:347px;
  1760. top:87px;
  1761. width:18px;
  1762. height:1px;
  1763. display:flex;
  1764. -webkit-transform:rotate(90deg);
  1765. -moz-transform:rotate(90deg);
  1766. -ms-transform:rotate(90deg);
  1767. transform:rotate(90deg);
  1768. }
  1769. #u227103 .text {
  1770. position:absolute;
  1771. align-self:center;
  1772. padding:2px 2px 2px 2px;
  1773. box-sizing:border-box;
  1774. width:100%;
  1775. }
  1776. #u227103_text {
  1777. border-width:0px;
  1778. word-wrap:break-word;
  1779. text-transform:none;
  1780. visibility:hidden;
  1781. }
  1782. #u227104_img {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:0px;
  1786. top:0px;
  1787. width:375px;
  1788. height:44px;
  1789. }
  1790. #u227104 {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:29px;
  1794. top:24px;
  1795. width:375px;
  1796. height:44px;
  1797. display:flex;
  1798. }
  1799. #u227104 .text {
  1800. position:absolute;
  1801. align-self:center;
  1802. padding:2px 2px 2px 2px;
  1803. box-sizing:border-box;
  1804. width:100%;
  1805. }
  1806. #u227104_text {
  1807. border-width:0px;
  1808. word-wrap:break-word;
  1809. text-transform:none;
  1810. visibility:hidden;
  1811. }
  1812. #u227105_div {
  1813. border-width:0px;
  1814. position:absolute;
  1815. left:0px;
  1816. top:0px;
  1817. width:375px;
  1818. height:50px;
  1819. background:inherit;
  1820. background-color:rgba(255, 255, 255, 1);
  1821. box-sizing:border-box;
  1822. border-width:1px;
  1823. border-style:solid;
  1824. border-color:rgba(242, 242, 242, 1);
  1825. border-radius:26px;
  1826. border-top-left-radius:0px;
  1827. border-top-right-radius:0px;
  1828. -moz-box-shadow:none;
  1829. -webkit-box-shadow:none;
  1830. box-shadow:none;
  1831. }
  1832. #u227105 {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:29px;
  1836. top:788px;
  1837. width:375px;
  1838. height:50px;
  1839. display:flex;
  1840. }
  1841. #u227105 .text {
  1842. position:absolute;
  1843. align-self:center;
  1844. padding:2px 2px 2px 2px;
  1845. box-sizing:border-box;
  1846. width:100%;
  1847. }
  1848. #u227105_text {
  1849. border-width:0px;
  1850. word-wrap:break-word;
  1851. text-transform:none;
  1852. visibility:hidden;
  1853. }
  1854. #u227106 {
  1855. border-width:0px;
  1856. position:absolute;
  1857. left:0px;
  1858. top:0px;
  1859. width:0px;
  1860. height:0px;
  1861. }
  1862. #u227107_img {
  1863. border-width:0px;
  1864. position:absolute;
  1865. left:0px;
  1866. top:0px;
  1867. width:24px;
  1868. height:24px;
  1869. }
  1870. #u227107 {
  1871. border-width:0px;
  1872. position:absolute;
  1873. left:69px;
  1874. top:792px;
  1875. width:24px;
  1876. height:24px;
  1877. display:flex;
  1878. font-size:8px;
  1879. }
  1880. #u227107 .text {
  1881. position:absolute;
  1882. align-self:center;
  1883. padding:2px 2px 2px 2px;
  1884. box-sizing:border-box;
  1885. width:100%;
  1886. }
  1887. #u227107_text {
  1888. border-width:0px;
  1889. word-wrap:break-word;
  1890. text-transform:none;
  1891. }
  1892. #u227108_div {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:0px;
  1896. top:0px;
  1897. width:25px;
  1898. height:17px;
  1899. background:inherit;
  1900. background-color:rgba(255, 255, 255, 0);
  1901. border:none;
  1902. border-radius:0px;
  1903. -moz-box-shadow:none;
  1904. -webkit-box-shadow:none;
  1905. box-shadow:none;
  1906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1907. font-weight:400;
  1908. font-style:normal;
  1909. font-size:12px;
  1910. }
  1911. #u227108 {
  1912. border-width:0px;
  1913. position:absolute;
  1914. left:69px;
  1915. top:817px;
  1916. width:25px;
  1917. height:17px;
  1918. display:flex;
  1919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1920. font-weight:400;
  1921. font-style:normal;
  1922. font-size:12px;
  1923. }
  1924. #u227108 .text {
  1925. position:absolute;
  1926. align-self:flex-start;
  1927. padding:0px 0px 0px 0px;
  1928. box-sizing:border-box;
  1929. width:100%;
  1930. }
  1931. #u227108_text {
  1932. border-width:0px;
  1933. white-space:nowrap;
  1934. text-transform:none;
  1935. }
  1936. #u227109 {
  1937. border-width:0px;
  1938. position:absolute;
  1939. left:0px;
  1940. top:0px;
  1941. width:0px;
  1942. height:0px;
  1943. }
  1944. #u227110_img {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:0px;
  1948. top:0px;
  1949. width:24px;
  1950. height:24px;
  1951. }
  1952. #u227110 {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:339px;
  1956. top:794px;
  1957. width:24px;
  1958. height:24px;
  1959. display:flex;
  1960. font-size:8px;
  1961. }
  1962. #u227110 .text {
  1963. position:absolute;
  1964. align-self:center;
  1965. padding:2px 2px 2px 2px;
  1966. box-sizing:border-box;
  1967. width:100%;
  1968. }
  1969. #u227110_text {
  1970. border-width:0px;
  1971. word-wrap:break-word;
  1972. text-transform:none;
  1973. }
  1974. #u227111_div {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:0px;
  1978. top:0px;
  1979. width:25px;
  1980. height:17px;
  1981. background:inherit;
  1982. background-color:rgba(255, 255, 255, 0);
  1983. border:none;
  1984. border-radius:0px;
  1985. -moz-box-shadow:none;
  1986. -webkit-box-shadow:none;
  1987. box-shadow:none;
  1988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1989. font-weight:400;
  1990. font-style:normal;
  1991. font-size:12px;
  1992. }
  1993. #u227111 {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:339px;
  1997. top:819px;
  1998. width:25px;
  1999. height:17px;
  2000. display:flex;
  2001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2002. font-weight:400;
  2003. font-style:normal;
  2004. font-size:12px;
  2005. }
  2006. #u227111 .text {
  2007. position:absolute;
  2008. align-self:flex-start;
  2009. padding:0px 0px 0px 0px;
  2010. box-sizing:border-box;
  2011. width:100%;
  2012. }
  2013. #u227111_text {
  2014. border-width:0px;
  2015. white-space:nowrap;
  2016. text-transform:none;
  2017. }
  2018. #u227112_div {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:0px;
  2022. top:0px;
  2023. width:375px;
  2024. height:681px;
  2025. background:inherit;
  2026. background-color:rgba(242, 242, 242, 0.462745098039216);
  2027. border:none;
  2028. border-radius:0px;
  2029. -moz-box-shadow:none;
  2030. -webkit-box-shadow:none;
  2031. box-shadow:none;
  2032. }
  2033. #u227112 {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:29px;
  2037. top:107px;
  2038. width:375px;
  2039. height:681px;
  2040. display:flex;
  2041. }
  2042. #u227112 .text {
  2043. position:absolute;
  2044. align-self:center;
  2045. padding:2px 2px 2px 2px;
  2046. box-sizing:border-box;
  2047. width:100%;
  2048. }
  2049. #u227112_text {
  2050. border-width:0px;
  2051. word-wrap:break-word;
  2052. text-transform:none;
  2053. visibility:hidden;
  2054. }
  2055. #u227113 {
  2056. border-width:0px;
  2057. position:absolute;
  2058. left:0px;
  2059. top:0px;
  2060. width:0px;
  2061. height:0px;
  2062. }
  2063. #u227114_img {
  2064. border-width:0px;
  2065. position:absolute;
  2066. left:0px;
  2067. top:0px;
  2068. width:24px;
  2069. height:24px;
  2070. }
  2071. #u227114 {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:251px;
  2075. top:792px;
  2076. width:24px;
  2077. height:24px;
  2078. display:flex;
  2079. font-size:8px;
  2080. }
  2081. #u227114 .text {
  2082. position:absolute;
  2083. align-self:center;
  2084. padding:2px 2px 2px 2px;
  2085. box-sizing:border-box;
  2086. width:100%;
  2087. }
  2088. #u227114_text {
  2089. border-width:0px;
  2090. word-wrap:break-word;
  2091. text-transform:none;
  2092. }
  2093. #u227115_div {
  2094. border-width:0px;
  2095. position:absolute;
  2096. left:0px;
  2097. top:0px;
  2098. width:37px;
  2099. height:17px;
  2100. background:inherit;
  2101. background-color:rgba(255, 255, 255, 0);
  2102. border:none;
  2103. border-radius:0px;
  2104. -moz-box-shadow:none;
  2105. -webkit-box-shadow:none;
  2106. box-shadow:none;
  2107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2108. font-weight:400;
  2109. font-style:normal;
  2110. font-size:12px;
  2111. }
  2112. #u227115 {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:245px;
  2116. top:817px;
  2117. width:37px;
  2118. height:17px;
  2119. display:flex;
  2120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2121. font-weight:400;
  2122. font-style:normal;
  2123. font-size:12px;
  2124. }
  2125. #u227115 .text {
  2126. position:absolute;
  2127. align-self:flex-start;
  2128. padding:0px 0px 0px 0px;
  2129. box-sizing:border-box;
  2130. width:100%;
  2131. }
  2132. #u227115_text {
  2133. border-width:0px;
  2134. white-space:nowrap;
  2135. text-transform:none;
  2136. }
  2137. #u227116 {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:0px;
  2141. top:0px;
  2142. width:0px;
  2143. height:0px;
  2144. }
  2145. #u227117_img {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:0px;
  2149. top:0px;
  2150. width:24px;
  2151. height:24px;
  2152. }
  2153. #u227117 {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:157px;
  2157. top:792px;
  2158. width:24px;
  2159. height:24px;
  2160. display:flex;
  2161. font-size:8px;
  2162. }
  2163. #u227117 .text {
  2164. position:absolute;
  2165. align-self:center;
  2166. padding:2px 2px 2px 2px;
  2167. box-sizing:border-box;
  2168. width:100%;
  2169. }
  2170. #u227117_text {
  2171. border-width:0px;
  2172. word-wrap:break-word;
  2173. text-transform:none;
  2174. }
  2175. #u227118_div {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:0px;
  2179. top:0px;
  2180. width:37px;
  2181. height:17px;
  2182. background:inherit;
  2183. background-color:rgba(255, 255, 255, 0);
  2184. border:none;
  2185. border-radius:0px;
  2186. -moz-box-shadow:none;
  2187. -webkit-box-shadow:none;
  2188. box-shadow:none;
  2189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2190. font-weight:400;
  2191. font-style:normal;
  2192. font-size:12px;
  2193. }
  2194. #u227118 {
  2195. border-width:0px;
  2196. position:absolute;
  2197. left:151px;
  2198. top:817px;
  2199. width:37px;
  2200. height:17px;
  2201. display:flex;
  2202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2203. font-weight:400;
  2204. font-style:normal;
  2205. font-size:12px;
  2206. }
  2207. #u227118 .text {
  2208. position:absolute;
  2209. align-self:flex-start;
  2210. padding:0px 0px 0px 0px;
  2211. box-sizing:border-box;
  2212. width:100%;
  2213. }
  2214. #u227118_text {
  2215. border-width:0px;
  2216. white-space:nowrap;
  2217. text-transform:none;
  2218. }
  2219. #u227119_div {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:0px;
  2223. top:0px;
  2224. width:375px;
  2225. height:735px;
  2226. background:inherit;
  2227. background-color:rgba(242, 242, 242, 1);
  2228. border:none;
  2229. border-top:0px;
  2230. border-radius:25px;
  2231. border-top-left-radius:0px;
  2232. border-top-right-radius:0px;
  2233. -moz-box-shadow:none;
  2234. -webkit-box-shadow:none;
  2235. box-shadow:none;
  2236. }
  2237. #u227119 {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:29px;
  2241. top:105px;
  2242. width:375px;
  2243. height:735px;
  2244. display:flex;
  2245. }
  2246. #u227119 .text {
  2247. position:absolute;
  2248. align-self:center;
  2249. padding:2px 2px 2px 2px;
  2250. box-sizing:border-box;
  2251. width:100%;
  2252. }
  2253. #u227119_text {
  2254. border-width:0px;
  2255. word-wrap:break-word;
  2256. text-transform:none;
  2257. visibility:hidden;
  2258. }
  2259. #u227120_div {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:0px;
  2263. top:0px;
  2264. width:145px;
  2265. height:30px;
  2266. background:inherit;
  2267. background-color:rgba(255, 255, 255, 0);
  2268. border:none;
  2269. border-left:0px;
  2270. border-top:0px;
  2271. border-right:0px;
  2272. border-radius:0px;
  2273. border-bottom-right-radius:0px;
  2274. border-bottom-left-radius:0px;
  2275. -moz-box-shadow:none;
  2276. -webkit-box-shadow:none;
  2277. box-shadow:none;
  2278. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2279. font-weight:500;
  2280. font-style:normal;
  2281. line-height:30px;
  2282. }
  2283. #u227120 {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:51px;
  2287. top:125px;
  2288. width:145px;
  2289. height:30px;
  2290. display:flex;
  2291. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2292. font-weight:500;
  2293. font-style:normal;
  2294. line-height:30px;
  2295. }
  2296. #u227120 .text {
  2297. position:absolute;
  2298. align-self:flex-start;
  2299. padding:0px 0px 0px 0px;
  2300. box-sizing:border-box;
  2301. width:100%;
  2302. }
  2303. #u227120_text {
  2304. border-width:0px;
  2305. white-space:nowrap;
  2306. text-transform:none;
  2307. }
  2308. #u227121_img {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:11px;
  2314. height:18px;
  2315. }
  2316. #u227121 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:42px;
  2320. top:79px;
  2321. width:11px;
  2322. height:18px;
  2323. display:flex;
  2324. }
  2325. #u227121 .text {
  2326. position:absolute;
  2327. align-self:center;
  2328. padding:2px 2px 2px 2px;
  2329. box-sizing:border-box;
  2330. width:100%;
  2331. }
  2332. #u227121_text {
  2333. border-width:0px;
  2334. word-wrap:break-word;
  2335. text-transform:none;
  2336. visibility:hidden;
  2337. }
  2338. #u227122 {
  2339. border-width:0px;
  2340. position:absolute;
  2341. left:0px;
  2342. top:0px;
  2343. width:0px;
  2344. height:0px;
  2345. }
  2346. #u227123_div {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:0px;
  2350. top:0px;
  2351. width:353px;
  2352. height:80px;
  2353. background:inherit;
  2354. background-color:rgba(255, 255, 255, 1);
  2355. box-sizing:border-box;
  2356. border-width:1px;
  2357. border-style:solid;
  2358. border-color:rgba(242, 242, 242, 1);
  2359. border-radius:4px;
  2360. -moz-box-shadow:none;
  2361. -webkit-box-shadow:none;
  2362. box-shadow:none;
  2363. }
  2364. #u227123 {
  2365. border-width:0px;
  2366. position:absolute;
  2367. left:41px;
  2368. top:175px;
  2369. width:353px;
  2370. height:80px;
  2371. display:flex;
  2372. }
  2373. #u227123 .text {
  2374. position:absolute;
  2375. align-self:center;
  2376. padding:2px 2px 2px 2px;
  2377. box-sizing:border-box;
  2378. width:100%;
  2379. }
  2380. #u227123_text {
  2381. border-width:0px;
  2382. word-wrap:break-word;
  2383. text-transform:none;
  2384. visibility:hidden;
  2385. }
  2386. #u227124 {
  2387. border-width:0px;
  2388. position:absolute;
  2389. left:0px;
  2390. top:0px;
  2391. width:0px;
  2392. height:0px;
  2393. }
  2394. #u227125_div {
  2395. border-width:0px;
  2396. position:absolute;
  2397. left:0px;
  2398. top:0px;
  2399. width:109px;
  2400. height:30px;
  2401. background:inherit;
  2402. background-color:rgba(255, 255, 255, 0);
  2403. border:none;
  2404. border-left:0px;
  2405. border-top:0px;
  2406. border-right:0px;
  2407. border-radius:0px;
  2408. border-bottom-right-radius:0px;
  2409. border-bottom-left-radius:0px;
  2410. -moz-box-shadow:none;
  2411. -webkit-box-shadow:none;
  2412. box-shadow:none;
  2413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2414. font-weight:400;
  2415. font-style:normal;
  2416. font-size:18px;
  2417. line-height:30px;
  2418. }
  2419. #u227125 {
  2420. border-width:0px;
  2421. position:absolute;
  2422. left:113px;
  2423. top:189px;
  2424. width:109px;
  2425. height:30px;
  2426. display:flex;
  2427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2428. font-weight:400;
  2429. font-style:normal;
  2430. font-size:18px;
  2431. line-height:30px;
  2432. }
  2433. #u227125 .text {
  2434. position:absolute;
  2435. align-self:flex-start;
  2436. padding:0px 0px 0px 0px;
  2437. box-sizing:border-box;
  2438. width:100%;
  2439. }
  2440. #u227125_text {
  2441. border-width:0px;
  2442. white-space:nowrap;
  2443. text-transform:none;
  2444. }
  2445. #u227126_div {
  2446. border-width:0px;
  2447. position:absolute;
  2448. left:0px;
  2449. top:0px;
  2450. width:241px;
  2451. height:17px;
  2452. background:inherit;
  2453. background-color:rgba(255, 255, 255, 0);
  2454. border:none;
  2455. border-left:0px;
  2456. border-top:0px;
  2457. border-right:0px;
  2458. border-radius:0px;
  2459. border-bottom-right-radius:0px;
  2460. border-bottom-left-radius:0px;
  2461. -moz-box-shadow:none;
  2462. -webkit-box-shadow:none;
  2463. box-shadow:none;
  2464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2465. font-weight:400;
  2466. font-style:normal;
  2467. font-size:12px;
  2468. color:#AAAAAA;
  2469. }
  2470. #u227126 {
  2471. border-width:0px;
  2472. position:absolute;
  2473. left:114px;
  2474. top:224px;
  2475. width:241px;
  2476. height:17px;
  2477. display:flex;
  2478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2479. font-weight:400;
  2480. font-style:normal;
  2481. font-size:12px;
  2482. color:#AAAAAA;
  2483. }
  2484. #u227126 .text {
  2485. position:absolute;
  2486. align-self:flex-start;
  2487. padding:0px 0px 0px 0px;
  2488. box-sizing:border-box;
  2489. width:100%;
  2490. }
  2491. #u227126_text {
  2492. border-width:0px;
  2493. white-space:nowrap;
  2494. text-transform:none;
  2495. }
  2496. #u227127_img {
  2497. border-width:0px;
  2498. position:absolute;
  2499. left:0px;
  2500. top:0px;
  2501. width:41px;
  2502. height:41px;
  2503. }
  2504. #u227127 {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:61px;
  2508. top:192px;
  2509. width:41px;
  2510. height:41px;
  2511. display:flex;
  2512. }
  2513. #u227127 .text {
  2514. position:absolute;
  2515. align-self:center;
  2516. padding:2px 2px 2px 2px;
  2517. box-sizing:border-box;
  2518. width:100%;
  2519. }
  2520. #u227127_text {
  2521. border-width:0px;
  2522. word-wrap:break-word;
  2523. text-transform:none;
  2524. }
  2525. #u227128 {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:0px;
  2529. top:0px;
  2530. width:0px;
  2531. height:0px;
  2532. }
  2533. #u227129_div {
  2534. border-width:0px;
  2535. position:absolute;
  2536. left:0px;
  2537. top:0px;
  2538. width:353px;
  2539. height:80px;
  2540. background:inherit;
  2541. background-color:rgba(255, 255, 255, 1);
  2542. box-sizing:border-box;
  2543. border-width:1px;
  2544. border-style:solid;
  2545. border-color:rgba(242, 242, 242, 1);
  2546. border-radius:4px;
  2547. -moz-box-shadow:none;
  2548. -webkit-box-shadow:none;
  2549. box-shadow:none;
  2550. }
  2551. #u227129 {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:41px;
  2555. top:265px;
  2556. width:353px;
  2557. height:80px;
  2558. display:flex;
  2559. }
  2560. #u227129 .text {
  2561. position:absolute;
  2562. align-self:center;
  2563. padding:2px 2px 2px 2px;
  2564. box-sizing:border-box;
  2565. width:100%;
  2566. }
  2567. #u227129_text {
  2568. border-width:0px;
  2569. word-wrap:break-word;
  2570. text-transform:none;
  2571. visibility:hidden;
  2572. }
  2573. #u227130 {
  2574. border-width:0px;
  2575. position:absolute;
  2576. left:0px;
  2577. top:0px;
  2578. width:0px;
  2579. height:0px;
  2580. }
  2581. #u227131_div {
  2582. border-width:0px;
  2583. position:absolute;
  2584. left:0px;
  2585. top:0px;
  2586. width:73px;
  2587. height:30px;
  2588. background:inherit;
  2589. background-color:rgba(255, 255, 255, 0);
  2590. border:none;
  2591. border-left:0px;
  2592. border-top:0px;
  2593. border-right:0px;
  2594. border-radius:0px;
  2595. border-bottom-right-radius:0px;
  2596. border-bottom-left-radius:0px;
  2597. -moz-box-shadow:none;
  2598. -webkit-box-shadow:none;
  2599. box-shadow:none;
  2600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2601. font-weight:400;
  2602. font-style:normal;
  2603. font-size:18px;
  2604. line-height:30px;
  2605. }
  2606. #u227131 {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:113px;
  2610. top:279px;
  2611. width:73px;
  2612. height:30px;
  2613. display:flex;
  2614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2615. font-weight:400;
  2616. font-style:normal;
  2617. font-size:18px;
  2618. line-height:30px;
  2619. }
  2620. #u227131 .text {
  2621. position:absolute;
  2622. align-self:flex-start;
  2623. padding:0px 0px 0px 0px;
  2624. box-sizing:border-box;
  2625. width:100%;
  2626. }
  2627. #u227131_text {
  2628. border-width:0px;
  2629. white-space:nowrap;
  2630. text-transform:none;
  2631. }
  2632. #u227132_div {
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:0px;
  2636. top:0px;
  2637. width:157px;
  2638. height:17px;
  2639. background:inherit;
  2640. background-color:rgba(255, 255, 255, 0);
  2641. border:none;
  2642. border-left:0px;
  2643. border-top:0px;
  2644. border-right:0px;
  2645. border-radius:0px;
  2646. border-bottom-right-radius:0px;
  2647. border-bottom-left-radius:0px;
  2648. -moz-box-shadow:none;
  2649. -webkit-box-shadow:none;
  2650. box-shadow:none;
  2651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2652. font-weight:400;
  2653. font-style:normal;
  2654. font-size:12px;
  2655. color:#AAAAAA;
  2656. }
  2657. #u227132 {
  2658. border-width:0px;
  2659. position:absolute;
  2660. left:114px;
  2661. top:314px;
  2662. width:157px;
  2663. height:17px;
  2664. display:flex;
  2665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2666. font-weight:400;
  2667. font-style:normal;
  2668. font-size:12px;
  2669. color:#AAAAAA;
  2670. }
  2671. #u227132 .text {
  2672. position:absolute;
  2673. align-self:flex-start;
  2674. padding:0px 0px 0px 0px;
  2675. box-sizing:border-box;
  2676. width:100%;
  2677. }
  2678. #u227132_text {
  2679. border-width:0px;
  2680. white-space:nowrap;
  2681. text-transform:none;
  2682. }
  2683. #u227133_img {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:0px;
  2687. top:0px;
  2688. width:41px;
  2689. height:41px;
  2690. }
  2691. #u227133 {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:61px;
  2695. top:282px;
  2696. width:41px;
  2697. height:41px;
  2698. display:flex;
  2699. }
  2700. #u227133 .text {
  2701. position:absolute;
  2702. align-self:center;
  2703. padding:2px 2px 2px 2px;
  2704. box-sizing:border-box;
  2705. width:100%;
  2706. }
  2707. #u227133_text {
  2708. border-width:0px;
  2709. word-wrap:break-word;
  2710. text-transform:none;
  2711. }
  2712. #u227135_img {
  2713. border-width:0px;
  2714. position:absolute;
  2715. left:0px;
  2716. top:0px;
  2717. width:433px;
  2718. height:865px;
  2719. }
  2720. #u227135 {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:467px;
  2724. top:0px;
  2725. width:433px;
  2726. height:865px;
  2727. display:flex;
  2728. }
  2729. #u227135 .text {
  2730. position:absolute;
  2731. align-self:center;
  2732. padding:2px 2px 2px 2px;
  2733. box-sizing:border-box;
  2734. width:100%;
  2735. }
  2736. #u227135_text {
  2737. border-width:0px;
  2738. word-wrap:break-word;
  2739. text-transform:none;
  2740. visibility:hidden;
  2741. }
  2742. #u227136_div {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:0px;
  2746. top:0px;
  2747. width:375px;
  2748. height:40px;
  2749. background:inherit;
  2750. background-color:rgba(255, 255, 255, 1);
  2751. box-sizing:border-box;
  2752. border-width:1px;
  2753. border-style:solid;
  2754. border-color:rgba(215, 215, 215, 1);
  2755. border-left:0px;
  2756. border-top:0px;
  2757. border-right:0px;
  2758. border-radius:0px;
  2759. border-bottom-right-radius:0px;
  2760. border-bottom-left-radius:0px;
  2761. -moz-box-shadow:none;
  2762. -webkit-box-shadow:none;
  2763. box-shadow:none;
  2764. }
  2765. #u227136 {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:496px;
  2769. top:67px;
  2770. width:375px;
  2771. height:40px;
  2772. display:flex;
  2773. }
  2774. #u227136 .text {
  2775. position:absolute;
  2776. align-self:center;
  2777. padding:2px 2px 2px 2px;
  2778. box-sizing:border-box;
  2779. width:100%;
  2780. }
  2781. #u227136_text {
  2782. border-width:0px;
  2783. word-wrap:break-word;
  2784. text-transform:none;
  2785. visibility:hidden;
  2786. }
  2787. #u227137 {
  2788. border-width:0px;
  2789. position:absolute;
  2790. left:0px;
  2791. top:0px;
  2792. width:0px;
  2793. height:0px;
  2794. }
  2795. #u227138_div {
  2796. border-width:0px;
  2797. position:absolute;
  2798. left:0px;
  2799. top:0px;
  2800. width:88px;
  2801. height:32px;
  2802. background:inherit;
  2803. background-color:rgba(255, 255, 255, 1);
  2804. box-sizing:border-box;
  2805. border-width:1px;
  2806. border-style:solid;
  2807. border-color:rgba(242, 242, 242, 1);
  2808. border-radius:33px;
  2809. -moz-box-shadow:none;
  2810. -webkit-box-shadow:none;
  2811. box-shadow:none;
  2812. }
  2813. #u227138 {
  2814. border-width:0px;
  2815. position:absolute;
  2816. left:776px;
  2817. top:71px;
  2818. width:88px;
  2819. height:32px;
  2820. display:flex;
  2821. }
  2822. #u227138 .text {
  2823. position:absolute;
  2824. align-self:center;
  2825. padding:2px 2px 2px 2px;
  2826. box-sizing:border-box;
  2827. width:100%;
  2828. }
  2829. #u227138_text {
  2830. border-width:0px;
  2831. word-wrap:break-word;
  2832. text-transform:none;
  2833. visibility:hidden;
  2834. }
  2835. #u227139 {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:0px;
  2839. top:0px;
  2840. width:0px;
  2841. height:0px;
  2842. }
  2843. #u227140_img {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:0px;
  2847. top:0px;
  2848. width:18px;
  2849. height:18px;
  2850. }
  2851. #u227140 {
  2852. border-width:0px;
  2853. position:absolute;
  2854. left:839px;
  2855. top:78px;
  2856. width:18px;
  2857. height:18px;
  2858. display:flex;
  2859. }
  2860. #u227140 .text {
  2861. position:absolute;
  2862. align-self:center;
  2863. padding:2px 2px 2px 2px;
  2864. box-sizing:border-box;
  2865. width:100%;
  2866. }
  2867. #u227140_text {
  2868. border-width:0px;
  2869. word-wrap:break-word;
  2870. text-transform:none;
  2871. visibility:hidden;
  2872. }
  2873. #u227141_img {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:0px;
  2877. top:0px;
  2878. width:6px;
  2879. height:6px;
  2880. }
  2881. #u227141 {
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:845px;
  2885. top:84px;
  2886. width:6px;
  2887. height:6px;
  2888. display:flex;
  2889. }
  2890. #u227141 .text {
  2891. position:absolute;
  2892. align-self:center;
  2893. padding:2px 2px 2px 2px;
  2894. box-sizing:border-box;
  2895. width:100%;
  2896. }
  2897. #u227141_text {
  2898. border-width:0px;
  2899. word-wrap:break-word;
  2900. text-transform:none;
  2901. visibility:hidden;
  2902. }
  2903. #u227142 {
  2904. border-width:0px;
  2905. position:absolute;
  2906. left:0px;
  2907. top:0px;
  2908. width:0px;
  2909. height:0px;
  2910. }
  2911. #u227143_img {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:0px;
  2915. top:0px;
  2916. width:5px;
  2917. height:5px;
  2918. }
  2919. #u227143 {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:790px;
  2923. top:85px;
  2924. width:5px;
  2925. height:5px;
  2926. display:flex;
  2927. }
  2928. #u227143 .text {
  2929. position:absolute;
  2930. align-self:center;
  2931. padding:2px 2px 2px 2px;
  2932. box-sizing:border-box;
  2933. width:100%;
  2934. }
  2935. #u227143_text {
  2936. border-width:0px;
  2937. word-wrap:break-word;
  2938. text-transform:none;
  2939. visibility:hidden;
  2940. }
  2941. #u227144_img {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:0px;
  2945. top:0px;
  2946. width:5px;
  2947. height:5px;
  2948. }
  2949. #u227144 {
  2950. border-width:0px;
  2951. position:absolute;
  2952. left:806px;
  2953. top:85px;
  2954. width:5px;
  2955. height:5px;
  2956. display:flex;
  2957. }
  2958. #u227144 .text {
  2959. position:absolute;
  2960. align-self:center;
  2961. padding:2px 2px 2px 2px;
  2962. box-sizing:border-box;
  2963. width:100%;
  2964. }
  2965. #u227144_text {
  2966. border-width:0px;
  2967. word-wrap:break-word;
  2968. text-transform:none;
  2969. visibility:hidden;
  2970. }
  2971. #u227145_img {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:0px;
  2975. top:0px;
  2976. width:7px;
  2977. height:7px;
  2978. }
  2979. #u227145 {
  2980. border-width:0px;
  2981. position:absolute;
  2982. left:797px;
  2983. top:84px;
  2984. width:7px;
  2985. height:7px;
  2986. display:flex;
  2987. }
  2988. #u227145 .text {
  2989. position:absolute;
  2990. align-self:center;
  2991. padding:2px 2px 2px 2px;
  2992. box-sizing:border-box;
  2993. width:100%;
  2994. }
  2995. #u227145_text {
  2996. border-width:0px;
  2997. word-wrap:break-word;
  2998. text-transform:none;
  2999. visibility:hidden;
  3000. }
  3001. #u227146_img {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:0px;
  3005. top:0px;
  3006. width:19px;
  3007. height:2px;
  3008. }
  3009. #u227146 {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:814px;
  3013. top:87px;
  3014. width:18px;
  3015. height:1px;
  3016. display:flex;
  3017. -webkit-transform:rotate(90deg);
  3018. -moz-transform:rotate(90deg);
  3019. -ms-transform:rotate(90deg);
  3020. transform:rotate(90deg);
  3021. }
  3022. #u227146 .text {
  3023. position:absolute;
  3024. align-self:center;
  3025. padding:2px 2px 2px 2px;
  3026. box-sizing:border-box;
  3027. width:100%;
  3028. }
  3029. #u227146_text {
  3030. border-width:0px;
  3031. word-wrap:break-word;
  3032. text-transform:none;
  3033. visibility:hidden;
  3034. }
  3035. #u227147_img {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:0px;
  3039. top:0px;
  3040. width:375px;
  3041. height:44px;
  3042. }
  3043. #u227147 {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:496px;
  3047. top:24px;
  3048. width:375px;
  3049. height:44px;
  3050. display:flex;
  3051. }
  3052. #u227147 .text {
  3053. position:absolute;
  3054. align-self:center;
  3055. padding:2px 2px 2px 2px;
  3056. box-sizing:border-box;
  3057. width:100%;
  3058. }
  3059. #u227147_text {
  3060. border-width:0px;
  3061. word-wrap:break-word;
  3062. text-transform:none;
  3063. visibility:hidden;
  3064. }
  3065. #u227148_div {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:0px;
  3069. top:0px;
  3070. width:375px;
  3071. height:50px;
  3072. background:inherit;
  3073. background-color:rgba(255, 255, 255, 1);
  3074. box-sizing:border-box;
  3075. border-width:1px;
  3076. border-style:solid;
  3077. border-color:rgba(242, 242, 242, 1);
  3078. border-radius:26px;
  3079. border-top-left-radius:0px;
  3080. border-top-right-radius:0px;
  3081. -moz-box-shadow:none;
  3082. -webkit-box-shadow:none;
  3083. box-shadow:none;
  3084. }
  3085. #u227148 {
  3086. border-width:0px;
  3087. position:absolute;
  3088. left:496px;
  3089. top:788px;
  3090. width:375px;
  3091. height:50px;
  3092. display:flex;
  3093. }
  3094. #u227148 .text {
  3095. position:absolute;
  3096. align-self:center;
  3097. padding:2px 2px 2px 2px;
  3098. box-sizing:border-box;
  3099. width:100%;
  3100. }
  3101. #u227148_text {
  3102. border-width:0px;
  3103. word-wrap:break-word;
  3104. text-transform:none;
  3105. visibility:hidden;
  3106. }
  3107. #u227149 {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:0px;
  3111. top:0px;
  3112. width:0px;
  3113. height:0px;
  3114. }
  3115. #u227150_img {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:0px;
  3119. top:0px;
  3120. width:24px;
  3121. height:24px;
  3122. }
  3123. #u227150 {
  3124. border-width:0px;
  3125. position:absolute;
  3126. left:536px;
  3127. top:792px;
  3128. width:24px;
  3129. height:24px;
  3130. display:flex;
  3131. font-size:8px;
  3132. }
  3133. #u227150 .text {
  3134. position:absolute;
  3135. align-self:center;
  3136. padding:2px 2px 2px 2px;
  3137. box-sizing:border-box;
  3138. width:100%;
  3139. }
  3140. #u227150_text {
  3141. border-width:0px;
  3142. word-wrap:break-word;
  3143. text-transform:none;
  3144. }
  3145. #u227151_div {
  3146. border-width:0px;
  3147. position:absolute;
  3148. left:0px;
  3149. top:0px;
  3150. width:25px;
  3151. height:17px;
  3152. background:inherit;
  3153. background-color:rgba(255, 255, 255, 0);
  3154. border:none;
  3155. border-radius:0px;
  3156. -moz-box-shadow:none;
  3157. -webkit-box-shadow:none;
  3158. box-shadow:none;
  3159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3160. font-weight:400;
  3161. font-style:normal;
  3162. font-size:12px;
  3163. }
  3164. #u227151 {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:536px;
  3168. top:817px;
  3169. width:25px;
  3170. height:17px;
  3171. display:flex;
  3172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3173. font-weight:400;
  3174. font-style:normal;
  3175. font-size:12px;
  3176. }
  3177. #u227151 .text {
  3178. position:absolute;
  3179. align-self:flex-start;
  3180. padding:0px 0px 0px 0px;
  3181. box-sizing:border-box;
  3182. width:100%;
  3183. }
  3184. #u227151_text {
  3185. border-width:0px;
  3186. white-space:nowrap;
  3187. text-transform:none;
  3188. }
  3189. #u227152 {
  3190. border-width:0px;
  3191. position:absolute;
  3192. left:0px;
  3193. top:0px;
  3194. width:0px;
  3195. height:0px;
  3196. }
  3197. #u227153_img {
  3198. border-width:0px;
  3199. position:absolute;
  3200. left:0px;
  3201. top:0px;
  3202. width:24px;
  3203. height:24px;
  3204. }
  3205. #u227153 {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:806px;
  3209. top:794px;
  3210. width:24px;
  3211. height:24px;
  3212. display:flex;
  3213. font-size:8px;
  3214. }
  3215. #u227153 .text {
  3216. position:absolute;
  3217. align-self:center;
  3218. padding:2px 2px 2px 2px;
  3219. box-sizing:border-box;
  3220. width:100%;
  3221. }
  3222. #u227153_text {
  3223. border-width:0px;
  3224. word-wrap:break-word;
  3225. text-transform:none;
  3226. }
  3227. #u227154_div {
  3228. border-width:0px;
  3229. position:absolute;
  3230. left:0px;
  3231. top:0px;
  3232. width:25px;
  3233. height:17px;
  3234. background:inherit;
  3235. background-color:rgba(255, 255, 255, 0);
  3236. border:none;
  3237. border-radius:0px;
  3238. -moz-box-shadow:none;
  3239. -webkit-box-shadow:none;
  3240. box-shadow:none;
  3241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3242. font-weight:400;
  3243. font-style:normal;
  3244. font-size:12px;
  3245. }
  3246. #u227154 {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:806px;
  3250. top:819px;
  3251. width:25px;
  3252. height:17px;
  3253. display:flex;
  3254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3255. font-weight:400;
  3256. font-style:normal;
  3257. font-size:12px;
  3258. }
  3259. #u227154 .text {
  3260. position:absolute;
  3261. align-self:flex-start;
  3262. padding:0px 0px 0px 0px;
  3263. box-sizing:border-box;
  3264. width:100%;
  3265. }
  3266. #u227154_text {
  3267. border-width:0px;
  3268. white-space:nowrap;
  3269. text-transform:none;
  3270. }
  3271. #u227155_div {
  3272. border-width:0px;
  3273. position:absolute;
  3274. left:0px;
  3275. top:0px;
  3276. width:375px;
  3277. height:681px;
  3278. background:inherit;
  3279. background-color:rgba(242, 242, 242, 0.462745098039216);
  3280. border:none;
  3281. border-radius:0px;
  3282. -moz-box-shadow:none;
  3283. -webkit-box-shadow:none;
  3284. box-shadow:none;
  3285. }
  3286. #u227155 {
  3287. border-width:0px;
  3288. position:absolute;
  3289. left:496px;
  3290. top:107px;
  3291. width:375px;
  3292. height:681px;
  3293. display:flex;
  3294. }
  3295. #u227155 .text {
  3296. position:absolute;
  3297. align-self:center;
  3298. padding:2px 2px 2px 2px;
  3299. box-sizing:border-box;
  3300. width:100%;
  3301. }
  3302. #u227155_text {
  3303. border-width:0px;
  3304. word-wrap:break-word;
  3305. text-transform:none;
  3306. visibility:hidden;
  3307. }
  3308. #u227156 {
  3309. border-width:0px;
  3310. position:absolute;
  3311. left:0px;
  3312. top:0px;
  3313. width:0px;
  3314. height:0px;
  3315. }
  3316. #u227157_img {
  3317. border-width:0px;
  3318. position:absolute;
  3319. left:0px;
  3320. top:0px;
  3321. width:24px;
  3322. height:24px;
  3323. }
  3324. #u227157 {
  3325. border-width:0px;
  3326. position:absolute;
  3327. left:718px;
  3328. top:792px;
  3329. width:24px;
  3330. height:24px;
  3331. display:flex;
  3332. font-size:8px;
  3333. }
  3334. #u227157 .text {
  3335. position:absolute;
  3336. align-self:center;
  3337. padding:2px 2px 2px 2px;
  3338. box-sizing:border-box;
  3339. width:100%;
  3340. }
  3341. #u227157_text {
  3342. border-width:0px;
  3343. word-wrap:break-word;
  3344. text-transform:none;
  3345. }
  3346. #u227158_div {
  3347. border-width:0px;
  3348. position:absolute;
  3349. left:0px;
  3350. top:0px;
  3351. width:37px;
  3352. height:17px;
  3353. background:inherit;
  3354. background-color:rgba(255, 255, 255, 0);
  3355. border:none;
  3356. border-radius:0px;
  3357. -moz-box-shadow:none;
  3358. -webkit-box-shadow:none;
  3359. box-shadow:none;
  3360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3361. font-weight:400;
  3362. font-style:normal;
  3363. font-size:12px;
  3364. }
  3365. #u227158 {
  3366. border-width:0px;
  3367. position:absolute;
  3368. left:712px;
  3369. top:817px;
  3370. width:37px;
  3371. height:17px;
  3372. display:flex;
  3373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3374. font-weight:400;
  3375. font-style:normal;
  3376. font-size:12px;
  3377. }
  3378. #u227158 .text {
  3379. position:absolute;
  3380. align-self:flex-start;
  3381. padding:0px 0px 0px 0px;
  3382. box-sizing:border-box;
  3383. width:100%;
  3384. }
  3385. #u227158_text {
  3386. border-width:0px;
  3387. white-space:nowrap;
  3388. text-transform:none;
  3389. }
  3390. #u227159 {
  3391. border-width:0px;
  3392. position:absolute;
  3393. left:0px;
  3394. top:0px;
  3395. width:0px;
  3396. height:0px;
  3397. }
  3398. #u227160_img {
  3399. border-width:0px;
  3400. position:absolute;
  3401. left:0px;
  3402. top:0px;
  3403. width:24px;
  3404. height:24px;
  3405. }
  3406. #u227160 {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:624px;
  3410. top:792px;
  3411. width:24px;
  3412. height:24px;
  3413. display:flex;
  3414. font-size:8px;
  3415. }
  3416. #u227160 .text {
  3417. position:absolute;
  3418. align-self:center;
  3419. padding:2px 2px 2px 2px;
  3420. box-sizing:border-box;
  3421. width:100%;
  3422. }
  3423. #u227160_text {
  3424. border-width:0px;
  3425. word-wrap:break-word;
  3426. text-transform:none;
  3427. }
  3428. #u227161_div {
  3429. border-width:0px;
  3430. position:absolute;
  3431. left:0px;
  3432. top:0px;
  3433. width:37px;
  3434. height:17px;
  3435. background:inherit;
  3436. background-color:rgba(255, 255, 255, 0);
  3437. border:none;
  3438. border-radius:0px;
  3439. -moz-box-shadow:none;
  3440. -webkit-box-shadow:none;
  3441. box-shadow:none;
  3442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3443. font-weight:400;
  3444. font-style:normal;
  3445. font-size:12px;
  3446. }
  3447. #u227161 {
  3448. border-width:0px;
  3449. position:absolute;
  3450. left:618px;
  3451. top:817px;
  3452. width:37px;
  3453. height:17px;
  3454. display:flex;
  3455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3456. font-weight:400;
  3457. font-style:normal;
  3458. font-size:12px;
  3459. }
  3460. #u227161 .text {
  3461. position:absolute;
  3462. align-self:flex-start;
  3463. padding:0px 0px 0px 0px;
  3464. box-sizing:border-box;
  3465. width:100%;
  3466. }
  3467. #u227161_text {
  3468. border-width:0px;
  3469. white-space:nowrap;
  3470. text-transform:none;
  3471. }
  3472. #u227162_div {
  3473. border-width:0px;
  3474. position:absolute;
  3475. left:0px;
  3476. top:0px;
  3477. width:375px;
  3478. height:735px;
  3479. background:inherit;
  3480. background-color:rgba(242, 242, 242, 1);
  3481. border:none;
  3482. border-top:0px;
  3483. border-radius:25px;
  3484. border-top-left-radius:0px;
  3485. border-top-right-radius:0px;
  3486. -moz-box-shadow:none;
  3487. -webkit-box-shadow:none;
  3488. box-shadow:none;
  3489. }
  3490. #u227162 {
  3491. border-width:0px;
  3492. position:absolute;
  3493. left:496px;
  3494. top:105px;
  3495. width:375px;
  3496. height:735px;
  3497. display:flex;
  3498. }
  3499. #u227162 .text {
  3500. position:absolute;
  3501. align-self:center;
  3502. padding:2px 2px 2px 2px;
  3503. box-sizing:border-box;
  3504. width:100%;
  3505. }
  3506. #u227162_text {
  3507. border-width:0px;
  3508. word-wrap:break-word;
  3509. text-transform:none;
  3510. visibility:hidden;
  3511. }
  3512. #u227163_div {
  3513. border-width:0px;
  3514. position:absolute;
  3515. left:0px;
  3516. top:0px;
  3517. width:145px;
  3518. height:30px;
  3519. background:inherit;
  3520. background-color:rgba(255, 255, 255, 0);
  3521. border:none;
  3522. border-left:0px;
  3523. border-top:0px;
  3524. border-right:0px;
  3525. border-radius:0px;
  3526. border-bottom-right-radius:0px;
  3527. border-bottom-left-radius:0px;
  3528. -moz-box-shadow:none;
  3529. -webkit-box-shadow:none;
  3530. box-shadow:none;
  3531. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3532. font-weight:500;
  3533. font-style:normal;
  3534. line-height:30px;
  3535. }
  3536. #u227163 {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:518px;
  3540. top:125px;
  3541. width:145px;
  3542. height:30px;
  3543. display:flex;
  3544. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3545. font-weight:500;
  3546. font-style:normal;
  3547. line-height:30px;
  3548. }
  3549. #u227163 .text {
  3550. position:absolute;
  3551. align-self:flex-start;
  3552. padding:0px 0px 0px 0px;
  3553. box-sizing:border-box;
  3554. width:100%;
  3555. }
  3556. #u227163_text {
  3557. border-width:0px;
  3558. white-space:nowrap;
  3559. text-transform:none;
  3560. }
  3561. #u227164_img {
  3562. border-width:0px;
  3563. position:absolute;
  3564. left:0px;
  3565. top:0px;
  3566. width:11px;
  3567. height:18px;
  3568. }
  3569. #u227164 {
  3570. border-width:0px;
  3571. position:absolute;
  3572. left:509px;
  3573. top:79px;
  3574. width:11px;
  3575. height:18px;
  3576. display:flex;
  3577. }
  3578. #u227164 .text {
  3579. position:absolute;
  3580. align-self:center;
  3581. padding:2px 2px 2px 2px;
  3582. box-sizing:border-box;
  3583. width:100%;
  3584. }
  3585. #u227164_text {
  3586. border-width:0px;
  3587. word-wrap:break-word;
  3588. text-transform:none;
  3589. visibility:hidden;
  3590. }
  3591. #u227165 {
  3592. border-width:0px;
  3593. position:absolute;
  3594. left:0px;
  3595. top:0px;
  3596. width:0px;
  3597. height:0px;
  3598. }
  3599. #u227166_div {
  3600. border-width:0px;
  3601. position:absolute;
  3602. left:0px;
  3603. top:0px;
  3604. width:353px;
  3605. height:80px;
  3606. background:inherit;
  3607. background-color:rgba(255, 255, 255, 1);
  3608. box-sizing:border-box;
  3609. border-width:1px;
  3610. border-style:solid;
  3611. border-color:rgba(242, 242, 242, 1);
  3612. border-radius:4px;
  3613. -moz-box-shadow:none;
  3614. -webkit-box-shadow:none;
  3615. box-shadow:none;
  3616. }
  3617. #u227166 {
  3618. border-width:0px;
  3619. position:absolute;
  3620. left:508px;
  3621. top:175px;
  3622. width:353px;
  3623. height:80px;
  3624. display:flex;
  3625. }
  3626. #u227166 .text {
  3627. position:absolute;
  3628. align-self:center;
  3629. padding:2px 2px 2px 2px;
  3630. box-sizing:border-box;
  3631. width:100%;
  3632. }
  3633. #u227166_text {
  3634. border-width:0px;
  3635. word-wrap:break-word;
  3636. text-transform:none;
  3637. visibility:hidden;
  3638. }
  3639. #u227167 {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:0px;
  3643. top:0px;
  3644. width:0px;
  3645. height:0px;
  3646. }
  3647. #u227168_div {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:0px;
  3651. top:0px;
  3652. width:109px;
  3653. height:30px;
  3654. background:inherit;
  3655. background-color:rgba(255, 255, 255, 0);
  3656. border:none;
  3657. border-left:0px;
  3658. border-top:0px;
  3659. border-right:0px;
  3660. border-radius:0px;
  3661. border-bottom-right-radius:0px;
  3662. border-bottom-left-radius:0px;
  3663. -moz-box-shadow:none;
  3664. -webkit-box-shadow:none;
  3665. box-shadow:none;
  3666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3667. font-weight:400;
  3668. font-style:normal;
  3669. font-size:18px;
  3670. line-height:30px;
  3671. }
  3672. #u227168 {
  3673. border-width:0px;
  3674. position:absolute;
  3675. left:580px;
  3676. top:189px;
  3677. width:109px;
  3678. height:30px;
  3679. display:flex;
  3680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3681. font-weight:400;
  3682. font-style:normal;
  3683. font-size:18px;
  3684. line-height:30px;
  3685. }
  3686. #u227168 .text {
  3687. position:absolute;
  3688. align-self:flex-start;
  3689. padding:0px 0px 0px 0px;
  3690. box-sizing:border-box;
  3691. width:100%;
  3692. }
  3693. #u227168_text {
  3694. border-width:0px;
  3695. white-space:nowrap;
  3696. text-transform:none;
  3697. }
  3698. #u227169_div {
  3699. border-width:0px;
  3700. position:absolute;
  3701. left:0px;
  3702. top:0px;
  3703. width:241px;
  3704. height:17px;
  3705. background:inherit;
  3706. background-color:rgba(255, 255, 255, 0);
  3707. border:none;
  3708. border-left:0px;
  3709. border-top:0px;
  3710. border-right:0px;
  3711. border-radius:0px;
  3712. border-bottom-right-radius:0px;
  3713. border-bottom-left-radius:0px;
  3714. -moz-box-shadow:none;
  3715. -webkit-box-shadow:none;
  3716. box-shadow:none;
  3717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3718. font-weight:400;
  3719. font-style:normal;
  3720. font-size:12px;
  3721. color:#AAAAAA;
  3722. }
  3723. #u227169 {
  3724. border-width:0px;
  3725. position:absolute;
  3726. left:581px;
  3727. top:224px;
  3728. width:241px;
  3729. height:17px;
  3730. display:flex;
  3731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3732. font-weight:400;
  3733. font-style:normal;
  3734. font-size:12px;
  3735. color:#AAAAAA;
  3736. }
  3737. #u227169 .text {
  3738. position:absolute;
  3739. align-self:flex-start;
  3740. padding:0px 0px 0px 0px;
  3741. box-sizing:border-box;
  3742. width:100%;
  3743. }
  3744. #u227169_text {
  3745. border-width:0px;
  3746. white-space:nowrap;
  3747. text-transform:none;
  3748. }
  3749. #u227170_img {
  3750. border-width:0px;
  3751. position:absolute;
  3752. left:0px;
  3753. top:0px;
  3754. width:41px;
  3755. height:41px;
  3756. }
  3757. #u227170 {
  3758. border-width:0px;
  3759. position:absolute;
  3760. left:528px;
  3761. top:192px;
  3762. width:41px;
  3763. height:41px;
  3764. display:flex;
  3765. }
  3766. #u227170 .text {
  3767. position:absolute;
  3768. align-self:center;
  3769. padding:2px 2px 2px 2px;
  3770. box-sizing:border-box;
  3771. width:100%;
  3772. }
  3773. #u227170_text {
  3774. border-width:0px;
  3775. word-wrap:break-word;
  3776. text-transform:none;
  3777. }
  3778. #u227171 {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:0px;
  3782. top:0px;
  3783. width:0px;
  3784. height:0px;
  3785. }
  3786. #u227172_div {
  3787. border-width:0px;
  3788. position:absolute;
  3789. left:0px;
  3790. top:0px;
  3791. width:353px;
  3792. height:80px;
  3793. background:inherit;
  3794. background-color:rgba(255, 255, 255, 1);
  3795. box-sizing:border-box;
  3796. border-width:1px;
  3797. border-style:solid;
  3798. border-color:rgba(242, 242, 242, 1);
  3799. border-radius:4px;
  3800. -moz-box-shadow:none;
  3801. -webkit-box-shadow:none;
  3802. box-shadow:none;
  3803. }
  3804. #u227172 {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:508px;
  3808. top:355px;
  3809. width:353px;
  3810. height:80px;
  3811. display:flex;
  3812. }
  3813. #u227172 .text {
  3814. position:absolute;
  3815. align-self:center;
  3816. padding:2px 2px 2px 2px;
  3817. box-sizing:border-box;
  3818. width:100%;
  3819. }
  3820. #u227172_text {
  3821. border-width:0px;
  3822. word-wrap:break-word;
  3823. text-transform:none;
  3824. visibility:hidden;
  3825. }
  3826. #u227173 {
  3827. border-width:0px;
  3828. position:absolute;
  3829. left:0px;
  3830. top:0px;
  3831. width:0px;
  3832. height:0px;
  3833. }
  3834. #u227174_div {
  3835. border-width:0px;
  3836. position:absolute;
  3837. left:0px;
  3838. top:0px;
  3839. width:73px;
  3840. height:30px;
  3841. background:inherit;
  3842. background-color:rgba(255, 255, 255, 0);
  3843. border:none;
  3844. border-left:0px;
  3845. border-top:0px;
  3846. border-right:0px;
  3847. border-radius:0px;
  3848. border-bottom-right-radius:0px;
  3849. border-bottom-left-radius:0px;
  3850. -moz-box-shadow:none;
  3851. -webkit-box-shadow:none;
  3852. box-shadow:none;
  3853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3854. font-weight:400;
  3855. font-style:normal;
  3856. font-size:18px;
  3857. line-height:30px;
  3858. }
  3859. #u227174 {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:580px;
  3863. top:369px;
  3864. width:73px;
  3865. height:30px;
  3866. display:flex;
  3867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3868. font-weight:400;
  3869. font-style:normal;
  3870. font-size:18px;
  3871. line-height:30px;
  3872. }
  3873. #u227174 .text {
  3874. position:absolute;
  3875. align-self:flex-start;
  3876. padding:0px 0px 0px 0px;
  3877. box-sizing:border-box;
  3878. width:100%;
  3879. }
  3880. #u227174_text {
  3881. border-width:0px;
  3882. white-space:nowrap;
  3883. text-transform:none;
  3884. }
  3885. #u227175_div {
  3886. border-width:0px;
  3887. position:absolute;
  3888. left:0px;
  3889. top:0px;
  3890. width:145px;
  3891. height:17px;
  3892. background:inherit;
  3893. background-color:rgba(255, 255, 255, 0);
  3894. border:none;
  3895. border-left:0px;
  3896. border-top:0px;
  3897. border-right:0px;
  3898. border-radius:0px;
  3899. border-bottom-right-radius:0px;
  3900. border-bottom-left-radius:0px;
  3901. -moz-box-shadow:none;
  3902. -webkit-box-shadow:none;
  3903. box-shadow:none;
  3904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3905. font-weight:400;
  3906. font-style:normal;
  3907. font-size:12px;
  3908. color:#AAAAAA;
  3909. }
  3910. #u227175 {
  3911. border-width:0px;
  3912. position:absolute;
  3913. left:581px;
  3914. top:404px;
  3915. width:145px;
  3916. height:17px;
  3917. display:flex;
  3918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3919. font-weight:400;
  3920. font-style:normal;
  3921. font-size:12px;
  3922. color:#AAAAAA;
  3923. }
  3924. #u227175 .text {
  3925. position:absolute;
  3926. align-self:flex-start;
  3927. padding:0px 0px 0px 0px;
  3928. box-sizing:border-box;
  3929. width:100%;
  3930. }
  3931. #u227175_text {
  3932. border-width:0px;
  3933. white-space:nowrap;
  3934. text-transform:none;
  3935. }
  3936. #u227176_img {
  3937. border-width:0px;
  3938. position:absolute;
  3939. left:0px;
  3940. top:0px;
  3941. width:41px;
  3942. height:41px;
  3943. }
  3944. #u227176 {
  3945. border-width:0px;
  3946. position:absolute;
  3947. left:528px;
  3948. top:372px;
  3949. width:41px;
  3950. height:41px;
  3951. display:flex;
  3952. }
  3953. #u227176 .text {
  3954. position:absolute;
  3955. align-self:center;
  3956. padding:2px 2px 2px 2px;
  3957. box-sizing:border-box;
  3958. width:100%;
  3959. }
  3960. #u227176_text {
  3961. border-width:0px;
  3962. word-wrap:break-word;
  3963. text-transform:none;
  3964. }
  3965. #u227177 {
  3966. border-width:0px;
  3967. position:absolute;
  3968. left:0px;
  3969. top:0px;
  3970. width:0px;
  3971. height:0px;
  3972. }
  3973. #u227178_div {
  3974. border-width:0px;
  3975. position:absolute;
  3976. left:0px;
  3977. top:0px;
  3978. width:353px;
  3979. height:80px;
  3980. background:inherit;
  3981. background-color:rgba(255, 255, 255, 1);
  3982. box-sizing:border-box;
  3983. border-width:1px;
  3984. border-style:solid;
  3985. border-color:rgba(242, 242, 242, 1);
  3986. border-radius:4px;
  3987. -moz-box-shadow:none;
  3988. -webkit-box-shadow:none;
  3989. box-shadow:none;
  3990. }
  3991. #u227178 {
  3992. border-width:0px;
  3993. position:absolute;
  3994. left:508px;
  3995. top:445px;
  3996. width:353px;
  3997. height:80px;
  3998. display:flex;
  3999. }
  4000. #u227178 .text {
  4001. position:absolute;
  4002. align-self:center;
  4003. padding:2px 2px 2px 2px;
  4004. box-sizing:border-box;
  4005. width:100%;
  4006. }
  4007. #u227178_text {
  4008. border-width:0px;
  4009. word-wrap:break-word;
  4010. text-transform:none;
  4011. visibility:hidden;
  4012. }
  4013. #u227179 {
  4014. border-width:0px;
  4015. position:absolute;
  4016. left:0px;
  4017. top:0px;
  4018. width:0px;
  4019. height:0px;
  4020. }
  4021. #u227180_div {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:0px;
  4025. top:0px;
  4026. width:73px;
  4027. height:30px;
  4028. background:inherit;
  4029. background-color:rgba(255, 255, 255, 0);
  4030. border:none;
  4031. border-left:0px;
  4032. border-top:0px;
  4033. border-right:0px;
  4034. border-radius:0px;
  4035. border-bottom-right-radius:0px;
  4036. border-bottom-left-radius:0px;
  4037. -moz-box-shadow:none;
  4038. -webkit-box-shadow:none;
  4039. box-shadow:none;
  4040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4041. font-weight:400;
  4042. font-style:normal;
  4043. font-size:18px;
  4044. line-height:30px;
  4045. }
  4046. #u227180 {
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:580px;
  4050. top:459px;
  4051. width:73px;
  4052. height:30px;
  4053. display:flex;
  4054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4055. font-weight:400;
  4056. font-style:normal;
  4057. font-size:18px;
  4058. line-height:30px;
  4059. }
  4060. #u227180 .text {
  4061. position:absolute;
  4062. align-self:flex-start;
  4063. padding:0px 0px 0px 0px;
  4064. box-sizing:border-box;
  4065. width:100%;
  4066. }
  4067. #u227180_text {
  4068. border-width:0px;
  4069. white-space:nowrap;
  4070. text-transform:none;
  4071. }
  4072. #u227181_div {
  4073. border-width:0px;
  4074. position:absolute;
  4075. left:0px;
  4076. top:0px;
  4077. width:115px;
  4078. height:17px;
  4079. background:inherit;
  4080. background-color:rgba(255, 255, 255, 0);
  4081. border:none;
  4082. border-left:0px;
  4083. border-top:0px;
  4084. border-right:0px;
  4085. border-radius:0px;
  4086. border-bottom-right-radius:0px;
  4087. border-bottom-left-radius:0px;
  4088. -moz-box-shadow:none;
  4089. -webkit-box-shadow:none;
  4090. box-shadow:none;
  4091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4092. font-weight:400;
  4093. font-style:normal;
  4094. font-size:12px;
  4095. color:#AAAAAA;
  4096. }
  4097. #u227181 {
  4098. border-width:0px;
  4099. position:absolute;
  4100. left:581px;
  4101. top:494px;
  4102. width:115px;
  4103. height:17px;
  4104. display:flex;
  4105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4106. font-weight:400;
  4107. font-style:normal;
  4108. font-size:12px;
  4109. color:#AAAAAA;
  4110. }
  4111. #u227181 .text {
  4112. position:absolute;
  4113. align-self:flex-start;
  4114. padding:0px 0px 0px 0px;
  4115. box-sizing:border-box;
  4116. width:100%;
  4117. }
  4118. #u227181_text {
  4119. border-width:0px;
  4120. white-space:nowrap;
  4121. text-transform:none;
  4122. }
  4123. #u227182_img {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:0px;
  4127. top:0px;
  4128. width:41px;
  4129. height:41px;
  4130. }
  4131. #u227182 {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:528px;
  4135. top:462px;
  4136. width:41px;
  4137. height:41px;
  4138. display:flex;
  4139. }
  4140. #u227182 .text {
  4141. position:absolute;
  4142. align-self:center;
  4143. padding:2px 2px 2px 2px;
  4144. box-sizing:border-box;
  4145. width:100%;
  4146. }
  4147. #u227182_text {
  4148. border-width:0px;
  4149. word-wrap:break-word;
  4150. text-transform:none;
  4151. }
  4152. #u227183 {
  4153. border-width:0px;
  4154. position:absolute;
  4155. left:0px;
  4156. top:0px;
  4157. width:0px;
  4158. height:0px;
  4159. }
  4160. #u227184_div {
  4161. border-width:0px;
  4162. position:absolute;
  4163. left:0px;
  4164. top:0px;
  4165. width:353px;
  4166. height:80px;
  4167. background:inherit;
  4168. background-color:rgba(255, 255, 255, 1);
  4169. box-sizing:border-box;
  4170. border-width:1px;
  4171. border-style:solid;
  4172. border-color:rgba(242, 242, 242, 1);
  4173. border-radius:4px;
  4174. -moz-box-shadow:none;
  4175. -webkit-box-shadow:none;
  4176. box-shadow:none;
  4177. }
  4178. #u227184 {
  4179. border-width:0px;
  4180. position:absolute;
  4181. left:508px;
  4182. top:265px;
  4183. width:353px;
  4184. height:80px;
  4185. display:flex;
  4186. }
  4187. #u227184 .text {
  4188. position:absolute;
  4189. align-self:center;
  4190. padding:2px 2px 2px 2px;
  4191. box-sizing:border-box;
  4192. width:100%;
  4193. }
  4194. #u227184_text {
  4195. border-width:0px;
  4196. word-wrap:break-word;
  4197. text-transform:none;
  4198. visibility:hidden;
  4199. }
  4200. #u227185 {
  4201. border-width:0px;
  4202. position:absolute;
  4203. left:0px;
  4204. top:0px;
  4205. width:0px;
  4206. height:0px;
  4207. }
  4208. #u227186_div {
  4209. border-width:0px;
  4210. position:absolute;
  4211. left:0px;
  4212. top:0px;
  4213. width:109px;
  4214. height:30px;
  4215. background:inherit;
  4216. background-color:rgba(255, 255, 255, 0);
  4217. border:none;
  4218. border-left:0px;
  4219. border-top:0px;
  4220. border-right:0px;
  4221. border-radius:0px;
  4222. border-bottom-right-radius:0px;
  4223. border-bottom-left-radius:0px;
  4224. -moz-box-shadow:none;
  4225. -webkit-box-shadow:none;
  4226. box-shadow:none;
  4227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4228. font-weight:400;
  4229. font-style:normal;
  4230. font-size:18px;
  4231. line-height:30px;
  4232. }
  4233. #u227186 {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:580px;
  4237. top:279px;
  4238. width:109px;
  4239. height:30px;
  4240. display:flex;
  4241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4242. font-weight:400;
  4243. font-style:normal;
  4244. font-size:18px;
  4245. line-height:30px;
  4246. }
  4247. #u227186 .text {
  4248. position:absolute;
  4249. align-self:flex-start;
  4250. padding:0px 0px 0px 0px;
  4251. box-sizing:border-box;
  4252. width:100%;
  4253. }
  4254. #u227186_text {
  4255. border-width:0px;
  4256. white-space:nowrap;
  4257. text-transform:none;
  4258. }
  4259. #u227187_div {
  4260. border-width:0px;
  4261. position:absolute;
  4262. left:0px;
  4263. top:0px;
  4264. width:241px;
  4265. height:17px;
  4266. background:inherit;
  4267. background-color:rgba(255, 255, 255, 0);
  4268. border:none;
  4269. border-left:0px;
  4270. border-top:0px;
  4271. border-right:0px;
  4272. border-radius:0px;
  4273. border-bottom-right-radius:0px;
  4274. border-bottom-left-radius:0px;
  4275. -moz-box-shadow:none;
  4276. -webkit-box-shadow:none;
  4277. box-shadow:none;
  4278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4279. font-weight:400;
  4280. font-style:normal;
  4281. font-size:12px;
  4282. color:#AAAAAA;
  4283. }
  4284. #u227187 {
  4285. border-width:0px;
  4286. position:absolute;
  4287. left:581px;
  4288. top:314px;
  4289. width:241px;
  4290. height:17px;
  4291. display:flex;
  4292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4293. font-weight:400;
  4294. font-style:normal;
  4295. font-size:12px;
  4296. color:#AAAAAA;
  4297. }
  4298. #u227187 .text {
  4299. position:absolute;
  4300. align-self:flex-start;
  4301. padding:0px 0px 0px 0px;
  4302. box-sizing:border-box;
  4303. width:100%;
  4304. }
  4305. #u227187_text {
  4306. border-width:0px;
  4307. white-space:nowrap;
  4308. text-transform:none;
  4309. }
  4310. #u227188_img {
  4311. border-width:0px;
  4312. position:absolute;
  4313. left:0px;
  4314. top:0px;
  4315. width:41px;
  4316. height:41px;
  4317. }
  4318. #u227188 {
  4319. border-width:0px;
  4320. position:absolute;
  4321. left:528px;
  4322. top:282px;
  4323. width:41px;
  4324. height:41px;
  4325. display:flex;
  4326. }
  4327. #u227188 .text {
  4328. position:absolute;
  4329. align-self:center;
  4330. padding:2px 2px 2px 2px;
  4331. box-sizing:border-box;
  4332. width:100%;
  4333. }
  4334. #u227188_text {
  4335. border-width:0px;
  4336. word-wrap:break-word;
  4337. text-transform:none;
  4338. }