styles.css 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148
  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. #u44769 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u44770 {
  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. #u44770 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u44770_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u44770_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u44771_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. #u44771 {
  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. #u44771 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u44771_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u44772 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u44773_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. #u44773 {
  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. #u44773 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u44773_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u44774 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u44775 {
  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. #u44775 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u44775_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u44775_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u44776 {
  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. #u44776 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u44776_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u44776_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u44777 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u44778 {
  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. #u44778 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u44778_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u44778_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u44779 {
  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. #u44779 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u44779_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u44779_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u44780 {
  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. #u44780 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u44780_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u44780_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u44781 {
  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. #u44781 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u44781_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u44781_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u44782 {
  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. #u44782 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u44782_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u44782_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u44783_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. #u44783 {
  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. #u44783 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u44783_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u44784 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u44785 {
  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. #u44785 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u44785_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u44785_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u44786_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. #u44786 {
  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. #u44786 .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. #u44786_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u44787 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u44788 {
  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. #u44788 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u44788_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u44788_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u44789_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. #u44789 {
  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. #u44789 .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. #u44789_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u44790_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. #u44790 {
  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. #u44790 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u44790_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u44791 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u44792 {
  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. #u44792 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u44792_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u44792_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u44793_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. #u44793 {
  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. #u44793 .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. #u44793_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u44794 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u44795 {
  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. #u44795 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u44795_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u44795_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u44796_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. #u44796 {
  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. #u44796 .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. #u44796_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u44797_div {
  803. border-width:0px;
  804. position:absolute;
  805. left:0px;
  806. top:0px;
  807. width:375px;
  808. height:732px;
  809. background:inherit;
  810. background-color:rgba(242, 242, 242, 0.996078431372549);
  811. border-top:0px;
  812. border-radius:28px;
  813. border-top-left-radius:0px;
  814. border-top-right-radius:0px;
  815. filter:drop-shadow(none);
  816. transition:none;
  817. }
  818. #u44797 {
  819. border-width:0px;
  820. position:absolute;
  821. left:29px;
  822. top:107px;
  823. width:375px;
  824. height:732px;
  825. display:flex;
  826. transition:none;
  827. transform-origin:50% 50%;
  828. }
  829. #u44797 .text {
  830. position:absolute;
  831. align-self:center;
  832. padding:2px 2px 2px 2px;
  833. box-sizing:border-box;
  834. width:100%;
  835. }
  836. #u44797_text {
  837. border-width:0px;
  838. word-wrap:break-word;
  839. text-transform:none;
  840. visibility:hidden;
  841. }
  842. #u44798 {
  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. #u44798 .text {
  853. position:absolute;
  854. align-self:center;
  855. padding:2px 2px 2px 2px;
  856. box-sizing:border-box;
  857. width:100%;
  858. }
  859. #u44798_img {
  860. border-width:0px;
  861. position:absolute;
  862. left:0px;
  863. top:0px;
  864. width:375px;
  865. height:44px;
  866. }
  867. #u44798_text {
  868. border-width:0px;
  869. word-wrap:break-word;
  870. text-transform:none;
  871. visibility:hidden;
  872. }
  873. #u44799 {
  874. border-width:0px;
  875. position:absolute;
  876. left:0px;
  877. top:0px;
  878. width:0px;
  879. height:0px;
  880. }
  881. #u44800 {
  882. border-width:0px;
  883. position:absolute;
  884. left:39px;
  885. top:207px;
  886. width:355px;
  887. height:180px;
  888. display:flex;
  889. transition:none;
  890. }
  891. #u44800 .text {
  892. position:absolute;
  893. align-self:center;
  894. padding:2px 2px 2px 2px;
  895. box-sizing:border-box;
  896. width:100%;
  897. }
  898. #u44800_img {
  899. border-width:0px;
  900. position:absolute;
  901. left:0px;
  902. top:0px;
  903. width:355px;
  904. height:180px;
  905. }
  906. #u44800_text {
  907. border-width:0px;
  908. word-wrap:break-word;
  909. text-transform:none;
  910. visibility:hidden;
  911. }
  912. #u44801_div {
  913. border-width:0px;
  914. position:absolute;
  915. left:0px;
  916. top:0px;
  917. width:94px;
  918. height:30px;
  919. background:inherit;
  920. background-color:rgba(255, 255, 255, 0);
  921. border-left:0px;
  922. border-top:0px;
  923. border-right:0px;
  924. border-radius:0px;
  925. border-bottom-right-radius:0px;
  926. border-bottom-left-radius:0px;
  927. filter:drop-shadow(none);
  928. transition:none;
  929. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  930. font-weight:500;
  931. font-style:normal;
  932. font-size:14px;
  933. line-height:30px;
  934. }
  935. #u44801 {
  936. border-width:0px;
  937. position:absolute;
  938. left:55px;
  939. top:213px;
  940. width:94px;
  941. height:30px;
  942. display:flex;
  943. transition:none;
  944. transform-origin:50% 50%;
  945. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  946. font-weight:500;
  947. font-style:normal;
  948. font-size:14px;
  949. line-height:30px;
  950. }
  951. #u44801 .text {
  952. position:absolute;
  953. align-self:flex-start;
  954. padding:0px 0px 0px 0px;
  955. box-sizing:border-box;
  956. width:100%;
  957. }
  958. #u44801_text {
  959. border-width:0px;
  960. white-space:nowrap;
  961. text-transform:none;
  962. }
  963. #u44802_div {
  964. border-width:0px;
  965. position:absolute;
  966. left:0px;
  967. top:0px;
  968. width:325px;
  969. height:120px;
  970. background:inherit;
  971. background-color:rgba(255, 255, 255, 0);
  972. border-left:0px;
  973. border-top:0px;
  974. border-right:0px;
  975. border-radius:0px;
  976. border-bottom-right-radius:0px;
  977. border-bottom-left-radius:0px;
  978. filter:drop-shadow(none);
  979. transition:none;
  980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  981. font-weight:400;
  982. font-style:normal;
  983. font-size:12px;
  984. line-height:20px;
  985. }
  986. #u44802 {
  987. border-width:0px;
  988. position:absolute;
  989. left:55px;
  990. top:248px;
  991. width:325px;
  992. height:120px;
  993. display:flex;
  994. transition:none;
  995. transform-origin:50% 50%;
  996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  997. font-weight:400;
  998. font-style:normal;
  999. font-size:12px;
  1000. line-height:20px;
  1001. }
  1002. #u44802 .text {
  1003. position:absolute;
  1004. align-self:flex-start;
  1005. padding:0px 0px 0px 0px;
  1006. box-sizing:border-box;
  1007. width:100%;
  1008. }
  1009. #u44802_text {
  1010. border-width:0px;
  1011. word-wrap:break-word;
  1012. text-transform:none;
  1013. }
  1014. #u44803_div {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:0px;
  1018. top:0px;
  1019. width:87px;
  1020. height:25px;
  1021. background:inherit;
  1022. background-color:rgba(245, 154, 35, 1);
  1023. border-right:0px;
  1024. border-radius:26px;
  1025. border-top-right-radius:0px;
  1026. border-bottom-right-radius:0px;
  1027. filter:drop-shadow(none);
  1028. transition:none;
  1029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1030. font-weight:400;
  1031. font-style:normal;
  1032. font-size:10px;
  1033. color:#FFFFFF;
  1034. line-height:25px;
  1035. }
  1036. #u44803 {
  1037. border-width:0px;
  1038. position:absolute;
  1039. left:307px;
  1040. top:338px;
  1041. width:87px;
  1042. height:25px;
  1043. display:flex;
  1044. transition:none;
  1045. transform-origin:50% 50%;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. font-size:10px;
  1050. color:#FFFFFF;
  1051. line-height:25px;
  1052. }
  1053. #u44803 .text {
  1054. position:absolute;
  1055. align-self:center;
  1056. padding:0px 0px 0px 10px;
  1057. box-sizing:border-box;
  1058. width:100%;
  1059. }
  1060. #u44803_text {
  1061. border-width:0px;
  1062. white-space:nowrap;
  1063. text-transform:none;
  1064. }
  1065. #u44804_div {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:0px;
  1069. top:0px;
  1070. width:9px;
  1071. height:9px;
  1072. background:inherit;
  1073. background-color:rgba(255, 255, 255, 0);
  1074. box-sizing:border-box;
  1075. border-width:1px;
  1076. border-style:solid;
  1077. border-color:rgba(127, 127, 127, 1);
  1078. border-right:0px;
  1079. border-bottom:0px;
  1080. border-radius:0px;
  1081. border-top-right-radius:0px;
  1082. border-bottom-left-radius:0px;
  1083. filter:drop-shadow(none);
  1084. transition:none;
  1085. }
  1086. #u44804 {
  1087. border-width:0px;
  1088. position:absolute;
  1089. left:370px;
  1090. top:221px;
  1091. width:9px;
  1092. height:9px;
  1093. display:flex;
  1094. -webkit-transform:rotate(135deg);
  1095. -moz-transform:rotate(135deg);
  1096. -ms-transform:rotate(135deg);
  1097. transform:rotate(135deg);
  1098. transition:none;
  1099. transform-origin:50% 50%;
  1100. }
  1101. #u44804 .text {
  1102. position:absolute;
  1103. align-self:center;
  1104. padding:2px 2px 2px 2px;
  1105. box-sizing:border-box;
  1106. width:100%;
  1107. }
  1108. #u44804_text {
  1109. border-width:0px;
  1110. word-wrap:break-word;
  1111. text-transform:none;
  1112. visibility:hidden;
  1113. }
  1114. #u44805_div {
  1115. border-width:0px;
  1116. position:absolute;
  1117. left:0px;
  1118. top:0px;
  1119. width:302px;
  1120. height:90px;
  1121. background:inherit;
  1122. background-color:rgba(255, 255, 255, 0);
  1123. border-left:0px;
  1124. border-top:0px;
  1125. border-right:0px;
  1126. border-radius:0px;
  1127. border-bottom-right-radius:0px;
  1128. border-bottom-left-radius:0px;
  1129. filter:drop-shadow(none);
  1130. transition:none;
  1131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1132. font-weight:400;
  1133. font-style:normal;
  1134. font-size:12px;
  1135. color:#1890FF;
  1136. line-height:30px;
  1137. }
  1138. #u44805 {
  1139. border-width:0px;
  1140. position:absolute;
  1141. left:48px;
  1142. top:396px;
  1143. width:302px;
  1144. height:90px;
  1145. display:flex;
  1146. transition:none;
  1147. transform-origin:50% 50%;
  1148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. font-size:12px;
  1152. color:#1890FF;
  1153. line-height:30px;
  1154. }
  1155. #u44805 .text {
  1156. position:absolute;
  1157. align-self:flex-start;
  1158. padding:0px 0px 0px 0px;
  1159. box-sizing:border-box;
  1160. width:100%;
  1161. }
  1162. #u44805_text {
  1163. border-width:0px;
  1164. word-wrap:break-word;
  1165. text-transform:none;
  1166. }
  1167. #u44806 {
  1168. border-width:0px;
  1169. position:absolute;
  1170. left:0px;
  1171. top:0px;
  1172. width:0px;
  1173. height:0px;
  1174. }
  1175. #u44807_div {
  1176. border-width:0px;
  1177. position:absolute;
  1178. left:0px;
  1179. top:0px;
  1180. width:375px;
  1181. height:40px;
  1182. background:inherit;
  1183. background-color:rgba(255, 255, 255, 1);
  1184. box-sizing:border-box;
  1185. border-width:1px;
  1186. border-style:solid;
  1187. border-color:rgba(215, 215, 215, 1);
  1188. border-left:0px;
  1189. border-top:0px;
  1190. border-right:0px;
  1191. border-radius:0px;
  1192. border-bottom-right-radius:0px;
  1193. border-bottom-left-radius:0px;
  1194. filter:drop-shadow(none);
  1195. transition:none;
  1196. }
  1197. #u44807 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:29px;
  1201. top:66px;
  1202. width:375px;
  1203. height:40px;
  1204. display:flex;
  1205. transition:none;
  1206. transform-origin:50% 50%;
  1207. }
  1208. #u44807 .text {
  1209. position:absolute;
  1210. align-self:center;
  1211. padding:2px 2px 2px 2px;
  1212. box-sizing:border-box;
  1213. width:100%;
  1214. }
  1215. #u44807_text {
  1216. border-width:0px;
  1217. word-wrap:break-word;
  1218. text-transform:none;
  1219. visibility:hidden;
  1220. }
  1221. #u44808 {
  1222. border-width:0px;
  1223. position:absolute;
  1224. left:0px;
  1225. top:0px;
  1226. width:0px;
  1227. height:0px;
  1228. }
  1229. #u44809_div {
  1230. border-width:0px;
  1231. position:absolute;
  1232. left:0px;
  1233. top:0px;
  1234. width:88px;
  1235. height:32px;
  1236. background:inherit;
  1237. background-color:rgba(255, 255, 255, 1);
  1238. box-sizing:border-box;
  1239. border-width:1px;
  1240. border-style:solid;
  1241. border-color:rgba(242, 242, 242, 1);
  1242. border-radius:33px;
  1243. filter:drop-shadow(none);
  1244. transition:none;
  1245. }
  1246. #u44809 {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:309px;
  1250. top:71px;
  1251. width:88px;
  1252. height:32px;
  1253. display:flex;
  1254. transition:none;
  1255. transform-origin:50% 50%;
  1256. }
  1257. #u44809 .text {
  1258. position:absolute;
  1259. align-self:center;
  1260. padding:2px 2px 2px 2px;
  1261. box-sizing:border-box;
  1262. width:100%;
  1263. }
  1264. #u44809_text {
  1265. border-width:0px;
  1266. word-wrap:break-word;
  1267. text-transform:none;
  1268. visibility:hidden;
  1269. }
  1270. #u44810 {
  1271. border-width:0px;
  1272. position:absolute;
  1273. left:0px;
  1274. top:0px;
  1275. width:0px;
  1276. height:0px;
  1277. }
  1278. #u44811 {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:372px;
  1282. top:78px;
  1283. width:18px;
  1284. height:18px;
  1285. display:flex;
  1286. transition:none;
  1287. }
  1288. #u44811 .text {
  1289. position:absolute;
  1290. align-self:center;
  1291. padding:2px 2px 2px 2px;
  1292. box-sizing:border-box;
  1293. width:100%;
  1294. }
  1295. #u44811_img {
  1296. border-width:0px;
  1297. position:absolute;
  1298. left:0px;
  1299. top:0px;
  1300. width:18px;
  1301. height:18px;
  1302. }
  1303. #u44811_text {
  1304. border-width:0px;
  1305. word-wrap:break-word;
  1306. text-transform:none;
  1307. visibility:hidden;
  1308. }
  1309. #u44812 {
  1310. border-width:0px;
  1311. position:absolute;
  1312. left:378px;
  1313. top:84px;
  1314. width:6px;
  1315. height:6px;
  1316. display:flex;
  1317. transition:none;
  1318. }
  1319. #u44812 .text {
  1320. position:absolute;
  1321. align-self:center;
  1322. padding:2px 2px 2px 2px;
  1323. box-sizing:border-box;
  1324. width:100%;
  1325. }
  1326. #u44812_img {
  1327. border-width:0px;
  1328. position:absolute;
  1329. left:0px;
  1330. top:0px;
  1331. width:6px;
  1332. height:6px;
  1333. }
  1334. #u44812_text {
  1335. border-width:0px;
  1336. word-wrap:break-word;
  1337. text-transform:none;
  1338. visibility:hidden;
  1339. }
  1340. #u44813 {
  1341. border-width:0px;
  1342. position:absolute;
  1343. left:0px;
  1344. top:0px;
  1345. width:0px;
  1346. height:0px;
  1347. }
  1348. #u44814 {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:323px;
  1352. top:85px;
  1353. width:5px;
  1354. height:5px;
  1355. display:flex;
  1356. transition:none;
  1357. }
  1358. #u44814 .text {
  1359. position:absolute;
  1360. align-self:center;
  1361. padding:2px 2px 2px 2px;
  1362. box-sizing:border-box;
  1363. width:100%;
  1364. }
  1365. #u44814_img {
  1366. border-width:0px;
  1367. position:absolute;
  1368. left:0px;
  1369. top:0px;
  1370. width:5px;
  1371. height:5px;
  1372. }
  1373. #u44814_text {
  1374. border-width:0px;
  1375. word-wrap:break-word;
  1376. text-transform:none;
  1377. visibility:hidden;
  1378. }
  1379. #u44815 {
  1380. border-width:0px;
  1381. position:absolute;
  1382. left:339px;
  1383. top:85px;
  1384. width:5px;
  1385. height:5px;
  1386. display:flex;
  1387. transition:none;
  1388. }
  1389. #u44815 .text {
  1390. position:absolute;
  1391. align-self:center;
  1392. padding:2px 2px 2px 2px;
  1393. box-sizing:border-box;
  1394. width:100%;
  1395. }
  1396. #u44815_img {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:5px;
  1402. height:5px;
  1403. }
  1404. #u44815_text {
  1405. border-width:0px;
  1406. word-wrap:break-word;
  1407. text-transform:none;
  1408. visibility:hidden;
  1409. }
  1410. #u44816 {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:330px;
  1414. top:84px;
  1415. width:7px;
  1416. height:7px;
  1417. display:flex;
  1418. transition:none;
  1419. }
  1420. #u44816 .text {
  1421. position:absolute;
  1422. align-self:center;
  1423. padding:2px 2px 2px 2px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u44816_img {
  1428. border-width:0px;
  1429. position:absolute;
  1430. left:0px;
  1431. top:0px;
  1432. width:7px;
  1433. height:7px;
  1434. }
  1435. #u44816_text {
  1436. border-width:0px;
  1437. word-wrap:break-word;
  1438. text-transform:none;
  1439. visibility:hidden;
  1440. }
  1441. #u44817 {
  1442. border-width:0px;
  1443. position:absolute;
  1444. left:347px;
  1445. top:87px;
  1446. width:18px;
  1447. height:1px;
  1448. display:flex;
  1449. -webkit-transform:rotate(90deg);
  1450. -moz-transform:rotate(90deg);
  1451. -ms-transform:rotate(90deg);
  1452. transform:rotate(90deg);
  1453. transition:none;
  1454. }
  1455. #u44817 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u44817_img {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:19px;
  1468. height:2px;
  1469. }
  1470. #u44817_text {
  1471. border-width:0px;
  1472. word-wrap:break-word;
  1473. text-transform:none;
  1474. visibility:hidden;
  1475. }
  1476. #u44818_div {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:0px;
  1480. top:0px;
  1481. width:12px;
  1482. height:12px;
  1483. background:inherit;
  1484. background-color:rgba(255, 255, 255, 0);
  1485. box-sizing:border-box;
  1486. border-width:2px;
  1487. border-style:solid;
  1488. border-color:rgba(51, 51, 51, 1);
  1489. border-right:0px;
  1490. border-bottom:0px;
  1491. border-radius:0px;
  1492. border-top-right-radius:0px;
  1493. border-bottom-left-radius:0px;
  1494. filter:drop-shadow(none);
  1495. transition:none;
  1496. }
  1497. #u44818 {
  1498. border-width:0px;
  1499. position:absolute;
  1500. left:44px;
  1501. top:80px;
  1502. width:12px;
  1503. height:12px;
  1504. display:flex;
  1505. -webkit-transform:rotate(315deg);
  1506. -moz-transform:rotate(315deg);
  1507. -ms-transform:rotate(315deg);
  1508. transform:rotate(315deg);
  1509. transition:none;
  1510. transform-origin:50% 50%;
  1511. }
  1512. #u44818 .text {
  1513. position:absolute;
  1514. align-self:center;
  1515. padding:2px 2px 2px 2px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u44818_text {
  1520. border-width:0px;
  1521. word-wrap:break-word;
  1522. text-transform:none;
  1523. visibility:hidden;
  1524. }
  1525. #u44819_div {
  1526. border-width:0px;
  1527. position:absolute;
  1528. left:0px;
  1529. top:0px;
  1530. width:97px;
  1531. height:22px;
  1532. background:inherit;
  1533. background-color:rgba(255, 255, 255, 0);
  1534. border-radius:0px;
  1535. filter:drop-shadow(none);
  1536. transition:none;
  1537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1538. font-weight:400;
  1539. font-style:normal;
  1540. font-size:16px;
  1541. color:#000000;
  1542. }
  1543. #u44819 {
  1544. border-width:0px;
  1545. position:absolute;
  1546. left:168px;
  1547. top:75px;
  1548. width:97px;
  1549. height:22px;
  1550. display:flex;
  1551. transition:none;
  1552. transform-origin:50% 50%;
  1553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1554. font-weight:400;
  1555. font-style:normal;
  1556. font-size:16px;
  1557. color:#000000;
  1558. }
  1559. #u44819 .text {
  1560. position:absolute;
  1561. align-self:flex-start;
  1562. padding:0px 0px 0px 0px;
  1563. box-sizing:border-box;
  1564. width:100%;
  1565. }
  1566. #u44819_text {
  1567. border-width:0px;
  1568. white-space:nowrap;
  1569. text-transform:none;
  1570. }
  1571. #u44820 {
  1572. border-width:0px;
  1573. position:absolute;
  1574. left:70px;
  1575. top:75px;
  1576. width:23px;
  1577. height:23px;
  1578. display:flex;
  1579. transition:none;
  1580. }
  1581. #u44820 .text {
  1582. position:absolute;
  1583. align-self:center;
  1584. padding:2px 2px 2px 2px;
  1585. box-sizing:border-box;
  1586. width:100%;
  1587. }
  1588. #u44820_img {
  1589. border-width:0px;
  1590. position:absolute;
  1591. left:0px;
  1592. top:0px;
  1593. width:23px;
  1594. height:23px;
  1595. }
  1596. #u44820_text {
  1597. border-width:0px;
  1598. word-wrap:break-word;
  1599. text-transform:none;
  1600. visibility:hidden;
  1601. }
  1602. #u44821 {
  1603. border-width:0px;
  1604. position:absolute;
  1605. left:0px;
  1606. top:0px;
  1607. width:0px;
  1608. height:0px;
  1609. }
  1610. #u44822_div {
  1611. border-width:0px;
  1612. position:absolute;
  1613. left:0px;
  1614. top:0px;
  1615. width:375px;
  1616. height:50px;
  1617. background:inherit;
  1618. background-color:rgba(255, 255, 255, 1);
  1619. border-radius:0px;
  1620. filter:drop-shadow(none);
  1621. transition:none;
  1622. }
  1623. #u44822 {
  1624. border-width:0px;
  1625. position:absolute;
  1626. left:29px;
  1627. top:106px;
  1628. width:375px;
  1629. height:50px;
  1630. display:flex;
  1631. transition:none;
  1632. transform-origin:50% 50%;
  1633. }
  1634. #u44822 .text {
  1635. position:absolute;
  1636. align-self:center;
  1637. padding:2px 2px 2px 2px;
  1638. box-sizing:border-box;
  1639. width:100%;
  1640. }
  1641. #u44822_text {
  1642. border-width:0px;
  1643. word-wrap:break-word;
  1644. text-transform:none;
  1645. visibility:hidden;
  1646. }
  1647. #u44823 {
  1648. border-width:0px;
  1649. position:absolute;
  1650. left:0px;
  1651. top:0px;
  1652. width:0px;
  1653. height:0px;
  1654. }
  1655. #u44824 {
  1656. border-width:0px;
  1657. position:absolute;
  1658. left:0px;
  1659. top:0px;
  1660. width:0px;
  1661. height:0px;
  1662. }
  1663. #u44825_div {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:0px;
  1667. top:0px;
  1668. width:280px;
  1669. height:30px;
  1670. background:inherit;
  1671. background-color:rgba(242, 242, 242, 1);
  1672. border-radius:20px;
  1673. filter:drop-shadow(none);
  1674. transition:none;
  1675. }
  1676. #u44825 {
  1677. border-width:0px;
  1678. position:absolute;
  1679. left:42px;
  1680. top:116px;
  1681. width:280px;
  1682. height:30px;
  1683. display:flex;
  1684. transition:none;
  1685. transform-origin:50% 50%;
  1686. }
  1687. #u44825 .text {
  1688. position:absolute;
  1689. align-self:center;
  1690. padding:2px 2px 2px 2px;
  1691. box-sizing:border-box;
  1692. width:100%;
  1693. }
  1694. #u44825_text {
  1695. border-width:0px;
  1696. word-wrap:break-word;
  1697. text-transform:none;
  1698. visibility:hidden;
  1699. }
  1700. #u44826_input {
  1701. position:absolute;
  1702. left:0px;
  1703. top:0px;
  1704. width:252px;
  1705. height:22px;
  1706. padding:2px 2px 2px 2px;
  1707. font-family:'ArialMT', 'Arial', sans-serif;
  1708. font-weight:400;
  1709. font-style:normal;
  1710. font-size:12px;
  1711. letter-spacing:normal;
  1712. color:#7F7F7F;
  1713. vertical-align:none;
  1714. text-align:left;
  1715. text-transform:none;
  1716. background-color:transparent;
  1717. border-color:transparent;
  1718. }
  1719. #u44826_input.disabled {
  1720. position:absolute;
  1721. left:0px;
  1722. top:0px;
  1723. width:252px;
  1724. height:22px;
  1725. padding:2px 2px 2px 2px;
  1726. font-family:'ArialMT', 'Arial', sans-serif;
  1727. font-weight:400;
  1728. font-style:normal;
  1729. font-size:12px;
  1730. letter-spacing:normal;
  1731. color:#7F7F7F;
  1732. vertical-align:none;
  1733. text-align:left;
  1734. text-transform:none;
  1735. background-color:transparent;
  1736. border-color:transparent;
  1737. }
  1738. #u44826_div {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:0px;
  1742. top:0px;
  1743. width:252px;
  1744. height:22px;
  1745. background:inherit;
  1746. background-color:rgba(255, 255, 255, 0);
  1747. border-radius:0px;
  1748. filter:drop-shadow(none);
  1749. transition:none;
  1750. font-size:12px;
  1751. color:#7F7F7F;
  1752. }
  1753. #u44826 {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:56px;
  1757. top:120px;
  1758. width:252px;
  1759. height:22px;
  1760. display:flex;
  1761. transition:none;
  1762. transform-origin:50% 50%;
  1763. font-size:12px;
  1764. color:#7F7F7F;
  1765. }
  1766. #u44826 .text {
  1767. position:absolute;
  1768. align-self:flex-start;
  1769. padding:2px 2px 2px 2px;
  1770. box-sizing:border-box;
  1771. width:100%;
  1772. }
  1773. #u44826_div.disabled {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:0px;
  1777. top:0px;
  1778. width:252px;
  1779. height:22px;
  1780. background:inherit;
  1781. background-color:rgba(240, 240, 240, 1);
  1782. border-radius:0px;
  1783. filter:drop-shadow(none);
  1784. transition:none;
  1785. font-size:12px;
  1786. color:#7F7F7F;
  1787. }
  1788. #u44826.disabled {
  1789. }
  1790. .u44826_input_option {
  1791. font-size:12px;
  1792. }
  1793. #u44827_div {
  1794. border-width:0px;
  1795. position:absolute;
  1796. left:0px;
  1797. top:0px;
  1798. width:64px;
  1799. height:30px;
  1800. background:inherit;
  1801. background-color:rgba(255, 255, 255, 0);
  1802. border-left:0px;
  1803. border-top:0px;
  1804. border-right:0px;
  1805. border-radius:0px;
  1806. border-bottom-right-radius:0px;
  1807. border-bottom-left-radius:0px;
  1808. filter:drop-shadow(none);
  1809. transition:none;
  1810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1811. font-weight:400;
  1812. font-style:normal;
  1813. font-size:12px;
  1814. color:#1890FF;
  1815. line-height:30px;
  1816. }
  1817. #u44827 {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:332px;
  1821. top:116px;
  1822. width:64px;
  1823. height:30px;
  1824. display:flex;
  1825. transition:none;
  1826. transform-origin:50% 50%;
  1827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1828. font-weight:400;
  1829. font-style:normal;
  1830. font-size:12px;
  1831. color:#1890FF;
  1832. line-height:30px;
  1833. }
  1834. #u44827 .text {
  1835. position:absolute;
  1836. align-self:flex-start;
  1837. padding:0px 0px 0px 0px;
  1838. box-sizing:border-box;
  1839. width:100%;
  1840. }
  1841. #u44827_text {
  1842. border-width:0px;
  1843. white-space:nowrap;
  1844. text-transform:none;
  1845. }
  1846. #u44828 {
  1847. border-width:0px;
  1848. position:absolute;
  1849. left:0px;
  1850. top:0px;
  1851. width:0px;
  1852. height:0px;
  1853. }
  1854. #u44829_div {
  1855. border-width:0px;
  1856. position:absolute;
  1857. left:0px;
  1858. top:0px;
  1859. width:375px;
  1860. height:41px;
  1861. background:inherit;
  1862. background-color:rgba(255, 255, 255, 1);
  1863. border-radius:0px;
  1864. filter:drop-shadow(none);
  1865. transition:none;
  1866. }
  1867. #u44829 {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:29px;
  1871. top:156px;
  1872. width:375px;
  1873. height:41px;
  1874. display:flex;
  1875. transition:none;
  1876. transform-origin:50% 50%;
  1877. }
  1878. #u44829 .text {
  1879. position:absolute;
  1880. align-self:center;
  1881. padding:2px 2px 2px 2px;
  1882. box-sizing:border-box;
  1883. width:100%;
  1884. }
  1885. #u44829_text {
  1886. border-width:0px;
  1887. word-wrap:break-word;
  1888. text-transform:none;
  1889. visibility:hidden;
  1890. }
  1891. #u44830_div {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:0px;
  1895. top:0px;
  1896. width:37px;
  1897. height:40px;
  1898. background:inherit;
  1899. background-color:rgba(255, 255, 255, 0);
  1900. border-left:0px;
  1901. border-top:0px;
  1902. border-right:0px;
  1903. border-radius:0px;
  1904. border-bottom-right-radius:0px;
  1905. border-bottom-left-radius:0px;
  1906. filter:drop-shadow(none);
  1907. transition:none;
  1908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1909. font-weight:400;
  1910. font-style:normal;
  1911. font-size:12px;
  1912. text-align:center;
  1913. }
  1914. #u44830 {
  1915. border-width:0px;
  1916. position:absolute;
  1917. left:111px;
  1918. top:156px;
  1919. width:37px;
  1920. height:40px;
  1921. display:flex;
  1922. transition:none;
  1923. transform-origin:50% 50%;
  1924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1925. font-weight:400;
  1926. font-style:normal;
  1927. font-size:12px;
  1928. text-align:center;
  1929. }
  1930. #u44830 .text {
  1931. position:absolute;
  1932. align-self:center;
  1933. padding:0px 0px 0px 0px;
  1934. box-sizing:border-box;
  1935. width:100%;
  1936. }
  1937. #u44830_text {
  1938. border-width:0px;
  1939. white-space:nowrap;
  1940. text-transform:none;
  1941. }
  1942. #u44831_div {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:0px;
  1946. top:0px;
  1947. width:37px;
  1948. height:40px;
  1949. background:inherit;
  1950. background-color:rgba(255, 255, 255, 0);
  1951. box-sizing:border-box;
  1952. border-width:2px;
  1953. border-style:solid;
  1954. border-color:rgba(24, 144, 255, 1);
  1955. border-left:0px;
  1956. border-top:0px;
  1957. border-right:0px;
  1958. border-radius:0px;
  1959. border-bottom-right-radius:0px;
  1960. border-bottom-left-radius:0px;
  1961. filter:drop-shadow(none);
  1962. transition:none;
  1963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1964. font-weight:400;
  1965. font-style:normal;
  1966. font-size:12px;
  1967. color:#1890FF;
  1968. text-align:center;
  1969. }
  1970. #u44831 {
  1971. border-width:0px;
  1972. position:absolute;
  1973. left:45px;
  1974. top:156px;
  1975. width:37px;
  1976. height:40px;
  1977. display:flex;
  1978. transition:none;
  1979. transform-origin:50% 50%;
  1980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1981. font-weight:400;
  1982. font-style:normal;
  1983. font-size:12px;
  1984. color:#1890FF;
  1985. text-align:center;
  1986. }
  1987. #u44831 .text {
  1988. position:absolute;
  1989. align-self:center;
  1990. padding:0px 0px 0px 0px;
  1991. box-sizing:border-box;
  1992. width:100%;
  1993. }
  1994. #u44831_text {
  1995. border-width:0px;
  1996. white-space:nowrap;
  1997. text-transform:none;
  1998. }
  1999. #u44832_div {
  2000. border-width:0px;
  2001. position:absolute;
  2002. left:0px;
  2003. top:0px;
  2004. width:11px;
  2005. height:11px;
  2006. background:inherit;
  2007. background-color:rgba(217, 0, 27, 1);
  2008. border-radius:7px;
  2009. filter:drop-shadow(none);
  2010. transition:none;
  2011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2012. font-weight:400;
  2013. font-style:normal;
  2014. font-size:8px;
  2015. color:#FFFFFF;
  2016. text-align:center;
  2017. }
  2018. #u44832 {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:79px;
  2022. top:160px;
  2023. width:11px;
  2024. height:11px;
  2025. display:flex;
  2026. transition:none;
  2027. transform-origin:50% 50%;
  2028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2029. font-weight:400;
  2030. font-style:normal;
  2031. font-size:8px;
  2032. color:#FFFFFF;
  2033. text-align:center;
  2034. }
  2035. #u44832 .text {
  2036. position:absolute;
  2037. align-self:flex-start;
  2038. padding:0px 0px 0px 0px;
  2039. box-sizing:border-box;
  2040. width:100%;
  2041. }
  2042. #u44832_text {
  2043. border-width:0px;
  2044. word-wrap:break-word;
  2045. text-transform:none;
  2046. }
  2047. #u44833_div {
  2048. border-width:0px;
  2049. position:absolute;
  2050. left:0px;
  2051. top:0px;
  2052. width:37px;
  2053. height:40px;
  2054. background:inherit;
  2055. background-color:rgba(255, 255, 255, 0);
  2056. border-left:0px;
  2057. border-top:0px;
  2058. border-right:0px;
  2059. border-radius:0px;
  2060. border-bottom-right-radius:0px;
  2061. border-bottom-left-radius:0px;
  2062. filter:drop-shadow(none);
  2063. transition:none;
  2064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2065. font-weight:400;
  2066. font-style:normal;
  2067. font-size:12px;
  2068. text-align:center;
  2069. }
  2070. #u44833 {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:178px;
  2074. top:156px;
  2075. width:37px;
  2076. height:40px;
  2077. display:flex;
  2078. transition:none;
  2079. transform-origin:50% 50%;
  2080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2081. font-weight:400;
  2082. font-style:normal;
  2083. font-size:12px;
  2084. text-align:center;
  2085. }
  2086. #u44833 .text {
  2087. position:absolute;
  2088. align-self:center;
  2089. padding:0px 0px 0px 0px;
  2090. box-sizing:border-box;
  2091. width:100%;
  2092. }
  2093. #u44833_text {
  2094. border-width:0px;
  2095. white-space:nowrap;
  2096. text-transform:none;
  2097. }
  2098. #u44834_div {
  2099. border-width:0px;
  2100. position:absolute;
  2101. left:0px;
  2102. top:0px;
  2103. width:37px;
  2104. height:40px;
  2105. background:inherit;
  2106. background-color:rgba(255, 255, 255, 0);
  2107. border-left:0px;
  2108. border-top:0px;
  2109. border-right:0px;
  2110. border-radius:0px;
  2111. border-bottom-right-radius:0px;
  2112. border-bottom-left-radius:0px;
  2113. filter:drop-shadow(none);
  2114. transition:none;
  2115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2116. font-weight:400;
  2117. font-style:normal;
  2118. font-size:12px;
  2119. text-align:center;
  2120. }
  2121. #u44834 {
  2122. border-width:0px;
  2123. position:absolute;
  2124. left:244px;
  2125. top:156px;
  2126. width:37px;
  2127. height:40px;
  2128. display:flex;
  2129. transition:none;
  2130. transform-origin:50% 50%;
  2131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2132. font-weight:400;
  2133. font-style:normal;
  2134. font-size:12px;
  2135. text-align:center;
  2136. }
  2137. #u44834 .text {
  2138. position:absolute;
  2139. align-self:center;
  2140. padding:0px 0px 0px 0px;
  2141. box-sizing:border-box;
  2142. width:100%;
  2143. }
  2144. #u44834_text {
  2145. border-width:0px;
  2146. white-space:nowrap;
  2147. text-transform:none;
  2148. }