styles.css 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:433px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u154448_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u154448 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u154448 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u154448_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u154449_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. #u154449 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u154449 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u154449_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u154450 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u154451_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. #u154451 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u154451 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u154451_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u154452 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u154453_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u154453 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u154453 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u154453_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u154454_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u154454 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u154454 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u154454_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u154455 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u154456_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u154456 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u154456 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u154456_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u154457_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u154457 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u154457 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u154457_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u154458_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u154458 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u154458 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u154458_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u154459_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u154459 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u154459 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u154459_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u154460_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u154460 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u154460 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u154460_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u154461_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. #u154461 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u154461 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u154461_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u154462 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u154463_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u154463 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u154463 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u154463_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u154464_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. #u154464 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u154464 .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. #u154464_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u154465 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u154466_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u154466 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u154466 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u154466_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u154467_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. #u154467 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u154467 .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. #u154467_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u154468_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. #u154468 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u154468 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u154468_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u154469 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u154470_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u154470 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u154470 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u154470_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u154471_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. #u154471 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u154471 .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. #u154471_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u154472 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u154473_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u154473 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u154473 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u154473_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u154474_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. #u154474 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u154474 .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. #u154474_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u154475_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:1596px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 0.996078431372549);
  788. border:none;
  789. border-top:0px;
  790. border-radius:28px;
  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. #u154475 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:107px;
  802. width:375px;
  803. height:1596px;
  804. display:flex;
  805. }
  806. #u154475 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u154475_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u154476_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:375px;
  825. height:100px;
  826. background:inherit;
  827. background-color:rgba(255, 255, 255, 1);
  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. }
  839. #u154476 {
  840. border-width:0px;
  841. position:absolute;
  842. left:29px;
  843. top:107px;
  844. width:375px;
  845. height:100px;
  846. display:flex;
  847. }
  848. #u154476 .text {
  849. position:absolute;
  850. align-self:center;
  851. padding:2px 2px 2px 2px;
  852. box-sizing:border-box;
  853. width:100%;
  854. }
  855. #u154476_text {
  856. border-width:0px;
  857. word-wrap:break-word;
  858. text-transform:none;
  859. visibility:hidden;
  860. }
  861. #u154477_div {
  862. border-width:0px;
  863. position:absolute;
  864. left:0px;
  865. top:0px;
  866. width:375px;
  867. height:40px;
  868. background:inherit;
  869. background-color:rgba(255, 255, 255, 1);
  870. box-sizing:border-box;
  871. border-width:1px;
  872. border-style:solid;
  873. border-color:rgba(215, 215, 215, 1);
  874. border-left:0px;
  875. border-top:0px;
  876. border-right:0px;
  877. border-radius:0px;
  878. border-bottom-right-radius:0px;
  879. border-bottom-left-radius:0px;
  880. -moz-box-shadow:none;
  881. -webkit-box-shadow:none;
  882. box-shadow:none;
  883. }
  884. #u154477 {
  885. border-width:0px;
  886. position:absolute;
  887. left:29px;
  888. top:67px;
  889. width:375px;
  890. height:40px;
  891. display:flex;
  892. }
  893. #u154477 .text {
  894. position:absolute;
  895. align-self:center;
  896. padding:2px 2px 2px 2px;
  897. box-sizing:border-box;
  898. width:100%;
  899. }
  900. #u154477_text {
  901. border-width:0px;
  902. word-wrap:break-word;
  903. text-transform:none;
  904. visibility:hidden;
  905. }
  906. #u154478_img {
  907. border-width:0px;
  908. position:absolute;
  909. left:0px;
  910. top:0px;
  911. width:375px;
  912. height:44px;
  913. }
  914. #u154478 {
  915. border-width:0px;
  916. position:absolute;
  917. left:29px;
  918. top:24px;
  919. width:375px;
  920. height:44px;
  921. display:flex;
  922. }
  923. #u154478 .text {
  924. position:absolute;
  925. align-self:center;
  926. padding:2px 2px 2px 2px;
  927. box-sizing:border-box;
  928. width:100%;
  929. }
  930. #u154478_text {
  931. border-width:0px;
  932. word-wrap:break-word;
  933. text-transform:none;
  934. visibility:hidden;
  935. }
  936. #u154479 {
  937. border-width:0px;
  938. position:absolute;
  939. left:0px;
  940. top:0px;
  941. width:0px;
  942. height:0px;
  943. }
  944. #u154480_div {
  945. border-width:0px;
  946. position:absolute;
  947. left:0px;
  948. top:0px;
  949. width:88px;
  950. height:32px;
  951. background:inherit;
  952. background-color:rgba(255, 255, 255, 1);
  953. box-sizing:border-box;
  954. border-width:1px;
  955. border-style:solid;
  956. border-color:rgba(242, 242, 242, 1);
  957. border-radius:33px;
  958. -moz-box-shadow:none;
  959. -webkit-box-shadow:none;
  960. box-shadow:none;
  961. }
  962. #u154480 {
  963. border-width:0px;
  964. position:absolute;
  965. left:309px;
  966. top:71px;
  967. width:88px;
  968. height:32px;
  969. display:flex;
  970. }
  971. #u154480 .text {
  972. position:absolute;
  973. align-self:center;
  974. padding:2px 2px 2px 2px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u154480_text {
  979. border-width:0px;
  980. word-wrap:break-word;
  981. text-transform:none;
  982. visibility:hidden;
  983. }
  984. #u154481 {
  985. border-width:0px;
  986. position:absolute;
  987. left:0px;
  988. top:0px;
  989. width:0px;
  990. height:0px;
  991. }
  992. #u154482_img {
  993. border-width:0px;
  994. position:absolute;
  995. left:0px;
  996. top:0px;
  997. width:18px;
  998. height:18px;
  999. }
  1000. #u154482 {
  1001. border-width:0px;
  1002. position:absolute;
  1003. left:372px;
  1004. top:78px;
  1005. width:18px;
  1006. height:18px;
  1007. display:flex;
  1008. }
  1009. #u154482 .text {
  1010. position:absolute;
  1011. align-self:center;
  1012. padding:2px 2px 2px 2px;
  1013. box-sizing:border-box;
  1014. width:100%;
  1015. }
  1016. #u154482_text {
  1017. border-width:0px;
  1018. word-wrap:break-word;
  1019. text-transform:none;
  1020. visibility:hidden;
  1021. }
  1022. #u154483_img {
  1023. border-width:0px;
  1024. position:absolute;
  1025. left:0px;
  1026. top:0px;
  1027. width:6px;
  1028. height:6px;
  1029. }
  1030. #u154483 {
  1031. border-width:0px;
  1032. position:absolute;
  1033. left:378px;
  1034. top:84px;
  1035. width:6px;
  1036. height:6px;
  1037. display:flex;
  1038. }
  1039. #u154483 .text {
  1040. position:absolute;
  1041. align-self:center;
  1042. padding:2px 2px 2px 2px;
  1043. box-sizing:border-box;
  1044. width:100%;
  1045. }
  1046. #u154483_text {
  1047. border-width:0px;
  1048. word-wrap:break-word;
  1049. text-transform:none;
  1050. visibility:hidden;
  1051. }
  1052. #u154484 {
  1053. border-width:0px;
  1054. position:absolute;
  1055. left:0px;
  1056. top:0px;
  1057. width:0px;
  1058. height:0px;
  1059. }
  1060. #u154485_img {
  1061. border-width:0px;
  1062. position:absolute;
  1063. left:0px;
  1064. top:0px;
  1065. width:5px;
  1066. height:5px;
  1067. }
  1068. #u154485 {
  1069. border-width:0px;
  1070. position:absolute;
  1071. left:323px;
  1072. top:85px;
  1073. width:5px;
  1074. height:5px;
  1075. display:flex;
  1076. }
  1077. #u154485 .text {
  1078. position:absolute;
  1079. align-self:center;
  1080. padding:2px 2px 2px 2px;
  1081. box-sizing:border-box;
  1082. width:100%;
  1083. }
  1084. #u154485_text {
  1085. border-width:0px;
  1086. word-wrap:break-word;
  1087. text-transform:none;
  1088. visibility:hidden;
  1089. }
  1090. #u154486_img {
  1091. border-width:0px;
  1092. position:absolute;
  1093. left:0px;
  1094. top:0px;
  1095. width:5px;
  1096. height:5px;
  1097. }
  1098. #u154486 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:339px;
  1102. top:85px;
  1103. width:5px;
  1104. height:5px;
  1105. display:flex;
  1106. }
  1107. #u154486 .text {
  1108. position:absolute;
  1109. align-self:center;
  1110. padding:2px 2px 2px 2px;
  1111. box-sizing:border-box;
  1112. width:100%;
  1113. }
  1114. #u154486_text {
  1115. border-width:0px;
  1116. word-wrap:break-word;
  1117. text-transform:none;
  1118. visibility:hidden;
  1119. }
  1120. #u154487_img {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:0px;
  1124. top:0px;
  1125. width:7px;
  1126. height:7px;
  1127. }
  1128. #u154487 {
  1129. border-width:0px;
  1130. position:absolute;
  1131. left:330px;
  1132. top:84px;
  1133. width:7px;
  1134. height:7px;
  1135. display:flex;
  1136. }
  1137. #u154487 .text {
  1138. position:absolute;
  1139. align-self:center;
  1140. padding:2px 2px 2px 2px;
  1141. box-sizing:border-box;
  1142. width:100%;
  1143. }
  1144. #u154487_text {
  1145. border-width:0px;
  1146. word-wrap:break-word;
  1147. text-transform:none;
  1148. visibility:hidden;
  1149. }
  1150. #u154488_img {
  1151. border-width:0px;
  1152. position:absolute;
  1153. left:0px;
  1154. top:0px;
  1155. width:19px;
  1156. height:2px;
  1157. }
  1158. #u154488 {
  1159. border-width:0px;
  1160. position:absolute;
  1161. left:347px;
  1162. top:87px;
  1163. width:18px;
  1164. height:1px;
  1165. display:flex;
  1166. -webkit-transform:rotate(90deg);
  1167. -moz-transform:rotate(90deg);
  1168. -ms-transform:rotate(90deg);
  1169. transform:rotate(90deg);
  1170. }
  1171. #u154488 .text {
  1172. position:absolute;
  1173. align-self:center;
  1174. padding:2px 2px 2px 2px;
  1175. box-sizing:border-box;
  1176. width:100%;
  1177. }
  1178. #u154488_text {
  1179. border-width:0px;
  1180. word-wrap:break-word;
  1181. text-transform:none;
  1182. visibility:hidden;
  1183. }
  1184. #u154489_div {
  1185. border-width:0px;
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:33px;
  1190. height:22px;
  1191. background:inherit;
  1192. background-color:rgba(255, 255, 255, 0);
  1193. border:none;
  1194. border-radius:0px;
  1195. -moz-box-shadow:none;
  1196. -webkit-box-shadow:none;
  1197. box-shadow:none;
  1198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1199. font-weight:400;
  1200. font-style:normal;
  1201. font-size:16px;
  1202. color:#000000;
  1203. }
  1204. #u154489 {
  1205. border-width:0px;
  1206. position:absolute;
  1207. left:64px;
  1208. top:76px;
  1209. width:33px;
  1210. height:22px;
  1211. display:flex;
  1212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1213. font-weight:400;
  1214. font-style:normal;
  1215. font-size:16px;
  1216. color:#000000;
  1217. }
  1218. #u154489 .text {
  1219. position:absolute;
  1220. align-self:flex-start;
  1221. padding:0px 0px 0px 0px;
  1222. box-sizing:border-box;
  1223. width:100%;
  1224. }
  1225. #u154489_text {
  1226. border-width:0px;
  1227. white-space:nowrap;
  1228. text-transform:none;
  1229. }
  1230. #u154490_div {
  1231. border-width:0px;
  1232. position:absolute;
  1233. left:0px;
  1234. top:0px;
  1235. width:12px;
  1236. height:12px;
  1237. background:inherit;
  1238. background-color:rgba(255, 255, 255, 0);
  1239. box-sizing:border-box;
  1240. border-width:2px;
  1241. border-style:solid;
  1242. border-color:rgba(51, 51, 51, 1);
  1243. border-right:0px;
  1244. border-bottom:0px;
  1245. border-radius:0px;
  1246. border-top-right-radius:0px;
  1247. border-bottom-left-radius:0px;
  1248. -moz-box-shadow:none;
  1249. -webkit-box-shadow:none;
  1250. box-shadow:none;
  1251. }
  1252. #u154490 {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:44px;
  1256. top:81px;
  1257. width:12px;
  1258. height:12px;
  1259. display:flex;
  1260. -webkit-transform:rotate(315deg);
  1261. -moz-transform:rotate(315deg);
  1262. -ms-transform:rotate(315deg);
  1263. transform:rotate(315deg);
  1264. }
  1265. #u154490 .text {
  1266. position:absolute;
  1267. align-self:center;
  1268. padding:2px 2px 2px 2px;
  1269. box-sizing:border-box;
  1270. width:100%;
  1271. }
  1272. #u154490_text {
  1273. border-width:0px;
  1274. word-wrap:break-word;
  1275. text-transform:none;
  1276. visibility:hidden;
  1277. }
  1278. #u154491_img {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:0px;
  1282. top:0px;
  1283. width:355px;
  1284. height:620px;
  1285. }
  1286. #u154491 {
  1287. border-width:0px;
  1288. position:absolute;
  1289. left:39px;
  1290. top:367px;
  1291. width:355px;
  1292. height:620px;
  1293. display:flex;
  1294. }
  1295. #u154491 .text {
  1296. position:absolute;
  1297. align-self:center;
  1298. padding:2px 2px 2px 2px;
  1299. box-sizing:border-box;
  1300. width:100%;
  1301. }
  1302. #u154491_text {
  1303. border-width:0px;
  1304. word-wrap:break-word;
  1305. text-transform:none;
  1306. visibility:hidden;
  1307. }
  1308. #u154492_div {
  1309. border-width:0px;
  1310. position:absolute;
  1311. left:0px;
  1312. top:0px;
  1313. width:318px;
  1314. height:40px;
  1315. background:inherit;
  1316. background-color:rgba(255, 255, 255, 1);
  1317. box-sizing:border-box;
  1318. border-width:1px;
  1319. border-style:solid;
  1320. border-color:rgba(242, 242, 242, 1);
  1321. border-left:0px;
  1322. border-top:0px;
  1323. border-right:0px;
  1324. border-radius:4px;
  1325. border-bottom-right-radius:0px;
  1326. border-bottom-left-radius:0px;
  1327. -moz-box-shadow:none;
  1328. -webkit-box-shadow:none;
  1329. box-shadow:none;
  1330. }
  1331. #u154492 {
  1332. border-width:0px;
  1333. position:absolute;
  1334. left:63px;
  1335. top:407px;
  1336. width:318px;
  1337. height:40px;
  1338. display:flex;
  1339. }
  1340. #u154492 .text {
  1341. position:absolute;
  1342. align-self:center;
  1343. padding:2px 2px 2px 2px;
  1344. box-sizing:border-box;
  1345. width:100%;
  1346. }
  1347. #u154492_text {
  1348. border-width:0px;
  1349. word-wrap:break-word;
  1350. text-transform:none;
  1351. visibility:hidden;
  1352. }
  1353. #u154493_div {
  1354. border-width:0px;
  1355. position:absolute;
  1356. left:0px;
  1357. top:0px;
  1358. width:61px;
  1359. height:30px;
  1360. background:inherit;
  1361. background-color:rgba(255, 255, 255, 0);
  1362. border:none;
  1363. border-left:0px;
  1364. border-top:0px;
  1365. border-right:0px;
  1366. border-radius:0px;
  1367. border-bottom-right-radius:0px;
  1368. border-bottom-left-radius:0px;
  1369. -moz-box-shadow:none;
  1370. -webkit-box-shadow:none;
  1371. box-shadow:none;
  1372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1373. font-weight:400;
  1374. font-style:normal;
  1375. font-size:12px;
  1376. line-height:30px;
  1377. }
  1378. #u154493 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:74px;
  1382. top:412px;
  1383. width:61px;
  1384. height:30px;
  1385. display:flex;
  1386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1387. font-weight:400;
  1388. font-style:normal;
  1389. font-size:12px;
  1390. line-height:30px;
  1391. }
  1392. #u154493 .text {
  1393. position:absolute;
  1394. align-self:flex-start;
  1395. padding:0px 0px 0px 0px;
  1396. box-sizing:border-box;
  1397. width:100%;
  1398. }
  1399. #u154493_text {
  1400. border-width:0px;
  1401. white-space:nowrap;
  1402. text-transform:none;
  1403. }
  1404. #u154494_div {
  1405. border-width:0px;
  1406. position:absolute;
  1407. left:0px;
  1408. top:0px;
  1409. width:318px;
  1410. height:40px;
  1411. background:inherit;
  1412. background-color:rgba(255, 255, 255, 1);
  1413. border:none;
  1414. border-left:0px;
  1415. border-top:0px;
  1416. border-right:0px;
  1417. border-radius:4px;
  1418. border-bottom-right-radius:0px;
  1419. border-bottom-left-radius:0px;
  1420. -moz-box-shadow:none;
  1421. -webkit-box-shadow:none;
  1422. box-shadow:none;
  1423. }
  1424. #u154494 {
  1425. border-width:0px;
  1426. position:absolute;
  1427. left:63px;
  1428. top:488px;
  1429. width:318px;
  1430. height:40px;
  1431. display:flex;
  1432. }
  1433. #u154494 .text {
  1434. position:absolute;
  1435. align-self:center;
  1436. padding:2px 2px 2px 2px;
  1437. box-sizing:border-box;
  1438. width:100%;
  1439. }
  1440. #u154494_text {
  1441. border-width:0px;
  1442. word-wrap:break-word;
  1443. text-transform:none;
  1444. visibility:hidden;
  1445. }
  1446. #u154495_div {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:0px;
  1450. top:0px;
  1451. width:61px;
  1452. height:30px;
  1453. background:inherit;
  1454. background-color:rgba(255, 255, 255, 0);
  1455. border:none;
  1456. border-left:0px;
  1457. border-top:0px;
  1458. border-right:0px;
  1459. border-radius:0px;
  1460. border-bottom-right-radius:0px;
  1461. border-bottom-left-radius:0px;
  1462. -moz-box-shadow:none;
  1463. -webkit-box-shadow:none;
  1464. box-shadow:none;
  1465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1466. font-weight:400;
  1467. font-style:normal;
  1468. font-size:12px;
  1469. line-height:30px;
  1470. }
  1471. #u154495 {
  1472. border-width:0px;
  1473. position:absolute;
  1474. left:74px;
  1475. top:493px;
  1476. width:61px;
  1477. height:30px;
  1478. display:flex;
  1479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1480. font-weight:400;
  1481. font-style:normal;
  1482. font-size:12px;
  1483. line-height:30px;
  1484. }
  1485. #u154495 .text {
  1486. position:absolute;
  1487. align-self:flex-start;
  1488. padding:0px 0px 0px 0px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u154495_text {
  1493. border-width:0px;
  1494. white-space:nowrap;
  1495. text-transform:none;
  1496. }
  1497. #u154496_div {
  1498. border-width:0px;
  1499. position:absolute;
  1500. left:0px;
  1501. top:0px;
  1502. width:318px;
  1503. height:40px;
  1504. background:inherit;
  1505. background-color:rgba(255, 255, 255, 1);
  1506. box-sizing:border-box;
  1507. border-width:1px;
  1508. border-style:solid;
  1509. border-color:rgba(242, 242, 242, 1);
  1510. border-left:0px;
  1511. border-top:0px;
  1512. border-right:0px;
  1513. border-radius:4px;
  1514. border-bottom-right-radius:0px;
  1515. border-bottom-left-radius:0px;
  1516. -moz-box-shadow:none;
  1517. -webkit-box-shadow:none;
  1518. box-shadow:none;
  1519. }
  1520. #u154496 {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:63px;
  1524. top:447px;
  1525. width:318px;
  1526. height:40px;
  1527. display:flex;
  1528. }
  1529. #u154496 .text {
  1530. position:absolute;
  1531. align-self:center;
  1532. padding:2px 2px 2px 2px;
  1533. box-sizing:border-box;
  1534. width:100%;
  1535. }
  1536. #u154496_text {
  1537. border-width:0px;
  1538. word-wrap:break-word;
  1539. text-transform:none;
  1540. visibility:hidden;
  1541. }
  1542. #u154497_div {
  1543. border-width:0px;
  1544. position:absolute;
  1545. left:0px;
  1546. top:0px;
  1547. width:61px;
  1548. height:30px;
  1549. background:inherit;
  1550. background-color:rgba(255, 255, 255, 0);
  1551. border:none;
  1552. border-left:0px;
  1553. border-top:0px;
  1554. border-right:0px;
  1555. border-radius:0px;
  1556. border-bottom-right-radius:0px;
  1557. border-bottom-left-radius:0px;
  1558. -moz-box-shadow:none;
  1559. -webkit-box-shadow:none;
  1560. box-shadow:none;
  1561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1562. font-weight:400;
  1563. font-style:normal;
  1564. font-size:12px;
  1565. line-height:30px;
  1566. }
  1567. #u154497 {
  1568. border-width:0px;
  1569. position:absolute;
  1570. left:74px;
  1571. top:452px;
  1572. width:61px;
  1573. height:30px;
  1574. display:flex;
  1575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1576. font-weight:400;
  1577. font-style:normal;
  1578. font-size:12px;
  1579. line-height:30px;
  1580. }
  1581. #u154497 .text {
  1582. position:absolute;
  1583. align-self:flex-start;
  1584. padding:0px 0px 0px 0px;
  1585. box-sizing:border-box;
  1586. width:100%;
  1587. }
  1588. #u154497_text {
  1589. border-width:0px;
  1590. white-space:nowrap;
  1591. text-transform:none;
  1592. }
  1593. #u154498_div {
  1594. border-width:0px;
  1595. position:absolute;
  1596. left:0px;
  1597. top:0px;
  1598. width:67px;
  1599. height:30px;
  1600. background:inherit;
  1601. background-color:rgba(255, 255, 255, 0);
  1602. border:none;
  1603. border-left:0px;
  1604. border-top:0px;
  1605. border-right:0px;
  1606. border-radius:0px;
  1607. border-bottom-right-radius:0px;
  1608. border-bottom-left-radius:0px;
  1609. -moz-box-shadow:none;
  1610. -webkit-box-shadow:none;
  1611. box-shadow:none;
  1612. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1613. font-weight:500;
  1614. font-style:normal;
  1615. font-size:14px;
  1616. text-align:right;
  1617. line-height:30px;
  1618. }
  1619. #u154498 {
  1620. border-width:0px;
  1621. position:absolute;
  1622. left:307px;
  1623. top:412px;
  1624. width:67px;
  1625. height:30px;
  1626. display:flex;
  1627. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1628. font-weight:500;
  1629. font-style:normal;
  1630. font-size:14px;
  1631. text-align:right;
  1632. line-height:30px;
  1633. }
  1634. #u154498 .text {
  1635. position:absolute;
  1636. align-self:flex-start;
  1637. padding:0px 0px 0px 0px;
  1638. box-sizing:border-box;
  1639. width:100%;
  1640. }
  1641. #u154498_text {
  1642. border-width:0px;
  1643. white-space:nowrap;
  1644. text-transform:none;
  1645. }
  1646. #u154499_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:123px;
  1652. height:30px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 0);
  1655. border:none;
  1656. border-left:0px;
  1657. border-top:0px;
  1658. border-right:0px;
  1659. border-radius:0px;
  1660. border-bottom-right-radius:0px;
  1661. border-bottom-left-radius:0px;
  1662. -moz-box-shadow:none;
  1663. -webkit-box-shadow:none;
  1664. box-shadow:none;
  1665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1666. font-weight:400;
  1667. font-style:normal;
  1668. font-size:12px;
  1669. text-align:right;
  1670. line-height:30px;
  1671. }
  1672. #u154499 {
  1673. border-width:0px;
  1674. position:absolute;
  1675. left:251px;
  1676. top:493px;
  1677. width:123px;
  1678. height:30px;
  1679. display:flex;
  1680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1681. font-weight:400;
  1682. font-style:normal;
  1683. font-size:12px;
  1684. text-align:right;
  1685. line-height:30px;
  1686. }
  1687. #u154499 .text {
  1688. position:absolute;
  1689. align-self:flex-start;
  1690. padding:0px 0px 0px 0px;
  1691. box-sizing:border-box;
  1692. width:100%;
  1693. }
  1694. #u154499_text {
  1695. border-width:0px;
  1696. white-space:nowrap;
  1697. text-transform:none;
  1698. }
  1699. #u154500_div {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:0px;
  1703. top:0px;
  1704. width:57px;
  1705. height:30px;
  1706. background:inherit;
  1707. background-color:rgba(255, 255, 255, 0);
  1708. border:none;
  1709. border-left:0px;
  1710. border-top:0px;
  1711. border-right:0px;
  1712. border-radius:0px;
  1713. border-bottom-right-radius:0px;
  1714. border-bottom-left-radius:0px;
  1715. -moz-box-shadow:none;
  1716. -webkit-box-shadow:none;
  1717. box-shadow:none;
  1718. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1719. font-weight:500;
  1720. font-style:normal;
  1721. font-size:14px;
  1722. text-align:right;
  1723. line-height:30px;
  1724. }
  1725. #u154500 {
  1726. border-width:0px;
  1727. position:absolute;
  1728. left:317px;
  1729. top:452px;
  1730. width:57px;
  1731. height:30px;
  1732. display:flex;
  1733. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1734. font-weight:500;
  1735. font-style:normal;
  1736. font-size:14px;
  1737. text-align:right;
  1738. line-height:30px;
  1739. }
  1740. #u154500 .text {
  1741. position:absolute;
  1742. align-self:flex-start;
  1743. padding:0px 0px 0px 0px;
  1744. box-sizing:border-box;
  1745. width:100%;
  1746. }
  1747. #u154500_text {
  1748. border-width:0px;
  1749. white-space:nowrap;
  1750. text-transform:none;
  1751. }
  1752. #u154501 {
  1753. border-width:0px;
  1754. position:absolute;
  1755. left:0px;
  1756. top:0px;
  1757. width:0px;
  1758. height:0px;
  1759. }
  1760. #u154502_div {
  1761. border-width:0px;
  1762. position:absolute;
  1763. left:0px;
  1764. top:0px;
  1765. width:318px;
  1766. height:430px;
  1767. background:inherit;
  1768. background-color:rgba(242, 242, 242, 1);
  1769. border:none;
  1770. border-radius:4px;
  1771. -moz-box-shadow:none;
  1772. -webkit-box-shadow:none;
  1773. box-shadow:none;
  1774. }
  1775. #u154502 {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:63px;
  1779. top:538px;
  1780. width:318px;
  1781. height:430px;
  1782. display:flex;
  1783. }
  1784. #u154502 .text {
  1785. position:absolute;
  1786. align-self:center;
  1787. padding:2px 2px 2px 2px;
  1788. box-sizing:border-box;
  1789. width:100%;
  1790. }
  1791. #u154502_text {
  1792. border-width:0px;
  1793. word-wrap:break-word;
  1794. text-transform:none;
  1795. visibility:hidden;
  1796. }
  1797. #u154503_div {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:188px;
  1803. height:240px;
  1804. background:inherit;
  1805. background-color:rgba(255, 255, 255, 0);
  1806. border:none;
  1807. border-left:0px;
  1808. border-top:0px;
  1809. border-right:0px;
  1810. border-radius:0px;
  1811. border-bottom-right-radius:0px;
  1812. border-bottom-left-radius:0px;
  1813. -moz-box-shadow:none;
  1814. -webkit-box-shadow:none;
  1815. box-shadow:none;
  1816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1817. font-weight:400;
  1818. font-style:normal;
  1819. font-size:12px;
  1820. color:#7F7F7F;
  1821. line-height:30px;
  1822. }
  1823. #u154503 {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:73px;
  1827. top:548px;
  1828. width:188px;
  1829. height:240px;
  1830. display:flex;
  1831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1832. font-weight:400;
  1833. font-style:normal;
  1834. font-size:12px;
  1835. color:#7F7F7F;
  1836. line-height:30px;
  1837. }
  1838. #u154503 .text {
  1839. position:absolute;
  1840. align-self:flex-start;
  1841. padding:0px 0px 0px 0px;
  1842. box-sizing:border-box;
  1843. width:100%;
  1844. }
  1845. #u154503_text {
  1846. border-width:0px;
  1847. white-space:nowrap;
  1848. text-transform:none;
  1849. }
  1850. #u154504_img {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:0px;
  1854. top:0px;
  1855. width:291px;
  1856. height:160px;
  1857. }
  1858. #u154504 {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:73px;
  1862. top:788px;
  1863. width:291px;
  1864. height:160px;
  1865. display:flex;
  1866. }
  1867. #u154504 .text {
  1868. position:absolute;
  1869. align-self:center;
  1870. padding:2px 2px 2px 2px;
  1871. box-sizing:border-box;
  1872. width:100%;
  1873. }
  1874. #u154504_text {
  1875. border-width:0px;
  1876. word-wrap:break-word;
  1877. text-transform:none;
  1878. visibility:hidden;
  1879. }
  1880. #u154505_div {
  1881. border-width:0px;
  1882. position:absolute;
  1883. left:0px;
  1884. top:0px;
  1885. width:160px;
  1886. height:30px;
  1887. background:inherit;
  1888. background-color:rgba(255, 255, 255, 0);
  1889. border:none;
  1890. border-left:0px;
  1891. border-top:0px;
  1892. border-right:0px;
  1893. border-radius:0px;
  1894. border-bottom-right-radius:0px;
  1895. border-bottom-left-radius:0px;
  1896. -moz-box-shadow:none;
  1897. -webkit-box-shadow:none;
  1898. box-shadow:none;
  1899. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1900. font-weight:500;
  1901. font-style:normal;
  1902. font-size:14px;
  1903. line-height:30px;
  1904. }
  1905. #u154505 {
  1906. border-width:0px;
  1907. position:absolute;
  1908. left:56px;
  1909. top:117px;
  1910. width:160px;
  1911. height:30px;
  1912. display:flex;
  1913. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1914. font-weight:500;
  1915. font-style:normal;
  1916. font-size:14px;
  1917. line-height:30px;
  1918. }
  1919. #u154505 .text {
  1920. position:absolute;
  1921. align-self:flex-start;
  1922. padding:0px 0px 0px 0px;
  1923. box-sizing:border-box;
  1924. width:100%;
  1925. }
  1926. #u154505_text {
  1927. border-width:0px;
  1928. white-space:nowrap;
  1929. text-transform:none;
  1930. }
  1931. #u154506_div {
  1932. border-width:0px;
  1933. position:absolute;
  1934. left:0px;
  1935. top:0px;
  1936. width:325px;
  1937. height:50px;
  1938. background:inherit;
  1939. background-color:rgba(255, 255, 255, 0);
  1940. border:none;
  1941. border-left:0px;
  1942. border-top:0px;
  1943. border-right:0px;
  1944. border-radius:0px;
  1945. border-bottom-right-radius:0px;
  1946. border-bottom-left-radius:0px;
  1947. -moz-box-shadow:none;
  1948. -webkit-box-shadow:none;
  1949. box-shadow:none;
  1950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1951. font-weight:400;
  1952. font-style:normal;
  1953. font-size:12px;
  1954. line-height:25px;
  1955. }
  1956. #u154506 {
  1957. border-width:0px;
  1958. position:absolute;
  1959. left:56px;
  1960. top:147px;
  1961. width:325px;
  1962. height:50px;
  1963. display:flex;
  1964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1965. font-weight:400;
  1966. font-style:normal;
  1967. font-size:12px;
  1968. line-height:25px;
  1969. }
  1970. #u154506 .text {
  1971. position:absolute;
  1972. align-self:flex-start;
  1973. padding:0px 0px 0px 0px;
  1974. box-sizing:border-box;
  1975. width:100%;
  1976. }
  1977. #u154506_text {
  1978. border-width:0px;
  1979. word-wrap:break-word;
  1980. text-transform:none;
  1981. }
  1982. #u154507 {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:0px;
  1986. top:0px;
  1987. width:0px;
  1988. height:0px;
  1989. }
  1990. #u154508_div {
  1991. border-width:0px;
  1992. position:absolute;
  1993. left:0px;
  1994. top:0px;
  1995. width:355px;
  1996. height:192px;
  1997. background:inherit;
  1998. background-color:rgba(255, 255, 255, 1);
  1999. border:none;
  2000. border-radius:0px;
  2001. -moz-box-shadow:none;
  2002. -webkit-box-shadow:none;
  2003. box-shadow:none;
  2004. }
  2005. #u154508 {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:39px;
  2009. top:1431px;
  2010. width:355px;
  2011. height:192px;
  2012. display:flex;
  2013. }
  2014. #u154508 .text {
  2015. position:absolute;
  2016. align-self:center;
  2017. padding:2px 2px 2px 2px;
  2018. box-sizing:border-box;
  2019. width:100%;
  2020. }
  2021. #u154508_text {
  2022. border-width:0px;
  2023. word-wrap:break-word;
  2024. text-transform:none;
  2025. visibility:hidden;
  2026. }
  2027. #u154509_div {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:0px;
  2031. top:0px;
  2032. width:103px;
  2033. height:24px;
  2034. background:inherit;
  2035. background-color:rgba(255, 255, 255, 0);
  2036. border:none;
  2037. border-top:0px;
  2038. border-right:0px;
  2039. border-bottom:0px;
  2040. border-radius:0px;
  2041. border-top-left-radius:0px;
  2042. border-bottom-left-radius:0px;
  2043. -moz-box-shadow:none;
  2044. -webkit-box-shadow:none;
  2045. box-shadow:none;
  2046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2047. font-weight:400;
  2048. font-style:normal;
  2049. font-size:10px;
  2050. color:#AAAAAA;
  2051. }
  2052. #u154509 {
  2053. border-width:0px;
  2054. position:absolute;
  2055. left:274px;
  2056. top:1481px;
  2057. width:103px;
  2058. height:24px;
  2059. display:flex;
  2060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2061. font-weight:400;
  2062. font-style:normal;
  2063. font-size:10px;
  2064. color:#AAAAAA;
  2065. }
  2066. #u154509 .text {
  2067. position:absolute;
  2068. align-self:flex-start;
  2069. padding:5px 0px 5px 0px;
  2070. box-sizing:border-box;
  2071. width:100%;
  2072. }
  2073. #u154509_text {
  2074. border-width:0px;
  2075. white-space:nowrap;
  2076. text-transform:none;
  2077. }
  2078. #u154510 {
  2079. border-width:0px;
  2080. position:absolute;
  2081. left:0px;
  2082. top:0px;
  2083. width:0px;
  2084. height:0px;
  2085. }
  2086. #u154511_div {
  2087. border-width:0px;
  2088. position:absolute;
  2089. left:0px;
  2090. top:0px;
  2091. width:43px;
  2092. height:30px;
  2093. background:inherit;
  2094. background-color:rgba(255, 255, 255, 0);
  2095. border:none;
  2096. border-top:0px;
  2097. border-right:0px;
  2098. border-bottom:0px;
  2099. border-radius:0px;
  2100. border-top-left-radius:0px;
  2101. border-bottom-left-radius:0px;
  2102. -moz-box-shadow:none;
  2103. -webkit-box-shadow:none;
  2104. box-shadow:none;
  2105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2106. font-weight:400;
  2107. font-style:normal;
  2108. font-size:14px;
  2109. }
  2110. #u154511 {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:107px;
  2114. top:1483px;
  2115. width:43px;
  2116. height:30px;
  2117. display:flex;
  2118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2119. font-weight:400;
  2120. font-style:normal;
  2121. font-size:14px;
  2122. }
  2123. #u154511 .text {
  2124. position:absolute;
  2125. align-self:flex-start;
  2126. padding:0px 0px 0px 0px;
  2127. box-sizing:border-box;
  2128. width:100%;
  2129. }
  2130. #u154511_text {
  2131. border-width:0px;
  2132. white-space:nowrap;
  2133. text-transform:none;
  2134. }
  2135. #u154512_div {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:0px;
  2139. top:0px;
  2140. width:12px;
  2141. height:16px;
  2142. background:inherit;
  2143. background-color:rgba(255, 255, 255, 0);
  2144. border:none;
  2145. border-top:0px;
  2146. border-right:0px;
  2147. border-bottom:0px;
  2148. border-radius:0px;
  2149. border-top-left-radius:0px;
  2150. border-bottom-left-radius:0px;
  2151. -moz-box-shadow:none;
  2152. -webkit-box-shadow:none;
  2153. box-shadow:none;
  2154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2155. font-weight:400;
  2156. font-style:normal;
  2157. font-size:11px;
  2158. color:#AAAAAA;
  2159. }
  2160. #u154512 {
  2161. border-width:0px;
  2162. position:absolute;
  2163. left:107px;
  2164. top:1511px;
  2165. width:12px;
  2166. height:16px;
  2167. display:flex;
  2168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2169. font-weight:400;
  2170. font-style:normal;
  2171. font-size:11px;
  2172. color:#AAAAAA;
  2173. }
  2174. #u154512 .text {
  2175. position:absolute;
  2176. align-self:flex-start;
  2177. padding:0px 0px 0px 0px;
  2178. box-sizing:border-box;
  2179. width:100%;
  2180. }
  2181. #u154512_text {
  2182. border-width:0px;
  2183. white-space:nowrap;
  2184. text-transform:none;
  2185. }
  2186. #u154513_div {
  2187. border-width:0px;
  2188. position:absolute;
  2189. left:0px;
  2190. top:0px;
  2191. width:43px;
  2192. height:20px;
  2193. background:inherit;
  2194. background-color:rgba(255, 255, 255, 0);
  2195. border:none;
  2196. border-top:0px;
  2197. border-right:0px;
  2198. border-bottom:0px;
  2199. border-radius:0px;
  2200. border-top-left-radius:0px;
  2201. border-bottom-left-radius:0px;
  2202. -moz-box-shadow:none;
  2203. -webkit-box-shadow:none;
  2204. box-shadow:none;
  2205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2206. font-weight:400;
  2207. font-style:normal;
  2208. font-size:14px;
  2209. }
  2210. #u154513 {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:107px;
  2214. top:1553px;
  2215. width:43px;
  2216. height:20px;
  2217. display:flex;
  2218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2219. font-weight:400;
  2220. font-style:normal;
  2221. font-size:14px;
  2222. }
  2223. #u154513 .text {
  2224. position:absolute;
  2225. align-self:flex-start;
  2226. padding:0px 0px 0px 0px;
  2227. box-sizing:border-box;
  2228. width:100%;
  2229. }
  2230. #u154513_text {
  2231. border-width:0px;
  2232. white-space:nowrap;
  2233. text-transform:none;
  2234. }
  2235. #u154514_div {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:0px;
  2239. top:0px;
  2240. width:91px;
  2241. height:16px;
  2242. background:inherit;
  2243. background-color:rgba(255, 255, 255, 0);
  2244. border:none;
  2245. border-top:0px;
  2246. border-right:0px;
  2247. border-bottom:0px;
  2248. border-radius:0px;
  2249. border-top-left-radius:0px;
  2250. border-bottom-left-radius:0px;
  2251. -moz-box-shadow:none;
  2252. -webkit-box-shadow:none;
  2253. box-shadow:none;
  2254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2255. font-weight:400;
  2256. font-style:normal;
  2257. font-size:11px;
  2258. color:#AAAAAA;
  2259. }
  2260. #u154514 {
  2261. border-width:0px;
  2262. position:absolute;
  2263. left:107px;
  2264. top:1581px;
  2265. width:91px;
  2266. height:16px;
  2267. display:flex;
  2268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2269. font-weight:400;
  2270. font-style:normal;
  2271. font-size:11px;
  2272. color:#AAAAAA;
  2273. }
  2274. #u154514 .text {
  2275. position:absolute;
  2276. align-self:flex-start;
  2277. padding:0px 0px 0px 0px;
  2278. box-sizing:border-box;
  2279. width:100%;
  2280. }
  2281. #u154514_text {
  2282. border-width:0px;
  2283. white-space:nowrap;
  2284. text-transform:none;
  2285. }
  2286. #u154515_div {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:0px;
  2290. top:0px;
  2291. width:29px;
  2292. height:30px;
  2293. background:inherit;
  2294. background-color:rgba(255, 255, 255, 0);
  2295. border:none;
  2296. border-top:0px;
  2297. border-right:0px;
  2298. border-bottom:0px;
  2299. border-radius:0px;
  2300. border-top-left-radius:0px;
  2301. border-bottom-left-radius:0px;
  2302. -moz-box-shadow:none;
  2303. -webkit-box-shadow:none;
  2304. box-shadow:none;
  2305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2306. font-weight:400;
  2307. font-style:normal;
  2308. font-size:14px;
  2309. }
  2310. #u154515 {
  2311. border-width:0px;
  2312. position:absolute;
  2313. left:65px;
  2314. top:1439px;
  2315. width:29px;
  2316. height:30px;
  2317. display:flex;
  2318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2319. font-weight:400;
  2320. font-style:normal;
  2321. font-size:14px;
  2322. }
  2323. #u154515 .text {
  2324. position:absolute;
  2325. align-self:flex-start;
  2326. padding:5px 0px 5px 0px;
  2327. box-sizing:border-box;
  2328. width:100%;
  2329. }
  2330. #u154515_text {
  2331. border-width:0px;
  2332. white-space:nowrap;
  2333. text-transform:none;
  2334. }
  2335. #u154516 {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:0px;
  2339. top:0px;
  2340. width:0px;
  2341. height:0px;
  2342. }
  2343. #u154517_img {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:0px;
  2347. top:0px;
  2348. width:2px;
  2349. height:32px;
  2350. }
  2351. #u154517 {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:84px;
  2355. top:1517px;
  2356. width:1px;
  2357. height:31px;
  2358. display:flex;
  2359. }
  2360. #u154517 .text {
  2361. position:absolute;
  2362. align-self:center;
  2363. padding:2px 2px 2px 2px;
  2364. box-sizing:border-box;
  2365. width:100%;
  2366. }
  2367. #u154517_text {
  2368. border-width:0px;
  2369. word-wrap:break-word;
  2370. text-transform:none;
  2371. visibility:hidden;
  2372. }
  2373. #u154518 {
  2374. border-width:0px;
  2375. position:absolute;
  2376. left:0px;
  2377. top:0px;
  2378. width:0px;
  2379. height:0px;
  2380. }
  2381. #u154519_div {
  2382. border-width:0px;
  2383. position:absolute;
  2384. left:0px;
  2385. top:0px;
  2386. width:30px;
  2387. height:30px;
  2388. background:inherit;
  2389. background-color:rgba(24, 144, 255, 1);
  2390. border:none;
  2391. border-radius:4px;
  2392. -moz-box-shadow:none;
  2393. -webkit-box-shadow:none;
  2394. box-shadow:none;
  2395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2396. font-weight:400;
  2397. font-style:normal;
  2398. font-size:10px;
  2399. color:#FFFFFF;
  2400. }
  2401. #u154519 {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:69px;
  2405. top:1553px;
  2406. width:30px;
  2407. height:30px;
  2408. display:flex;
  2409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2410. font-weight:400;
  2411. font-style:normal;
  2412. font-size:10px;
  2413. color:#FFFFFF;
  2414. }
  2415. #u154519 .text {
  2416. position:absolute;
  2417. align-self:center;
  2418. padding:2px 2px 2px 2px;
  2419. box-sizing:border-box;
  2420. width:100%;
  2421. }
  2422. #u154519_text {
  2423. border-width:0px;
  2424. word-wrap:break-word;
  2425. text-transform:none;
  2426. }
  2427. #u154520 {
  2428. border-width:0px;
  2429. position:absolute;
  2430. left:0px;
  2431. top:0px;
  2432. width:0px;
  2433. height:0px;
  2434. }
  2435. #u154521_img {
  2436. border-width:0px;
  2437. position:absolute;
  2438. left:0px;
  2439. top:0px;
  2440. width:9px;
  2441. height:9px;
  2442. }
  2443. #u154521 {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:91px;
  2447. top:1575px;
  2448. width:9px;
  2449. height:9px;
  2450. display:flex;
  2451. }
  2452. #u154521 .text {
  2453. position:absolute;
  2454. align-self:center;
  2455. padding:2px 2px 2px 2px;
  2456. box-sizing:border-box;
  2457. width:100%;
  2458. }
  2459. #u154521_text {
  2460. border-width:0px;
  2461. word-wrap:break-word;
  2462. text-transform:none;
  2463. visibility:hidden;
  2464. }
  2465. #u154522_img {
  2466. border-width:0px;
  2467. position:absolute;
  2468. left:0px;
  2469. top:0px;
  2470. width:5px;
  2471. height:1px;
  2472. }
  2473. #u154522 {
  2474. border-width:0px;
  2475. position:absolute;
  2476. left:93px;
  2477. top:1579px;
  2478. width:5px;
  2479. height:1px;
  2480. display:flex;
  2481. }
  2482. #u154522 .text {
  2483. position:absolute;
  2484. align-self:center;
  2485. padding:2px 2px 2px 2px;
  2486. box-sizing:border-box;
  2487. width:100%;
  2488. }
  2489. #u154522_text {
  2490. border-width:0px;
  2491. word-wrap:break-word;
  2492. text-transform:none;
  2493. visibility:hidden;
  2494. }
  2495. #u154523 {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:0px;
  2499. top:0px;
  2500. width:0px;
  2501. height:0px;
  2502. }
  2503. #u154524_div {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:0px;
  2507. top:0px;
  2508. width:30px;
  2509. height:30px;
  2510. background:inherit;
  2511. background-color:rgba(24, 144, 255, 1);
  2512. border:none;
  2513. border-radius:4px;
  2514. -moz-box-shadow:none;
  2515. -webkit-box-shadow:none;
  2516. box-shadow:none;
  2517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2518. font-weight:400;
  2519. font-style:normal;
  2520. font-size:12px;
  2521. color:#FFFFFF;
  2522. }
  2523. #u154524 {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:69px;
  2527. top:1483px;
  2528. width:30px;
  2529. height:30px;
  2530. display:flex;
  2531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2532. font-weight:400;
  2533. font-style:normal;
  2534. font-size:12px;
  2535. color:#FFFFFF;
  2536. }
  2537. #u154524 .text {
  2538. position:absolute;
  2539. align-self:center;
  2540. padding:2px 2px 2px 2px;
  2541. box-sizing:border-box;
  2542. width:100%;
  2543. }
  2544. #u154524_text {
  2545. border-width:0px;
  2546. word-wrap:break-word;
  2547. text-transform:none;
  2548. }
  2549. #u154525 {
  2550. border-width:0px;
  2551. position:absolute;
  2552. left:0px;
  2553. top:0px;
  2554. width:0px;
  2555. height:0px;
  2556. }
  2557. #u154526_img {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:0px;
  2561. top:0px;
  2562. width:9px;
  2563. height:9px;
  2564. }
  2565. #u154526 {
  2566. border-width:0px;
  2567. position:absolute;
  2568. left:91px;
  2569. top:1505px;
  2570. width:9px;
  2571. height:9px;
  2572. display:flex;
  2573. }
  2574. #u154526 .text {
  2575. position:absolute;
  2576. align-self:center;
  2577. padding:2px 2px 2px 2px;
  2578. box-sizing:border-box;
  2579. width:100%;
  2580. }
  2581. #u154526_text {
  2582. border-width:0px;
  2583. word-wrap:break-word;
  2584. text-transform:none;
  2585. visibility:hidden;
  2586. }
  2587. #u154527_img {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:0px;
  2591. top:0px;
  2592. width:5px;
  2593. height:4px;
  2594. }
  2595. #u154527 {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:93px;
  2599. top:1508px;
  2600. width:5px;
  2601. height:4px;
  2602. display:flex;
  2603. }
  2604. #u154527 .text {
  2605. position:absolute;
  2606. align-self:center;
  2607. padding:2px 2px 2px 2px;
  2608. box-sizing:border-box;
  2609. width:100%;
  2610. }
  2611. #u154527_text {
  2612. border-width:0px;
  2613. word-wrap:break-word;
  2614. text-transform:none;
  2615. visibility:hidden;
  2616. }
  2617. #u154528 {
  2618. border-width:0px;
  2619. position:absolute;
  2620. left:0px;
  2621. top:0px;
  2622. width:0px;
  2623. height:0px;
  2624. }
  2625. #u154529_div {
  2626. border-width:0px;
  2627. position:absolute;
  2628. left:0px;
  2629. top:0px;
  2630. width:375px;
  2631. height:60px;
  2632. background:inherit;
  2633. background-color:rgba(255, 255, 255, 1);
  2634. border:none;
  2635. border-top:0px;
  2636. border-radius:28px;
  2637. border-top-left-radius:0px;
  2638. border-top-right-radius:0px;
  2639. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2640. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2641. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2643. font-weight:400;
  2644. font-style:normal;
  2645. font-size:14px;
  2646. color:#FFFFFF;
  2647. }
  2648. #u154529 {
  2649. border-width:0px;
  2650. position:absolute;
  2651. left:29px;
  2652. top:1643px;
  2653. width:375px;
  2654. height:60px;
  2655. display:flex;
  2656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2657. font-weight:400;
  2658. font-style:normal;
  2659. font-size:14px;
  2660. color:#FFFFFF;
  2661. }
  2662. #u154529 .text {
  2663. position:absolute;
  2664. align-self:center;
  2665. padding:2px 2px 2px 2px;
  2666. box-sizing:border-box;
  2667. width:100%;
  2668. }
  2669. #u154529_text {
  2670. border-width:0px;
  2671. word-wrap:break-word;
  2672. text-transform:none;
  2673. visibility:hidden;
  2674. }
  2675. #u154530_div {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:0px;
  2679. top:0px;
  2680. width:80px;
  2681. height:40px;
  2682. background:inherit;
  2683. background-color:rgba(24, 144, 255, 1);
  2684. border:none;
  2685. border-radius:27px;
  2686. -moz-box-shadow:none;
  2687. -webkit-box-shadow:none;
  2688. box-shadow:none;
  2689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2690. font-weight:400;
  2691. font-style:normal;
  2692. color:#FFFFFF;
  2693. text-align:center;
  2694. }
  2695. #u154530 {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:309px;
  2699. top:1653px;
  2700. width:80px;
  2701. height:40px;
  2702. display:flex;
  2703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2704. font-weight:400;
  2705. font-style:normal;
  2706. color:#FFFFFF;
  2707. text-align:center;
  2708. }
  2709. #u154530 .text {
  2710. position:absolute;
  2711. align-self:center;
  2712. padding:2px 3px 2px 3px;
  2713. box-sizing:border-box;
  2714. width:100%;
  2715. }
  2716. #u154530_text {
  2717. border-width:0px;
  2718. word-wrap:break-word;
  2719. text-transform:none;
  2720. }
  2721. #u154531_div {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:0px;
  2725. top:0px;
  2726. width:80px;
  2727. height:40px;
  2728. background:inherit;
  2729. background-color:rgba(215, 215, 215, 1);
  2730. border:none;
  2731. border-radius:27px;
  2732. -moz-box-shadow:none;
  2733. -webkit-box-shadow:none;
  2734. box-shadow:none;
  2735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2736. font-weight:400;
  2737. font-style:normal;
  2738. text-align:center;
  2739. }
  2740. #u154531 {
  2741. border-width:0px;
  2742. position:absolute;
  2743. left:219px;
  2744. top:1653px;
  2745. width:80px;
  2746. height:40px;
  2747. display:flex;
  2748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2749. font-weight:400;
  2750. font-style:normal;
  2751. text-align:center;
  2752. }
  2753. #u154531 .text {
  2754. position:absolute;
  2755. align-self:center;
  2756. padding:2px 3px 2px 3px;
  2757. box-sizing:border-box;
  2758. width:100%;
  2759. }
  2760. #u154531_text {
  2761. border-width:0px;
  2762. word-wrap:break-word;
  2763. text-transform:none;
  2764. }
  2765. #u154532_div {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:0px;
  2769. top:0px;
  2770. width:31px;
  2771. height:21px;
  2772. background:inherit;
  2773. background-color:rgba(215, 215, 215, 0);
  2774. border:none;
  2775. border-radius:27px;
  2776. -moz-box-shadow:none;
  2777. -webkit-box-shadow:none;
  2778. box-shadow:none;
  2779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2780. font-weight:400;
  2781. font-style:normal;
  2782. font-size:12px;
  2783. color:#7F7F7F;
  2784. text-align:center;
  2785. }
  2786. #u154532 {
  2787. border-width:0px;
  2788. position:absolute;
  2789. left:178px;
  2790. top:1663px;
  2791. width:31px;
  2792. height:21px;
  2793. display:flex;
  2794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2795. font-weight:400;
  2796. font-style:normal;
  2797. font-size:12px;
  2798. color:#7F7F7F;
  2799. text-align:center;
  2800. }
  2801. #u154532 .text {
  2802. position:absolute;
  2803. align-self:center;
  2804. padding:2px 3px 2px 3px;
  2805. box-sizing:border-box;
  2806. width:100%;
  2807. }
  2808. #u154532_text {
  2809. border-width:0px;
  2810. white-space:nowrap;
  2811. text-transform:none;
  2812. }
  2813. #u154533_div {
  2814. border-width:0px;
  2815. position:absolute;
  2816. left:0px;
  2817. top:0px;
  2818. width:97px;
  2819. height:25px;
  2820. background:inherit;
  2821. background-color:rgba(255, 255, 255, 0);
  2822. border:none;
  2823. border-radius:0px;
  2824. -moz-box-shadow:none;
  2825. -webkit-box-shadow:none;
  2826. box-shadow:none;
  2827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2828. font-weight:400;
  2829. font-style:normal;
  2830. font-size:12px;
  2831. color:#B8741A;
  2832. line-height:25px;
  2833. }
  2834. #u154533 {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:284px;
  2838. top:172px;
  2839. width:97px;
  2840. height:25px;
  2841. display:flex;
  2842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2843. font-weight:400;
  2844. font-style:normal;
  2845. font-size:12px;
  2846. color:#B8741A;
  2847. line-height:25px;
  2848. }
  2849. #u154533 .text {
  2850. position:absolute;
  2851. align-self:flex-start;
  2852. padding:0px 0px 0px 0px;
  2853. box-sizing:border-box;
  2854. width:100%;
  2855. }
  2856. #u154533_text {
  2857. border-width:0px;
  2858. white-space:nowrap;
  2859. text-transform:none;
  2860. }
  2861. #u154534 {
  2862. border-width:0px;
  2863. position:absolute;
  2864. left:0px;
  2865. top:0px;
  2866. width:0px;
  2867. height:0px;
  2868. }
  2869. #u154535_img {
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:0px;
  2873. top:0px;
  2874. width:355px;
  2875. height:140px;
  2876. }
  2877. #u154535 {
  2878. border-width:0px;
  2879. position:absolute;
  2880. left:39px;
  2881. top:217px;
  2882. width:355px;
  2883. height:140px;
  2884. display:flex;
  2885. }
  2886. #u154535 .text {
  2887. position:absolute;
  2888. align-self:center;
  2889. padding:2px 2px 2px 2px;
  2890. box-sizing:border-box;
  2891. width:100%;
  2892. }
  2893. #u154535_text {
  2894. border-width:0px;
  2895. word-wrap:break-word;
  2896. text-transform:none;
  2897. visibility:hidden;
  2898. }
  2899. #u154536_div {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:134px;
  2905. height:30px;
  2906. background:inherit;
  2907. background-color:rgba(255, 255, 255, 0);
  2908. border:none;
  2909. border-left:0px;
  2910. border-top:0px;
  2911. border-right:0px;
  2912. border-radius:0px;
  2913. border-bottom-right-radius:0px;
  2914. border-bottom-left-radius:0px;
  2915. -moz-box-shadow:none;
  2916. -webkit-box-shadow:none;
  2917. box-shadow:none;
  2918. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2919. font-weight:500;
  2920. font-style:normal;
  2921. font-size:14px;
  2922. line-height:30px;
  2923. }
  2924. #u154536 {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:56px;
  2928. top:227px;
  2929. width:134px;
  2930. height:30px;
  2931. display:flex;
  2932. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2933. font-weight:500;
  2934. font-style:normal;
  2935. font-size:14px;
  2936. line-height:30px;
  2937. }
  2938. #u154536 .text {
  2939. position:absolute;
  2940. align-self:flex-start;
  2941. padding:0px 0px 0px 0px;
  2942. box-sizing:border-box;
  2943. width:100%;
  2944. }
  2945. #u154536_text {
  2946. border-width:0px;
  2947. white-space:nowrap;
  2948. text-transform:none;
  2949. }
  2950. #u154537_div {
  2951. border-width:0px;
  2952. position:absolute;
  2953. left:0px;
  2954. top:0px;
  2955. width:325px;
  2956. height:25px;
  2957. background:inherit;
  2958. background-color:rgba(255, 255, 255, 0);
  2959. border:none;
  2960. border-left:0px;
  2961. border-top:0px;
  2962. border-right:0px;
  2963. border-radius:0px;
  2964. border-bottom-right-radius:0px;
  2965. border-bottom-left-radius:0px;
  2966. -moz-box-shadow:none;
  2967. -webkit-box-shadow:none;
  2968. box-shadow:none;
  2969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2970. font-weight:400;
  2971. font-style:normal;
  2972. font-size:14px;
  2973. color:#1890FF;
  2974. line-height:25px;
  2975. }
  2976. #u154537 {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:56px;
  2980. top:257px;
  2981. width:325px;
  2982. height:25px;
  2983. display:flex;
  2984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2985. font-weight:400;
  2986. font-style:normal;
  2987. font-size:14px;
  2988. color:#1890FF;
  2989. line-height:25px;
  2990. }
  2991. #u154537 .text {
  2992. position:absolute;
  2993. align-self:flex-start;
  2994. padding:0px 0px 0px 0px;
  2995. box-sizing:border-box;
  2996. width:100%;
  2997. }
  2998. #u154537_text {
  2999. border-width:0px;
  3000. word-wrap:break-word;
  3001. text-transform:none;
  3002. }
  3003. #u154538_div {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:0px;
  3007. top:0px;
  3008. width:325px;
  3009. height:51px;
  3010. background:inherit;
  3011. background-color:rgba(255, 255, 255, 0);
  3012. border:none;
  3013. border-left:0px;
  3014. border-top:0px;
  3015. border-right:0px;
  3016. border-radius:0px;
  3017. border-bottom-right-radius:0px;
  3018. border-bottom-left-radius:0px;
  3019. -moz-box-shadow:none;
  3020. -webkit-box-shadow:none;
  3021. box-shadow:none;
  3022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3023. font-weight:400;
  3024. font-style:normal;
  3025. font-size:12px;
  3026. }
  3027. #u154538 {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:56px;
  3031. top:287px;
  3032. width:325px;
  3033. height:51px;
  3034. display:flex;
  3035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3036. font-weight:400;
  3037. font-style:normal;
  3038. font-size:12px;
  3039. }
  3040. #u154538 .text {
  3041. position:absolute;
  3042. align-self:flex-start;
  3043. padding:0px 0px 0px 0px;
  3044. box-sizing:border-box;
  3045. width:100%;
  3046. }
  3047. #u154538_text {
  3048. border-width:0px;
  3049. word-wrap:break-word;
  3050. text-transform:none;
  3051. }
  3052. #u154539 {
  3053. border-width:0px;
  3054. position:absolute;
  3055. left:0px;
  3056. top:0px;
  3057. width:0px;
  3058. height:0px;
  3059. }
  3060. #u154540_img {
  3061. border-width:0px;
  3062. position:absolute;
  3063. left:0px;
  3064. top:0px;
  3065. width:355px;
  3066. height:424px;
  3067. }
  3068. #u154540 {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:39px;
  3072. top:997px;
  3073. width:355px;
  3074. height:424px;
  3075. display:flex;
  3076. }
  3077. #u154540 .text {
  3078. position:absolute;
  3079. align-self:center;
  3080. padding:2px 2px 2px 2px;
  3081. box-sizing:border-box;
  3082. width:100%;
  3083. }
  3084. #u154540_text {
  3085. border-width:0px;
  3086. word-wrap:break-word;
  3087. text-transform:none;
  3088. visibility:hidden;
  3089. }
  3090. #u154541_div {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:0px;
  3094. top:0px;
  3095. width:318px;
  3096. height:40px;
  3097. background:inherit;
  3098. background-color:rgba(255, 255, 255, 1);
  3099. box-sizing:border-box;
  3100. border-width:1px;
  3101. border-style:solid;
  3102. border-color:rgba(242, 242, 242, 1);
  3103. border-left:0px;
  3104. border-top:0px;
  3105. border-right:0px;
  3106. border-radius:4px;
  3107. border-bottom-right-radius:0px;
  3108. border-bottom-left-radius:0px;
  3109. -moz-box-shadow:none;
  3110. -webkit-box-shadow:none;
  3111. box-shadow:none;
  3112. }
  3113. #u154541 {
  3114. border-width:0px;
  3115. position:absolute;
  3116. left:63px;
  3117. top:1037px;
  3118. width:318px;
  3119. height:40px;
  3120. display:flex;
  3121. }
  3122. #u154541 .text {
  3123. position:absolute;
  3124. align-self:center;
  3125. padding:2px 2px 2px 2px;
  3126. box-sizing:border-box;
  3127. width:100%;
  3128. }
  3129. #u154541_text {
  3130. border-width:0px;
  3131. word-wrap:break-word;
  3132. text-transform:none;
  3133. visibility:hidden;
  3134. }
  3135. #u154542_div {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:0px;
  3139. top:0px;
  3140. width:61px;
  3141. height:30px;
  3142. background:inherit;
  3143. background-color:rgba(255, 255, 255, 0);
  3144. border:none;
  3145. border-left:0px;
  3146. border-top:0px;
  3147. border-right:0px;
  3148. border-radius:0px;
  3149. border-bottom-right-radius:0px;
  3150. border-bottom-left-radius:0px;
  3151. -moz-box-shadow:none;
  3152. -webkit-box-shadow:none;
  3153. box-shadow:none;
  3154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3155. font-weight:400;
  3156. font-style:normal;
  3157. font-size:12px;
  3158. line-height:30px;
  3159. }
  3160. #u154542 {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:74px;
  3164. top:1042px;
  3165. width:61px;
  3166. height:30px;
  3167. display:flex;
  3168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3169. font-weight:400;
  3170. font-style:normal;
  3171. font-size:12px;
  3172. line-height:30px;
  3173. }
  3174. #u154542 .text {
  3175. position:absolute;
  3176. align-self:flex-start;
  3177. padding:0px 0px 0px 0px;
  3178. box-sizing:border-box;
  3179. width:100%;
  3180. }
  3181. #u154542_text {
  3182. border-width:0px;
  3183. white-space:nowrap;
  3184. text-transform:none;
  3185. }
  3186. #u154543_div {
  3187. border-width:0px;
  3188. position:absolute;
  3189. left:0px;
  3190. top:0px;
  3191. width:318px;
  3192. height:40px;
  3193. background:inherit;
  3194. background-color:rgba(255, 255, 255, 1);
  3195. box-sizing:border-box;
  3196. border-width:1px;
  3197. border-style:solid;
  3198. border-color:rgba(242, 242, 242, 1);
  3199. border-left:0px;
  3200. border-top:0px;
  3201. border-right:0px;
  3202. border-radius:4px;
  3203. border-bottom-right-radius:0px;
  3204. border-bottom-left-radius:0px;
  3205. -moz-box-shadow:none;
  3206. -webkit-box-shadow:none;
  3207. box-shadow:none;
  3208. }
  3209. #u154543 {
  3210. border-width:0px;
  3211. position:absolute;
  3212. left:63px;
  3213. top:1077px;
  3214. width:318px;
  3215. height:40px;
  3216. display:flex;
  3217. }
  3218. #u154543 .text {
  3219. position:absolute;
  3220. align-self:center;
  3221. padding:2px 2px 2px 2px;
  3222. box-sizing:border-box;
  3223. width:100%;
  3224. }
  3225. #u154543_text {
  3226. border-width:0px;
  3227. word-wrap:break-word;
  3228. text-transform:none;
  3229. visibility:hidden;
  3230. }
  3231. #u154544_div {
  3232. border-width:0px;
  3233. position:absolute;
  3234. left:0px;
  3235. top:0px;
  3236. width:61px;
  3237. height:30px;
  3238. background:inherit;
  3239. background-color:rgba(255, 255, 255, 0);
  3240. border:none;
  3241. border-left:0px;
  3242. border-top:0px;
  3243. border-right:0px;
  3244. border-radius:0px;
  3245. border-bottom-right-radius:0px;
  3246. border-bottom-left-radius:0px;
  3247. -moz-box-shadow:none;
  3248. -webkit-box-shadow:none;
  3249. box-shadow:none;
  3250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3251. font-weight:400;
  3252. font-style:normal;
  3253. font-size:12px;
  3254. line-height:30px;
  3255. }
  3256. #u154544 {
  3257. border-width:0px;
  3258. position:absolute;
  3259. left:74px;
  3260. top:1082px;
  3261. width:61px;
  3262. height:30px;
  3263. display:flex;
  3264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3265. font-weight:400;
  3266. font-style:normal;
  3267. font-size:12px;
  3268. line-height:30px;
  3269. }
  3270. #u154544 .text {
  3271. position:absolute;
  3272. align-self:flex-start;
  3273. padding:0px 0px 0px 0px;
  3274. box-sizing:border-box;
  3275. width:100%;
  3276. }
  3277. #u154544_text {
  3278. border-width:0px;
  3279. white-space:nowrap;
  3280. text-transform:none;
  3281. }
  3282. #u154545_div {
  3283. border-width:0px;
  3284. position:absolute;
  3285. left:0px;
  3286. top:0px;
  3287. width:318px;
  3288. height:40px;
  3289. background:inherit;
  3290. background-color:rgba(255, 255, 255, 1);
  3291. border:none;
  3292. border-left:0px;
  3293. border-top:0px;
  3294. border-right:0px;
  3295. border-radius:4px;
  3296. border-bottom-right-radius:0px;
  3297. border-bottom-left-radius:0px;
  3298. -moz-box-shadow:none;
  3299. -webkit-box-shadow:none;
  3300. box-shadow:none;
  3301. }
  3302. #u154545 {
  3303. border-width:0px;
  3304. position:absolute;
  3305. left:63px;
  3306. top:1117px;
  3307. width:318px;
  3308. height:40px;
  3309. display:flex;
  3310. }
  3311. #u154545 .text {
  3312. position:absolute;
  3313. align-self:center;
  3314. padding:2px 2px 2px 2px;
  3315. box-sizing:border-box;
  3316. width:100%;
  3317. }
  3318. #u154545_text {
  3319. border-width:0px;
  3320. word-wrap:break-word;
  3321. text-transform:none;
  3322. visibility:hidden;
  3323. }
  3324. #u154546_div {
  3325. border-width:0px;
  3326. position:absolute;
  3327. left:0px;
  3328. top:0px;
  3329. width:61px;
  3330. height:30px;
  3331. background:inherit;
  3332. background-color:rgba(255, 255, 255, 0);
  3333. border:none;
  3334. border-left:0px;
  3335. border-top:0px;
  3336. border-right:0px;
  3337. border-radius:0px;
  3338. border-bottom-right-radius:0px;
  3339. border-bottom-left-radius:0px;
  3340. -moz-box-shadow:none;
  3341. -webkit-box-shadow:none;
  3342. box-shadow:none;
  3343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3344. font-weight:400;
  3345. font-style:normal;
  3346. font-size:12px;
  3347. line-height:30px;
  3348. }
  3349. #u154546 {
  3350. border-width:0px;
  3351. position:absolute;
  3352. left:74px;
  3353. top:1122px;
  3354. width:61px;
  3355. height:30px;
  3356. display:flex;
  3357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3358. font-weight:400;
  3359. font-style:normal;
  3360. font-size:12px;
  3361. line-height:30px;
  3362. }
  3363. #u154546 .text {
  3364. position:absolute;
  3365. align-self:flex-start;
  3366. padding:0px 0px 0px 0px;
  3367. box-sizing:border-box;
  3368. width:100%;
  3369. }
  3370. #u154546_text {
  3371. border-width:0px;
  3372. white-space:nowrap;
  3373. text-transform:none;
  3374. }
  3375. #u154547_div {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:0px;
  3379. top:0px;
  3380. width:57px;
  3381. height:30px;
  3382. background:inherit;
  3383. background-color:rgba(255, 255, 255, 0);
  3384. border:none;
  3385. border-left:0px;
  3386. border-top:0px;
  3387. border-right:0px;
  3388. border-radius:0px;
  3389. border-bottom-right-radius:0px;
  3390. border-bottom-left-radius:0px;
  3391. -moz-box-shadow:none;
  3392. -webkit-box-shadow:none;
  3393. box-shadow:none;
  3394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3395. font-weight:400;
  3396. font-style:normal;
  3397. font-size:12px;
  3398. text-align:right;
  3399. line-height:30px;
  3400. }
  3401. #u154547 {
  3402. border-width:0px;
  3403. position:absolute;
  3404. left:317px;
  3405. top:1042px;
  3406. width:57px;
  3407. height:30px;
  3408. display:flex;
  3409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3410. font-weight:400;
  3411. font-style:normal;
  3412. font-size:12px;
  3413. text-align:right;
  3414. line-height:30px;
  3415. }
  3416. #u154547 .text {
  3417. position:absolute;
  3418. align-self:flex-start;
  3419. padding:0px 0px 0px 0px;
  3420. box-sizing:border-box;
  3421. width:100%;
  3422. }
  3423. #u154547_text {
  3424. border-width:0px;
  3425. white-space:nowrap;
  3426. text-transform:none;
  3427. }
  3428. #u154548_div {
  3429. border-width:0px;
  3430. position:absolute;
  3431. left:0px;
  3432. top:0px;
  3433. width:57px;
  3434. height:30px;
  3435. background:inherit;
  3436. background-color:rgba(255, 255, 255, 0);
  3437. border:none;
  3438. border-left:0px;
  3439. border-top:0px;
  3440. border-right:0px;
  3441. border-radius:0px;
  3442. border-bottom-right-radius:0px;
  3443. border-bottom-left-radius:0px;
  3444. -moz-box-shadow:none;
  3445. -webkit-box-shadow:none;
  3446. box-shadow:none;
  3447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3448. font-weight:400;
  3449. font-style:normal;
  3450. font-size:12px;
  3451. text-align:right;
  3452. line-height:30px;
  3453. }
  3454. #u154548 {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:317px;
  3458. top:1082px;
  3459. width:57px;
  3460. height:30px;
  3461. display:flex;
  3462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3463. font-weight:400;
  3464. font-style:normal;
  3465. font-size:12px;
  3466. text-align:right;
  3467. line-height:30px;
  3468. }
  3469. #u154548 .text {
  3470. position:absolute;
  3471. align-self:flex-start;
  3472. padding:0px 0px 0px 0px;
  3473. box-sizing:border-box;
  3474. width:100%;
  3475. }
  3476. #u154548_text {
  3477. border-width:0px;
  3478. white-space:nowrap;
  3479. text-transform:none;
  3480. }
  3481. #u154549_div {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:0px;
  3485. top:0px;
  3486. width:69px;
  3487. height:30px;
  3488. background:inherit;
  3489. background-color:rgba(255, 255, 255, 0);
  3490. border:none;
  3491. border-left:0px;
  3492. border-top:0px;
  3493. border-right:0px;
  3494. border-radius:0px;
  3495. border-bottom-right-radius:0px;
  3496. border-bottom-left-radius:0px;
  3497. -moz-box-shadow:none;
  3498. -webkit-box-shadow:none;
  3499. box-shadow:none;
  3500. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3501. font-weight:500;
  3502. font-style:normal;
  3503. font-size:14px;
  3504. text-align:right;
  3505. line-height:30px;
  3506. }
  3507. #u154549 {
  3508. border-width:0px;
  3509. position:absolute;
  3510. left:305px;
  3511. top:1122px;
  3512. width:69px;
  3513. height:30px;
  3514. display:flex;
  3515. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3516. font-weight:500;
  3517. font-style:normal;
  3518. font-size:14px;
  3519. text-align:right;
  3520. line-height:30px;
  3521. }
  3522. #u154549 .text {
  3523. position:absolute;
  3524. align-self:flex-start;
  3525. padding:0px 0px 0px 0px;
  3526. box-sizing:border-box;
  3527. width:100%;
  3528. }
  3529. #u154549_text {
  3530. border-width:0px;
  3531. white-space:nowrap;
  3532. text-transform:none;
  3533. }
  3534. #u154550 {
  3535. border-width:0px;
  3536. position:absolute;
  3537. left:0px;
  3538. top:0px;
  3539. width:0px;
  3540. height:0px;
  3541. }
  3542. #u154551_div {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:0px;
  3546. top:0px;
  3547. width:318px;
  3548. height:120px;
  3549. background:inherit;
  3550. background-color:rgba(242, 242, 242, 1);
  3551. border:none;
  3552. border-radius:4px;
  3553. -moz-box-shadow:none;
  3554. -webkit-box-shadow:none;
  3555. box-shadow:none;
  3556. }
  3557. #u154551 {
  3558. border-width:0px;
  3559. position:absolute;
  3560. left:63px;
  3561. top:1167px;
  3562. width:318px;
  3563. height:120px;
  3564. display:flex;
  3565. }
  3566. #u154551 .text {
  3567. position:absolute;
  3568. align-self:center;
  3569. padding:2px 2px 2px 2px;
  3570. box-sizing:border-box;
  3571. width:100%;
  3572. }
  3573. #u154551_text {
  3574. border-width:0px;
  3575. word-wrap:break-word;
  3576. text-transform:none;
  3577. visibility:hidden;
  3578. }
  3579. #u154552_div {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:0px;
  3583. top:0px;
  3584. width:61px;
  3585. height:100px;
  3586. background:inherit;
  3587. background-color:rgba(255, 255, 255, 0);
  3588. border:none;
  3589. border-left:0px;
  3590. border-top:0px;
  3591. border-right:0px;
  3592. border-radius:0px;
  3593. border-bottom-right-radius:0px;
  3594. border-bottom-left-radius:0px;
  3595. -moz-box-shadow:none;
  3596. -webkit-box-shadow:none;
  3597. box-shadow:none;
  3598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3599. font-weight:400;
  3600. font-style:normal;
  3601. font-size:12px;
  3602. color:#7F7F7F;
  3603. line-height:20px;
  3604. }
  3605. #u154552 {
  3606. border-width:0px;
  3607. position:absolute;
  3608. left:74px;
  3609. top:1177px;
  3610. width:61px;
  3611. height:100px;
  3612. display:flex;
  3613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3614. font-weight:400;
  3615. font-style:normal;
  3616. font-size:12px;
  3617. color:#7F7F7F;
  3618. line-height:20px;
  3619. }
  3620. #u154552 .text {
  3621. position:absolute;
  3622. align-self:flex-start;
  3623. padding:0px 0px 0px 0px;
  3624. box-sizing:border-box;
  3625. width:100%;
  3626. }
  3627. #u154552_text {
  3628. border-width:0px;
  3629. white-space:nowrap;
  3630. text-transform:none;
  3631. }
  3632. #u154553_div {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:0px;
  3636. top:0px;
  3637. width:145px;
  3638. height:100px;
  3639. background:inherit;
  3640. background-color:rgba(255, 255, 255, 0);
  3641. border:none;
  3642. border-left:0px;
  3643. border-top:0px;
  3644. border-right:0px;
  3645. border-radius:0px;
  3646. border-bottom-right-radius:0px;
  3647. border-bottom-left-radius:0px;
  3648. -moz-box-shadow:none;
  3649. -webkit-box-shadow:none;
  3650. box-shadow:none;
  3651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3652. font-weight:400;
  3653. font-style:normal;
  3654. font-size:12px;
  3655. color:#7F7F7F;
  3656. text-align:right;
  3657. line-height:20px;
  3658. }
  3659. #u154553 {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:225px;
  3663. top:1177px;
  3664. width:145px;
  3665. height:100px;
  3666. display:flex;
  3667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3668. font-weight:400;
  3669. font-style:normal;
  3670. font-size:12px;
  3671. color:#7F7F7F;
  3672. text-align:right;
  3673. line-height:20px;
  3674. }
  3675. #u154553 .text {
  3676. position:absolute;
  3677. align-self:flex-start;
  3678. padding:0px 0px 0px 0px;
  3679. box-sizing:border-box;
  3680. width:100%;
  3681. }
  3682. #u154553_text {
  3683. border-width:0px;
  3684. white-space:nowrap;
  3685. text-transform:none;
  3686. }
  3687. #u154554 {
  3688. border-width:0px;
  3689. position:absolute;
  3690. left:0px;
  3691. top:0px;
  3692. width:0px;
  3693. height:0px;
  3694. }
  3695. #u154555_div {
  3696. border-width:0px;
  3697. position:absolute;
  3698. left:0px;
  3699. top:0px;
  3700. width:318px;
  3701. height:120px;
  3702. background:inherit;
  3703. background-color:rgba(242, 242, 242, 1);
  3704. border:none;
  3705. border-radius:4px;
  3706. -moz-box-shadow:none;
  3707. -webkit-box-shadow:none;
  3708. box-shadow:none;
  3709. }
  3710. #u154555 {
  3711. border-width:0px;
  3712. position:absolute;
  3713. left:63px;
  3714. top:1288px;
  3715. width:318px;
  3716. height:120px;
  3717. display:flex;
  3718. }
  3719. #u154555 .text {
  3720. position:absolute;
  3721. align-self:center;
  3722. padding:2px 2px 2px 2px;
  3723. box-sizing:border-box;
  3724. width:100%;
  3725. }
  3726. #u154555_text {
  3727. border-width:0px;
  3728. word-wrap:break-word;
  3729. text-transform:none;
  3730. visibility:hidden;
  3731. }
  3732. #u154556_div {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:0px;
  3736. top:0px;
  3737. width:61px;
  3738. height:100px;
  3739. background:inherit;
  3740. background-color:rgba(255, 255, 255, 0);
  3741. border:none;
  3742. border-left:0px;
  3743. border-top:0px;
  3744. border-right:0px;
  3745. border-radius:0px;
  3746. border-bottom-right-radius:0px;
  3747. border-bottom-left-radius:0px;
  3748. -moz-box-shadow:none;
  3749. -webkit-box-shadow:none;
  3750. box-shadow:none;
  3751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3752. font-weight:400;
  3753. font-style:normal;
  3754. font-size:12px;
  3755. color:#7F7F7F;
  3756. line-height:20px;
  3757. }
  3758. #u154556 {
  3759. border-width:0px;
  3760. position:absolute;
  3761. left:74px;
  3762. top:1298px;
  3763. width:61px;
  3764. height:100px;
  3765. display:flex;
  3766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3767. font-weight:400;
  3768. font-style:normal;
  3769. font-size:12px;
  3770. color:#7F7F7F;
  3771. line-height:20px;
  3772. }
  3773. #u154556 .text {
  3774. position:absolute;
  3775. align-self:flex-start;
  3776. padding:0px 0px 0px 0px;
  3777. box-sizing:border-box;
  3778. width:100%;
  3779. }
  3780. #u154556_text {
  3781. border-width:0px;
  3782. white-space:nowrap;
  3783. text-transform:none;
  3784. }
  3785. #u154557_div {
  3786. border-width:0px;
  3787. position:absolute;
  3788. left:0px;
  3789. top:0px;
  3790. width:145px;
  3791. height:100px;
  3792. background:inherit;
  3793. background-color:rgba(255, 255, 255, 0);
  3794. border:none;
  3795. border-left:0px;
  3796. border-top:0px;
  3797. border-right:0px;
  3798. border-radius:0px;
  3799. border-bottom-right-radius:0px;
  3800. border-bottom-left-radius:0px;
  3801. -moz-box-shadow:none;
  3802. -webkit-box-shadow:none;
  3803. box-shadow:none;
  3804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3805. font-weight:400;
  3806. font-style:normal;
  3807. font-size:12px;
  3808. color:#7F7F7F;
  3809. text-align:right;
  3810. line-height:20px;
  3811. }
  3812. #u154557 {
  3813. border-width:0px;
  3814. position:absolute;
  3815. left:225px;
  3816. top:1298px;
  3817. width:145px;
  3818. height:100px;
  3819. display:flex;
  3820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3821. font-weight:400;
  3822. font-style:normal;
  3823. font-size:12px;
  3824. color:#7F7F7F;
  3825. text-align:right;
  3826. line-height:20px;
  3827. }
  3828. #u154557 .text {
  3829. position:absolute;
  3830. align-self:flex-start;
  3831. padding:0px 0px 0px 0px;
  3832. box-sizing:border-box;
  3833. width:100%;
  3834. }
  3835. #u154557_text {
  3836. border-width:0px;
  3837. white-space:nowrap;
  3838. text-transform:none;
  3839. }
  3840. #u154558 {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:0px;
  3844. top:0px;
  3845. width:0px;
  3846. height:0px;
  3847. }
  3848. #u154559_div {
  3849. border-width:0px;
  3850. position:absolute;
  3851. left:0px;
  3852. top:0px;
  3853. width:49px;
  3854. height:30px;
  3855. background:inherit;
  3856. background-color:rgba(255, 255, 255, 0);
  3857. border:none;
  3858. border-left:0px;
  3859. border-top:0px;
  3860. border-right:0px;
  3861. border-radius:0px;
  3862. border-bottom-right-radius:0px;
  3863. border-bottom-left-radius:0px;
  3864. -moz-box-shadow:none;
  3865. -webkit-box-shadow:none;
  3866. box-shadow:none;
  3867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3868. font-weight:400;
  3869. font-style:normal;
  3870. font-size:12px;
  3871. line-height:30px;
  3872. }
  3873. #u154559 {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:56px;
  3877. top:1007px;
  3878. width:49px;
  3879. height:30px;
  3880. display:flex;
  3881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3882. font-weight:400;
  3883. font-style:normal;
  3884. font-size:12px;
  3885. line-height:30px;
  3886. }
  3887. #u154559 .text {
  3888. position:absolute;
  3889. align-self:flex-start;
  3890. padding:0px 0px 0px 0px;
  3891. box-sizing:border-box;
  3892. width:100%;
  3893. }
  3894. #u154559_text {
  3895. border-width:0px;
  3896. white-space:nowrap;
  3897. text-transform:none;
  3898. }
  3899. #u154560_div {
  3900. border-width:0px;
  3901. position:absolute;
  3902. left:0px;
  3903. top:0px;
  3904. width:11px;
  3905. height:11px;
  3906. background:inherit;
  3907. background-color:rgba(255, 255, 255, 0);
  3908. box-sizing:border-box;
  3909. border-width:1px;
  3910. border-style:solid;
  3911. border-color:rgba(170, 170, 170, 1);
  3912. border-right:0px;
  3913. border-bottom:0px;
  3914. border-radius:0px;
  3915. border-top-right-radius:0px;
  3916. border-bottom-left-radius:0px;
  3917. -moz-box-shadow:none;
  3918. -webkit-box-shadow:none;
  3919. box-shadow:none;
  3920. }
  3921. #u154560 {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:360px;
  3925. top:1017px;
  3926. width:11px;
  3927. height:11px;
  3928. display:flex;
  3929. -webkit-transform:rotate(45deg);
  3930. -moz-transform:rotate(45deg);
  3931. -ms-transform:rotate(45deg);
  3932. transform:rotate(45deg);
  3933. }
  3934. #u154560 .text {
  3935. position:absolute;
  3936. align-self:center;
  3937. padding:2px 2px 2px 2px;
  3938. box-sizing:border-box;
  3939. width:100%;
  3940. }
  3941. #u154560_text {
  3942. border-width:0px;
  3943. word-wrap:break-word;
  3944. text-transform:none;
  3945. visibility:hidden;
  3946. }
  3947. #u154561 {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:0px;
  3951. top:0px;
  3952. width:0px;
  3953. height:0px;
  3954. }
  3955. #u154562_div {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:0px;
  3959. top:0px;
  3960. width:49px;
  3961. height:30px;
  3962. background:inherit;
  3963. background-color:rgba(255, 255, 255, 0);
  3964. border:none;
  3965. border-left:0px;
  3966. border-top:0px;
  3967. border-right:0px;
  3968. border-radius:0px;
  3969. border-bottom-right-radius:0px;
  3970. border-bottom-left-radius:0px;
  3971. -moz-box-shadow:none;
  3972. -webkit-box-shadow:none;
  3973. box-shadow:none;
  3974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3975. font-weight:400;
  3976. font-style:normal;
  3977. font-size:12px;
  3978. line-height:30px;
  3979. }
  3980. #u154562 {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:56px;
  3984. top:377px;
  3985. width:49px;
  3986. height:30px;
  3987. display:flex;
  3988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3989. font-weight:400;
  3990. font-style:normal;
  3991. font-size:12px;
  3992. line-height:30px;
  3993. }
  3994. #u154562 .text {
  3995. position:absolute;
  3996. align-self:flex-start;
  3997. padding:0px 0px 0px 0px;
  3998. box-sizing:border-box;
  3999. width:100%;
  4000. }
  4001. #u154562_text {
  4002. border-width:0px;
  4003. white-space:nowrap;
  4004. text-transform:none;
  4005. }
  4006. #u154563_div {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:0px;
  4010. top:0px;
  4011. width:11px;
  4012. height:11px;
  4013. background:inherit;
  4014. background-color:rgba(255, 255, 255, 0);
  4015. box-sizing:border-box;
  4016. border-width:1px;
  4017. border-style:solid;
  4018. border-color:rgba(170, 170, 170, 1);
  4019. border-right:0px;
  4020. border-bottom:0px;
  4021. border-radius:0px;
  4022. border-top-right-radius:0px;
  4023. border-bottom-left-radius:0px;
  4024. -moz-box-shadow:none;
  4025. -webkit-box-shadow:none;
  4026. box-shadow:none;
  4027. }
  4028. #u154563 {
  4029. border-width:0px;
  4030. position:absolute;
  4031. left:360px;
  4032. top:387px;
  4033. width:11px;
  4034. height:11px;
  4035. display:flex;
  4036. -webkit-transform:rotate(45deg);
  4037. -moz-transform:rotate(45deg);
  4038. -ms-transform:rotate(45deg);
  4039. transform:rotate(45deg);
  4040. }
  4041. #u154563 .text {
  4042. position:absolute;
  4043. align-self:center;
  4044. padding:2px 2px 2px 2px;
  4045. box-sizing:border-box;
  4046. width:100%;
  4047. }
  4048. #u154563_text {
  4049. border-width:0px;
  4050. word-wrap:break-word;
  4051. text-transform:none;
  4052. visibility:hidden;
  4053. }