styles.css 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:844px;
  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. #u46003_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u46003 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u46003 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u46003_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u46004_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. box-sizing:border-box;
  59. border-width:1px;
  60. border-style:solid;
  61. border-color:rgba(215, 215, 215, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. }
  72. #u46004 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u46004 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u46004_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u46005 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u46006_div {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:88px;
  108. height:32px;
  109. background:inherit;
  110. background-color:rgba(255, 255, 255, 1);
  111. box-sizing:border-box;
  112. border-width:1px;
  113. border-style:solid;
  114. border-color:rgba(242, 242, 242, 1);
  115. border-radius:33px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. }
  120. #u46006 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u46006 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u46006_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u46007 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u46008_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u46008 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u46008 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u46008_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u46009_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u46009 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u46009 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u46009_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u46010 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u46011_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u46011 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u46011 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u46011_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u46012_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u46012 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u46012 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u46012_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u46013_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u46013 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u46013 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u46013_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u46014_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u46014 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u46014 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u46014_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u46015_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u46015 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u46015 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u46015_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u46016_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:50px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 1);
  381. box-sizing:border-box;
  382. border-width:1px;
  383. border-style:solid;
  384. border-color:rgba(242, 242, 242, 1);
  385. border-radius:26px;
  386. border-top-left-radius:0px;
  387. border-top-right-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. }
  392. #u46016 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u46016 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u46016_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u46017 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u46018_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u46018 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u46018 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u46018_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u46019_div {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:25px;
  458. height:17px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:12px;
  470. }
  471. #u46019 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u46019 .text {
  485. position:absolute;
  486. align-self:flex-start;
  487. padding:0px 0px 0px 0px;
  488. box-sizing:border-box;
  489. width:100%;
  490. }
  491. #u46019_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u46020 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u46021_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u46021 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u46021 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u46021_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u46022_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:25px;
  540. height:17px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:12px;
  552. }
  553. #u46022 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u46022 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 0px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u46022_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u46023_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:375px;
  584. height:681px;
  585. background:inherit;
  586. background-color:rgba(242, 242, 242, 0.462745098039216);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u46023 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u46023 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u46023_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u46024 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u46025_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u46025 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u46025 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u46025_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u46026_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:37px;
  659. height:17px;
  660. background:inherit;
  661. background-color:rgba(255, 255, 255, 0);
  662. border:none;
  663. border-radius:0px;
  664. -moz-box-shadow:none;
  665. -webkit-box-shadow:none;
  666. box-shadow:none;
  667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:12px;
  671. }
  672. #u46026 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u46026 .text {
  686. position:absolute;
  687. align-self:flex-start;
  688. padding:0px 0px 0px 0px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u46026_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u46027 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u46028_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u46028 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u46028 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u46028_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u46029_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:37px;
  741. height:17px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. }
  754. #u46029 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u46029 .text {
  768. position:absolute;
  769. align-self:flex-start;
  770. padding:0px 0px 0px 0px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u46029_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u46030_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:735px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. border:none;
  789. border-top:0px;
  790. border-radius:25px;
  791. border-top-left-radius:0px;
  792. border-top-right-radius:0px;
  793. -moz-box-shadow:none;
  794. -webkit-box-shadow:none;
  795. box-shadow:none;
  796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  797. font-weight:400;
  798. font-style:normal;
  799. }
  800. #u46030 {
  801. border-width:0px;
  802. position:absolute;
  803. left:29px;
  804. top:105px;
  805. width:375px;
  806. height:735px;
  807. display:flex;
  808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  809. font-weight:400;
  810. font-style:normal;
  811. }
  812. #u46030 .text {
  813. position:absolute;
  814. align-self:center;
  815. padding:2px 2px 2px 2px;
  816. box-sizing:border-box;
  817. width:100%;
  818. }
  819. #u46030_text {
  820. border-width:0px;
  821. word-wrap:break-word;
  822. text-transform:none;
  823. visibility:hidden;
  824. }
  825. #u46031_div {
  826. border-width:0px;
  827. position:absolute;
  828. left:0px;
  829. top:0px;
  830. width:375px;
  831. height:100px;
  832. background:inherit;
  833. background-color:rgba(255, 255, 255, 1);
  834. border:none;
  835. border-radius:4px;
  836. -moz-box-shadow:none;
  837. -webkit-box-shadow:none;
  838. box-shadow:none;
  839. }
  840. #u46031 {
  841. border-width:0px;
  842. position:absolute;
  843. left:29px;
  844. top:105px;
  845. width:375px;
  846. height:100px;
  847. display:flex;
  848. }
  849. #u46031 .text {
  850. position:absolute;
  851. align-self:center;
  852. padding:2px 2px 2px 2px;
  853. box-sizing:border-box;
  854. width:100%;
  855. }
  856. #u46031_text {
  857. border-width:0px;
  858. word-wrap:break-word;
  859. text-transform:none;
  860. visibility:hidden;
  861. }
  862. #u46032 {
  863. border-width:0px;
  864. position:absolute;
  865. left:0px;
  866. top:0px;
  867. width:0px;
  868. height:0px;
  869. }
  870. #u46033_img {
  871. border-width:0px;
  872. position:absolute;
  873. left:0px;
  874. top:0px;
  875. width:11px;
  876. height:18px;
  877. }
  878. #u46033 {
  879. border-width:0px;
  880. position:absolute;
  881. left:46px;
  882. top:79px;
  883. width:11px;
  884. height:18px;
  885. display:flex;
  886. }
  887. #u46033 .text {
  888. position:absolute;
  889. align-self:center;
  890. padding:2px 2px 2px 2px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u46033_text {
  895. border-width:0px;
  896. word-wrap:break-word;
  897. text-transform:none;
  898. visibility:hidden;
  899. }
  900. #u46034_div {
  901. border-width:0px;
  902. position:absolute;
  903. left:0px;
  904. top:0px;
  905. width:125px;
  906. height:22px;
  907. background:inherit;
  908. background-color:rgba(255, 255, 255, 0);
  909. border:none;
  910. border-left:0px;
  911. border-top:0px;
  912. border-right:0px;
  913. border-radius:0px;
  914. border-bottom-right-radius:0px;
  915. border-bottom-left-radius:0px;
  916. -moz-box-shadow:none;
  917. -webkit-box-shadow:none;
  918. box-shadow:none;
  919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  920. font-weight:400;
  921. font-style:normal;
  922. font-size:16px;
  923. color:#000000;
  924. }
  925. #u46034 {
  926. border-width:0px;
  927. position:absolute;
  928. left:150px;
  929. top:74px;
  930. width:125px;
  931. height:22px;
  932. display:flex;
  933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  934. font-weight:400;
  935. font-style:normal;
  936. font-size:16px;
  937. color:#000000;
  938. }
  939. #u46034 .text {
  940. position:absolute;
  941. align-self:center;
  942. padding:0px 0px 0px 0px;
  943. box-sizing:border-box;
  944. width:100%;
  945. }
  946. #u46034_text {
  947. border-width:0px;
  948. white-space:nowrap;
  949. text-transform:none;
  950. }
  951. #u46035_div {
  952. border-width:0px;
  953. position:absolute;
  954. left:0px;
  955. top:0px;
  956. width:191px;
  957. height:70px;
  958. background:inherit;
  959. background-color:rgba(255, 255, 255, 0);
  960. border:none;
  961. border-top:0px;
  962. border-right:0px;
  963. border-bottom:0px;
  964. border-radius:0px;
  965. border-top-left-radius:0px;
  966. border-bottom-left-radius:0px;
  967. -moz-box-shadow:none;
  968. -webkit-box-shadow:none;
  969. box-shadow:none;
  970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  971. font-style:normal;
  972. line-height:30px;
  973. }
  974. #u46035 {
  975. border-width:0px;
  976. position:absolute;
  977. left:48px;
  978. top:115px;
  979. width:191px;
  980. height:70px;
  981. display:flex;
  982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  983. font-style:normal;
  984. line-height:30px;
  985. }
  986. #u46035 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:5px 10px 5px 0px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u46035_text {
  994. border-width:0px;
  995. white-space:nowrap;
  996. text-transform:none;
  997. }
  998. #u46036 {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:0px;
  1002. top:0px;
  1003. width:0px;
  1004. height:0px;
  1005. }
  1006. #u46037_div {
  1007. border-width:0px;
  1008. position:absolute;
  1009. left:0px;
  1010. top:0px;
  1011. width:375px;
  1012. height:117px;
  1013. background:inherit;
  1014. background-color:rgba(255, 255, 255, 1);
  1015. border:none;
  1016. border-radius:4px;
  1017. -moz-box-shadow:none;
  1018. -webkit-box-shadow:none;
  1019. box-shadow:none;
  1020. }
  1021. #u46037 {
  1022. border-width:0px;
  1023. position:absolute;
  1024. left:29px;
  1025. top:215px;
  1026. width:375px;
  1027. height:117px;
  1028. display:flex;
  1029. }
  1030. #u46037 .text {
  1031. position:absolute;
  1032. align-self:center;
  1033. padding:2px 2px 2px 2px;
  1034. box-sizing:border-box;
  1035. width:100%;
  1036. }
  1037. #u46037_text {
  1038. border-width:0px;
  1039. word-wrap:break-word;
  1040. text-transform:none;
  1041. visibility:hidden;
  1042. }
  1043. #u46038_div {
  1044. border-width:0px;
  1045. position:absolute;
  1046. left:0px;
  1047. top:0px;
  1048. width:329px;
  1049. height:100px;
  1050. background:inherit;
  1051. background-color:rgba(255, 255, 255, 0);
  1052. border:none;
  1053. border-top:0px;
  1054. border-right:0px;
  1055. border-bottom:0px;
  1056. border-radius:0px;
  1057. border-top-left-radius:0px;
  1058. border-bottom-left-radius:0px;
  1059. -moz-box-shadow:none;
  1060. -webkit-box-shadow:none;
  1061. box-shadow:none;
  1062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1063. font-style:normal;
  1064. line-height:30px;
  1065. }
  1066. #u46038 {
  1067. border-width:0px;
  1068. position:absolute;
  1069. left:52px;
  1070. top:220px;
  1071. width:329px;
  1072. height:100px;
  1073. display:flex;
  1074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1075. font-style:normal;
  1076. line-height:30px;
  1077. }
  1078. #u46038 .text {
  1079. position:absolute;
  1080. align-self:center;
  1081. padding:5px 10px 5px 0px;
  1082. box-sizing:border-box;
  1083. width:100%;
  1084. }
  1085. #u46038_text {
  1086. border-width:0px;
  1087. word-wrap:break-word;
  1088. text-transform:none;
  1089. }
  1090. #u46039 {
  1091. border-width:0px;
  1092. position:absolute;
  1093. left:0px;
  1094. top:0px;
  1095. width:0px;
  1096. height:0px;
  1097. }
  1098. #u46040_img {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:0px;
  1102. top:0px;
  1103. width:7px;
  1104. height:11px;
  1105. }
  1106. #u46040 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:385px;
  1110. top:233px;
  1111. width:7px;
  1112. height:11px;
  1113. display:flex;
  1114. -webkit-transform:rotate(180deg);
  1115. -moz-transform:rotate(180deg);
  1116. -ms-transform:rotate(180deg);
  1117. transform:rotate(180deg);
  1118. }
  1119. #u46040 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:2px 2px 2px 2px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u46040_text {
  1127. border-width:0px;
  1128. word-wrap:break-word;
  1129. text-transform:none;
  1130. visibility:hidden;
  1131. }
  1132. #u46041 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:0px;
  1136. top:0px;
  1137. width:0px;
  1138. height:0px;
  1139. }
  1140. #u46042_div {
  1141. border-width:0px;
  1142. position:absolute;
  1143. left:0px;
  1144. top:0px;
  1145. width:375px;
  1146. height:60px;
  1147. background:inherit;
  1148. background-color:rgba(255, 255, 255, 1);
  1149. border:none;
  1150. border-radius:0px;
  1151. -moz-box-shadow:none;
  1152. -webkit-box-shadow:none;
  1153. box-shadow:none;
  1154. }
  1155. #u46042 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:29px;
  1159. top:558px;
  1160. width:375px;
  1161. height:60px;
  1162. display:flex;
  1163. }
  1164. #u46042 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u46042_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u46043_div {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:197px;
  1183. height:20px;
  1184. background:inherit;
  1185. background-color:rgba(255, 255, 255, 0);
  1186. border:none;
  1187. border-radius:0px;
  1188. -moz-box-shadow:none;
  1189. -webkit-box-shadow:none;
  1190. box-shadow:none;
  1191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1192. font-weight:400;
  1193. font-style:normal;
  1194. color:#000000;
  1195. }
  1196. #u46043 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:48px;
  1200. top:578px;
  1201. width:197px;
  1202. height:20px;
  1203. display:flex;
  1204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1205. font-weight:400;
  1206. font-style:normal;
  1207. color:#000000;
  1208. }
  1209. #u46043 .text {
  1210. position:absolute;
  1211. align-self:flex-start;
  1212. padding:0px 0px 0px 0px;
  1213. box-sizing:border-box;
  1214. width:100%;
  1215. }
  1216. #u46043_text {
  1217. border-width:0px;
  1218. white-space:nowrap;
  1219. text-transform:none;
  1220. }
  1221. #u46044_img {
  1222. border-width:0px;
  1223. position:absolute;
  1224. left:0px;
  1225. top:0px;
  1226. width:50px;
  1227. height:31px;
  1228. }
  1229. #u46044 {
  1230. border-width:0px;
  1231. position:absolute;
  1232. left:344px;
  1233. top:573px;
  1234. width:50px;
  1235. height:31px;
  1236. display:flex;
  1237. }
  1238. #u46044 .text {
  1239. position:absolute;
  1240. align-self:center;
  1241. padding:2px 2px 2px 2px;
  1242. box-sizing:border-box;
  1243. width:100%;
  1244. }
  1245. #u46044_text {
  1246. border-width:0px;
  1247. word-wrap:break-word;
  1248. text-transform:none;
  1249. visibility:hidden;
  1250. }
  1251. #u46045_div {
  1252. border-width:0px;
  1253. position:absolute;
  1254. left:0px;
  1255. top:0px;
  1256. width:340px;
  1257. height:40px;
  1258. background:inherit;
  1259. background-color:rgba(255, 255, 255, 1);
  1260. border:none;
  1261. border-radius:4px;
  1262. -moz-box-shadow:none;
  1263. -webkit-box-shadow:none;
  1264. box-shadow:none;
  1265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1266. font-weight:400;
  1267. font-style:normal;
  1268. color:#D9001B;
  1269. }
  1270. #u46045 {
  1271. border-width:0px;
  1272. position:absolute;
  1273. left:48px;
  1274. top:784px;
  1275. width:340px;
  1276. height:40px;
  1277. display:flex;
  1278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1279. font-weight:400;
  1280. font-style:normal;
  1281. color:#D9001B;
  1282. }
  1283. #u46045 .text {
  1284. position:absolute;
  1285. align-self:center;
  1286. padding:2px 2px 2px 2px;
  1287. box-sizing:border-box;
  1288. width:100%;
  1289. }
  1290. #u46045_text {
  1291. border-width:0px;
  1292. word-wrap:break-word;
  1293. text-transform:none;
  1294. }
  1295. #u46046 {
  1296. border-width:0px;
  1297. position:absolute;
  1298. left:0px;
  1299. top:0px;
  1300. width:0px;
  1301. height:0px;
  1302. }
  1303. #u46047_div {
  1304. border-width:0px;
  1305. position:absolute;
  1306. left:0px;
  1307. top:0px;
  1308. width:346px;
  1309. height:242px;
  1310. background:inherit;
  1311. background-color:rgba(255, 255, 255, 1);
  1312. border:none;
  1313. border-radius:9px;
  1314. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1315. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1316. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1317. }
  1318. #u46047 {
  1319. border-width:0px;
  1320. position:absolute;
  1321. left:498px;
  1322. top:421px;
  1323. width:346px;
  1324. height:242px;
  1325. display:flex;
  1326. }
  1327. #u46047 .text {
  1328. position:absolute;
  1329. align-self:center;
  1330. padding:2px 2px 2px 2px;
  1331. box-sizing:border-box;
  1332. width:100%;
  1333. }
  1334. #u46047_text {
  1335. border-width:0px;
  1336. word-wrap:break-word;
  1337. text-transform:none;
  1338. visibility:hidden;
  1339. }
  1340. #u46048_img {
  1341. border-width:0px;
  1342. position:absolute;
  1343. left:0px;
  1344. top:0px;
  1345. width:347px;
  1346. height:2px;
  1347. }
  1348. #u46048 {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:498px;
  1352. top:592px;
  1353. width:346px;
  1354. height:1px;
  1355. display:flex;
  1356. }
  1357. #u46048 .text {
  1358. position:absolute;
  1359. align-self:center;
  1360. padding:2px 2px 2px 2px;
  1361. box-sizing:border-box;
  1362. width:100%;
  1363. }
  1364. #u46048_text {
  1365. border-width:0px;
  1366. word-wrap:break-word;
  1367. text-transform:none;
  1368. visibility:hidden;
  1369. }
  1370. #u46049_img {
  1371. border-width:0px;
  1372. position:absolute;
  1373. left:0px;
  1374. top:0px;
  1375. width:2px;
  1376. height:68px;
  1377. }
  1378. #u46049 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:663px;
  1382. top:596px;
  1383. width:1px;
  1384. height:67px;
  1385. display:flex;
  1386. }
  1387. #u46049 .text {
  1388. position:absolute;
  1389. align-self:center;
  1390. padding:2px 2px 2px 2px;
  1391. box-sizing:border-box;
  1392. width:100%;
  1393. }
  1394. #u46049_text {
  1395. border-width:0px;
  1396. word-wrap:break-word;
  1397. text-transform:none;
  1398. visibility:hidden;
  1399. }
  1400. #u46050_div {
  1401. border-width:0px;
  1402. position:absolute;
  1403. left:0px;
  1404. top:0px;
  1405. width:105px;
  1406. height:30px;
  1407. background:inherit;
  1408. background-color:rgba(255, 255, 255, 0);
  1409. border:none;
  1410. border-radius:0px;
  1411. -moz-box-shadow:none;
  1412. -webkit-box-shadow:none;
  1413. box-shadow:none;
  1414. font-family:'ArialMT', 'Arial', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:22px;
  1418. color:#0099FF;
  1419. text-align:center;
  1420. }
  1421. #u46050 {
  1422. border-width:0px;
  1423. position:absolute;
  1424. left:531px;
  1425. top:618px;
  1426. width:105px;
  1427. height:30px;
  1428. display:flex;
  1429. font-family:'ArialMT', 'Arial', sans-serif;
  1430. font-weight:400;
  1431. font-style:normal;
  1432. font-size:22px;
  1433. color:#0099FF;
  1434. text-align:center;
  1435. }
  1436. #u46050 .text {
  1437. position:absolute;
  1438. align-self:center;
  1439. padding:0px 0px 0px 0px;
  1440. box-sizing:border-box;
  1441. width:100%;
  1442. }
  1443. #u46050_text {
  1444. border-width:0px;
  1445. word-wrap:break-word;
  1446. text-transform:none;
  1447. }
  1448. #u46051_div {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:0px;
  1452. top:0px;
  1453. width:105px;
  1454. height:30px;
  1455. background:inherit;
  1456. background-color:rgba(255, 255, 255, 0);
  1457. border:none;
  1458. border-radius:0px;
  1459. -moz-box-shadow:none;
  1460. -webkit-box-shadow:none;
  1461. box-shadow:none;
  1462. font-family:'ArialMT', 'Arial', sans-serif;
  1463. font-weight:400;
  1464. font-style:normal;
  1465. font-size:22px;
  1466. color:#0099FF;
  1467. text-align:center;
  1468. }
  1469. #u46051 {
  1470. border-width:0px;
  1471. position:absolute;
  1472. left:704px;
  1473. top:618px;
  1474. width:105px;
  1475. height:30px;
  1476. display:flex;
  1477. font-family:'ArialMT', 'Arial', sans-serif;
  1478. font-weight:400;
  1479. font-style:normal;
  1480. font-size:22px;
  1481. color:#0099FF;
  1482. text-align:center;
  1483. }
  1484. #u46051 .text {
  1485. position:absolute;
  1486. align-self:center;
  1487. padding:0px 0px 0px 0px;
  1488. box-sizing:border-box;
  1489. width:100%;
  1490. }
  1491. #u46051_text {
  1492. border-width:0px;
  1493. word-wrap:break-word;
  1494. text-transform:none;
  1495. }
  1496. #u46052_div {
  1497. border-width:0px;
  1498. position:absolute;
  1499. left:0px;
  1500. top:0px;
  1501. width:245px;
  1502. height:40px;
  1503. background:inherit;
  1504. background-color:rgba(255, 255, 255, 0);
  1505. border:none;
  1506. border-radius:0px;
  1507. -moz-box-shadow:none;
  1508. -webkit-box-shadow:none;
  1509. box-shadow:none;
  1510. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1511. font-weight:650;
  1512. font-style:normal;
  1513. font-size:22px;
  1514. text-align:center;
  1515. }
  1516. #u46052 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:560px;
  1520. top:437px;
  1521. width:245px;
  1522. height:40px;
  1523. display:flex;
  1524. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1525. font-weight:650;
  1526. font-style:normal;
  1527. font-size:22px;
  1528. text-align:center;
  1529. }
  1530. #u46052 .text {
  1531. position:absolute;
  1532. align-self:center;
  1533. padding:0px 0px 0px 0px;
  1534. box-sizing:border-box;
  1535. width:100%;
  1536. }
  1537. #u46052_text {
  1538. border-width:0px;
  1539. word-wrap:break-word;
  1540. text-transform:none;
  1541. }
  1542. #u46053_div {
  1543. border-width:0px;
  1544. position:absolute;
  1545. left:0px;
  1546. top:0px;
  1547. width:300px;
  1548. height:75px;
  1549. background:inherit;
  1550. background-color:rgba(255, 255, 255, 0);
  1551. border:none;
  1552. border-radius:0px;
  1553. -moz-box-shadow:none;
  1554. -webkit-box-shadow:none;
  1555. box-shadow:none;
  1556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1557. font-weight:400;
  1558. font-style:normal;
  1559. font-size:18px;
  1560. text-align:center;
  1561. }
  1562. #u46053 {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:521px;
  1566. top:492px;
  1567. width:300px;
  1568. height:75px;
  1569. display:flex;
  1570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1571. font-weight:400;
  1572. font-style:normal;
  1573. font-size:18px;
  1574. text-align:center;
  1575. }
  1576. #u46053 .text {
  1577. position:absolute;
  1578. align-self:flex-start;
  1579. padding:0px 0px 0px 0px;
  1580. box-sizing:border-box;
  1581. width:100%;
  1582. }
  1583. #u46053_text {
  1584. border-width:0px;
  1585. word-wrap:break-word;
  1586. text-transform:none;
  1587. }
  1588. #u46054 {
  1589. border-width:0px;
  1590. position:absolute;
  1591. left:0px;
  1592. top:0px;
  1593. width:0px;
  1594. height:0px;
  1595. }
  1596. #u46055_div {
  1597. border-width:0px;
  1598. position:absolute;
  1599. left:0px;
  1600. top:0px;
  1601. width:375px;
  1602. height:90px;
  1603. background:inherit;
  1604. background-color:rgba(255, 255, 255, 1);
  1605. border:none;
  1606. border-radius:4px;
  1607. -moz-box-shadow:none;
  1608. -webkit-box-shadow:none;
  1609. box-shadow:none;
  1610. }
  1611. #u46055 {
  1612. border-width:0px;
  1613. position:absolute;
  1614. left:29px;
  1615. top:333px;
  1616. width:375px;
  1617. height:90px;
  1618. display:flex;
  1619. }
  1620. #u46055 .text {
  1621. position:absolute;
  1622. align-self:center;
  1623. padding:2px 2px 2px 2px;
  1624. box-sizing:border-box;
  1625. width:100%;
  1626. }
  1627. #u46055_text {
  1628. border-width:0px;
  1629. word-wrap:break-word;
  1630. text-transform:none;
  1631. visibility:hidden;
  1632. }
  1633. #u46056_div {
  1634. border-width:0px;
  1635. position:absolute;
  1636. left:0px;
  1637. top:0px;
  1638. width:329px;
  1639. height:70px;
  1640. background:inherit;
  1641. background-color:rgba(255, 255, 255, 0);
  1642. border:none;
  1643. border-top:0px;
  1644. border-right:0px;
  1645. border-bottom:0px;
  1646. border-radius:0px;
  1647. border-top-left-radius:0px;
  1648. border-bottom-left-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-style:normal;
  1654. line-height:30px;
  1655. }
  1656. #u46056 {
  1657. border-width:0px;
  1658. position:absolute;
  1659. left:52px;
  1660. top:343px;
  1661. width:329px;
  1662. height:70px;
  1663. display:flex;
  1664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1665. font-style:normal;
  1666. line-height:30px;
  1667. }
  1668. #u46056 .text {
  1669. position:absolute;
  1670. align-self:center;
  1671. padding:5px 10px 5px 0px;
  1672. box-sizing:border-box;
  1673. width:100%;
  1674. }
  1675. #u46056_text {
  1676. border-width:0px;
  1677. word-wrap:break-word;
  1678. text-transform:none;
  1679. }
  1680. #u46057_img {
  1681. border-width:0px;
  1682. position:absolute;
  1683. left:0px;
  1684. top:0px;
  1685. width:7px;
  1686. height:11px;
  1687. }
  1688. #u46057 {
  1689. border-width:0px;
  1690. position:absolute;
  1691. left:385px;
  1692. top:389px;
  1693. width:7px;
  1694. height:11px;
  1695. display:flex;
  1696. -webkit-transform:rotate(180deg);
  1697. -moz-transform:rotate(180deg);
  1698. -ms-transform:rotate(180deg);
  1699. transform:rotate(180deg);
  1700. }
  1701. #u46057 .text {
  1702. position:absolute;
  1703. align-self:center;
  1704. padding:2px 2px 2px 2px;
  1705. box-sizing:border-box;
  1706. width:100%;
  1707. }
  1708. #u46057_text {
  1709. border-width:0px;
  1710. word-wrap:break-word;
  1711. text-transform:none;
  1712. visibility:hidden;
  1713. }
  1714. #u46058_div {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:0px;
  1718. top:0px;
  1719. width:57px;
  1720. height:40px;
  1721. background:inherit;
  1722. background-color:rgba(255, 255, 255, 0);
  1723. border:none;
  1724. border-radius:0px;
  1725. -moz-box-shadow:none;
  1726. -webkit-box-shadow:none;
  1727. box-shadow:none;
  1728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1729. font-weight:400;
  1730. font-style:normal;
  1731. color:#555555;
  1732. line-height:25px;
  1733. }
  1734. #u46058 {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:46px;
  1738. top:423px;
  1739. width:57px;
  1740. height:40px;
  1741. display:flex;
  1742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1743. font-weight:400;
  1744. font-style:normal;
  1745. color:#555555;
  1746. line-height:25px;
  1747. }
  1748. #u46058 .text {
  1749. position:absolute;
  1750. align-self:center;
  1751. padding:0px 0px 0px 0px;
  1752. box-sizing:border-box;
  1753. width:100%;
  1754. }
  1755. #u46058_text {
  1756. border-width:0px;
  1757. white-space:nowrap;
  1758. text-transform:none;
  1759. }
  1760. #u46059_div {
  1761. border-width:0px;
  1762. position:absolute;
  1763. left:0px;
  1764. top:0px;
  1765. width:287px;
  1766. height:27px;
  1767. background:inherit;
  1768. background-color:rgba(255, 255, 255, 0);
  1769. border:none;
  1770. border-top:0px;
  1771. border-right:0px;
  1772. border-bottom:0px;
  1773. border-radius:0px;
  1774. border-top-left-radius:0px;
  1775. border-bottom-left-radius:0px;
  1776. -moz-box-shadow:none;
  1777. -webkit-box-shadow:none;
  1778. box-shadow:none;
  1779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1780. font-weight:400;
  1781. font-style:normal;
  1782. font-size:12px;
  1783. color:#555555;
  1784. }
  1785. #u46059 {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:46px;
  1789. top:523px;
  1790. width:287px;
  1791. height:27px;
  1792. display:flex;
  1793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1794. font-weight:400;
  1795. font-style:normal;
  1796. font-size:12px;
  1797. color:#555555;
  1798. }
  1799. #u46059 .text {
  1800. position:absolute;
  1801. align-self:center;
  1802. padding:5px 10px 5px 0px;
  1803. box-sizing:border-box;
  1804. width:100%;
  1805. }
  1806. #u46059_text {
  1807. border-width:0px;
  1808. white-space:nowrap;
  1809. text-transform:none;
  1810. }
  1811. #u46060 {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:0px;
  1815. top:0px;
  1816. width:0px;
  1817. height:0px;
  1818. }
  1819. #u46061_div {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:375px;
  1825. height:60px;
  1826. background:inherit;
  1827. background-color:rgba(255, 255, 255, 1);
  1828. border:none;
  1829. border-radius:0px;
  1830. -moz-box-shadow:none;
  1831. -webkit-box-shadow:none;
  1832. box-shadow:none;
  1833. }
  1834. #u46061 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:29px;
  1838. top:463px;
  1839. width:375px;
  1840. height:60px;
  1841. display:flex;
  1842. }
  1843. #u46061 .text {
  1844. position:absolute;
  1845. align-self:center;
  1846. padding:2px 2px 2px 2px;
  1847. box-sizing:border-box;
  1848. width:100%;
  1849. }
  1850. #u46061_text {
  1851. border-width:0px;
  1852. word-wrap:break-word;
  1853. text-transform:none;
  1854. visibility:hidden;
  1855. }
  1856. #u46062_div {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:0px;
  1860. top:0px;
  1861. width:169px;
  1862. height:20px;
  1863. background:inherit;
  1864. background-color:rgba(255, 255, 255, 0);
  1865. border:none;
  1866. border-radius:0px;
  1867. -moz-box-shadow:none;
  1868. -webkit-box-shadow:none;
  1869. box-shadow:none;
  1870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1871. font-weight:400;
  1872. font-style:normal;
  1873. color:#000000;
  1874. }
  1875. #u46062 {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:48px;
  1879. top:483px;
  1880. width:169px;
  1881. height:20px;
  1882. display:flex;
  1883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1884. font-weight:400;
  1885. font-style:normal;
  1886. color:#000000;
  1887. }
  1888. #u46062 .text {
  1889. position:absolute;
  1890. align-self:flex-start;
  1891. padding:0px 0px 0px 0px;
  1892. box-sizing:border-box;
  1893. width:100%;
  1894. }
  1895. #u46062_text {
  1896. border-width:0px;
  1897. white-space:nowrap;
  1898. text-transform:none;
  1899. }
  1900. #u46063_img {
  1901. border-width:0px;
  1902. position:absolute;
  1903. left:0px;
  1904. top:0px;
  1905. width:50px;
  1906. height:31px;
  1907. }
  1908. #u46063 {
  1909. border-width:0px;
  1910. position:absolute;
  1911. left:344px;
  1912. top:478px;
  1913. width:50px;
  1914. height:31px;
  1915. display:flex;
  1916. }
  1917. #u46063 .text {
  1918. position:absolute;
  1919. align-self:center;
  1920. padding:2px 2px 2px 2px;
  1921. box-sizing:border-box;
  1922. width:100%;
  1923. }
  1924. #u46063_text {
  1925. border-width:0px;
  1926. word-wrap:break-word;
  1927. text-transform:none;
  1928. visibility:hidden;
  1929. }
  1930. #u46064_div {
  1931. border-width:0px;
  1932. position:absolute;
  1933. left:0px;
  1934. top:0px;
  1935. width:251px;
  1936. height:27px;
  1937. background:inherit;
  1938. background-color:rgba(255, 255, 255, 0);
  1939. border:none;
  1940. border-top:0px;
  1941. border-right:0px;
  1942. border-bottom:0px;
  1943. border-radius:0px;
  1944. border-top-left-radius:0px;
  1945. border-bottom-left-radius:0px;
  1946. -moz-box-shadow:none;
  1947. -webkit-box-shadow:none;
  1948. box-shadow:none;
  1949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1950. font-weight:400;
  1951. font-style:normal;
  1952. font-size:12px;
  1953. color:#555555;
  1954. }
  1955. #u46064 {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:46px;
  1959. top:618px;
  1960. width:251px;
  1961. height:27px;
  1962. display:flex;
  1963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1964. font-weight:400;
  1965. font-style:normal;
  1966. font-size:12px;
  1967. color:#555555;
  1968. }
  1969. #u46064 .text {
  1970. position:absolute;
  1971. align-self:center;
  1972. padding:5px 10px 5px 0px;
  1973. box-sizing:border-box;
  1974. width:100%;
  1975. }
  1976. #u46064_text {
  1977. border-width:0px;
  1978. white-space:nowrap;
  1979. text-transform:none;
  1980. }