styles.css 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:433px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u46332 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u46333 {
  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. #u46333 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u46333_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u46333_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u46334_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. #u46334 {
  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. #u46334 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u46334_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u46335 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u46336_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. #u46336 {
  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. #u46336 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u46336_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u46337 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u46338 {
  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. #u46338 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u46338_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u46338_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u46339 {
  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. #u46339 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u46339_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u46339_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u46340 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u46341 {
  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. #u46341 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u46341_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u46341_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u46342 {
  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. #u46342 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u46342_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u46342_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u46343 {
  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. #u46343 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u46343_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u46343_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u46344 {
  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. #u46344 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u46344_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u46344_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u46345 {
  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. #u46345 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u46345_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u46345_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u46346_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. #u46346 {
  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. #u46346 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u46346_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u46347 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u46348 {
  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. #u46348 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u46348_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u46348_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u46349_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. #u46349 {
  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. #u46349 .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. #u46349_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u46350 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u46351 {
  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. #u46351 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u46351_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u46351_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u46352_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. #u46352 {
  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. #u46352 .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. #u46352_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u46353_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. #u46353 {
  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. #u46353 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u46353_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u46354 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u46355 {
  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. #u46355 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u46355_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u46355_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u46356_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. #u46356 {
  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. #u46356 .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. #u46356_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u46357 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u46358 {
  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. #u46358 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u46358_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u46358_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u46359_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. #u46359 {
  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. #u46359 .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. #u46359_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u46360_div {
  803. border-width:0px;
  804. position:absolute;
  805. left:0px;
  806. top:0px;
  807. width:375px;
  808. height:735px;
  809. background:inherit;
  810. background-color:rgba(242, 242, 242, 0.996078431372549);
  811. border-top:0px;
  812. border-radius:35px;
  813. border-top-left-radius:0px;
  814. border-top-right-radius:0px;
  815. filter:drop-shadow(none);
  816. transition:none;
  817. }
  818. #u46360 {
  819. border-width:0px;
  820. position:absolute;
  821. left:29px;
  822. top:106px;
  823. width:375px;
  824. height:735px;
  825. display:flex;
  826. transition:none;
  827. transform-origin:50% 50%;
  828. }
  829. #u46360 .text {
  830. position:absolute;
  831. align-self:center;
  832. padding:2px 2px 2px 2px;
  833. box-sizing:border-box;
  834. width:100%;
  835. }
  836. #u46360_text {
  837. border-width:0px;
  838. word-wrap:break-word;
  839. text-transform:none;
  840. visibility:hidden;
  841. }
  842. #u46361 {
  843. border-width:0px;
  844. position:absolute;
  845. left:29px;
  846. top:24px;
  847. width:375px;
  848. height:44px;
  849. display:flex;
  850. transition:none;
  851. }
  852. #u46361 .text {
  853. position:absolute;
  854. align-self:center;
  855. padding:2px 2px 2px 2px;
  856. box-sizing:border-box;
  857. width:100%;
  858. }
  859. #u46361_img {
  860. border-width:0px;
  861. position:absolute;
  862. left:0px;
  863. top:0px;
  864. width:375px;
  865. height:44px;
  866. }
  867. #u46361_text {
  868. border-width:0px;
  869. word-wrap:break-word;
  870. text-transform:none;
  871. visibility:hidden;
  872. }
  873. #u46362 {
  874. border-width:0px;
  875. position:absolute;
  876. left:0px;
  877. top:0px;
  878. width:0px;
  879. height:0px;
  880. }
  881. #u46363_div {
  882. border-width:0px;
  883. position:absolute;
  884. left:0px;
  885. top:0px;
  886. width:88px;
  887. height:32px;
  888. background:inherit;
  889. background-color:rgba(255, 255, 255, 1);
  890. box-sizing:border-box;
  891. border-width:1px;
  892. border-style:solid;
  893. border-color:rgba(242, 242, 242, 1);
  894. border-radius:33px;
  895. filter:drop-shadow(none);
  896. transition:none;
  897. }
  898. #u46363 {
  899. border-width:0px;
  900. position:absolute;
  901. left:309px;
  902. top:71px;
  903. width:88px;
  904. height:32px;
  905. display:flex;
  906. transition:none;
  907. transform-origin:50% 50%;
  908. }
  909. #u46363 .text {
  910. position:absolute;
  911. align-self:center;
  912. padding:2px 2px 2px 2px;
  913. box-sizing:border-box;
  914. width:100%;
  915. }
  916. #u46363_text {
  917. border-width:0px;
  918. word-wrap:break-word;
  919. text-transform:none;
  920. visibility:hidden;
  921. }
  922. #u46364 {
  923. border-width:0px;
  924. position:absolute;
  925. left:0px;
  926. top:0px;
  927. width:0px;
  928. height:0px;
  929. }
  930. #u46365 {
  931. border-width:0px;
  932. position:absolute;
  933. left:372px;
  934. top:78px;
  935. width:18px;
  936. height:18px;
  937. display:flex;
  938. transition:none;
  939. }
  940. #u46365 .text {
  941. position:absolute;
  942. align-self:center;
  943. padding:2px 2px 2px 2px;
  944. box-sizing:border-box;
  945. width:100%;
  946. }
  947. #u46365_img {
  948. border-width:0px;
  949. position:absolute;
  950. left:0px;
  951. top:0px;
  952. width:18px;
  953. height:18px;
  954. }
  955. #u46365_text {
  956. border-width:0px;
  957. word-wrap:break-word;
  958. text-transform:none;
  959. visibility:hidden;
  960. }
  961. #u46366 {
  962. border-width:0px;
  963. position:absolute;
  964. left:378px;
  965. top:84px;
  966. width:6px;
  967. height:6px;
  968. display:flex;
  969. transition:none;
  970. }
  971. #u46366 .text {
  972. position:absolute;
  973. align-self:center;
  974. padding:2px 2px 2px 2px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u46366_img {
  979. border-width:0px;
  980. position:absolute;
  981. left:0px;
  982. top:0px;
  983. width:6px;
  984. height:6px;
  985. }
  986. #u46366_text {
  987. border-width:0px;
  988. word-wrap:break-word;
  989. text-transform:none;
  990. visibility:hidden;
  991. }
  992. #u46367 {
  993. border-width:0px;
  994. position:absolute;
  995. left:0px;
  996. top:0px;
  997. width:0px;
  998. height:0px;
  999. }
  1000. #u46368 {
  1001. border-width:0px;
  1002. position:absolute;
  1003. left:323px;
  1004. top:85px;
  1005. width:5px;
  1006. height:5px;
  1007. display:flex;
  1008. transition:none;
  1009. }
  1010. #u46368 .text {
  1011. position:absolute;
  1012. align-self:center;
  1013. padding:2px 2px 2px 2px;
  1014. box-sizing:border-box;
  1015. width:100%;
  1016. }
  1017. #u46368_img {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:0px;
  1021. top:0px;
  1022. width:5px;
  1023. height:5px;
  1024. }
  1025. #u46368_text {
  1026. border-width:0px;
  1027. word-wrap:break-word;
  1028. text-transform:none;
  1029. visibility:hidden;
  1030. }
  1031. #u46369 {
  1032. border-width:0px;
  1033. position:absolute;
  1034. left:339px;
  1035. top:85px;
  1036. width:5px;
  1037. height:5px;
  1038. display:flex;
  1039. transition:none;
  1040. }
  1041. #u46369 .text {
  1042. position:absolute;
  1043. align-self:center;
  1044. padding:2px 2px 2px 2px;
  1045. box-sizing:border-box;
  1046. width:100%;
  1047. }
  1048. #u46369_img {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:0px;
  1052. top:0px;
  1053. width:5px;
  1054. height:5px;
  1055. }
  1056. #u46369_text {
  1057. border-width:0px;
  1058. word-wrap:break-word;
  1059. text-transform:none;
  1060. visibility:hidden;
  1061. }
  1062. #u46370 {
  1063. border-width:0px;
  1064. position:absolute;
  1065. left:330px;
  1066. top:84px;
  1067. width:7px;
  1068. height:7px;
  1069. display:flex;
  1070. transition:none;
  1071. }
  1072. #u46370 .text {
  1073. position:absolute;
  1074. align-self:center;
  1075. padding:2px 2px 2px 2px;
  1076. box-sizing:border-box;
  1077. width:100%;
  1078. }
  1079. #u46370_img {
  1080. border-width:0px;
  1081. position:absolute;
  1082. left:0px;
  1083. top:0px;
  1084. width:7px;
  1085. height:7px;
  1086. }
  1087. #u46370_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u46371 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:347px;
  1097. top:87px;
  1098. width:18px;
  1099. height:1px;
  1100. display:flex;
  1101. -webkit-transform:rotate(90deg);
  1102. -moz-transform:rotate(90deg);
  1103. -ms-transform:rotate(90deg);
  1104. transform:rotate(90deg);
  1105. transition:none;
  1106. }
  1107. #u46371 .text {
  1108. position:absolute;
  1109. align-self:center;
  1110. padding:2px 2px 2px 2px;
  1111. box-sizing:border-box;
  1112. width:100%;
  1113. }
  1114. #u46371_img {
  1115. border-width:0px;
  1116. position:absolute;
  1117. left:0px;
  1118. top:0px;
  1119. width:19px;
  1120. height:2px;
  1121. }
  1122. #u46371_text {
  1123. border-width:0px;
  1124. word-wrap:break-word;
  1125. text-transform:none;
  1126. visibility:hidden;
  1127. }
  1128. #u46372_div {
  1129. border-width:0px;
  1130. position:absolute;
  1131. left:0px;
  1132. top:0px;
  1133. width:65px;
  1134. height:22px;
  1135. background:inherit;
  1136. background-color:rgba(255, 255, 255, 0);
  1137. border-radius:0px;
  1138. filter:drop-shadow(none);
  1139. transition:none;
  1140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1141. font-weight:400;
  1142. font-style:normal;
  1143. font-size:16px;
  1144. color:#000000;
  1145. }
  1146. #u46372 {
  1147. border-width:0px;
  1148. position:absolute;
  1149. left:174px;
  1150. top:78px;
  1151. width:65px;
  1152. height:22px;
  1153. display:flex;
  1154. transition:none;
  1155. transform-origin:50% 50%;
  1156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1157. font-weight:400;
  1158. font-style:normal;
  1159. font-size:16px;
  1160. color:#000000;
  1161. }
  1162. #u46372 .text {
  1163. position:absolute;
  1164. align-self:flex-start;
  1165. padding:0px 0px 0px 0px;
  1166. box-sizing:border-box;
  1167. width:100%;
  1168. }
  1169. #u46372_text {
  1170. border-width:0px;
  1171. white-space:nowrap;
  1172. text-transform:none;
  1173. }
  1174. #u46373_div {
  1175. border-width:0px;
  1176. position:absolute;
  1177. left:0px;
  1178. top:0px;
  1179. width:12px;
  1180. height:12px;
  1181. background:inherit;
  1182. background-color:rgba(255, 255, 255, 0);
  1183. box-sizing:border-box;
  1184. border-width:2px;
  1185. border-style:solid;
  1186. border-color:rgba(51, 51, 51, 1);
  1187. border-right:0px;
  1188. border-bottom:0px;
  1189. border-radius:0px;
  1190. border-top-right-radius:0px;
  1191. border-bottom-left-radius:0px;
  1192. filter:drop-shadow(none);
  1193. transition:none;
  1194. }
  1195. #u46373 {
  1196. border-width:0px;
  1197. position:absolute;
  1198. left:46px;
  1199. top:81px;
  1200. width:12px;
  1201. height:12px;
  1202. display:flex;
  1203. -webkit-transform:rotate(315deg);
  1204. -moz-transform:rotate(315deg);
  1205. -ms-transform:rotate(315deg);
  1206. transform:rotate(315deg);
  1207. transition:none;
  1208. transform-origin:50% 50%;
  1209. }
  1210. #u46373 .text {
  1211. position:absolute;
  1212. align-self:center;
  1213. padding:2px 2px 2px 2px;
  1214. box-sizing:border-box;
  1215. width:100%;
  1216. }
  1217. #u46373_text {
  1218. border-width:0px;
  1219. word-wrap:break-word;
  1220. text-transform:none;
  1221. visibility:hidden;
  1222. }
  1223. #u46374 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:73px;
  1227. top:76px;
  1228. width:23px;
  1229. height:23px;
  1230. display:flex;
  1231. transition:none;
  1232. }
  1233. #u46374 .text {
  1234. position:absolute;
  1235. align-self:center;
  1236. padding:2px 2px 2px 2px;
  1237. box-sizing:border-box;
  1238. width:100%;
  1239. }
  1240. #u46374_img {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:0px;
  1244. top:0px;
  1245. width:23px;
  1246. height:23px;
  1247. }
  1248. #u46374_text {
  1249. border-width:0px;
  1250. word-wrap:break-word;
  1251. text-transform:none;
  1252. visibility:hidden;
  1253. }
  1254. #u46375 {
  1255. border-width:0px;
  1256. position:absolute;
  1257. left:0px;
  1258. top:0px;
  1259. width:0px;
  1260. height:0px;
  1261. }
  1262. #u46376_div {
  1263. border-width:0px;
  1264. position:absolute;
  1265. left:0px;
  1266. top:0px;
  1267. width:375px;
  1268. height:50px;
  1269. background:inherit;
  1270. background-color:rgba(255, 255, 255, 1);
  1271. box-sizing:border-box;
  1272. border-width:1px;
  1273. border-style:solid;
  1274. border-color:rgba(242, 242, 242, 1);
  1275. border-radius:26px;
  1276. border-top-left-radius:0px;
  1277. border-top-right-radius:0px;
  1278. filter:drop-shadow(none);
  1279. transition:none;
  1280. }
  1281. #u46376 {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:29px;
  1285. top:791px;
  1286. width:375px;
  1287. height:50px;
  1288. display:flex;
  1289. transition:none;
  1290. transform-origin:50% 50%;
  1291. }
  1292. #u46376 .text {
  1293. position:absolute;
  1294. align-self:center;
  1295. padding:2px 2px 2px 2px;
  1296. box-sizing:border-box;
  1297. width:100%;
  1298. }
  1299. #u46376_text {
  1300. border-width:0px;
  1301. word-wrap:break-word;
  1302. text-transform:none;
  1303. visibility:hidden;
  1304. }
  1305. #u46377 {
  1306. border-width:0px;
  1307. position:absolute;
  1308. left:0px;
  1309. top:0px;
  1310. width:0px;
  1311. height:0px;
  1312. }
  1313. #u46378 {
  1314. border-width:0px;
  1315. position:absolute;
  1316. left:320px;
  1317. top:795px;
  1318. width:24px;
  1319. height:24px;
  1320. display:flex;
  1321. transition:none;
  1322. font-size:8px;
  1323. }
  1324. #u46378 .text {
  1325. position:absolute;
  1326. align-self:center;
  1327. padding:2px 2px 2px 2px;
  1328. box-sizing:border-box;
  1329. width:100%;
  1330. }
  1331. #u46378_img {
  1332. border-width:0px;
  1333. position:absolute;
  1334. left:0px;
  1335. top:0px;
  1336. width:24px;
  1337. height:24px;
  1338. }
  1339. #u46378_text {
  1340. border-width:0px;
  1341. word-wrap:break-word;
  1342. text-transform:none;
  1343. }
  1344. #u46379_div {
  1345. border-width:0px;
  1346. position:absolute;
  1347. left:0px;
  1348. top:0px;
  1349. width:25px;
  1350. height:17px;
  1351. background:inherit;
  1352. background-color:rgba(255, 255, 255, 0);
  1353. border-radius:0px;
  1354. filter:drop-shadow(none);
  1355. transition:none;
  1356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1357. font-weight:400;
  1358. font-style:normal;
  1359. font-size:12px;
  1360. }
  1361. #u46379 {
  1362. border-width:0px;
  1363. position:absolute;
  1364. left:319px;
  1365. top:820px;
  1366. width:25px;
  1367. height:17px;
  1368. display:flex;
  1369. transition:none;
  1370. transform-origin:50% 50%;
  1371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1372. font-weight:400;
  1373. font-style:normal;
  1374. font-size:12px;
  1375. }
  1376. #u46379 .text {
  1377. position:absolute;
  1378. align-self:flex-start;
  1379. padding:0px 0px 0px 0px;
  1380. box-sizing:border-box;
  1381. width:100%;
  1382. }
  1383. #u46379_text {
  1384. border-width:0px;
  1385. white-space:nowrap;
  1386. text-transform:none;
  1387. }
  1388. #u46380 {
  1389. border-width:0px;
  1390. position:absolute;
  1391. left:0px;
  1392. top:0px;
  1393. width:0px;
  1394. height:0px;
  1395. }
  1396. #u46381_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:25px;
  1402. height:17px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border-radius:0px;
  1406. filter:drop-shadow(none);
  1407. transition:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. font-size:12px;
  1412. }
  1413. #u46381 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:89px;
  1417. top:820px;
  1418. width:25px;
  1419. height:17px;
  1420. display:flex;
  1421. transition:none;
  1422. transform-origin:50% 50%;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. font-size:12px;
  1427. }
  1428. #u46381 .text {
  1429. position:absolute;
  1430. align-self:flex-start;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u46381_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u46382 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:89px;
  1444. top:795px;
  1445. width:24px;
  1446. height:24px;
  1447. display:flex;
  1448. transition:none;
  1449. font-size:8px;
  1450. color:#FFFFFF;
  1451. }
  1452. #u46382 .text {
  1453. position:absolute;
  1454. align-self:center;
  1455. padding:2px 2px 2px 2px;
  1456. box-sizing:border-box;
  1457. width:100%;
  1458. }
  1459. #u46382_img {
  1460. border-width:0px;
  1461. position:absolute;
  1462. left:0px;
  1463. top:0px;
  1464. width:24px;
  1465. height:24px;
  1466. }
  1467. #u46382_text {
  1468. border-width:0px;
  1469. word-wrap:break-word;
  1470. text-transform:none;
  1471. }
  1472. #u46383 {
  1473. border-width:0px;
  1474. position:absolute;
  1475. left:0px;
  1476. top:0px;
  1477. width:0px;
  1478. height:0px;
  1479. }
  1480. #u46384 {
  1481. border-width:0px;
  1482. position:absolute;
  1483. left:0px;
  1484. top:0px;
  1485. width:0px;
  1486. height:0px;
  1487. }
  1488. #u46385_div {
  1489. border-width:0px;
  1490. position:absolute;
  1491. left:0px;
  1492. top:0px;
  1493. width:358px;
  1494. height:100px;
  1495. background:inherit;
  1496. background-color:rgba(255, 255, 255, 1);
  1497. border-radius:4px;
  1498. filter:drop-shadow(none);
  1499. transition:none;
  1500. }
  1501. #u46385 {
  1502. border-width:0px;
  1503. position:absolute;
  1504. left:37px;
  1505. top:196px;
  1506. width:358px;
  1507. height:100px;
  1508. display:flex;
  1509. transition:none;
  1510. transform-origin:50% 50%;
  1511. }
  1512. #u46385 .text {
  1513. position:absolute;
  1514. align-self:center;
  1515. padding:2px 2px 2px 2px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u46385_text {
  1520. border-width:0px;
  1521. word-wrap:break-word;
  1522. text-transform:none;
  1523. visibility:hidden;
  1524. }
  1525. #u46386_div {
  1526. border-width:0px;
  1527. position:absolute;
  1528. left:0px;
  1529. top:0px;
  1530. width:85px;
  1531. height:20px;
  1532. background:inherit;
  1533. background-color:rgba(255, 255, 255, 0);
  1534. border-left:0px;
  1535. border-top:0px;
  1536. border-right:0px;
  1537. border-radius:0px;
  1538. border-bottom-right-radius:0px;
  1539. border-bottom-left-radius:0px;
  1540. filter:drop-shadow(none);
  1541. transition:none;
  1542. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1543. font-weight:500;
  1544. font-style:normal;
  1545. font-size:14px;
  1546. }
  1547. #u46386 {
  1548. border-width:0px;
  1549. position:absolute;
  1550. left:52px;
  1551. top:206px;
  1552. width:85px;
  1553. height:20px;
  1554. display:flex;
  1555. transition:none;
  1556. transform-origin:50% 50%;
  1557. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1558. font-weight:500;
  1559. font-style:normal;
  1560. font-size:14px;
  1561. }
  1562. #u46386 .text {
  1563. position:absolute;
  1564. align-self:flex-start;
  1565. padding:0px 0px 0px 0px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u46386_text {
  1570. border-width:0px;
  1571. white-space:nowrap;
  1572. text-transform:none;
  1573. }
  1574. #u46387_div {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:0px;
  1578. top:0px;
  1579. width:87px;
  1580. height:25px;
  1581. background:inherit;
  1582. background-color:rgba(255, 255, 255, 0);
  1583. border-left:0px;
  1584. border-top:0px;
  1585. border-right:0px;
  1586. border-radius:0px;
  1587. border-bottom-right-radius:0px;
  1588. border-bottom-left-radius:0px;
  1589. filter:drop-shadow(none);
  1590. transition:none;
  1591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1592. font-weight:400;
  1593. font-style:normal;
  1594. font-size:12px;
  1595. line-height:25px;
  1596. }
  1597. #u46387 {
  1598. border-width:0px;
  1599. position:absolute;
  1600. left:56px;
  1601. top:246px;
  1602. width:87px;
  1603. height:25px;
  1604. display:flex;
  1605. transition:none;
  1606. transform-origin:50% 50%;
  1607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1608. font-weight:400;
  1609. font-style:normal;
  1610. font-size:12px;
  1611. line-height:25px;
  1612. }
  1613. #u46387 .text {
  1614. position:absolute;
  1615. align-self:flex-start;
  1616. padding:0px 0px 0px 0px;
  1617. box-sizing:border-box;
  1618. width:100%;
  1619. }
  1620. #u46387_text {
  1621. border-width:0px;
  1622. white-space:nowrap;
  1623. text-transform:none;
  1624. }
  1625. #u46388_div {
  1626. border-width:0px;
  1627. position:absolute;
  1628. left:0px;
  1629. top:0px;
  1630. width:37px;
  1631. height:25px;
  1632. background:inherit;
  1633. background-color:rgba(255, 255, 255, 0);
  1634. border-left:0px;
  1635. border-top:0px;
  1636. border-right:0px;
  1637. border-radius:0px;
  1638. border-bottom-right-radius:0px;
  1639. border-bottom-left-radius:0px;
  1640. filter:drop-shadow(none);
  1641. transition:none;
  1642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1643. font-weight:400;
  1644. font-style:normal;
  1645. font-size:12px;
  1646. color:#7F7F7F;
  1647. line-height:25px;
  1648. }
  1649. #u46388 {
  1650. border-width:0px;
  1651. position:absolute;
  1652. left:278px;
  1653. top:252px;
  1654. width:37px;
  1655. height:25px;
  1656. display:flex;
  1657. transition:none;
  1658. transform-origin:50% 50%;
  1659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1660. font-weight:400;
  1661. font-style:normal;
  1662. font-size:12px;
  1663. color:#7F7F7F;
  1664. line-height:25px;
  1665. }
  1666. #u46388 .text {
  1667. position:absolute;
  1668. align-self:flex-start;
  1669. padding:0px 0px 0px 0px;
  1670. box-sizing:border-box;
  1671. width:100%;
  1672. }
  1673. #u46388_text {
  1674. border-width:0px;
  1675. white-space:nowrap;
  1676. text-transform:none;
  1677. }
  1678. #u46389_div {
  1679. border-width:0px;
  1680. position:absolute;
  1681. left:0px;
  1682. top:0px;
  1683. width:12px;
  1684. height:25px;
  1685. background:inherit;
  1686. background-color:rgba(255, 255, 255, 0);
  1687. border-left:0px;
  1688. border-top:0px;
  1689. border-right:0px;
  1690. border-radius:0px;
  1691. border-bottom-right-radius:0px;
  1692. border-bottom-left-radius:0px;
  1693. filter:drop-shadow(none);
  1694. transition:none;
  1695. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1696. font-weight:500;
  1697. font-style:normal;
  1698. font-size:18px;
  1699. color:#1890FF;
  1700. }
  1701. #u46389 {
  1702. border-width:0px;
  1703. position:absolute;
  1704. left:290px;
  1705. top:224px;
  1706. width:12px;
  1707. height:25px;
  1708. display:flex;
  1709. transition:none;
  1710. transform-origin:50% 50%;
  1711. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1712. font-weight:500;
  1713. font-style:normal;
  1714. font-size:18px;
  1715. color:#1890FF;
  1716. }
  1717. #u46389 .text {
  1718. position:absolute;
  1719. align-self:flex-start;
  1720. padding:0px 0px 0px 0px;
  1721. box-sizing:border-box;
  1722. width:100%;
  1723. }
  1724. #u46389_text {
  1725. border-width:0px;
  1726. white-space:nowrap;
  1727. text-transform:none;
  1728. }
  1729. #u46390_div {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:0px;
  1733. top:0px;
  1734. width:37px;
  1735. height:25px;
  1736. background:inherit;
  1737. background-color:rgba(255, 255, 255, 0);
  1738. border-left:0px;
  1739. border-top:0px;
  1740. border-right:0px;
  1741. border-radius:0px;
  1742. border-bottom-right-radius:0px;
  1743. border-bottom-left-radius:0px;
  1744. filter:drop-shadow(none);
  1745. transition:none;
  1746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1747. font-weight:400;
  1748. font-style:normal;
  1749. font-size:12px;
  1750. color:#7F7F7F;
  1751. line-height:25px;
  1752. }
  1753. #u46390 {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:221px;
  1757. top:252px;
  1758. width:37px;
  1759. height:25px;
  1760. display:flex;
  1761. transition:none;
  1762. transform-origin:50% 50%;
  1763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1764. font-weight:400;
  1765. font-style:normal;
  1766. font-size:12px;
  1767. color:#7F7F7F;
  1768. line-height:25px;
  1769. }
  1770. #u46390 .text {
  1771. position:absolute;
  1772. align-self:flex-start;
  1773. padding:0px 0px 0px 0px;
  1774. box-sizing:border-box;
  1775. width:100%;
  1776. }
  1777. #u46390_text {
  1778. border-width:0px;
  1779. white-space:nowrap;
  1780. text-transform:none;
  1781. }
  1782. #u46391_div {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:0px;
  1786. top:0px;
  1787. width:12px;
  1788. height:25px;
  1789. background:inherit;
  1790. background-color:rgba(255, 255, 255, 0);
  1791. border-left:0px;
  1792. border-top:0px;
  1793. border-right:0px;
  1794. border-radius:0px;
  1795. border-bottom-right-radius:0px;
  1796. border-bottom-left-radius:0px;
  1797. filter:drop-shadow(none);
  1798. transition:none;
  1799. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1800. font-weight:500;
  1801. font-style:normal;
  1802. font-size:18px;
  1803. color:#1890FF;
  1804. }
  1805. #u46391 {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:233px;
  1809. top:224px;
  1810. width:12px;
  1811. height:25px;
  1812. display:flex;
  1813. transition:none;
  1814. transform-origin:50% 50%;
  1815. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1816. font-weight:500;
  1817. font-style:normal;
  1818. font-size:18px;
  1819. color:#1890FF;
  1820. }
  1821. #u46391 .text {
  1822. position:absolute;
  1823. align-self:flex-start;
  1824. padding:0px 0px 0px 0px;
  1825. box-sizing:border-box;
  1826. width:100%;
  1827. }
  1828. #u46391_text {
  1829. border-width:0px;
  1830. white-space:nowrap;
  1831. text-transform:none;
  1832. }
  1833. #u46392_div {
  1834. border-width:0px;
  1835. position:absolute;
  1836. left:0px;
  1837. top:0px;
  1838. width:37px;
  1839. height:25px;
  1840. background:inherit;
  1841. background-color:rgba(255, 255, 255, 0);
  1842. border-left:0px;
  1843. border-top:0px;
  1844. border-right:0px;
  1845. border-radius:0px;
  1846. border-bottom-right-radius:0px;
  1847. border-bottom-left-radius:0px;
  1848. filter:drop-shadow(none);
  1849. transition:none;
  1850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1851. font-weight:400;
  1852. font-style:normal;
  1853. font-size:12px;
  1854. color:#7F7F7F;
  1855. line-height:25px;
  1856. }
  1857. #u46392 {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:338px;
  1861. top:252px;
  1862. width:37px;
  1863. height:25px;
  1864. display:flex;
  1865. transition:none;
  1866. transform-origin:50% 50%;
  1867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1868. font-weight:400;
  1869. font-style:normal;
  1870. font-size:12px;
  1871. color:#7F7F7F;
  1872. line-height:25px;
  1873. }
  1874. #u46392 .text {
  1875. position:absolute;
  1876. align-self:flex-start;
  1877. padding:0px 0px 0px 0px;
  1878. box-sizing:border-box;
  1879. width:100%;
  1880. }
  1881. #u46392_text {
  1882. border-width:0px;
  1883. white-space:nowrap;
  1884. text-transform:none;
  1885. }
  1886. #u46393_div {
  1887. border-width:0px;
  1888. position:absolute;
  1889. left:0px;
  1890. top:0px;
  1891. width:12px;
  1892. height:25px;
  1893. background:inherit;
  1894. background-color:rgba(255, 255, 255, 0);
  1895. border-left:0px;
  1896. border-top:0px;
  1897. border-right:0px;
  1898. border-radius:0px;
  1899. border-bottom-right-radius:0px;
  1900. border-bottom-left-radius:0px;
  1901. filter:drop-shadow(none);
  1902. transition:none;
  1903. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1904. font-weight:500;
  1905. font-style:normal;
  1906. font-size:18px;
  1907. color:#1890FF;
  1908. }
  1909. #u46393 {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:350px;
  1913. top:224px;
  1914. width:12px;
  1915. height:25px;
  1916. display:flex;
  1917. transition:none;
  1918. transform-origin:50% 50%;
  1919. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1920. font-weight:500;
  1921. font-style:normal;
  1922. font-size:18px;
  1923. color:#1890FF;
  1924. }
  1925. #u46393 .text {
  1926. position:absolute;
  1927. align-self:flex-start;
  1928. padding:0px 0px 0px 0px;
  1929. box-sizing:border-box;
  1930. width:100%;
  1931. }
  1932. #u46393_text {
  1933. border-width:0px;
  1934. white-space:nowrap;
  1935. text-transform:none;
  1936. }
  1937. #u46394_div {
  1938. border-width:0px;
  1939. position:absolute;
  1940. left:0px;
  1941. top:0px;
  1942. width:34px;
  1943. height:11px;
  1944. background:inherit;
  1945. background-color:rgba(245, 109, 35, 1);
  1946. border-radius:2px;
  1947. filter:drop-shadow(none);
  1948. transition:none;
  1949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1950. font-weight:400;
  1951. font-style:normal;
  1952. font-size:8px;
  1953. color:#FFFFFF;
  1954. text-align:center;
  1955. }
  1956. #u46394 {
  1957. border-width:0px;
  1958. position:absolute;
  1959. left:300px;
  1960. top:220px;
  1961. width:34px;
  1962. height:11px;
  1963. display:flex;
  1964. transition:none;
  1965. transform-origin:50% 50%;
  1966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1967. font-weight:400;
  1968. font-style:normal;
  1969. font-size:8px;
  1970. color:#FFFFFF;
  1971. text-align:center;
  1972. }
  1973. #u46394 .text {
  1974. position:absolute;
  1975. align-self:flex-start;
  1976. padding:0px 2px 0px 2px;
  1977. box-sizing:border-box;
  1978. width:100%;
  1979. }
  1980. #u46394_text {
  1981. border-width:0px;
  1982. white-space:nowrap;
  1983. text-transform:none;
  1984. }
  1985. #u46395 {
  1986. border-width:0px;
  1987. position:absolute;
  1988. left:0px;
  1989. top:0px;
  1990. width:0px;
  1991. height:0px;
  1992. }
  1993. #u46396 {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:0px;
  1997. top:0px;
  1998. width:0px;
  1999. height:0px;
  2000. }
  2001. #u46397_div {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:0px;
  2005. top:0px;
  2006. width:358px;
  2007. height:100px;
  2008. background:inherit;
  2009. background-color:rgba(255, 255, 255, 1);
  2010. border-radius:4px;
  2011. filter:drop-shadow(none);
  2012. transition:none;
  2013. }
  2014. #u46397 {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:37px;
  2018. top:306px;
  2019. width:358px;
  2020. height:100px;
  2021. display:flex;
  2022. transition:none;
  2023. transform-origin:50% 50%;
  2024. }
  2025. #u46397 .text {
  2026. position:absolute;
  2027. align-self:center;
  2028. padding:2px 2px 2px 2px;
  2029. box-sizing:border-box;
  2030. width:100%;
  2031. }
  2032. #u46397_text {
  2033. border-width:0px;
  2034. word-wrap:break-word;
  2035. text-transform:none;
  2036. visibility:hidden;
  2037. }
  2038. #u46398_div {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:0px;
  2042. top:0px;
  2043. width:85px;
  2044. height:20px;
  2045. background:inherit;
  2046. background-color:rgba(255, 255, 255, 0);
  2047. border-left:0px;
  2048. border-top:0px;
  2049. border-right:0px;
  2050. border-radius:0px;
  2051. border-bottom-right-radius:0px;
  2052. border-bottom-left-radius:0px;
  2053. filter:drop-shadow(none);
  2054. transition:none;
  2055. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2056. font-weight:500;
  2057. font-style:normal;
  2058. font-size:14px;
  2059. }
  2060. #u46398 {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:52px;
  2064. top:316px;
  2065. width:85px;
  2066. height:20px;
  2067. display:flex;
  2068. transition:none;
  2069. transform-origin:50% 50%;
  2070. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2071. font-weight:500;
  2072. font-style:normal;
  2073. font-size:14px;
  2074. }
  2075. #u46398 .text {
  2076. position:absolute;
  2077. align-self:flex-start;
  2078. padding:0px 0px 0px 0px;
  2079. box-sizing:border-box;
  2080. width:100%;
  2081. }
  2082. #u46398_text {
  2083. border-width:0px;
  2084. white-space:nowrap;
  2085. text-transform:none;
  2086. }
  2087. #u46399_div {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:0px;
  2091. top:0px;
  2092. width:87px;
  2093. height:25px;
  2094. background:inherit;
  2095. background-color:rgba(255, 255, 255, 0);
  2096. border-left:0px;
  2097. border-top:0px;
  2098. border-right:0px;
  2099. border-radius:0px;
  2100. border-bottom-right-radius:0px;
  2101. border-bottom-left-radius:0px;
  2102. filter:drop-shadow(none);
  2103. transition:none;
  2104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2105. font-weight:400;
  2106. font-style:normal;
  2107. font-size:12px;
  2108. line-height:25px;
  2109. }
  2110. #u46399 {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:56px;
  2114. top:356px;
  2115. width:87px;
  2116. height:25px;
  2117. display:flex;
  2118. transition:none;
  2119. transform-origin:50% 50%;
  2120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2121. font-weight:400;
  2122. font-style:normal;
  2123. font-size:12px;
  2124. line-height:25px;
  2125. }
  2126. #u46399 .text {
  2127. position:absolute;
  2128. align-self:flex-start;
  2129. padding:0px 0px 0px 0px;
  2130. box-sizing:border-box;
  2131. width:100%;
  2132. }
  2133. #u46399_text {
  2134. border-width:0px;
  2135. white-space:nowrap;
  2136. text-transform:none;
  2137. }
  2138. #u46400_div {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:0px;
  2142. top:0px;
  2143. width:37px;
  2144. height:25px;
  2145. background:inherit;
  2146. background-color:rgba(255, 255, 255, 0);
  2147. border-left:0px;
  2148. border-top:0px;
  2149. border-right:0px;
  2150. border-radius:0px;
  2151. border-bottom-right-radius:0px;
  2152. border-bottom-left-radius:0px;
  2153. filter:drop-shadow(none);
  2154. transition:none;
  2155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2156. font-weight:400;
  2157. font-style:normal;
  2158. font-size:12px;
  2159. color:#7F7F7F;
  2160. line-height:25px;
  2161. }
  2162. #u46400 {
  2163. border-width:0px;
  2164. position:absolute;
  2165. left:278px;
  2166. top:362px;
  2167. width:37px;
  2168. height:25px;
  2169. display:flex;
  2170. transition:none;
  2171. transform-origin:50% 50%;
  2172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2173. font-weight:400;
  2174. font-style:normal;
  2175. font-size:12px;
  2176. color:#7F7F7F;
  2177. line-height:25px;
  2178. }
  2179. #u46400 .text {
  2180. position:absolute;
  2181. align-self:flex-start;
  2182. padding:0px 0px 0px 0px;
  2183. box-sizing:border-box;
  2184. width:100%;
  2185. }
  2186. #u46400_text {
  2187. border-width:0px;
  2188. white-space:nowrap;
  2189. text-transform:none;
  2190. }
  2191. #u46401_div {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:0px;
  2195. top:0px;
  2196. width:12px;
  2197. height:25px;
  2198. background:inherit;
  2199. background-color:rgba(255, 255, 255, 0);
  2200. border-left:0px;
  2201. border-top:0px;
  2202. border-right:0px;
  2203. border-radius:0px;
  2204. border-bottom-right-radius:0px;
  2205. border-bottom-left-radius:0px;
  2206. filter:drop-shadow(none);
  2207. transition:none;
  2208. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2209. font-weight:500;
  2210. font-style:normal;
  2211. font-size:18px;
  2212. color:#1890FF;
  2213. }
  2214. #u46401 {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:290px;
  2218. top:334px;
  2219. width:12px;
  2220. height:25px;
  2221. display:flex;
  2222. transition:none;
  2223. transform-origin:50% 50%;
  2224. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2225. font-weight:500;
  2226. font-style:normal;
  2227. font-size:18px;
  2228. color:#1890FF;
  2229. }
  2230. #u46401 .text {
  2231. position:absolute;
  2232. align-self:flex-start;
  2233. padding:0px 0px 0px 0px;
  2234. box-sizing:border-box;
  2235. width:100%;
  2236. }
  2237. #u46401_text {
  2238. border-width:0px;
  2239. white-space:nowrap;
  2240. text-transform:none;
  2241. }
  2242. #u46402_div {
  2243. border-width:0px;
  2244. position:absolute;
  2245. left:0px;
  2246. top:0px;
  2247. width:37px;
  2248. height:25px;
  2249. background:inherit;
  2250. background-color:rgba(255, 255, 255, 0);
  2251. border-left:0px;
  2252. border-top:0px;
  2253. border-right:0px;
  2254. border-radius:0px;
  2255. border-bottom-right-radius:0px;
  2256. border-bottom-left-radius:0px;
  2257. filter:drop-shadow(none);
  2258. transition:none;
  2259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2260. font-weight:400;
  2261. font-style:normal;
  2262. font-size:12px;
  2263. color:#7F7F7F;
  2264. line-height:25px;
  2265. }
  2266. #u46402 {
  2267. border-width:0px;
  2268. position:absolute;
  2269. left:221px;
  2270. top:362px;
  2271. width:37px;
  2272. height:25px;
  2273. display:flex;
  2274. transition:none;
  2275. transform-origin:50% 50%;
  2276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2277. font-weight:400;
  2278. font-style:normal;
  2279. font-size:12px;
  2280. color:#7F7F7F;
  2281. line-height:25px;
  2282. }
  2283. #u46402 .text {
  2284. position:absolute;
  2285. align-self:flex-start;
  2286. padding:0px 0px 0px 0px;
  2287. box-sizing:border-box;
  2288. width:100%;
  2289. }
  2290. #u46402_text {
  2291. border-width:0px;
  2292. white-space:nowrap;
  2293. text-transform:none;
  2294. }
  2295. #u46403_div {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:0px;
  2299. top:0px;
  2300. width:12px;
  2301. height:25px;
  2302. background:inherit;
  2303. background-color:rgba(255, 255, 255, 0);
  2304. border-left:0px;
  2305. border-top:0px;
  2306. border-right:0px;
  2307. border-radius:0px;
  2308. border-bottom-right-radius:0px;
  2309. border-bottom-left-radius:0px;
  2310. filter:drop-shadow(none);
  2311. transition:none;
  2312. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2313. font-weight:500;
  2314. font-style:normal;
  2315. font-size:18px;
  2316. color:#1890FF;
  2317. }
  2318. #u46403 {
  2319. border-width:0px;
  2320. position:absolute;
  2321. left:233px;
  2322. top:334px;
  2323. width:12px;
  2324. height:25px;
  2325. display:flex;
  2326. transition:none;
  2327. transform-origin:50% 50%;
  2328. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2329. font-weight:500;
  2330. font-style:normal;
  2331. font-size:18px;
  2332. color:#1890FF;
  2333. }
  2334. #u46403 .text {
  2335. position:absolute;
  2336. align-self:flex-start;
  2337. padding:0px 0px 0px 0px;
  2338. box-sizing:border-box;
  2339. width:100%;
  2340. }
  2341. #u46403_text {
  2342. border-width:0px;
  2343. white-space:nowrap;
  2344. text-transform:none;
  2345. }
  2346. #u46404_div {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:0px;
  2350. top:0px;
  2351. width:37px;
  2352. height:25px;
  2353. background:inherit;
  2354. background-color:rgba(255, 255, 255, 0);
  2355. border-left:0px;
  2356. border-top:0px;
  2357. border-right:0px;
  2358. border-radius:0px;
  2359. border-bottom-right-radius:0px;
  2360. border-bottom-left-radius:0px;
  2361. filter:drop-shadow(none);
  2362. transition:none;
  2363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2364. font-weight:400;
  2365. font-style:normal;
  2366. font-size:12px;
  2367. color:#7F7F7F;
  2368. line-height:25px;
  2369. }
  2370. #u46404 {
  2371. border-width:0px;
  2372. position:absolute;
  2373. left:338px;
  2374. top:362px;
  2375. width:37px;
  2376. height:25px;
  2377. display:flex;
  2378. transition:none;
  2379. transform-origin:50% 50%;
  2380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2381. font-weight:400;
  2382. font-style:normal;
  2383. font-size:12px;
  2384. color:#7F7F7F;
  2385. line-height:25px;
  2386. }
  2387. #u46404 .text {
  2388. position:absolute;
  2389. align-self:flex-start;
  2390. padding:0px 0px 0px 0px;
  2391. box-sizing:border-box;
  2392. width:100%;
  2393. }
  2394. #u46404_text {
  2395. border-width:0px;
  2396. white-space:nowrap;
  2397. text-transform:none;
  2398. }
  2399. #u46405_div {
  2400. border-width:0px;
  2401. position:absolute;
  2402. left:0px;
  2403. top:0px;
  2404. width:12px;
  2405. height:25px;
  2406. background:inherit;
  2407. background-color:rgba(255, 255, 255, 0);
  2408. border-left:0px;
  2409. border-top:0px;
  2410. border-right:0px;
  2411. border-radius:0px;
  2412. border-bottom-right-radius:0px;
  2413. border-bottom-left-radius:0px;
  2414. filter:drop-shadow(none);
  2415. transition:none;
  2416. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2417. font-weight:500;
  2418. font-style:normal;
  2419. font-size:18px;
  2420. color:#1890FF;
  2421. }
  2422. #u46405 {
  2423. border-width:0px;
  2424. position:absolute;
  2425. left:350px;
  2426. top:334px;
  2427. width:12px;
  2428. height:25px;
  2429. display:flex;
  2430. transition:none;
  2431. transform-origin:50% 50%;
  2432. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2433. font-weight:500;
  2434. font-style:normal;
  2435. font-size:18px;
  2436. color:#1890FF;
  2437. }
  2438. #u46405 .text {
  2439. position:absolute;
  2440. align-self:flex-start;
  2441. padding:0px 0px 0px 0px;
  2442. box-sizing:border-box;
  2443. width:100%;
  2444. }
  2445. #u46405_text {
  2446. border-width:0px;
  2447. white-space:nowrap;
  2448. text-transform:none;
  2449. }
  2450. #u46406_div {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:0px;
  2454. top:0px;
  2455. width:34px;
  2456. height:11px;
  2457. background:inherit;
  2458. background-color:rgba(245, 109, 35, 1);
  2459. border-radius:2px;
  2460. filter:drop-shadow(none);
  2461. transition:none;
  2462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2463. font-weight:400;
  2464. font-style:normal;
  2465. font-size:8px;
  2466. color:#FFFFFF;
  2467. text-align:center;
  2468. }
  2469. #u46406 {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:296px;
  2473. top:329px;
  2474. width:34px;
  2475. height:11px;
  2476. display:flex;
  2477. transition:none;
  2478. transform-origin:50% 50%;
  2479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2480. font-weight:400;
  2481. font-style:normal;
  2482. font-size:8px;
  2483. color:#FFFFFF;
  2484. text-align:center;
  2485. }
  2486. #u46406 .text {
  2487. position:absolute;
  2488. align-self:flex-start;
  2489. padding:0px 2px 0px 2px;
  2490. box-sizing:border-box;
  2491. width:100%;
  2492. }
  2493. #u46406_text {
  2494. border-width:0px;
  2495. white-space:nowrap;
  2496. text-transform:none;
  2497. }
  2498. #u46407 {
  2499. border-width:0px;
  2500. position:absolute;
  2501. left:0px;
  2502. top:0px;
  2503. width:0px;
  2504. height:0px;
  2505. }
  2506. #u46408_div {
  2507. border-width:0px;
  2508. position:absolute;
  2509. left:0px;
  2510. top:0px;
  2511. width:375px;
  2512. height:60px;
  2513. background:inherit;
  2514. background-color:rgba(255, 255, 255, 1);
  2515. border-radius:4px;
  2516. filter:drop-shadow(none);
  2517. transition:none;
  2518. }
  2519. #u46408 {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:29px;
  2523. top:731px;
  2524. width:375px;
  2525. height:60px;
  2526. display:flex;
  2527. transition:none;
  2528. transform-origin:50% 50%;
  2529. }
  2530. #u46408 .text {
  2531. position:absolute;
  2532. align-self:center;
  2533. padding:2px 2px 2px 2px;
  2534. box-sizing:border-box;
  2535. width:100%;
  2536. }
  2537. #u46408_text {
  2538. border-width:0px;
  2539. word-wrap:break-word;
  2540. text-transform:none;
  2541. visibility:hidden;
  2542. }
  2543. #u46409_div {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:0px;
  2547. top:0px;
  2548. width:140px;
  2549. height:40px;
  2550. background:inherit;
  2551. background-color:rgba(245, 154, 35, 1);
  2552. border-radius:63px;
  2553. filter:drop-shadow(0px 0px 2.5px rgba(245, 154, 35, 1));
  2554. transition:none;
  2555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2556. font-weight:400;
  2557. font-style:normal;
  2558. font-size:14px;
  2559. color:#FFFFFF;
  2560. }
  2561. #u46409 {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:61px;
  2565. top:741px;
  2566. width:140px;
  2567. height:40px;
  2568. display:flex;
  2569. transition:none;
  2570. transform-origin:50% 50%;
  2571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2572. font-weight:400;
  2573. font-style:normal;
  2574. font-size:14px;
  2575. color:#FFFFFF;
  2576. }
  2577. #u46409 .text {
  2578. position:absolute;
  2579. align-self:center;
  2580. padding:2px 2px 2px 2px;
  2581. box-sizing:border-box;
  2582. width:100%;
  2583. }
  2584. #u46409_text {
  2585. border-width:0px;
  2586. word-wrap:break-word;
  2587. text-transform:none;
  2588. }
  2589. #u46410_div {
  2590. border-width:0px;
  2591. position:absolute;
  2592. left:0px;
  2593. top:0px;
  2594. width:140px;
  2595. height:40px;
  2596. background:inherit;
  2597. background-color:rgba(41, 143, 255, 1);
  2598. border-radius:63px;
  2599. filter:drop-shadow(0px 0px 2.5px rgba(41, 143, 255, 1));
  2600. transition:none;
  2601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2602. font-weight:400;
  2603. font-style:normal;
  2604. font-size:14px;
  2605. color:#FFFFFF;
  2606. }
  2607. #u46410 {
  2608. border-width:0px;
  2609. position:absolute;
  2610. left:231px;
  2611. top:741px;
  2612. width:140px;
  2613. height:40px;
  2614. display:flex;
  2615. transition:none;
  2616. transform-origin:50% 50%;
  2617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2618. font-weight:400;
  2619. font-style:normal;
  2620. font-size:14px;
  2621. color:#FFFFFF;
  2622. }
  2623. #u46410 .text {
  2624. position:absolute;
  2625. align-self:center;
  2626. padding:2px 2px 2px 2px;
  2627. box-sizing:border-box;
  2628. width:100%;
  2629. }
  2630. #u46410_text {
  2631. border-width:0px;
  2632. word-wrap:break-word;
  2633. text-transform:none;
  2634. }
  2635. #u46411_div {
  2636. border-width:0px;
  2637. position:absolute;
  2638. left:0px;
  2639. top:0px;
  2640. width:375px;
  2641. height:80px;
  2642. background:inherit;
  2643. background-color:rgba(255, 255, 255, 1);
  2644. border-radius:0px;
  2645. filter:drop-shadow(none);
  2646. transition:none;
  2647. }
  2648. #u46411 {
  2649. border-width:0px;
  2650. position:absolute;
  2651. left:29px;
  2652. top:106px;
  2653. width:375px;
  2654. height:80px;
  2655. display:flex;
  2656. transition:none;
  2657. transform-origin:50% 50%;
  2658. }
  2659. #u46411 .text {
  2660. position:absolute;
  2661. align-self:center;
  2662. padding:2px 2px 2px 2px;
  2663. box-sizing:border-box;
  2664. width:100%;
  2665. }
  2666. #u46411_text {
  2667. border-width:0px;
  2668. word-wrap:break-word;
  2669. text-transform:none;
  2670. visibility:hidden;
  2671. }
  2672. #u46412 {
  2673. border-width:0px;
  2674. position:absolute;
  2675. left:0px;
  2676. top:0px;
  2677. width:0px;
  2678. height:0px;
  2679. }
  2680. #u46413_div {
  2681. border-width:0px;
  2682. position:absolute;
  2683. left:0px;
  2684. top:0px;
  2685. width:30px;
  2686. height:25px;
  2687. background:inherit;
  2688. background-color:rgba(255, 255, 255, 0);
  2689. border-left:0px;
  2690. border-top:0px;
  2691. border-right:0px;
  2692. border-radius:0px;
  2693. border-bottom-right-radius:0px;
  2694. border-bottom-left-radius:0px;
  2695. filter:drop-shadow(none);
  2696. transition:none;
  2697. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2698. font-weight:500;
  2699. font-style:normal;
  2700. font-size:18px;
  2701. }
  2702. #u46413 {
  2703. border-width:0px;
  2704. position:absolute;
  2705. left:58px;
  2706. top:123px;
  2707. width:30px;
  2708. height:25px;
  2709. display:flex;
  2710. transition:none;
  2711. transform-origin:50% 50%;
  2712. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2713. font-weight:500;
  2714. font-style:normal;
  2715. font-size:18px;
  2716. }
  2717. #u46413 .text {
  2718. position:absolute;
  2719. align-self:flex-start;
  2720. padding:0px 0px 0px 0px;
  2721. box-sizing:border-box;
  2722. width:100%;
  2723. }
  2724. #u46413_text {
  2725. border-width:0px;
  2726. white-space:nowrap;
  2727. text-transform:none;
  2728. }
  2729. #u46414_div {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:0px;
  2733. top:0px;
  2734. width:49px;
  2735. height:17px;
  2736. background:inherit;
  2737. background-color:rgba(255, 255, 255, 0);
  2738. border-left:0px;
  2739. border-top:0px;
  2740. border-right:0px;
  2741. border-radius:0px;
  2742. border-bottom-right-radius:0px;
  2743. border-bottom-left-radius:0px;
  2744. filter:drop-shadow(none);
  2745. transition:none;
  2746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2747. font-weight:400;
  2748. font-style:normal;
  2749. font-size:12px;
  2750. }
  2751. #u46414 {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:49px;
  2755. top:150px;
  2756. width:49px;
  2757. height:17px;
  2758. display:flex;
  2759. transition:none;
  2760. transform-origin:50% 50%;
  2761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2762. font-weight:400;
  2763. font-style:normal;
  2764. font-size:12px;
  2765. }
  2766. #u46414 .text {
  2767. position:absolute;
  2768. align-self:flex-start;
  2769. padding:0px 0px 0px 0px;
  2770. box-sizing:border-box;
  2771. width:100%;
  2772. }
  2773. #u46414_text {
  2774. border-width:0px;
  2775. white-space:nowrap;
  2776. text-transform:none;
  2777. }
  2778. #u46415 {
  2779. border-width:0px;
  2780. position:absolute;
  2781. left:0px;
  2782. top:0px;
  2783. width:0px;
  2784. height:0px;
  2785. }
  2786. #u46416_div {
  2787. border-width:0px;
  2788. position:absolute;
  2789. left:0px;
  2790. top:0px;
  2791. width:30px;
  2792. height:25px;
  2793. background:inherit;
  2794. background-color:rgba(255, 255, 255, 0);
  2795. border-left:0px;
  2796. border-top:0px;
  2797. border-right:0px;
  2798. border-radius:0px;
  2799. border-bottom-right-radius:0px;
  2800. border-bottom-left-radius:0px;
  2801. filter:drop-shadow(none);
  2802. transition:none;
  2803. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2804. font-weight:500;
  2805. font-style:normal;
  2806. font-size:18px;
  2807. }
  2808. #u46416 {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:143px;
  2812. top:124px;
  2813. width:30px;
  2814. height:25px;
  2815. display:flex;
  2816. transition:none;
  2817. transform-origin:50% 50%;
  2818. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2819. font-weight:500;
  2820. font-style:normal;
  2821. font-size:18px;
  2822. }
  2823. #u46416 .text {
  2824. position:absolute;
  2825. align-self:flex-start;
  2826. padding:0px 0px 0px 0px;
  2827. box-sizing:border-box;
  2828. width:100%;
  2829. }
  2830. #u46416_text {
  2831. border-width:0px;
  2832. white-space:nowrap;
  2833. text-transform:none;
  2834. }
  2835. #u46417_div {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:0px;
  2839. top:0px;
  2840. width:37px;
  2841. height:17px;
  2842. background:inherit;
  2843. background-color:rgba(255, 255, 255, 0);
  2844. border-left:0px;
  2845. border-top:0px;
  2846. border-right:0px;
  2847. border-radius:0px;
  2848. border-bottom-right-radius:0px;
  2849. border-bottom-left-radius:0px;
  2850. filter:drop-shadow(none);
  2851. transition:none;
  2852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2853. font-weight:400;
  2854. font-style:normal;
  2855. font-size:12px;
  2856. }
  2857. #u46417 {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:140px;
  2861. top:149px;
  2862. width:37px;
  2863. height:17px;
  2864. display:flex;
  2865. transition:none;
  2866. transform-origin:50% 50%;
  2867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2868. font-weight:400;
  2869. font-style:normal;
  2870. font-size:12px;
  2871. }
  2872. #u46417 .text {
  2873. position:absolute;
  2874. align-self:flex-start;
  2875. padding:0px 0px 0px 0px;
  2876. box-sizing:border-box;
  2877. width:100%;
  2878. }
  2879. #u46417_text {
  2880. border-width:0px;
  2881. white-space:nowrap;
  2882. text-transform:none;
  2883. }
  2884. #u46418 {
  2885. border-width:0px;
  2886. position:absolute;
  2887. left:0px;
  2888. top:0px;
  2889. width:0px;
  2890. height:0px;
  2891. }
  2892. #u46419_div {
  2893. border-width:0px;
  2894. position:absolute;
  2895. left:0px;
  2896. top:0px;
  2897. width:30px;
  2898. height:25px;
  2899. background:inherit;
  2900. background-color:rgba(255, 255, 255, 0);
  2901. border-left:0px;
  2902. border-top:0px;
  2903. border-right:0px;
  2904. border-radius:0px;
  2905. border-bottom-right-radius:0px;
  2906. border-bottom-left-radius:0px;
  2907. filter:drop-shadow(none);
  2908. transition:none;
  2909. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2910. font-weight:500;
  2911. font-style:normal;
  2912. font-size:18px;
  2913. }
  2914. #u46419 {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:223px;
  2918. top:124px;
  2919. width:30px;
  2920. height:25px;
  2921. display:flex;
  2922. transition:none;
  2923. transform-origin:50% 50%;
  2924. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2925. font-weight:500;
  2926. font-style:normal;
  2927. font-size:18px;
  2928. }
  2929. #u46419 .text {
  2930. position:absolute;
  2931. align-self:flex-start;
  2932. padding:0px 0px 0px 0px;
  2933. box-sizing:border-box;
  2934. width:100%;
  2935. }
  2936. #u46419_text {
  2937. border-width:0px;
  2938. white-space:nowrap;
  2939. text-transform:none;
  2940. }
  2941. #u46420_div {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:0px;
  2945. top:0px;
  2946. width:37px;
  2947. height:17px;
  2948. background:inherit;
  2949. background-color:rgba(255, 255, 255, 0);
  2950. border-left:0px;
  2951. border-top:0px;
  2952. border-right:0px;
  2953. border-radius:0px;
  2954. border-bottom-right-radius:0px;
  2955. border-bottom-left-radius:0px;
  2956. filter:drop-shadow(none);
  2957. transition:none;
  2958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2959. font-weight:400;
  2960. font-style:normal;
  2961. font-size:12px;
  2962. }
  2963. #u46420 {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:219px;
  2967. top:149px;
  2968. width:37px;
  2969. height:17px;
  2970. display:flex;
  2971. transition:none;
  2972. transform-origin:50% 50%;
  2973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2974. font-weight:400;
  2975. font-style:normal;
  2976. font-size:12px;
  2977. }
  2978. #u46420 .text {
  2979. position:absolute;
  2980. align-self:flex-start;
  2981. padding:0px 0px 0px 0px;
  2982. box-sizing:border-box;
  2983. width:100%;
  2984. }
  2985. #u46420_text {
  2986. border-width:0px;
  2987. white-space:nowrap;
  2988. text-transform:none;
  2989. }
  2990. #u46421 {
  2991. border-width:0px;
  2992. position:absolute;
  2993. left:0px;
  2994. top:0px;
  2995. width:0px;
  2996. height:0px;
  2997. }
  2998. #u46422_div {
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:0px;
  3002. top:0px;
  3003. width:23px;
  3004. height:25px;
  3005. background:inherit;
  3006. background-color:rgba(255, 255, 255, 0);
  3007. border-left:0px;
  3008. border-top:0px;
  3009. border-right:0px;
  3010. border-radius:0px;
  3011. border-bottom-right-radius:0px;
  3012. border-bottom-left-radius:0px;
  3013. filter:drop-shadow(none);
  3014. transition:none;
  3015. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3016. font-weight:500;
  3017. font-style:normal;
  3018. font-size:18px;
  3019. }
  3020. #u46422 {
  3021. border-width:0px;
  3022. position:absolute;
  3023. left:349px;
  3024. top:121px;
  3025. width:23px;
  3026. height:25px;
  3027. display:flex;
  3028. transition:none;
  3029. transform-origin:50% 50%;
  3030. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3031. font-weight:500;
  3032. font-style:normal;
  3033. font-size:18px;
  3034. }
  3035. #u46422 .text {
  3036. position:absolute;
  3037. align-self:flex-start;
  3038. padding:0px 0px 0px 0px;
  3039. box-sizing:border-box;
  3040. width:100%;
  3041. }
  3042. #u46422_text {
  3043. border-width:0px;
  3044. white-space:nowrap;
  3045. text-transform:none;
  3046. }
  3047. #u46423_div {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:0px;
  3051. top:0px;
  3052. width:37px;
  3053. height:17px;
  3054. background:inherit;
  3055. background-color:rgba(255, 255, 255, 0);
  3056. border-left:0px;
  3057. border-top:0px;
  3058. border-right:0px;
  3059. border-radius:0px;
  3060. border-bottom-right-radius:0px;
  3061. border-bottom-left-radius:0px;
  3062. filter:drop-shadow(none);
  3063. transition:none;
  3064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3065. font-weight:400;
  3066. font-style:normal;
  3067. font-size:12px;
  3068. }
  3069. #u46423 {
  3070. border-width:0px;
  3071. position:absolute;
  3072. left:341px;
  3073. top:152px;
  3074. width:37px;
  3075. height:17px;
  3076. display:flex;
  3077. transition:none;
  3078. transform-origin:50% 50%;
  3079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3080. font-weight:400;
  3081. font-style:normal;
  3082. font-size:12px;
  3083. }
  3084. #u46423 .text {
  3085. position:absolute;
  3086. align-self:flex-start;
  3087. padding:0px 0px 0px 0px;
  3088. box-sizing:border-box;
  3089. width:100%;
  3090. }
  3091. #u46423_text {
  3092. border-width:0px;
  3093. white-space:nowrap;
  3094. text-transform:none;
  3095. }
  3096. #u46424 {
  3097. border-width:0px;
  3098. position:absolute;
  3099. left:298px;
  3100. top:131px;
  3101. width:1px;
  3102. height:28px;
  3103. display:flex;
  3104. transition:none;
  3105. }
  3106. #u46424 .text {
  3107. position:absolute;
  3108. align-self:center;
  3109. padding:2px 2px 2px 2px;
  3110. box-sizing:border-box;
  3111. width:100%;
  3112. }
  3113. #u46424_img {
  3114. border-width:0px;
  3115. position:absolute;
  3116. left:0px;
  3117. top:0px;
  3118. width:2px;
  3119. height:29px;
  3120. }
  3121. #u46424_text {
  3122. border-width:0px;
  3123. word-wrap:break-word;
  3124. text-transform:none;
  3125. visibility:hidden;
  3126. }
  3127. #u46425_div {
  3128. border-width:0px;
  3129. position:absolute;
  3130. left:0px;
  3131. top:0px;
  3132. width:48px;
  3133. height:14px;
  3134. background:inherit;
  3135. background-color:rgba(51, 51, 51, 1);
  3136. border-radius:2px;
  3137. filter:drop-shadow(none);
  3138. transition:none;
  3139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3140. font-weight:400;
  3141. font-style:normal;
  3142. font-size:10px;
  3143. color:#FFFFFF;
  3144. text-align:center;
  3145. }
  3146. #u46425 {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:55px;
  3150. top:731px;
  3151. width:48px;
  3152. height:14px;
  3153. display:flex;
  3154. transition:none;
  3155. transform-origin:50% 50%;
  3156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3157. font-weight:400;
  3158. font-style:normal;
  3159. font-size:10px;
  3160. color:#FFFFFF;
  3161. text-align:center;
  3162. }
  3163. #u46425 .text {
  3164. position:absolute;
  3165. align-self:flex-start;
  3166. padding:0px 2px 0px 2px;
  3167. box-sizing:border-box;
  3168. width:100%;
  3169. }
  3170. #u46425_text {
  3171. border-width:0px;
  3172. white-space:nowrap;
  3173. text-transform:none;
  3174. }