styles.css 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:806px;
  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. #u48130 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u48131 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. transition:none;
  36. }
  37. #u48131 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u48131_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u48131_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u48132_div {
  59. border-width:0px;
  60. position:absolute;
  61. left:0px;
  62. top:0px;
  63. width:375px;
  64. height:40px;
  65. background:inherit;
  66. background-color:rgba(255, 255, 255, 1);
  67. box-sizing:border-box;
  68. border-width:1px;
  69. border-style:solid;
  70. border-color:rgba(215, 215, 215, 1);
  71. border-left:0px;
  72. border-top:0px;
  73. border-right:0px;
  74. border-radius:0px;
  75. border-bottom-right-radius:0px;
  76. border-bottom-left-radius:0px;
  77. filter:drop-shadow(none);
  78. transition:none;
  79. }
  80. #u48132 {
  81. border-width:0px;
  82. position:absolute;
  83. left:29px;
  84. top:67px;
  85. width:375px;
  86. height:40px;
  87. display:flex;
  88. transition:none;
  89. transform-origin:50% 50%;
  90. }
  91. #u48132 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u48132_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u48133 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u48134_div {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:88px;
  118. height:32px;
  119. background:inherit;
  120. background-color:rgba(255, 255, 255, 1);
  121. box-sizing:border-box;
  122. border-width:1px;
  123. border-style:solid;
  124. border-color:rgba(242, 242, 242, 1);
  125. border-radius:33px;
  126. filter:drop-shadow(none);
  127. transition:none;
  128. }
  129. #u48134 {
  130. border-width:0px;
  131. position:absolute;
  132. left:309px;
  133. top:71px;
  134. width:88px;
  135. height:32px;
  136. display:flex;
  137. transition:none;
  138. transform-origin:50% 50%;
  139. }
  140. #u48134 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u48134_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u48135 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u48136 {
  162. border-width:0px;
  163. position:absolute;
  164. left:372px;
  165. top:78px;
  166. width:18px;
  167. height:18px;
  168. display:flex;
  169. transition:none;
  170. }
  171. #u48136 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u48136_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u48136_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u48137 {
  193. border-width:0px;
  194. position:absolute;
  195. left:378px;
  196. top:84px;
  197. width:6px;
  198. height:6px;
  199. display:flex;
  200. transition:none;
  201. }
  202. #u48137 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u48137_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u48137_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u48138 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u48139 {
  232. border-width:0px;
  233. position:absolute;
  234. left:323px;
  235. top:85px;
  236. width:5px;
  237. height:5px;
  238. display:flex;
  239. transition:none;
  240. }
  241. #u48139 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u48139_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u48139_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u48140 {
  263. border-width:0px;
  264. position:absolute;
  265. left:339px;
  266. top:85px;
  267. width:5px;
  268. height:5px;
  269. display:flex;
  270. transition:none;
  271. }
  272. #u48140 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u48140_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u48140_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u48141 {
  294. border-width:0px;
  295. position:absolute;
  296. left:330px;
  297. top:84px;
  298. width:7px;
  299. height:7px;
  300. display:flex;
  301. transition:none;
  302. }
  303. #u48141 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u48141_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u48141_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u48142 {
  325. border-width:0px;
  326. position:absolute;
  327. left:347px;
  328. top:87px;
  329. width:18px;
  330. height:1px;
  331. display:flex;
  332. -webkit-transform:rotate(90deg);
  333. -moz-transform:rotate(90deg);
  334. -ms-transform:rotate(90deg);
  335. transform:rotate(90deg);
  336. transition:none;
  337. }
  338. #u48142 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u48142_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u48142_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u48143 {
  360. border-width:0px;
  361. position:absolute;
  362. left:29px;
  363. top:24px;
  364. width:375px;
  365. height:44px;
  366. display:flex;
  367. transition:none;
  368. }
  369. #u48143 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u48143_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u48143_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u48144_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:375px;
  396. height:50px;
  397. background:inherit;
  398. background-color:rgba(255, 255, 255, 1);
  399. box-sizing:border-box;
  400. border-width:1px;
  401. border-style:solid;
  402. border-color:rgba(242, 242, 242, 1);
  403. border-radius:26px;
  404. border-top-left-radius:0px;
  405. border-top-right-radius:0px;
  406. filter:drop-shadow(none);
  407. transition:none;
  408. }
  409. #u48144 {
  410. border-width:0px;
  411. position:absolute;
  412. left:29px;
  413. top:788px;
  414. width:375px;
  415. height:50px;
  416. display:flex;
  417. transition:none;
  418. transform-origin:50% 50%;
  419. }
  420. #u48144 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u48144_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u48145 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u48146 {
  442. border-width:0px;
  443. position:absolute;
  444. left:69px;
  445. top:792px;
  446. width:24px;
  447. height:24px;
  448. display:flex;
  449. transition:none;
  450. font-size:8px;
  451. }
  452. #u48146 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u48146_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u48146_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u48147_div {
  473. border-width:0px;
  474. position:absolute;
  475. left:0px;
  476. top:0px;
  477. width:25px;
  478. height:17px;
  479. background:inherit;
  480. background-color:rgba(255, 255, 255, 0);
  481. border-radius:0px;
  482. filter:drop-shadow(none);
  483. transition:none;
  484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  485. font-weight:400;
  486. font-style:normal;
  487. font-size:12px;
  488. }
  489. #u48147 {
  490. border-width:0px;
  491. position:absolute;
  492. left:69px;
  493. top:817px;
  494. width:25px;
  495. height:17px;
  496. display:flex;
  497. transition:none;
  498. transform-origin:50% 50%;
  499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  500. font-weight:400;
  501. font-style:normal;
  502. font-size:12px;
  503. }
  504. #u48147 .text {
  505. position:absolute;
  506. align-self:flex-start;
  507. padding:0px 0px 0px 0px;
  508. box-sizing:border-box;
  509. width:100%;
  510. }
  511. #u48147_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u48148 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u48149 {
  525. border-width:0px;
  526. position:absolute;
  527. left:339px;
  528. top:794px;
  529. width:24px;
  530. height:24px;
  531. display:flex;
  532. transition:none;
  533. font-size:8px;
  534. }
  535. #u48149 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u48149_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u48149_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u48150_div {
  556. border-width:0px;
  557. position:absolute;
  558. left:0px;
  559. top:0px;
  560. width:25px;
  561. height:17px;
  562. background:inherit;
  563. background-color:rgba(255, 255, 255, 0);
  564. border-radius:0px;
  565. filter:drop-shadow(none);
  566. transition:none;
  567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  568. font-weight:400;
  569. font-style:normal;
  570. font-size:12px;
  571. }
  572. #u48150 {
  573. border-width:0px;
  574. position:absolute;
  575. left:339px;
  576. top:819px;
  577. width:25px;
  578. height:17px;
  579. display:flex;
  580. transition:none;
  581. transform-origin:50% 50%;
  582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  583. font-weight:400;
  584. font-style:normal;
  585. font-size:12px;
  586. }
  587. #u48150 .text {
  588. position:absolute;
  589. align-self:flex-start;
  590. padding:0px 0px 0px 0px;
  591. box-sizing:border-box;
  592. width:100%;
  593. }
  594. #u48150_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u48151_div {
  600. border-width:0px;
  601. position:absolute;
  602. left:0px;
  603. top:0px;
  604. width:375px;
  605. height:681px;
  606. background:inherit;
  607. background-color:rgba(242, 242, 242, 0.4627450980392157);
  608. border-radius:0px;
  609. filter:drop-shadow(none);
  610. transition:none;
  611. }
  612. #u48151 {
  613. border-width:0px;
  614. position:absolute;
  615. left:29px;
  616. top:107px;
  617. width:375px;
  618. height:681px;
  619. display:flex;
  620. transition:none;
  621. transform-origin:50% 50%;
  622. }
  623. #u48151 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u48151_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u48152 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u48153 {
  645. border-width:0px;
  646. position:absolute;
  647. left:251px;
  648. top:792px;
  649. width:24px;
  650. height:24px;
  651. display:flex;
  652. transition:none;
  653. font-size:8px;
  654. }
  655. #u48153 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u48153_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u48153_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u48154_div {
  676. border-width:0px;
  677. position:absolute;
  678. left:0px;
  679. top:0px;
  680. width:37px;
  681. height:17px;
  682. background:inherit;
  683. background-color:rgba(255, 255, 255, 0);
  684. border-radius:0px;
  685. filter:drop-shadow(none);
  686. transition:none;
  687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  688. font-weight:400;
  689. font-style:normal;
  690. font-size:12px;
  691. }
  692. #u48154 {
  693. border-width:0px;
  694. position:absolute;
  695. left:245px;
  696. top:817px;
  697. width:37px;
  698. height:17px;
  699. display:flex;
  700. transition:none;
  701. transform-origin:50% 50%;
  702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  703. font-weight:400;
  704. font-style:normal;
  705. font-size:12px;
  706. }
  707. #u48154 .text {
  708. position:absolute;
  709. align-self:flex-start;
  710. padding:0px 0px 0px 0px;
  711. box-sizing:border-box;
  712. width:100%;
  713. }
  714. #u48154_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u48155 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u48156 {
  728. border-width:0px;
  729. position:absolute;
  730. left:157px;
  731. top:792px;
  732. width:24px;
  733. height:24px;
  734. display:flex;
  735. transition:none;
  736. font-size:8px;
  737. }
  738. #u48156 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u48156_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u48156_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u48157_div {
  759. border-width:0px;
  760. position:absolute;
  761. left:0px;
  762. top:0px;
  763. width:37px;
  764. height:17px;
  765. background:inherit;
  766. background-color:rgba(255, 255, 255, 0);
  767. border-radius:0px;
  768. filter:drop-shadow(none);
  769. transition:none;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:12px;
  774. }
  775. #u48157 {
  776. border-width:0px;
  777. position:absolute;
  778. left:151px;
  779. top:817px;
  780. width:37px;
  781. height:17px;
  782. display:flex;
  783. transition:none;
  784. transform-origin:50% 50%;
  785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  786. font-weight:400;
  787. font-style:normal;
  788. font-size:12px;
  789. }
  790. #u48157 .text {
  791. position:absolute;
  792. align-self:flex-start;
  793. padding:0px 0px 0px 0px;
  794. box-sizing:border-box;
  795. width:100%;
  796. }
  797. #u48157_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u48158_div {
  803. border-width:0px;
  804. position:absolute;
  805. left:0px;
  806. top:0px;
  807. width:375px;
  808. height:828px;
  809. background:inherit;
  810. background-color:rgba(242, 242, 242, 0.996078431372549);
  811. border-top:0px;
  812. border-radius:28px;
  813. border-top-left-radius:0px;
  814. border-top-right-radius:0px;
  815. filter:drop-shadow(none);
  816. transition:none;
  817. }
  818. #u48158 {
  819. border-width:0px;
  820. position:absolute;
  821. left:29px;
  822. top:107px;
  823. width:375px;
  824. height:828px;
  825. display:flex;
  826. transition:none;
  827. transform-origin:50% 50%;
  828. }
  829. #u48158 .text {
  830. position:absolute;
  831. align-self:center;
  832. padding:2px 2px 2px 2px;
  833. box-sizing:border-box;
  834. width:100%;
  835. }
  836. #u48158_text {
  837. border-width:0px;
  838. word-wrap:break-word;
  839. text-transform:none;
  840. visibility:hidden;
  841. }
  842. #u48159_div {
  843. border-width:0px;
  844. position:absolute;
  845. left:0px;
  846. top:0px;
  847. width:375px;
  848. height:41px;
  849. background:inherit;
  850. background-color:rgba(255, 255, 255, 1);
  851. box-sizing:border-box;
  852. border-width:1px;
  853. border-style:solid;
  854. border-color:rgba(215, 215, 215, 1);
  855. border-left:0px;
  856. border-top:0px;
  857. border-right:0px;
  858. border-radius:0px;
  859. border-bottom-right-radius:0px;
  860. border-bottom-left-radius:0px;
  861. filter:drop-shadow(none);
  862. transition:none;
  863. }
  864. #u48159 {
  865. border-width:0px;
  866. position:absolute;
  867. left:29px;
  868. top:67px;
  869. width:375px;
  870. height:41px;
  871. display:flex;
  872. transition:none;
  873. transform-origin:50% 50%;
  874. }
  875. #u48159 .text {
  876. position:absolute;
  877. align-self:center;
  878. padding:2px 2px 2px 2px;
  879. box-sizing:border-box;
  880. width:100%;
  881. }
  882. #u48159_text {
  883. border-width:0px;
  884. word-wrap:break-word;
  885. text-transform:none;
  886. visibility:hidden;
  887. }
  888. #u48160_div {
  889. border-width:0px;
  890. position:absolute;
  891. left:0px;
  892. top:0px;
  893. width:375px;
  894. height:115px;
  895. background:inherit;
  896. background-color:rgba(255, 255, 255, 1);
  897. box-sizing:border-box;
  898. border-width:1px;
  899. border-style:solid;
  900. border-color:rgba(215, 215, 215, 1);
  901. border-left:0px;
  902. border-top:0px;
  903. border-right:0px;
  904. border-radius:0px;
  905. border-bottom-right-radius:0px;
  906. border-bottom-left-radius:0px;
  907. filter:drop-shadow(none);
  908. transition:none;
  909. }
  910. #u48160 {
  911. border-width:0px;
  912. position:absolute;
  913. left:29px;
  914. top:108px;
  915. width:375px;
  916. height:115px;
  917. display:flex;
  918. transition:none;
  919. transform-origin:50% 50%;
  920. }
  921. #u48160 .text {
  922. position:absolute;
  923. align-self:center;
  924. padding:2px 2px 2px 2px;
  925. box-sizing:border-box;
  926. width:100%;
  927. }
  928. #u48160_text {
  929. border-width:0px;
  930. word-wrap:break-word;
  931. text-transform:none;
  932. visibility:hidden;
  933. }
  934. #u48161 {
  935. border-width:0px;
  936. position:absolute;
  937. left:29px;
  938. top:24px;
  939. width:375px;
  940. height:44px;
  941. display:flex;
  942. transition:none;
  943. }
  944. #u48161 .text {
  945. position:absolute;
  946. align-self:center;
  947. padding:2px 2px 2px 2px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u48161_img {
  952. border-width:0px;
  953. position:absolute;
  954. left:0px;
  955. top:0px;
  956. width:375px;
  957. height:44px;
  958. }
  959. #u48161_text {
  960. border-width:0px;
  961. word-wrap:break-word;
  962. text-transform:none;
  963. visibility:hidden;
  964. }
  965. #u48162 {
  966. border-width:0px;
  967. position:absolute;
  968. left:0px;
  969. top:0px;
  970. width:0px;
  971. height:0px;
  972. }
  973. #u48163_div {
  974. border-width:0px;
  975. position:absolute;
  976. left:0px;
  977. top:0px;
  978. width:88px;
  979. height:32px;
  980. background:inherit;
  981. background-color:rgba(255, 255, 255, 1);
  982. box-sizing:border-box;
  983. border-width:1px;
  984. border-style:solid;
  985. border-color:rgba(242, 242, 242, 1);
  986. border-radius:33px;
  987. filter:drop-shadow(none);
  988. transition:none;
  989. }
  990. #u48163 {
  991. border-width:0px;
  992. position:absolute;
  993. left:309px;
  994. top:71px;
  995. width:88px;
  996. height:32px;
  997. display:flex;
  998. transition:none;
  999. transform-origin:50% 50%;
  1000. }
  1001. #u48163 .text {
  1002. position:absolute;
  1003. align-self:center;
  1004. padding:2px 2px 2px 2px;
  1005. box-sizing:border-box;
  1006. width:100%;
  1007. }
  1008. #u48163_text {
  1009. border-width:0px;
  1010. word-wrap:break-word;
  1011. text-transform:none;
  1012. visibility:hidden;
  1013. }
  1014. #u48164 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:0px;
  1018. top:0px;
  1019. width:0px;
  1020. height:0px;
  1021. }
  1022. #u48165 {
  1023. border-width:0px;
  1024. position:absolute;
  1025. left:372px;
  1026. top:78px;
  1027. width:18px;
  1028. height:18px;
  1029. display:flex;
  1030. transition:none;
  1031. }
  1032. #u48165 .text {
  1033. position:absolute;
  1034. align-self:center;
  1035. padding:2px 2px 2px 2px;
  1036. box-sizing:border-box;
  1037. width:100%;
  1038. }
  1039. #u48165_img {
  1040. border-width:0px;
  1041. position:absolute;
  1042. left:0px;
  1043. top:0px;
  1044. width:18px;
  1045. height:18px;
  1046. }
  1047. #u48165_text {
  1048. border-width:0px;
  1049. word-wrap:break-word;
  1050. text-transform:none;
  1051. visibility:hidden;
  1052. }
  1053. #u48166 {
  1054. border-width:0px;
  1055. position:absolute;
  1056. left:378px;
  1057. top:84px;
  1058. width:6px;
  1059. height:6px;
  1060. display:flex;
  1061. transition:none;
  1062. }
  1063. #u48166 .text {
  1064. position:absolute;
  1065. align-self:center;
  1066. padding:2px 2px 2px 2px;
  1067. box-sizing:border-box;
  1068. width:100%;
  1069. }
  1070. #u48166_img {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:6px;
  1076. height:6px;
  1077. }
  1078. #u48166_text {
  1079. border-width:0px;
  1080. word-wrap:break-word;
  1081. text-transform:none;
  1082. visibility:hidden;
  1083. }
  1084. #u48167 {
  1085. border-width:0px;
  1086. position:absolute;
  1087. left:0px;
  1088. top:0px;
  1089. width:0px;
  1090. height:0px;
  1091. }
  1092. #u48168 {
  1093. border-width:0px;
  1094. position:absolute;
  1095. left:323px;
  1096. top:85px;
  1097. width:5px;
  1098. height:5px;
  1099. display:flex;
  1100. transition:none;
  1101. }
  1102. #u48168 .text {
  1103. position:absolute;
  1104. align-self:center;
  1105. padding:2px 2px 2px 2px;
  1106. box-sizing:border-box;
  1107. width:100%;
  1108. }
  1109. #u48168_img {
  1110. border-width:0px;
  1111. position:absolute;
  1112. left:0px;
  1113. top:0px;
  1114. width:5px;
  1115. height:5px;
  1116. }
  1117. #u48168_text {
  1118. border-width:0px;
  1119. word-wrap:break-word;
  1120. text-transform:none;
  1121. visibility:hidden;
  1122. }
  1123. #u48169 {
  1124. border-width:0px;
  1125. position:absolute;
  1126. left:339px;
  1127. top:85px;
  1128. width:5px;
  1129. height:5px;
  1130. display:flex;
  1131. transition:none;
  1132. }
  1133. #u48169 .text {
  1134. position:absolute;
  1135. align-self:center;
  1136. padding:2px 2px 2px 2px;
  1137. box-sizing:border-box;
  1138. width:100%;
  1139. }
  1140. #u48169_img {
  1141. border-width:0px;
  1142. position:absolute;
  1143. left:0px;
  1144. top:0px;
  1145. width:5px;
  1146. height:5px;
  1147. }
  1148. #u48169_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u48170 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:330px;
  1158. top:84px;
  1159. width:7px;
  1160. height:7px;
  1161. display:flex;
  1162. transition:none;
  1163. }
  1164. #u48170 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u48170_img {
  1172. border-width:0px;
  1173. position:absolute;
  1174. left:0px;
  1175. top:0px;
  1176. width:7px;
  1177. height:7px;
  1178. }
  1179. #u48170_text {
  1180. border-width:0px;
  1181. word-wrap:break-word;
  1182. text-transform:none;
  1183. visibility:hidden;
  1184. }
  1185. #u48171 {
  1186. border-width:0px;
  1187. position:absolute;
  1188. left:347px;
  1189. top:87px;
  1190. width:18px;
  1191. height:1px;
  1192. display:flex;
  1193. -webkit-transform:rotate(90deg);
  1194. -moz-transform:rotate(90deg);
  1195. -ms-transform:rotate(90deg);
  1196. transform:rotate(90deg);
  1197. transition:none;
  1198. }
  1199. #u48171 .text {
  1200. position:absolute;
  1201. align-self:center;
  1202. padding:2px 2px 2px 2px;
  1203. box-sizing:border-box;
  1204. width:100%;
  1205. }
  1206. #u48171_img {
  1207. border-width:0px;
  1208. position:absolute;
  1209. left:0px;
  1210. top:0px;
  1211. width:19px;
  1212. height:2px;
  1213. }
  1214. #u48171_text {
  1215. border-width:0px;
  1216. word-wrap:break-word;
  1217. text-transform:none;
  1218. visibility:hidden;
  1219. }
  1220. #u48172_div {
  1221. border-width:0px;
  1222. position:absolute;
  1223. left:0px;
  1224. top:0px;
  1225. width:12px;
  1226. height:12px;
  1227. background:inherit;
  1228. background-color:rgba(255, 255, 255, 0);
  1229. box-sizing:border-box;
  1230. border-width:2px;
  1231. border-style:solid;
  1232. border-color:rgba(51, 51, 51, 1);
  1233. border-right:0px;
  1234. border-bottom:0px;
  1235. border-radius:0px;
  1236. border-top-right-radius:0px;
  1237. border-bottom-left-radius:0px;
  1238. filter:drop-shadow(none);
  1239. transition:none;
  1240. }
  1241. #u48172 {
  1242. border-width:0px;
  1243. position:absolute;
  1244. left:44px;
  1245. top:81px;
  1246. width:12px;
  1247. height:12px;
  1248. display:flex;
  1249. -webkit-transform:rotate(315deg);
  1250. -moz-transform:rotate(315deg);
  1251. -ms-transform:rotate(315deg);
  1252. transform:rotate(315deg);
  1253. transition:none;
  1254. transform-origin:50% 50%;
  1255. }
  1256. #u48172 .text {
  1257. position:absolute;
  1258. align-self:center;
  1259. padding:2px 2px 2px 2px;
  1260. box-sizing:border-box;
  1261. width:100%;
  1262. }
  1263. #u48172_text {
  1264. border-width:0px;
  1265. word-wrap:break-word;
  1266. text-transform:none;
  1267. visibility:hidden;
  1268. }
  1269. #u48173_div {
  1270. border-width:0px;
  1271. position:absolute;
  1272. left:0px;
  1273. top:0px;
  1274. width:109px;
  1275. height:25px;
  1276. background:inherit;
  1277. background-color:rgba(255, 255, 255, 0);
  1278. border-radius:0px;
  1279. filter:drop-shadow(none);
  1280. transition:none;
  1281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1282. font-weight:400;
  1283. font-style:normal;
  1284. font-size:18px;
  1285. }
  1286. #u48173 {
  1287. border-width:0px;
  1288. position:absolute;
  1289. left:64px;
  1290. top:75px;
  1291. width:109px;
  1292. height:25px;
  1293. display:flex;
  1294. transition:none;
  1295. transform-origin:50% 50%;
  1296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1297. font-weight:400;
  1298. font-style:normal;
  1299. font-size:18px;
  1300. }
  1301. #u48173 .text {
  1302. position:absolute;
  1303. align-self:flex-start;
  1304. padding:0px 0px 0px 0px;
  1305. box-sizing:border-box;
  1306. width:100%;
  1307. }
  1308. #u48173_text {
  1309. border-width:0px;
  1310. white-space:nowrap;
  1311. text-transform:none;
  1312. }
  1313. #u48174_div {
  1314. border-width:0px;
  1315. position:absolute;
  1316. left:0px;
  1317. top:0px;
  1318. width:353px;
  1319. height:40px;
  1320. background:inherit;
  1321. background-color:rgba(255, 255, 255, 0);
  1322. border-top:0px;
  1323. border-right:0px;
  1324. border-bottom:0px;
  1325. border-radius:0px;
  1326. border-top-left-radius:0px;
  1327. border-bottom-left-radius:0px;
  1328. filter:drop-shadow(none);
  1329. transition:none;
  1330. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1331. font-weight:500;
  1332. font-style:normal;
  1333. font-size:18px;
  1334. line-height:30px;
  1335. }
  1336. #u48174 {
  1337. border-width:0px;
  1338. position:absolute;
  1339. left:42px;
  1340. top:116px;
  1341. width:353px;
  1342. height:40px;
  1343. display:flex;
  1344. transition:none;
  1345. transform-origin:50% 50%;
  1346. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1347. font-weight:500;
  1348. font-style:normal;
  1349. font-size:18px;
  1350. line-height:30px;
  1351. }
  1352. #u48174 .text {
  1353. position:absolute;
  1354. align-self:flex-start;
  1355. padding:5px 10px 5px 0px;
  1356. box-sizing:border-box;
  1357. width:100%;
  1358. }
  1359. #u48174_text {
  1360. border-width:0px;
  1361. word-wrap:break-word;
  1362. text-transform:none;
  1363. }
  1364. #u48175_div {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:0px;
  1368. top:0px;
  1369. width:11px;
  1370. height:11px;
  1371. background:inherit;
  1372. background-color:rgba(255, 255, 255, 0);
  1373. box-sizing:border-box;
  1374. border-width:2px;
  1375. border-style:solid;
  1376. border-color:rgba(127, 127, 127, 1);
  1377. border-right:0px;
  1378. border-bottom:0px;
  1379. border-radius:0px;
  1380. border-top-right-radius:0px;
  1381. border-bottom-left-radius:0px;
  1382. filter:drop-shadow(none);
  1383. transition:none;
  1384. }
  1385. #u48175 {
  1386. border-width:0px;
  1387. position:absolute;
  1388. left:374px;
  1389. top:130px;
  1390. width:11px;
  1391. height:11px;
  1392. display:flex;
  1393. -webkit-transform:rotate(225deg);
  1394. -moz-transform:rotate(225deg);
  1395. -ms-transform:rotate(225deg);
  1396. transform:rotate(225deg);
  1397. transition:none;
  1398. transform-origin:50% 50%;
  1399. }
  1400. #u48175 .text {
  1401. position:absolute;
  1402. align-self:center;
  1403. padding:2px 2px 2px 2px;
  1404. box-sizing:border-box;
  1405. width:100%;
  1406. }
  1407. #u48175_text {
  1408. border-width:0px;
  1409. word-wrap:break-word;
  1410. text-transform:none;
  1411. visibility:hidden;
  1412. }
  1413. #u48176_div {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:0px;
  1417. top:0px;
  1418. width:375px;
  1419. height:50px;
  1420. background:inherit;
  1421. background-color:rgba(255, 255, 255, 1);
  1422. box-sizing:border-box;
  1423. border-width:1px;
  1424. border-style:solid;
  1425. border-color:rgba(215, 215, 215, 1);
  1426. border-left:0px;
  1427. border-top:0px;
  1428. border-right:0px;
  1429. border-radius:0px;
  1430. border-bottom-right-radius:0px;
  1431. border-bottom-left-radius:0px;
  1432. filter:drop-shadow(none);
  1433. transition:none;
  1434. }
  1435. #u48176 {
  1436. border-width:0px;
  1437. position:absolute;
  1438. left:29px;
  1439. top:233px;
  1440. width:375px;
  1441. height:50px;
  1442. display:flex;
  1443. transition:none;
  1444. transform-origin:50% 50%;
  1445. }
  1446. #u48176 .text {
  1447. position:absolute;
  1448. align-self:center;
  1449. padding:2px 2px 2px 2px;
  1450. box-sizing:border-box;
  1451. width:100%;
  1452. }
  1453. #u48176_text {
  1454. border-width:0px;
  1455. word-wrap:break-word;
  1456. text-transform:none;
  1457. visibility:hidden;
  1458. }
  1459. #u48177 {
  1460. border-width:0px;
  1461. position:absolute;
  1462. left:0px;
  1463. top:0px;
  1464. width:0px;
  1465. height:0px;
  1466. }
  1467. #u48178_div {
  1468. border-width:0px;
  1469. position:absolute;
  1470. left:0px;
  1471. top:0px;
  1472. width:375px;
  1473. height:60px;
  1474. background:inherit;
  1475. background-color:rgba(255, 255, 255, 1);
  1476. border-top:0px;
  1477. border-radius:28px;
  1478. border-top-left-radius:0px;
  1479. border-top-right-radius:0px;
  1480. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  1481. transition:none;
  1482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1483. font-weight:400;
  1484. font-style:normal;
  1485. font-size:14px;
  1486. color:#FFFFFF;
  1487. }
  1488. #u48178 {
  1489. border-width:0px;
  1490. position:absolute;
  1491. left:29px;
  1492. top:875px;
  1493. width:375px;
  1494. height:60px;
  1495. display:flex;
  1496. transition:none;
  1497. transform-origin:50% 50%;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:14px;
  1502. color:#FFFFFF;
  1503. }
  1504. #u48178 .text {
  1505. position:absolute;
  1506. align-self:center;
  1507. padding:2px 2px 2px 2px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u48178_text {
  1512. border-width:0px;
  1513. word-wrap:break-word;
  1514. text-transform:none;
  1515. visibility:hidden;
  1516. }
  1517. #u48179_div {
  1518. border-width:0px;
  1519. position:absolute;
  1520. left:0px;
  1521. top:0px;
  1522. width:342px;
  1523. height:40px;
  1524. background:inherit;
  1525. background-color:rgba(0, 137, 254, 1);
  1526. border-radius:63px;
  1527. filter:drop-shadow(none);
  1528. transition:none;
  1529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1530. font-weight:400;
  1531. font-style:normal;
  1532. font-size:14px;
  1533. color:#FFFFFF;
  1534. }
  1535. #u48179 {
  1536. border-width:0px;
  1537. position:absolute;
  1538. left:52px;
  1539. top:885px;
  1540. width:342px;
  1541. height:40px;
  1542. display:flex;
  1543. transition:none;
  1544. transform-origin:50% 50%;
  1545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1546. font-weight:400;
  1547. font-style:normal;
  1548. font-size:14px;
  1549. color:#FFFFFF;
  1550. }
  1551. #u48179 .text {
  1552. position:absolute;
  1553. align-self:center;
  1554. padding:2px 2px 2px 2px;
  1555. box-sizing:border-box;
  1556. width:100%;
  1557. }
  1558. #u48179_text {
  1559. border-width:0px;
  1560. word-wrap:break-word;
  1561. text-transform:none;
  1562. }
  1563. #u48180_div {
  1564. border-width:0px;
  1565. position:absolute;
  1566. left:0px;
  1567. top:0px;
  1568. width:27px;
  1569. height:14px;
  1570. background:inherit;
  1571. background-color:rgba(24, 144, 255, 1);
  1572. border-radius:14px;
  1573. filter:drop-shadow(none);
  1574. transition:none;
  1575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1576. font-weight:400;
  1577. font-style:normal;
  1578. font-size:10px;
  1579. color:#FFFFFF;
  1580. text-align:center;
  1581. }
  1582. #u48180 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:176px;
  1586. top:128px;
  1587. width:27px;
  1588. height:14px;
  1589. display:flex;
  1590. transition:none;
  1591. transform-origin:50% 50%;
  1592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1593. font-weight:400;
  1594. font-style:normal;
  1595. font-size:10px;
  1596. color:#FFFFFF;
  1597. text-align:center;
  1598. }
  1599. #u48180 .text {
  1600. position:absolute;
  1601. align-self:flex-start;
  1602. padding:0px 0px 0px 0px;
  1603. box-sizing:border-box;
  1604. width:100%;
  1605. }
  1606. #u48180_text {
  1607. border-width:0px;
  1608. word-wrap:break-word;
  1609. text-transform:none;
  1610. }
  1611. #u48181_div {
  1612. border-width:0px;
  1613. position:absolute;
  1614. left:0px;
  1615. top:0px;
  1616. width:113px;
  1617. height:30px;
  1618. background:inherit;
  1619. background-color:rgba(255, 255, 255, 0);
  1620. border-left:0px;
  1621. border-top:0px;
  1622. border-right:0px;
  1623. border-radius:0px;
  1624. border-bottom-right-radius:0px;
  1625. border-bottom-left-radius:0px;
  1626. filter:drop-shadow(none);
  1627. transition:none;
  1628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1629. font-weight:400;
  1630. font-style:normal;
  1631. font-size:14px;
  1632. line-height:30px;
  1633. }
  1634. #u48181 {
  1635. border-width:0px;
  1636. position:absolute;
  1637. left:42px;
  1638. top:150px;
  1639. width:113px;
  1640. height:30px;
  1641. display:flex;
  1642. transition:none;
  1643. transform-origin:50% 50%;
  1644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1645. font-weight:400;
  1646. font-style:normal;
  1647. font-size:14px;
  1648. line-height:30px;
  1649. }
  1650. #u48181 .text {
  1651. position:absolute;
  1652. align-self:flex-start;
  1653. padding:0px 0px 0px 0px;
  1654. box-sizing:border-box;
  1655. width:100%;
  1656. }
  1657. #u48181_text {
  1658. border-width:0px;
  1659. white-space:nowrap;
  1660. text-transform:none;
  1661. }
  1662. #u48182_div {
  1663. border-width:0px;
  1664. position:absolute;
  1665. left:0px;
  1666. top:0px;
  1667. width:57px;
  1668. height:30px;
  1669. background:inherit;
  1670. background-color:rgba(255, 255, 255, 0);
  1671. border-left:0px;
  1672. border-top:0px;
  1673. border-right:0px;
  1674. border-radius:0px;
  1675. border-bottom-right-radius:0px;
  1676. border-bottom-left-radius:0px;
  1677. filter:drop-shadow(none);
  1678. transition:none;
  1679. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1680. font-weight:500;
  1681. font-style:normal;
  1682. font-size:14px;
  1683. line-height:30px;
  1684. }
  1685. #u48182 {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:120px;
  1689. top:185px;
  1690. width:57px;
  1691. height:30px;
  1692. display:flex;
  1693. transition:none;
  1694. transform-origin:50% 50%;
  1695. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1696. font-weight:500;
  1697. font-style:normal;
  1698. font-size:14px;
  1699. line-height:30px;
  1700. }
  1701. #u48182 .text {
  1702. position:absolute;
  1703. align-self:flex-start;
  1704. padding:0px 0px 0px 0px;
  1705. box-sizing:border-box;
  1706. width:100%;
  1707. }
  1708. #u48182_text {
  1709. border-width:0px;
  1710. white-space:nowrap;
  1711. text-transform:none;
  1712. }
  1713. #u48183_div {
  1714. border-width:0px;
  1715. position:absolute;
  1716. left:0px;
  1717. top:0px;
  1718. width:71px;
  1719. height:30px;
  1720. background:inherit;
  1721. background-color:rgba(255, 255, 255, 0);
  1722. border-left:0px;
  1723. border-top:0px;
  1724. border-right:0px;
  1725. border-radius:0px;
  1726. border-bottom-right-radius:0px;
  1727. border-bottom-left-radius:0px;
  1728. filter:drop-shadow(none);
  1729. transition:none;
  1730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1731. font-weight:400;
  1732. font-style:normal;
  1733. font-size:14px;
  1734. line-height:30px;
  1735. }
  1736. #u48183 {
  1737. border-width:0px;
  1738. position:absolute;
  1739. left:42px;
  1740. top:185px;
  1741. width:71px;
  1742. height:30px;
  1743. display:flex;
  1744. transition:none;
  1745. transform-origin:50% 50%;
  1746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1747. font-weight:400;
  1748. font-style:normal;
  1749. font-size:14px;
  1750. line-height:30px;
  1751. }
  1752. #u48183 .text {
  1753. position:absolute;
  1754. align-self:flex-start;
  1755. padding:0px 0px 0px 0px;
  1756. box-sizing:border-box;
  1757. width:100%;
  1758. }
  1759. #u48183_text {
  1760. border-width:0px;
  1761. white-space:nowrap;
  1762. text-transform:none;
  1763. }
  1764. #u48184_div {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:0px;
  1768. top:0px;
  1769. width:353px;
  1770. height:40px;
  1771. background:inherit;
  1772. background-color:rgba(255, 255, 255, 0);
  1773. border-top:0px;
  1774. border-right:0px;
  1775. border-bottom:0px;
  1776. border-radius:0px;
  1777. border-top-left-radius:0px;
  1778. border-bottom-left-radius:0px;
  1779. filter:drop-shadow(none);
  1780. transition:none;
  1781. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1782. font-weight:500;
  1783. font-style:normal;
  1784. font-size:14px;
  1785. line-height:30px;
  1786. }
  1787. #u48184 {
  1788. border-width:0px;
  1789. position:absolute;
  1790. left:42px;
  1791. top:238px;
  1792. width:353px;
  1793. height:40px;
  1794. display:flex;
  1795. transition:none;
  1796. transform-origin:50% 50%;
  1797. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1798. font-weight:500;
  1799. font-style:normal;
  1800. font-size:14px;
  1801. line-height:30px;
  1802. }
  1803. #u48184 .text {
  1804. position:absolute;
  1805. align-self:flex-start;
  1806. padding:5px 10px 5px 0px;
  1807. box-sizing:border-box;
  1808. width:100%;
  1809. }
  1810. #u48184_text {
  1811. border-width:0px;
  1812. word-wrap:break-word;
  1813. text-transform:none;
  1814. }
  1815. #u48185_div {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:0px;
  1819. top:0px;
  1820. width:11px;
  1821. height:11px;
  1822. background:inherit;
  1823. background-color:rgba(255, 255, 255, 0);
  1824. box-sizing:border-box;
  1825. border-width:2px;
  1826. border-style:solid;
  1827. border-color:rgba(127, 127, 127, 1);
  1828. border-right:0px;
  1829. border-bottom:0px;
  1830. border-radius:0px;
  1831. border-top-right-radius:0px;
  1832. border-bottom-left-radius:0px;
  1833. filter:drop-shadow(none);
  1834. transition:none;
  1835. }
  1836. #u48185 {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:374px;
  1840. top:253px;
  1841. width:11px;
  1842. height:11px;
  1843. display:flex;
  1844. -webkit-transform:rotate(225deg);
  1845. -moz-transform:rotate(225deg);
  1846. -ms-transform:rotate(225deg);
  1847. transform:rotate(225deg);
  1848. transition:none;
  1849. transform-origin:50% 50%;
  1850. }
  1851. #u48185 .text {
  1852. position:absolute;
  1853. align-self:center;
  1854. padding:2px 2px 2px 2px;
  1855. box-sizing:border-box;
  1856. width:100%;
  1857. }
  1858. #u48185_text {
  1859. border-width:0px;
  1860. word-wrap:break-word;
  1861. text-transform:none;
  1862. visibility:hidden;
  1863. }
  1864. #u48186_div {
  1865. border-width:0px;
  1866. position:absolute;
  1867. left:0px;
  1868. top:0px;
  1869. width:375px;
  1870. height:400px;
  1871. background:inherit;
  1872. background-color:rgba(255, 255, 255, 1);
  1873. box-sizing:border-box;
  1874. border-width:1px;
  1875. border-style:solid;
  1876. border-color:rgba(215, 215, 215, 1);
  1877. border-left:0px;
  1878. border-top:0px;
  1879. border-right:0px;
  1880. border-radius:0px;
  1881. border-bottom-right-radius:0px;
  1882. border-bottom-left-radius:0px;
  1883. filter:drop-shadow(none);
  1884. transition:none;
  1885. }
  1886. #u48186 {
  1887. border-width:0px;
  1888. position:absolute;
  1889. left:29px;
  1890. top:283px;
  1891. width:375px;
  1892. height:400px;
  1893. display:flex;
  1894. transition:none;
  1895. transform-origin:50% 50%;
  1896. }
  1897. #u48186 .text {
  1898. position:absolute;
  1899. align-self:center;
  1900. padding:2px 2px 2px 2px;
  1901. box-sizing:border-box;
  1902. width:100%;
  1903. }
  1904. #u48186_text {
  1905. border-width:0px;
  1906. word-wrap:break-word;
  1907. text-transform:none;
  1908. visibility:hidden;
  1909. }
  1910. #u48187_div {
  1911. border-width:0px;
  1912. position:absolute;
  1913. left:0px;
  1914. top:0px;
  1915. width:353px;
  1916. height:40px;
  1917. background:inherit;
  1918. background-color:rgba(255, 255, 255, 0);
  1919. border-top:0px;
  1920. border-right:0px;
  1921. border-bottom:0px;
  1922. border-radius:0px;
  1923. border-top-left-radius:0px;
  1924. border-bottom-left-radius:0px;
  1925. filter:drop-shadow(none);
  1926. transition:none;
  1927. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1928. font-weight:500;
  1929. font-style:normal;
  1930. font-size:14px;
  1931. line-height:30px;
  1932. }
  1933. #u48187 {
  1934. border-width:0px;
  1935. position:absolute;
  1936. left:42px;
  1937. top:288px;
  1938. width:353px;
  1939. height:40px;
  1940. display:flex;
  1941. transition:none;
  1942. transform-origin:50% 50%;
  1943. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1944. font-weight:500;
  1945. font-style:normal;
  1946. font-size:14px;
  1947. line-height:30px;
  1948. }
  1949. #u48187 .text {
  1950. position:absolute;
  1951. align-self:flex-start;
  1952. padding:5px 10px 5px 0px;
  1953. box-sizing:border-box;
  1954. width:100%;
  1955. }
  1956. #u48187_text {
  1957. border-width:0px;
  1958. word-wrap:break-word;
  1959. text-transform:none;
  1960. }
  1961. #u48188_div {
  1962. border-width:0px;
  1963. position:absolute;
  1964. left:0px;
  1965. top:0px;
  1966. width:11px;
  1967. height:11px;
  1968. background:inherit;
  1969. background-color:rgba(255, 255, 255, 0);
  1970. box-sizing:border-box;
  1971. border-width:2px;
  1972. border-style:solid;
  1973. border-color:rgba(51, 51, 51, 1);
  1974. border-right:0px;
  1975. border-bottom:0px;
  1976. border-radius:0px;
  1977. border-top-right-radius:0px;
  1978. border-bottom-left-radius:0px;
  1979. filter:drop-shadow(none);
  1980. transition:none;
  1981. }
  1982. #u48188 {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:374px;
  1986. top:303px;
  1987. width:11px;
  1988. height:11px;
  1989. display:flex;
  1990. -webkit-transform:rotate(45deg);
  1991. -moz-transform:rotate(45deg);
  1992. -ms-transform:rotate(45deg);
  1993. transform:rotate(45deg);
  1994. transition:none;
  1995. transform-origin:50% 50%;
  1996. }
  1997. #u48188 .text {
  1998. position:absolute;
  1999. align-self:center;
  2000. padding:2px 2px 2px 2px;
  2001. box-sizing:border-box;
  2002. width:100%;
  2003. }
  2004. #u48188_text {
  2005. border-width:0px;
  2006. word-wrap:break-word;
  2007. text-transform:none;
  2008. visibility:hidden;
  2009. }
  2010. #u48189_div {
  2011. border-width:0px;
  2012. position:absolute;
  2013. left:0px;
  2014. top:0px;
  2015. width:355px;
  2016. height:340px;
  2017. background:inherit;
  2018. background-color:rgba(242, 242, 242, 1);
  2019. border-left:0px;
  2020. border-top:0px;
  2021. border-right:0px;
  2022. border-radius:0px;
  2023. border-bottom-right-radius:0px;
  2024. border-bottom-left-radius:0px;
  2025. filter:drop-shadow(none);
  2026. transition:none;
  2027. }
  2028. #u48189 {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:40px;
  2032. top:328px;
  2033. width:355px;
  2034. height:340px;
  2035. display:flex;
  2036. transition:none;
  2037. transform-origin:50% 50%;
  2038. }
  2039. #u48189 .text {
  2040. position:absolute;
  2041. align-self:center;
  2042. padding:2px 2px 2px 2px;
  2043. box-sizing:border-box;
  2044. width:100%;
  2045. }
  2046. #u48189_text {
  2047. border-width:0px;
  2048. word-wrap:break-word;
  2049. text-transform:none;
  2050. visibility:hidden;
  2051. }
  2052. #u48190 {
  2053. border-width:0px;
  2054. position:absolute;
  2055. left:0px;
  2056. top:0px;
  2057. width:0px;
  2058. height:0px;
  2059. }
  2060. #u48191_div {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:0px;
  2064. top:0px;
  2065. width:57px;
  2066. height:30px;
  2067. background:inherit;
  2068. background-color:rgba(255, 255, 255, 0);
  2069. border-left:0px;
  2070. border-top:0px;
  2071. border-right:0px;
  2072. border-radius:0px;
  2073. border-bottom-right-radius:0px;
  2074. border-bottom-left-radius:0px;
  2075. filter:drop-shadow(none);
  2076. transition:none;
  2077. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2078. font-weight:500;
  2079. font-style:normal;
  2080. font-size:14px;
  2081. line-height:30px;
  2082. }
  2083. #u48191 {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:222px;
  2087. top:341px;
  2088. width:57px;
  2089. height:30px;
  2090. display:flex;
  2091. transition:none;
  2092. transform-origin:50% 50%;
  2093. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2094. font-weight:500;
  2095. font-style:normal;
  2096. font-size:14px;
  2097. line-height:30px;
  2098. }
  2099. #u48191 .text {
  2100. position:absolute;
  2101. align-self:flex-start;
  2102. padding:0px 0px 0px 0px;
  2103. box-sizing:border-box;
  2104. width:100%;
  2105. }
  2106. #u48191_text {
  2107. border-width:0px;
  2108. white-space:nowrap;
  2109. text-transform:none;
  2110. }
  2111. #u48192_div {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:0px;
  2115. top:0px;
  2116. width:138px;
  2117. height:30px;
  2118. background:inherit;
  2119. background-color:rgba(255, 255, 255, 0);
  2120. border-left:0px;
  2121. border-top:0px;
  2122. border-right:0px;
  2123. border-radius:0px;
  2124. border-bottom-right-radius:0px;
  2125. border-bottom-left-radius:0px;
  2126. filter:drop-shadow(none);
  2127. transition:none;
  2128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2129. font-weight:400;
  2130. font-style:normal;
  2131. font-size:14px;
  2132. line-height:30px;
  2133. }
  2134. #u48192 {
  2135. border-width:0px;
  2136. position:absolute;
  2137. left:64px;
  2138. top:341px;
  2139. width:138px;
  2140. height:30px;
  2141. display:flex;
  2142. transition:none;
  2143. transform-origin:50% 50%;
  2144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2145. font-weight:400;
  2146. font-style:normal;
  2147. font-size:14px;
  2148. line-height:30px;
  2149. }
  2150. #u48192 .text {
  2151. position:absolute;
  2152. align-self:flex-start;
  2153. padding:0px 0px 0px 0px;
  2154. box-sizing:border-box;
  2155. width:100%;
  2156. }
  2157. #u48192_text {
  2158. border-width:0px;
  2159. white-space:nowrap;
  2160. text-transform:none;
  2161. }
  2162. #u48193_div {
  2163. border-width:0px;
  2164. position:absolute;
  2165. left:0px;
  2166. top:0px;
  2167. width:169px;
  2168. height:30px;
  2169. background:inherit;
  2170. background-color:rgba(255, 255, 255, 0);
  2171. border-left:0px;
  2172. border-top:0px;
  2173. border-right:0px;
  2174. border-radius:0px;
  2175. border-bottom-right-radius:0px;
  2176. border-bottom-left-radius:0px;
  2177. filter:drop-shadow(none);
  2178. transition:none;
  2179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2180. font-weight:400;
  2181. font-style:normal;
  2182. font-size:12px;
  2183. line-height:30px;
  2184. }
  2185. #u48193 {
  2186. border-width:0px;
  2187. position:absolute;
  2188. left:64px;
  2189. top:371px;
  2190. width:169px;
  2191. height:30px;
  2192. display:flex;
  2193. transition:none;
  2194. transform-origin:50% 50%;
  2195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2196. font-weight:400;
  2197. font-style:normal;
  2198. font-size:12px;
  2199. line-height:30px;
  2200. }
  2201. #u48193 .text {
  2202. position:absolute;
  2203. align-self:flex-start;
  2204. padding:0px 0px 0px 0px;
  2205. box-sizing:border-box;
  2206. width:100%;
  2207. }
  2208. #u48193_text {
  2209. border-width:0px;
  2210. white-space:nowrap;
  2211. text-transform:none;
  2212. }
  2213. #u48194 {
  2214. border-width:0px;
  2215. position:absolute;
  2216. left:0px;
  2217. top:0px;
  2218. width:0px;
  2219. height:0px;
  2220. }
  2221. #u48195_div {
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:0px;
  2225. top:0px;
  2226. width:57px;
  2227. height:30px;
  2228. background:inherit;
  2229. background-color:rgba(255, 255, 255, 0);
  2230. border-left:0px;
  2231. border-top:0px;
  2232. border-right:0px;
  2233. border-radius:0px;
  2234. border-bottom-right-radius:0px;
  2235. border-bottom-left-radius:0px;
  2236. filter:drop-shadow(none);
  2237. transition:none;
  2238. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2239. font-weight:500;
  2240. font-style:normal;
  2241. font-size:14px;
  2242. line-height:30px;
  2243. }
  2244. #u48195 {
  2245. border-width:0px;
  2246. position:absolute;
  2247. left:222px;
  2248. top:421px;
  2249. width:57px;
  2250. height:30px;
  2251. display:flex;
  2252. transition:none;
  2253. transform-origin:50% 50%;
  2254. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2255. font-weight:500;
  2256. font-style:normal;
  2257. font-size:14px;
  2258. line-height:30px;
  2259. }
  2260. #u48195 .text {
  2261. position:absolute;
  2262. align-self:flex-start;
  2263. padding:0px 0px 0px 0px;
  2264. box-sizing:border-box;
  2265. width:100%;
  2266. }
  2267. #u48195_text {
  2268. border-width:0px;
  2269. white-space:nowrap;
  2270. text-transform:none;
  2271. }
  2272. #u48196_div {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:0px;
  2276. top:0px;
  2277. width:138px;
  2278. height:30px;
  2279. background:inherit;
  2280. background-color:rgba(255, 255, 255, 0);
  2281. border-left:0px;
  2282. border-top:0px;
  2283. border-right:0px;
  2284. border-radius:0px;
  2285. border-bottom-right-radius:0px;
  2286. border-bottom-left-radius:0px;
  2287. filter:drop-shadow(none);
  2288. transition:none;
  2289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2290. font-weight:400;
  2291. font-style:normal;
  2292. font-size:14px;
  2293. line-height:30px;
  2294. }
  2295. #u48196 {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:64px;
  2299. top:421px;
  2300. width:138px;
  2301. height:30px;
  2302. display:flex;
  2303. transition:none;
  2304. transform-origin:50% 50%;
  2305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2306. font-weight:400;
  2307. font-style:normal;
  2308. font-size:14px;
  2309. line-height:30px;
  2310. }
  2311. #u48196 .text {
  2312. position:absolute;
  2313. align-self:flex-start;
  2314. padding:0px 0px 0px 0px;
  2315. box-sizing:border-box;
  2316. width:100%;
  2317. }
  2318. #u48196_text {
  2319. border-width:0px;
  2320. white-space:nowrap;
  2321. text-transform:none;
  2322. }
  2323. #u48197_div {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:0px;
  2327. top:0px;
  2328. width:169px;
  2329. height:30px;
  2330. background:inherit;
  2331. background-color:rgba(255, 255, 255, 0);
  2332. border-left:0px;
  2333. border-top:0px;
  2334. border-right:0px;
  2335. border-radius:0px;
  2336. border-bottom-right-radius:0px;
  2337. border-bottom-left-radius:0px;
  2338. filter:drop-shadow(none);
  2339. transition:none;
  2340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2341. font-weight:400;
  2342. font-style:normal;
  2343. font-size:12px;
  2344. line-height:30px;
  2345. }
  2346. #u48197 {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:64px;
  2350. top:451px;
  2351. width:169px;
  2352. height:30px;
  2353. display:flex;
  2354. transition:none;
  2355. transform-origin:50% 50%;
  2356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2357. font-weight:400;
  2358. font-style:normal;
  2359. font-size:12px;
  2360. line-height:30px;
  2361. }
  2362. #u48197 .text {
  2363. position:absolute;
  2364. align-self:flex-start;
  2365. padding:0px 0px 0px 0px;
  2366. box-sizing:border-box;
  2367. width:100%;
  2368. }
  2369. #u48197_text {
  2370. border-width:0px;
  2371. white-space:nowrap;
  2372. text-transform:none;
  2373. }
  2374. #u48198 {
  2375. border-width:0px;
  2376. position:absolute;
  2377. left:0px;
  2378. top:0px;
  2379. width:0px;
  2380. height:0px;
  2381. }
  2382. #u48199_div {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:0px;
  2386. top:0px;
  2387. width:57px;
  2388. height:30px;
  2389. background:inherit;
  2390. background-color:rgba(255, 255, 255, 0);
  2391. border-left:0px;
  2392. border-top:0px;
  2393. border-right:0px;
  2394. border-radius:0px;
  2395. border-bottom-right-radius:0px;
  2396. border-bottom-left-radius:0px;
  2397. filter:drop-shadow(none);
  2398. transition:none;
  2399. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2400. font-weight:500;
  2401. font-style:normal;
  2402. font-size:14px;
  2403. line-height:30px;
  2404. }
  2405. #u48199 {
  2406. border-width:0px;
  2407. position:absolute;
  2408. left:222px;
  2409. top:501px;
  2410. width:57px;
  2411. height:30px;
  2412. display:flex;
  2413. transition:none;
  2414. transform-origin:50% 50%;
  2415. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2416. font-weight:500;
  2417. font-style:normal;
  2418. font-size:14px;
  2419. line-height:30px;
  2420. }
  2421. #u48199 .text {
  2422. position:absolute;
  2423. align-self:flex-start;
  2424. padding:0px 0px 0px 0px;
  2425. box-sizing:border-box;
  2426. width:100%;
  2427. }
  2428. #u48199_text {
  2429. border-width:0px;
  2430. white-space:nowrap;
  2431. text-transform:none;
  2432. }
  2433. #u48200_div {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:0px;
  2437. top:0px;
  2438. width:138px;
  2439. height:30px;
  2440. background:inherit;
  2441. background-color:rgba(255, 255, 255, 0);
  2442. border-left:0px;
  2443. border-top:0px;
  2444. border-right:0px;
  2445. border-radius:0px;
  2446. border-bottom-right-radius:0px;
  2447. border-bottom-left-radius:0px;
  2448. filter:drop-shadow(none);
  2449. transition:none;
  2450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2451. font-weight:400;
  2452. font-style:normal;
  2453. font-size:14px;
  2454. line-height:30px;
  2455. }
  2456. #u48200 {
  2457. border-width:0px;
  2458. position:absolute;
  2459. left:64px;
  2460. top:501px;
  2461. width:138px;
  2462. height:30px;
  2463. display:flex;
  2464. transition:none;
  2465. transform-origin:50% 50%;
  2466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2467. font-weight:400;
  2468. font-style:normal;
  2469. font-size:14px;
  2470. line-height:30px;
  2471. }
  2472. #u48200 .text {
  2473. position:absolute;
  2474. align-self:flex-start;
  2475. padding:0px 0px 0px 0px;
  2476. box-sizing:border-box;
  2477. width:100%;
  2478. }
  2479. #u48200_text {
  2480. border-width:0px;
  2481. white-space:nowrap;
  2482. text-transform:none;
  2483. }
  2484. #u48201_div {
  2485. border-width:0px;
  2486. position:absolute;
  2487. left:0px;
  2488. top:0px;
  2489. width:169px;
  2490. height:30px;
  2491. background:inherit;
  2492. background-color:rgba(255, 255, 255, 0);
  2493. border-left:0px;
  2494. border-top:0px;
  2495. border-right:0px;
  2496. border-radius:0px;
  2497. border-bottom-right-radius:0px;
  2498. border-bottom-left-radius:0px;
  2499. filter:drop-shadow(none);
  2500. transition:none;
  2501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2502. font-weight:400;
  2503. font-style:normal;
  2504. font-size:12px;
  2505. line-height:30px;
  2506. }
  2507. #u48201 {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:64px;
  2511. top:531px;
  2512. width:169px;
  2513. height:30px;
  2514. display:flex;
  2515. transition:none;
  2516. transform-origin:50% 50%;
  2517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2518. font-weight:400;
  2519. font-style:normal;
  2520. font-size:12px;
  2521. line-height:30px;
  2522. }
  2523. #u48201 .text {
  2524. position:absolute;
  2525. align-self:flex-start;
  2526. padding:0px 0px 0px 0px;
  2527. box-sizing:border-box;
  2528. width:100%;
  2529. }
  2530. #u48201_text {
  2531. border-width:0px;
  2532. white-space:nowrap;
  2533. text-transform:none;
  2534. }
  2535. #u48202 {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:0px;
  2539. top:0px;
  2540. width:0px;
  2541. height:0px;
  2542. }
  2543. #u48203_div {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:0px;
  2547. top:0px;
  2548. width:57px;
  2549. height:30px;
  2550. background:inherit;
  2551. background-color:rgba(255, 255, 255, 0);
  2552. border-left:0px;
  2553. border-top:0px;
  2554. border-right:0px;
  2555. border-radius:0px;
  2556. border-bottom-right-radius:0px;
  2557. border-bottom-left-radius:0px;
  2558. filter:drop-shadow(none);
  2559. transition:none;
  2560. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2561. font-weight:500;
  2562. font-style:normal;
  2563. font-size:14px;
  2564. line-height:30px;
  2565. }
  2566. #u48203 {
  2567. border-width:0px;
  2568. position:absolute;
  2569. left:222px;
  2570. top:581px;
  2571. width:57px;
  2572. height:30px;
  2573. display:flex;
  2574. transition:none;
  2575. transform-origin:50% 50%;
  2576. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2577. font-weight:500;
  2578. font-style:normal;
  2579. font-size:14px;
  2580. line-height:30px;
  2581. }
  2582. #u48203 .text {
  2583. position:absolute;
  2584. align-self:flex-start;
  2585. padding:0px 0px 0px 0px;
  2586. box-sizing:border-box;
  2587. width:100%;
  2588. }
  2589. #u48203_text {
  2590. border-width:0px;
  2591. white-space:nowrap;
  2592. text-transform:none;
  2593. }
  2594. #u48204_div {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:0px;
  2598. top:0px;
  2599. width:138px;
  2600. height:30px;
  2601. background:inherit;
  2602. background-color:rgba(255, 255, 255, 0);
  2603. border-left:0px;
  2604. border-top:0px;
  2605. border-right:0px;
  2606. border-radius:0px;
  2607. border-bottom-right-radius:0px;
  2608. border-bottom-left-radius:0px;
  2609. filter:drop-shadow(none);
  2610. transition:none;
  2611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2612. font-weight:400;
  2613. font-style:normal;
  2614. font-size:14px;
  2615. line-height:30px;
  2616. }
  2617. #u48204 {
  2618. border-width:0px;
  2619. position:absolute;
  2620. left:64px;
  2621. top:581px;
  2622. width:138px;
  2623. height:30px;
  2624. display:flex;
  2625. transition:none;
  2626. transform-origin:50% 50%;
  2627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2628. font-weight:400;
  2629. font-style:normal;
  2630. font-size:14px;
  2631. line-height:30px;
  2632. }
  2633. #u48204 .text {
  2634. position:absolute;
  2635. align-self:flex-start;
  2636. padding:0px 0px 0px 0px;
  2637. box-sizing:border-box;
  2638. width:100%;
  2639. }
  2640. #u48204_text {
  2641. border-width:0px;
  2642. white-space:nowrap;
  2643. text-transform:none;
  2644. }
  2645. #u48205_div {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:0px;
  2649. top:0px;
  2650. width:169px;
  2651. height:30px;
  2652. background:inherit;
  2653. background-color:rgba(255, 255, 255, 0);
  2654. border-left:0px;
  2655. border-top:0px;
  2656. border-right:0px;
  2657. border-radius:0px;
  2658. border-bottom-right-radius:0px;
  2659. border-bottom-left-radius:0px;
  2660. filter:drop-shadow(none);
  2661. transition:none;
  2662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2663. font-weight:400;
  2664. font-style:normal;
  2665. font-size:12px;
  2666. line-height:30px;
  2667. }
  2668. #u48205 {
  2669. border-width:0px;
  2670. position:absolute;
  2671. left:64px;
  2672. top:611px;
  2673. width:169px;
  2674. height:30px;
  2675. display:flex;
  2676. transition:none;
  2677. transform-origin:50% 50%;
  2678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2679. font-weight:400;
  2680. font-style:normal;
  2681. font-size:12px;
  2682. line-height:30px;
  2683. }
  2684. #u48205 .text {
  2685. position:absolute;
  2686. align-self:flex-start;
  2687. padding:0px 0px 0px 0px;
  2688. box-sizing:border-box;
  2689. width:100%;
  2690. }
  2691. #u48205_text {
  2692. border-width:0px;
  2693. white-space:nowrap;
  2694. text-transform:none;
  2695. }
  2696. #u48206 {
  2697. border-width:0px;
  2698. position:absolute;
  2699. left:0px;
  2700. top:0px;
  2701. width:0px;
  2702. height:0px;
  2703. }
  2704. #u48207 {
  2705. border-width:0px;
  2706. position:absolute;
  2707. left:55px;
  2708. top:355px;
  2709. width:1px;
  2710. height:306px;
  2711. display:flex;
  2712. transition:none;
  2713. }
  2714. #u48207 .text {
  2715. position:absolute;
  2716. align-self:center;
  2717. padding:2px 2px 2px 2px;
  2718. box-sizing:border-box;
  2719. width:100%;
  2720. }
  2721. #u48207_img {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:0px;
  2725. top:0px;
  2726. width:2px;
  2727. height:307px;
  2728. }
  2729. #u48207_text {
  2730. border-width:0px;
  2731. word-wrap:break-word;
  2732. text-transform:none;
  2733. visibility:hidden;
  2734. }
  2735. #u48208 {
  2736. border-width:0px;
  2737. position:absolute;
  2738. left:52px;
  2739. top:352px;
  2740. width:7px;
  2741. height:7px;
  2742. display:flex;
  2743. transition:none;
  2744. }
  2745. #u48208 .text {
  2746. position:absolute;
  2747. align-self:center;
  2748. padding:2px 2px 2px 2px;
  2749. box-sizing:border-box;
  2750. width:100%;
  2751. }
  2752. #u48208_img {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:0px;
  2756. top:0px;
  2757. width:7px;
  2758. height:7px;
  2759. }
  2760. #u48208_text {
  2761. border-width:0px;
  2762. word-wrap:break-word;
  2763. text-transform:none;
  2764. visibility:hidden;
  2765. }
  2766. #u48209 {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:52px;
  2770. top:433px;
  2771. width:7px;
  2772. height:7px;
  2773. display:flex;
  2774. transition:none;
  2775. }
  2776. #u48209 .text {
  2777. position:absolute;
  2778. align-self:center;
  2779. padding:2px 2px 2px 2px;
  2780. box-sizing:border-box;
  2781. width:100%;
  2782. }
  2783. #u48209_img {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:0px;
  2787. top:0px;
  2788. width:7px;
  2789. height:7px;
  2790. }
  2791. #u48209_text {
  2792. border-width:0px;
  2793. word-wrap:break-word;
  2794. text-transform:none;
  2795. visibility:hidden;
  2796. }
  2797. #u48210 {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:52px;
  2801. top:512px;
  2802. width:7px;
  2803. height:7px;
  2804. display:flex;
  2805. transition:none;
  2806. }
  2807. #u48210 .text {
  2808. position:absolute;
  2809. align-self:center;
  2810. padding:2px 2px 2px 2px;
  2811. box-sizing:border-box;
  2812. width:100%;
  2813. }
  2814. #u48210_img {
  2815. border-width:0px;
  2816. position:absolute;
  2817. left:0px;
  2818. top:0px;
  2819. width:7px;
  2820. height:7px;
  2821. }
  2822. #u48210_text {
  2823. border-width:0px;
  2824. word-wrap:break-word;
  2825. text-transform:none;
  2826. visibility:hidden;
  2827. }
  2828. #u48211 {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:52px;
  2832. top:592px;
  2833. width:7px;
  2834. height:7px;
  2835. display:flex;
  2836. transition:none;
  2837. }
  2838. #u48211 .text {
  2839. position:absolute;
  2840. align-self:center;
  2841. padding:2px 2px 2px 2px;
  2842. box-sizing:border-box;
  2843. width:100%;
  2844. }
  2845. #u48211_img {
  2846. border-width:0px;
  2847. position:absolute;
  2848. left:0px;
  2849. top:0px;
  2850. width:7px;
  2851. height:7px;
  2852. }
  2853. #u48211_text {
  2854. border-width:0px;
  2855. word-wrap:break-word;
  2856. text-transform:none;
  2857. visibility:hidden;
  2858. }
  2859. #u48212_div {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:0px;
  2863. top:0px;
  2864. width:375px;
  2865. height:172px;
  2866. background:inherit;
  2867. background-color:rgba(255, 255, 255, 1);
  2868. box-sizing:border-box;
  2869. border-width:1px;
  2870. border-style:solid;
  2871. border-color:rgba(215, 215, 215, 1);
  2872. border-left:0px;
  2873. border-top:0px;
  2874. border-right:0px;
  2875. border-radius:0px;
  2876. border-bottom-right-radius:0px;
  2877. border-bottom-left-radius:0px;
  2878. filter:drop-shadow(none);
  2879. transition:none;
  2880. }
  2881. #u48212 {
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:29px;
  2885. top:693px;
  2886. width:375px;
  2887. height:172px;
  2888. display:flex;
  2889. transition:none;
  2890. transform-origin:50% 50%;
  2891. }
  2892. #u48212 .text {
  2893. position:absolute;
  2894. align-self:center;
  2895. padding:2px 2px 2px 2px;
  2896. box-sizing:border-box;
  2897. width:100%;
  2898. }
  2899. #u48212_text {
  2900. border-width:0px;
  2901. word-wrap:break-word;
  2902. text-transform:none;
  2903. visibility:hidden;
  2904. }
  2905. #u48213_div {
  2906. border-width:0px;
  2907. position:absolute;
  2908. left:0px;
  2909. top:0px;
  2910. width:353px;
  2911. height:40px;
  2912. background:inherit;
  2913. background-color:rgba(255, 255, 255, 0);
  2914. border-top:0px;
  2915. border-right:0px;
  2916. border-bottom:0px;
  2917. border-radius:0px;
  2918. border-top-left-radius:0px;
  2919. border-bottom-left-radius:0px;
  2920. filter:drop-shadow(none);
  2921. transition:none;
  2922. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2923. font-weight:500;
  2924. font-style:normal;
  2925. font-size:14px;
  2926. line-height:30px;
  2927. }
  2928. #u48213 {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:42px;
  2932. top:698px;
  2933. width:353px;
  2934. height:40px;
  2935. display:flex;
  2936. transition:none;
  2937. transform-origin:50% 50%;
  2938. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2939. font-weight:500;
  2940. font-style:normal;
  2941. font-size:14px;
  2942. line-height:30px;
  2943. }
  2944. #u48213 .text {
  2945. position:absolute;
  2946. align-self:flex-start;
  2947. padding:5px 10px 5px 0px;
  2948. box-sizing:border-box;
  2949. width:100%;
  2950. }
  2951. #u48213_text {
  2952. border-width:0px;
  2953. word-wrap:break-word;
  2954. text-transform:none;
  2955. }
  2956. #u48214_div {
  2957. border-width:0px;
  2958. position:absolute;
  2959. left:0px;
  2960. top:0px;
  2961. width:345px;
  2962. height:92px;
  2963. background:inherit;
  2964. background-color:rgba(255, 255, 255, 1);
  2965. box-sizing:border-box;
  2966. border-width:1px;
  2967. border-style:solid;
  2968. border-color:rgba(215, 215, 215, 1);
  2969. border-radius:4px;
  2970. filter:drop-shadow(none);
  2971. transition:none;
  2972. }
  2973. #u48214 {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:42px;
  2977. top:738px;
  2978. width:345px;
  2979. height:92px;
  2980. display:flex;
  2981. transition:none;
  2982. transform-origin:50% 50%;
  2983. }
  2984. #u48214 .text {
  2985. position:absolute;
  2986. align-self:center;
  2987. padding:2px 2px 2px 2px;
  2988. box-sizing:border-box;
  2989. width:100%;
  2990. }
  2991. #u48214_text {
  2992. border-width:0px;
  2993. word-wrap:break-word;
  2994. text-transform:none;
  2995. visibility:hidden;
  2996. }
  2997. #u48215_div {
  2998. border-width:0px;
  2999. position:absolute;
  3000. left:0px;
  3001. top:0px;
  3002. width:99px;
  3003. height:30px;
  3004. background:inherit;
  3005. background-color:rgba(255, 255, 255, 0);
  3006. border-left:0px;
  3007. border-top:0px;
  3008. border-right:0px;
  3009. border-radius:0px;
  3010. border-bottom-right-radius:0px;
  3011. border-bottom-left-radius:0px;
  3012. filter:drop-shadow(none);
  3013. transition:none;
  3014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3015. font-weight:400;
  3016. font-style:normal;
  3017. font-size:14px;
  3018. color:#AAAAAA;
  3019. line-height:30px;
  3020. }
  3021. #u48215 {
  3022. border-width:0px;
  3023. position:absolute;
  3024. left:51px;
  3025. top:746px;
  3026. width:99px;
  3027. height:30px;
  3028. display:flex;
  3029. transition:none;
  3030. transform-origin:50% 50%;
  3031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3032. font-weight:400;
  3033. font-style:normal;
  3034. font-size:14px;
  3035. color:#AAAAAA;
  3036. line-height:30px;
  3037. }
  3038. #u48215 .text {
  3039. position:absolute;
  3040. align-self:center;
  3041. padding:0px 0px 0px 0px;
  3042. box-sizing:border-box;
  3043. width:100%;
  3044. }
  3045. #u48215_text {
  3046. border-width:0px;
  3047. white-space:nowrap;
  3048. text-transform:none;
  3049. }
  3050. #u48216 {
  3051. border-width:0px;
  3052. position:absolute;
  3053. left:0px;
  3054. top:0px;
  3055. width:0px;
  3056. height:0px;
  3057. }
  3058. #u48217_div {
  3059. border-width:0px;
  3060. position:absolute;
  3061. left:0px;
  3062. top:0px;
  3063. width:342px;
  3064. height:210px;
  3065. background:inherit;
  3066. background-color:rgba(255, 255, 255, 1);
  3067. border-radius:10px;
  3068. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  3069. transition:none;
  3070. }
  3071. #u48217 {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:464px;
  3075. top:316px;
  3076. width:342px;
  3077. height:210px;
  3078. display:flex;
  3079. transition:none;
  3080. transform-origin:50% 50%;
  3081. }
  3082. #u48217 .text {
  3083. position:absolute;
  3084. align-self:center;
  3085. padding:2px 2px 2px 2px;
  3086. box-sizing:border-box;
  3087. width:100%;
  3088. }
  3089. #u48217_text {
  3090. border-width:0px;
  3091. word-wrap:break-word;
  3092. text-transform:none;
  3093. visibility:hidden;
  3094. }
  3095. #u48218_div {
  3096. border-width:0px;
  3097. position:absolute;
  3098. left:0px;
  3099. top:0px;
  3100. width:145px;
  3101. height:30px;
  3102. background:inherit;
  3103. background-color:rgba(255, 255, 255, 0);
  3104. border-left:0px;
  3105. border-top:0px;
  3106. border-right:0px;
  3107. border-radius:0px;
  3108. border-bottom-right-radius:0px;
  3109. border-bottom-left-radius:0px;
  3110. filter:drop-shadow(none);
  3111. transition:none;
  3112. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3113. font-weight:500;
  3114. font-style:normal;
  3115. font-size:18px;
  3116. text-align:center;
  3117. line-height:30px;
  3118. }
  3119. #u48218 {
  3120. border-width:0px;
  3121. position:absolute;
  3122. left:562px;
  3123. top:340px;
  3124. width:145px;
  3125. height:30px;
  3126. display:flex;
  3127. transition:none;
  3128. transform-origin:50% 50%;
  3129. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3130. font-weight:500;
  3131. font-style:normal;
  3132. font-size:18px;
  3133. text-align:center;
  3134. line-height:30px;
  3135. }
  3136. #u48218 .text {
  3137. position:absolute;
  3138. align-self:flex-start;
  3139. padding:0px 0px 0px 0px;
  3140. box-sizing:border-box;
  3141. width:100%;
  3142. }
  3143. #u48218_text {
  3144. border-width:0px;
  3145. white-space:nowrap;
  3146. text-transform:none;
  3147. }
  3148. #u48219 {
  3149. border-width:0px;
  3150. position:absolute;
  3151. left:464px;
  3152. top:459px;
  3153. width:342px;
  3154. height:1px;
  3155. display:flex;
  3156. transition:none;
  3157. }
  3158. #u48219 .text {
  3159. position:absolute;
  3160. align-self:center;
  3161. padding:2px 2px 2px 2px;
  3162. box-sizing:border-box;
  3163. width:100%;
  3164. }
  3165. #u48219_img {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:0px;
  3169. top:0px;
  3170. width:343px;
  3171. height:2px;
  3172. }
  3173. #u48219_text {
  3174. border-width:0px;
  3175. word-wrap:break-word;
  3176. text-transform:none;
  3177. visibility:hidden;
  3178. }
  3179. #u48220_div {
  3180. border-width:0px;
  3181. position:absolute;
  3182. left:0px;
  3183. top:0px;
  3184. width:37px;
  3185. height:30px;
  3186. background:inherit;
  3187. background-color:rgba(255, 255, 255, 0);
  3188. border-left:0px;
  3189. border-top:0px;
  3190. border-right:0px;
  3191. border-radius:0px;
  3192. border-bottom-right-radius:0px;
  3193. border-bottom-left-radius:0px;
  3194. filter:drop-shadow(none);
  3195. transition:none;
  3196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3197. font-weight:400;
  3198. font-style:normal;
  3199. font-size:18px;
  3200. color:#0089FE;
  3201. text-align:right;
  3202. line-height:30px;
  3203. }
  3204. #u48220 {
  3205. border-width:0px;
  3206. position:absolute;
  3207. left:715px;
  3208. top:476px;
  3209. width:37px;
  3210. height:30px;
  3211. display:flex;
  3212. transition:none;
  3213. transform-origin:50% 50%;
  3214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3215. font-weight:400;
  3216. font-style:normal;
  3217. font-size:18px;
  3218. color:#0089FE;
  3219. text-align:right;
  3220. line-height:30px;
  3221. }
  3222. #u48220 .text {
  3223. position:absolute;
  3224. align-self:flex-start;
  3225. padding:0px 0px 0px 0px;
  3226. box-sizing:border-box;
  3227. width:100%;
  3228. }
  3229. #u48220_text {
  3230. border-width:0px;
  3231. white-space:nowrap;
  3232. text-transform:none;
  3233. }
  3234. #u48221_div {
  3235. border-width:0px;
  3236. position:absolute;
  3237. left:0px;
  3238. top:0px;
  3239. width:273px;
  3240. height:60px;
  3241. background:inherit;
  3242. background-color:rgba(255, 255, 255, 0);
  3243. border-left:0px;
  3244. border-top:0px;
  3245. border-right:0px;
  3246. border-radius:0px;
  3247. border-bottom-right-radius:0px;
  3248. border-bottom-left-radius:0px;
  3249. filter:drop-shadow(none);
  3250. transition:none;
  3251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3252. font-weight:400;
  3253. font-style:normal;
  3254. font-size:14px;
  3255. text-align:center;
  3256. line-height:30px;
  3257. }
  3258. #u48221 {
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:498px;
  3262. top:382px;
  3263. width:273px;
  3264. height:60px;
  3265. display:flex;
  3266. transition:none;
  3267. transform-origin:50% 50%;
  3268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3269. font-weight:400;
  3270. font-style:normal;
  3271. font-size:14px;
  3272. text-align:center;
  3273. line-height:30px;
  3274. }
  3275. #u48221 .text {
  3276. position:absolute;
  3277. align-self:flex-start;
  3278. padding:0px 0px 0px 0px;
  3279. box-sizing:border-box;
  3280. width:100%;
  3281. }
  3282. #u48221_text {
  3283. border-width:0px;
  3284. word-wrap:break-word;
  3285. text-transform:none;
  3286. }
  3287. #u48222 {
  3288. border-width:0px;
  3289. position:absolute;
  3290. left:635px;
  3291. top:462px;
  3292. width:1px;
  3293. height:58px;
  3294. display:flex;
  3295. transition:none;
  3296. }
  3297. #u48222 .text {
  3298. position:absolute;
  3299. align-self:center;
  3300. padding:2px 2px 2px 2px;
  3301. box-sizing:border-box;
  3302. width:100%;
  3303. }
  3304. #u48222_img {
  3305. border-width:0px;
  3306. position:absolute;
  3307. left:0px;
  3308. top:0px;
  3309. width:2px;
  3310. height:59px;
  3311. }
  3312. #u48222_text {
  3313. border-width:0px;
  3314. word-wrap:break-word;
  3315. text-transform:none;
  3316. visibility:hidden;
  3317. }
  3318. #u48223_div {
  3319. border-width:0px;
  3320. position:absolute;
  3321. left:0px;
  3322. top:0px;
  3323. width:37px;
  3324. height:30px;
  3325. background:inherit;
  3326. background-color:rgba(255, 255, 255, 0);
  3327. border-left:0px;
  3328. border-top:0px;
  3329. border-right:0px;
  3330. border-radius:0px;
  3331. border-bottom-right-radius:0px;
  3332. border-bottom-left-radius:0px;
  3333. filter:drop-shadow(none);
  3334. transition:none;
  3335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3336. font-weight:400;
  3337. font-style:normal;
  3338. font-size:18px;
  3339. color:#0089FE;
  3340. text-align:right;
  3341. line-height:30px;
  3342. }
  3343. #u48223 {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:537px;
  3347. top:476px;
  3348. width:37px;
  3349. height:30px;
  3350. display:flex;
  3351. transition:none;
  3352. transform-origin:50% 50%;
  3353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3354. font-weight:400;
  3355. font-style:normal;
  3356. font-size:18px;
  3357. color:#0089FE;
  3358. text-align:right;
  3359. line-height:30px;
  3360. }
  3361. #u48223 .text {
  3362. position:absolute;
  3363. align-self:flex-start;
  3364. padding:0px 0px 0px 0px;
  3365. box-sizing:border-box;
  3366. width:100%;
  3367. }
  3368. #u48223_text {
  3369. border-width:0px;
  3370. white-space:nowrap;
  3371. text-transform:none;
  3372. }