styles.css 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307
  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. #u47632 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u47633 {
  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. #u47633 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u47633_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u47633_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u47634_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. #u47634 {
  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. #u47634 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u47634_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u47635 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u47636_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. #u47636 {
  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. #u47636 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u47636_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u47637 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u47638 {
  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. #u47638 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u47638_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u47638_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u47639 {
  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. #u47639 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u47639_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u47639_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u47640 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u47641 {
  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. #u47641 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u47641_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u47641_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u47642 {
  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. #u47642 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u47642_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u47642_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u47643 {
  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. #u47643 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u47643_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u47643_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u47644 {
  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. #u47644 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u47644_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u47644_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u47645 {
  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. #u47645 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u47645_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u47645_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u47646_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. #u47646 {
  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. #u47646 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u47646_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u47647 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u47648 {
  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. #u47648 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u47648_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u47648_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u47649_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. #u47649 {
  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. #u47649 .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. #u47649_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u47650 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u47651 {
  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. #u47651 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u47651_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u47651_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u47652_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. #u47652 {
  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. #u47652 .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. #u47652_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u47653_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. #u47653 {
  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. #u47653 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u47653_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u47654 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u47655 {
  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. #u47655 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u47655_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u47655_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u47656_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. #u47656 {
  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. #u47656 .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. #u47656_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u47657 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u47658 {
  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. #u47658 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u47658_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u47658_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u47659_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. #u47659 {
  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. #u47659 .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. #u47659_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u47660_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. #u47660 {
  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. #u47660 .text {
  830. position:absolute;
  831. align-self:center;
  832. padding:2px 2px 2px 2px;
  833. box-sizing:border-box;
  834. width:100%;
  835. }
  836. #u47660_text {
  837. border-width:0px;
  838. word-wrap:break-word;
  839. text-transform:none;
  840. visibility:hidden;
  841. }
  842. #u47661 {
  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. #u47661 .text {
  853. position:absolute;
  854. align-self:center;
  855. padding:2px 2px 2px 2px;
  856. box-sizing:border-box;
  857. width:100%;
  858. }
  859. #u47661_img {
  860. border-width:0px;
  861. position:absolute;
  862. left:0px;
  863. top:0px;
  864. width:375px;
  865. height:44px;
  866. }
  867. #u47661_text {
  868. border-width:0px;
  869. word-wrap:break-word;
  870. text-transform:none;
  871. visibility:hidden;
  872. }
  873. #u47662 {
  874. border-width:0px;
  875. position:absolute;
  876. left:0px;
  877. top:0px;
  878. width:0px;
  879. height:0px;
  880. }
  881. #u47663_div {
  882. border-width:0px;
  883. position:absolute;
  884. left:0px;
  885. top:0px;
  886. width:375px;
  887. height:40px;
  888. background:inherit;
  889. background-color:rgba(255, 255, 255, 1);
  890. box-sizing:border-box;
  891. border-width:1px;
  892. border-style:solid;
  893. border-color:rgba(215, 215, 215, 1);
  894. border-left:0px;
  895. border-top:0px;
  896. border-right:0px;
  897. border-radius:0px;
  898. border-bottom-right-radius:0px;
  899. border-bottom-left-radius:0px;
  900. filter:drop-shadow(none);
  901. transition:none;
  902. }
  903. #u47663 {
  904. border-width:0px;
  905. position:absolute;
  906. left:29px;
  907. top:66px;
  908. width:375px;
  909. height:40px;
  910. display:flex;
  911. transition:none;
  912. transform-origin:50% 50%;
  913. }
  914. #u47663 .text {
  915. position:absolute;
  916. align-self:center;
  917. padding:2px 2px 2px 2px;
  918. box-sizing:border-box;
  919. width:100%;
  920. }
  921. #u47663_text {
  922. border-width:0px;
  923. word-wrap:break-word;
  924. text-transform:none;
  925. visibility:hidden;
  926. }
  927. #u47664 {
  928. border-width:0px;
  929. position:absolute;
  930. left:0px;
  931. top:0px;
  932. width:0px;
  933. height:0px;
  934. }
  935. #u47665_div {
  936. border-width:0px;
  937. position:absolute;
  938. left:0px;
  939. top:0px;
  940. width:88px;
  941. height:32px;
  942. background:inherit;
  943. background-color:rgba(255, 255, 255, 1);
  944. box-sizing:border-box;
  945. border-width:1px;
  946. border-style:solid;
  947. border-color:rgba(242, 242, 242, 1);
  948. border-radius:33px;
  949. filter:drop-shadow(none);
  950. transition:none;
  951. }
  952. #u47665 {
  953. border-width:0px;
  954. position:absolute;
  955. left:309px;
  956. top:71px;
  957. width:88px;
  958. height:32px;
  959. display:flex;
  960. transition:none;
  961. transform-origin:50% 50%;
  962. }
  963. #u47665 .text {
  964. position:absolute;
  965. align-self:center;
  966. padding:2px 2px 2px 2px;
  967. box-sizing:border-box;
  968. width:100%;
  969. }
  970. #u47665_text {
  971. border-width:0px;
  972. word-wrap:break-word;
  973. text-transform:none;
  974. visibility:hidden;
  975. }
  976. #u47666 {
  977. border-width:0px;
  978. position:absolute;
  979. left:0px;
  980. top:0px;
  981. width:0px;
  982. height:0px;
  983. }
  984. #u47667 {
  985. border-width:0px;
  986. position:absolute;
  987. left:372px;
  988. top:78px;
  989. width:18px;
  990. height:18px;
  991. display:flex;
  992. transition:none;
  993. }
  994. #u47667 .text {
  995. position:absolute;
  996. align-self:center;
  997. padding:2px 2px 2px 2px;
  998. box-sizing:border-box;
  999. width:100%;
  1000. }
  1001. #u47667_img {
  1002. border-width:0px;
  1003. position:absolute;
  1004. left:0px;
  1005. top:0px;
  1006. width:18px;
  1007. height:18px;
  1008. }
  1009. #u47667_text {
  1010. border-width:0px;
  1011. word-wrap:break-word;
  1012. text-transform:none;
  1013. visibility:hidden;
  1014. }
  1015. #u47668 {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:378px;
  1019. top:84px;
  1020. width:6px;
  1021. height:6px;
  1022. display:flex;
  1023. transition:none;
  1024. }
  1025. #u47668 .text {
  1026. position:absolute;
  1027. align-self:center;
  1028. padding:2px 2px 2px 2px;
  1029. box-sizing:border-box;
  1030. width:100%;
  1031. }
  1032. #u47668_img {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:0px;
  1036. top:0px;
  1037. width:6px;
  1038. height:6px;
  1039. }
  1040. #u47668_text {
  1041. border-width:0px;
  1042. word-wrap:break-word;
  1043. text-transform:none;
  1044. visibility:hidden;
  1045. }
  1046. #u47669 {
  1047. border-width:0px;
  1048. position:absolute;
  1049. left:0px;
  1050. top:0px;
  1051. width:0px;
  1052. height:0px;
  1053. }
  1054. #u47670 {
  1055. border-width:0px;
  1056. position:absolute;
  1057. left:323px;
  1058. top:85px;
  1059. width:5px;
  1060. height:5px;
  1061. display:flex;
  1062. transition:none;
  1063. }
  1064. #u47670 .text {
  1065. position:absolute;
  1066. align-self:center;
  1067. padding:2px 2px 2px 2px;
  1068. box-sizing:border-box;
  1069. width:100%;
  1070. }
  1071. #u47670_img {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:0px;
  1075. top:0px;
  1076. width:5px;
  1077. height:5px;
  1078. }
  1079. #u47670_text {
  1080. border-width:0px;
  1081. word-wrap:break-word;
  1082. text-transform:none;
  1083. visibility:hidden;
  1084. }
  1085. #u47671 {
  1086. border-width:0px;
  1087. position:absolute;
  1088. left:339px;
  1089. top:85px;
  1090. width:5px;
  1091. height:5px;
  1092. display:flex;
  1093. transition:none;
  1094. }
  1095. #u47671 .text {
  1096. position:absolute;
  1097. align-self:center;
  1098. padding:2px 2px 2px 2px;
  1099. box-sizing:border-box;
  1100. width:100%;
  1101. }
  1102. #u47671_img {
  1103. border-width:0px;
  1104. position:absolute;
  1105. left:0px;
  1106. top:0px;
  1107. width:5px;
  1108. height:5px;
  1109. }
  1110. #u47671_text {
  1111. border-width:0px;
  1112. word-wrap:break-word;
  1113. text-transform:none;
  1114. visibility:hidden;
  1115. }
  1116. #u47672 {
  1117. border-width:0px;
  1118. position:absolute;
  1119. left:330px;
  1120. top:84px;
  1121. width:7px;
  1122. height:7px;
  1123. display:flex;
  1124. transition:none;
  1125. }
  1126. #u47672 .text {
  1127. position:absolute;
  1128. align-self:center;
  1129. padding:2px 2px 2px 2px;
  1130. box-sizing:border-box;
  1131. width:100%;
  1132. }
  1133. #u47672_img {
  1134. border-width:0px;
  1135. position:absolute;
  1136. left:0px;
  1137. top:0px;
  1138. width:7px;
  1139. height:7px;
  1140. }
  1141. #u47672_text {
  1142. border-width:0px;
  1143. word-wrap:break-word;
  1144. text-transform:none;
  1145. visibility:hidden;
  1146. }
  1147. #u47673 {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:347px;
  1151. top:87px;
  1152. width:18px;
  1153. height:1px;
  1154. display:flex;
  1155. -webkit-transform:rotate(90deg);
  1156. -moz-transform:rotate(90deg);
  1157. -ms-transform:rotate(90deg);
  1158. transform:rotate(90deg);
  1159. transition:none;
  1160. }
  1161. #u47673 .text {
  1162. position:absolute;
  1163. align-self:center;
  1164. padding:2px 2px 2px 2px;
  1165. box-sizing:border-box;
  1166. width:100%;
  1167. }
  1168. #u47673_img {
  1169. border-width:0px;
  1170. position:absolute;
  1171. left:0px;
  1172. top:0px;
  1173. width:19px;
  1174. height:2px;
  1175. }
  1176. #u47673_text {
  1177. border-width:0px;
  1178. word-wrap:break-word;
  1179. text-transform:none;
  1180. visibility:hidden;
  1181. }
  1182. #u47674_div {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:0px;
  1186. top:0px;
  1187. width:12px;
  1188. height:12px;
  1189. background:inherit;
  1190. background-color:rgba(255, 255, 255, 0);
  1191. box-sizing:border-box;
  1192. border-width:2px;
  1193. border-style:solid;
  1194. border-color:rgba(51, 51, 51, 1);
  1195. border-right:0px;
  1196. border-bottom:0px;
  1197. border-radius:0px;
  1198. border-top-right-radius:0px;
  1199. border-bottom-left-radius:0px;
  1200. filter:drop-shadow(none);
  1201. transition:none;
  1202. }
  1203. #u47674 {
  1204. border-width:0px;
  1205. position:absolute;
  1206. left:44px;
  1207. top:80px;
  1208. width:12px;
  1209. height:12px;
  1210. display:flex;
  1211. -webkit-transform:rotate(315deg);
  1212. -moz-transform:rotate(315deg);
  1213. -ms-transform:rotate(315deg);
  1214. transform:rotate(315deg);
  1215. transition:none;
  1216. transform-origin:50% 50%;
  1217. }
  1218. #u47674 .text {
  1219. position:absolute;
  1220. align-self:center;
  1221. padding:2px 2px 2px 2px;
  1222. box-sizing:border-box;
  1223. width:100%;
  1224. }
  1225. #u47674_text {
  1226. border-width:0px;
  1227. word-wrap:break-word;
  1228. text-transform:none;
  1229. visibility:hidden;
  1230. }
  1231. #u47675_div {
  1232. border-width:0px;
  1233. position:absolute;
  1234. left:0px;
  1235. top:0px;
  1236. width:97px;
  1237. height:22px;
  1238. background:inherit;
  1239. background-color:rgba(255, 255, 255, 0);
  1240. border-radius:0px;
  1241. filter:drop-shadow(none);
  1242. transition:none;
  1243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1244. font-weight:400;
  1245. font-style:normal;
  1246. font-size:16px;
  1247. color:#000000;
  1248. }
  1249. #u47675 {
  1250. border-width:0px;
  1251. position:absolute;
  1252. left:58px;
  1253. top:75px;
  1254. width:97px;
  1255. height:22px;
  1256. display:flex;
  1257. transition:none;
  1258. transform-origin:50% 50%;
  1259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1260. font-weight:400;
  1261. font-style:normal;
  1262. font-size:16px;
  1263. color:#000000;
  1264. }
  1265. #u47675 .text {
  1266. position:absolute;
  1267. align-self:flex-start;
  1268. padding:0px 0px 0px 0px;
  1269. box-sizing:border-box;
  1270. width:100%;
  1271. }
  1272. #u47675_text {
  1273. border-width:0px;
  1274. white-space:nowrap;
  1275. text-transform:none;
  1276. }
  1277. #u47676 {
  1278. border-width:0px;
  1279. position:absolute;
  1280. left:0px;
  1281. top:0px;
  1282. width:0px;
  1283. height:0px;
  1284. }
  1285. #u47677_div {
  1286. border-width:0px;
  1287. position:absolute;
  1288. left:0px;
  1289. top:0px;
  1290. width:375px;
  1291. height:41px;
  1292. background:inherit;
  1293. background-color:rgba(255, 255, 255, 1);
  1294. border-radius:0px;
  1295. filter:drop-shadow(none);
  1296. transition:none;
  1297. }
  1298. #u47677 {
  1299. border-width:0px;
  1300. position:absolute;
  1301. left:29px;
  1302. top:156px;
  1303. width:375px;
  1304. height:41px;
  1305. display:flex;
  1306. transition:none;
  1307. transform-origin:50% 50%;
  1308. }
  1309. #u47677 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u47677_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u47678_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:37px;
  1328. height:40px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border-left:0px;
  1332. border-top:0px;
  1333. border-right:0px;
  1334. border-radius:0px;
  1335. border-bottom-right-radius:0px;
  1336. border-bottom-left-radius:0px;
  1337. filter:drop-shadow(none);
  1338. transition:none;
  1339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1340. font-weight:400;
  1341. font-style:normal;
  1342. font-size:12px;
  1343. text-align:center;
  1344. }
  1345. #u47678 {
  1346. border-width:0px;
  1347. position:absolute;
  1348. left:111px;
  1349. top:156px;
  1350. width:37px;
  1351. height:40px;
  1352. display:flex;
  1353. transition:none;
  1354. transform-origin:50% 50%;
  1355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1356. font-weight:400;
  1357. font-style:normal;
  1358. font-size:12px;
  1359. text-align:center;
  1360. }
  1361. #u47678 .text {
  1362. position:absolute;
  1363. align-self:center;
  1364. padding:0px 0px 0px 0px;
  1365. box-sizing:border-box;
  1366. width:100%;
  1367. }
  1368. #u47678_text {
  1369. border-width:0px;
  1370. white-space:nowrap;
  1371. text-transform:none;
  1372. }
  1373. #u47679_div {
  1374. border-width:0px;
  1375. position:absolute;
  1376. left:0px;
  1377. top:0px;
  1378. width:37px;
  1379. height:40px;
  1380. background:inherit;
  1381. background-color:rgba(255, 255, 255, 0);
  1382. box-sizing:border-box;
  1383. border-width:2px;
  1384. border-style:solid;
  1385. border-color:rgba(24, 144, 255, 1);
  1386. border-left:0px;
  1387. border-top:0px;
  1388. border-right:0px;
  1389. border-radius:0px;
  1390. border-bottom-right-radius:0px;
  1391. border-bottom-left-radius:0px;
  1392. filter:drop-shadow(none);
  1393. transition:none;
  1394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1395. font-weight:400;
  1396. font-style:normal;
  1397. font-size:12px;
  1398. color:#1890FF;
  1399. text-align:center;
  1400. }
  1401. #u47679 {
  1402. border-width:0px;
  1403. position:absolute;
  1404. left:45px;
  1405. top:156px;
  1406. width:37px;
  1407. height:40px;
  1408. display:flex;
  1409. transition:none;
  1410. transform-origin:50% 50%;
  1411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1412. font-weight:400;
  1413. font-style:normal;
  1414. font-size:12px;
  1415. color:#1890FF;
  1416. text-align:center;
  1417. }
  1418. #u47679 .text {
  1419. position:absolute;
  1420. align-self:center;
  1421. padding:0px 0px 0px 0px;
  1422. box-sizing:border-box;
  1423. width:100%;
  1424. }
  1425. #u47679_text {
  1426. border-width:0px;
  1427. white-space:nowrap;
  1428. text-transform:none;
  1429. }
  1430. #u47680_div {
  1431. border-width:0px;
  1432. position:absolute;
  1433. left:0px;
  1434. top:0px;
  1435. width:11px;
  1436. height:11px;
  1437. background:inherit;
  1438. background-color:rgba(217, 0, 27, 1);
  1439. border-radius:7px;
  1440. filter:drop-shadow(none);
  1441. transition:none;
  1442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1443. font-weight:400;
  1444. font-style:normal;
  1445. font-size:8px;
  1446. color:#FFFFFF;
  1447. text-align:center;
  1448. }
  1449. #u47680 {
  1450. border-width:0px;
  1451. position:absolute;
  1452. left:79px;
  1453. top:160px;
  1454. width:11px;
  1455. height:11px;
  1456. display:flex;
  1457. transition:none;
  1458. transform-origin:50% 50%;
  1459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1460. font-weight:400;
  1461. font-style:normal;
  1462. font-size:8px;
  1463. color:#FFFFFF;
  1464. text-align:center;
  1465. }
  1466. #u47680 .text {
  1467. position:absolute;
  1468. align-self:flex-start;
  1469. padding:0px 0px 0px 0px;
  1470. box-sizing:border-box;
  1471. width:100%;
  1472. }
  1473. #u47680_text {
  1474. border-width:0px;
  1475. word-wrap:break-word;
  1476. text-transform:none;
  1477. }
  1478. #u47681_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:37px;
  1484. height:40px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border-left:0px;
  1488. border-top:0px;
  1489. border-right:0px;
  1490. border-radius:0px;
  1491. border-bottom-right-radius:0px;
  1492. border-bottom-left-radius:0px;
  1493. filter:drop-shadow(none);
  1494. transition:none;
  1495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1496. font-weight:400;
  1497. font-style:normal;
  1498. font-size:12px;
  1499. text-align:center;
  1500. }
  1501. #u47681 {
  1502. border-width:0px;
  1503. position:absolute;
  1504. left:178px;
  1505. top:156px;
  1506. width:37px;
  1507. height:40px;
  1508. display:flex;
  1509. transition:none;
  1510. transform-origin:50% 50%;
  1511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1512. font-weight:400;
  1513. font-style:normal;
  1514. font-size:12px;
  1515. text-align:center;
  1516. }
  1517. #u47681 .text {
  1518. position:absolute;
  1519. align-self:center;
  1520. padding:0px 0px 0px 0px;
  1521. box-sizing:border-box;
  1522. width:100%;
  1523. }
  1524. #u47681_text {
  1525. border-width:0px;
  1526. white-space:nowrap;
  1527. text-transform:none;
  1528. }
  1529. #u47682_div {
  1530. border-width:0px;
  1531. position:absolute;
  1532. left:0px;
  1533. top:0px;
  1534. width:37px;
  1535. height:40px;
  1536. background:inherit;
  1537. background-color:rgba(255, 255, 255, 0);
  1538. border-left:0px;
  1539. border-top:0px;
  1540. border-right:0px;
  1541. border-radius:0px;
  1542. border-bottom-right-radius:0px;
  1543. border-bottom-left-radius:0px;
  1544. filter:drop-shadow(none);
  1545. transition:none;
  1546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1547. font-weight:400;
  1548. font-style:normal;
  1549. font-size:12px;
  1550. text-align:center;
  1551. }
  1552. #u47682 {
  1553. border-width:0px;
  1554. position:absolute;
  1555. left:245px;
  1556. top:156px;
  1557. width:37px;
  1558. height:40px;
  1559. display:flex;
  1560. transition:none;
  1561. transform-origin:50% 50%;
  1562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1563. font-weight:400;
  1564. font-style:normal;
  1565. font-size:12px;
  1566. text-align:center;
  1567. }
  1568. #u47682 .text {
  1569. position:absolute;
  1570. align-self:center;
  1571. padding:0px 0px 0px 0px;
  1572. box-sizing:border-box;
  1573. width:100%;
  1574. }
  1575. #u47682_text {
  1576. border-width:0px;
  1577. white-space:nowrap;
  1578. text-transform:none;
  1579. }
  1580. #u47683 {
  1581. border-width:0px;
  1582. position:absolute;
  1583. left:0px;
  1584. top:0px;
  1585. width:0px;
  1586. height:0px;
  1587. }
  1588. #u47684_div {
  1589. border-width:0px;
  1590. position:absolute;
  1591. left:0px;
  1592. top:0px;
  1593. width:375px;
  1594. height:50px;
  1595. background:inherit;
  1596. background-color:rgba(255, 255, 255, 1);
  1597. border-radius:0px;
  1598. filter:drop-shadow(none);
  1599. transition:none;
  1600. }
  1601. #u47684 {
  1602. border-width:0px;
  1603. position:absolute;
  1604. left:29px;
  1605. top:107px;
  1606. width:375px;
  1607. height:50px;
  1608. display:flex;
  1609. transition:none;
  1610. transform-origin:50% 50%;
  1611. }
  1612. #u47684 .text {
  1613. position:absolute;
  1614. align-self:center;
  1615. padding:2px 2px 2px 2px;
  1616. box-sizing:border-box;
  1617. width:100%;
  1618. }
  1619. #u47684_text {
  1620. border-width:0px;
  1621. word-wrap:break-word;
  1622. text-transform:none;
  1623. visibility:hidden;
  1624. }
  1625. #u47685 {
  1626. border-width:0px;
  1627. position:absolute;
  1628. left:0px;
  1629. top:0px;
  1630. width:0px;
  1631. height:0px;
  1632. }
  1633. #u47686 {
  1634. border-width:0px;
  1635. position:absolute;
  1636. left:0px;
  1637. top:0px;
  1638. width:0px;
  1639. height:0px;
  1640. }
  1641. #u47687_div {
  1642. border-width:0px;
  1643. position:absolute;
  1644. left:0px;
  1645. top:0px;
  1646. width:283px;
  1647. height:30px;
  1648. background:inherit;
  1649. background-color:rgba(242, 242, 242, 1);
  1650. border-radius:20px;
  1651. filter:drop-shadow(none);
  1652. transition:none;
  1653. }
  1654. #u47687 {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:42px;
  1658. top:117px;
  1659. width:283px;
  1660. height:30px;
  1661. display:flex;
  1662. transition:none;
  1663. transform-origin:50% 50%;
  1664. }
  1665. #u47687 .text {
  1666. position:absolute;
  1667. align-self:center;
  1668. padding:2px 2px 2px 2px;
  1669. box-sizing:border-box;
  1670. width:100%;
  1671. }
  1672. #u47687_text {
  1673. border-width:0px;
  1674. word-wrap:break-word;
  1675. text-transform:none;
  1676. visibility:hidden;
  1677. }
  1678. #u47688_input {
  1679. position:absolute;
  1680. left:0px;
  1681. top:0px;
  1682. width:253px;
  1683. height:22px;
  1684. padding:2px 2px 2px 2px;
  1685. font-family:'ArialMT', 'Arial', sans-serif;
  1686. font-weight:400;
  1687. font-style:normal;
  1688. font-size:12px;
  1689. letter-spacing:normal;
  1690. color:#7F7F7F;
  1691. vertical-align:none;
  1692. text-align:left;
  1693. text-transform:none;
  1694. background-color:transparent;
  1695. border-color:transparent;
  1696. }
  1697. #u47688_input.disabled {
  1698. position:absolute;
  1699. left:0px;
  1700. top:0px;
  1701. width:253px;
  1702. height:22px;
  1703. padding:2px 2px 2px 2px;
  1704. font-family:'ArialMT', 'Arial', sans-serif;
  1705. font-weight:400;
  1706. font-style:normal;
  1707. font-size:12px;
  1708. letter-spacing:normal;
  1709. color:#7F7F7F;
  1710. vertical-align:none;
  1711. text-align:left;
  1712. text-transform:none;
  1713. background-color:transparent;
  1714. border-color:transparent;
  1715. }
  1716. #u47688_div {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:0px;
  1720. top:0px;
  1721. width:253px;
  1722. height:22px;
  1723. background:inherit;
  1724. background-color:rgba(255, 255, 255, 0);
  1725. border-radius:0px;
  1726. filter:drop-shadow(none);
  1727. transition:none;
  1728. font-size:12px;
  1729. color:#7F7F7F;
  1730. }
  1731. #u47688 {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:57px;
  1735. top:121px;
  1736. width:253px;
  1737. height:22px;
  1738. display:flex;
  1739. transition:none;
  1740. transform-origin:50% 50%;
  1741. font-size:12px;
  1742. color:#7F7F7F;
  1743. }
  1744. #u47688 .text {
  1745. position:absolute;
  1746. align-self:flex-start;
  1747. padding:2px 2px 2px 2px;
  1748. box-sizing:border-box;
  1749. width:100%;
  1750. }
  1751. #u47688_div.disabled {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:253px;
  1757. height:22px;
  1758. background:inherit;
  1759. background-color:rgba(240, 240, 240, 1);
  1760. border-radius:0px;
  1761. filter:drop-shadow(none);
  1762. transition:none;
  1763. font-size:12px;
  1764. color:#7F7F7F;
  1765. }
  1766. #u47688.disabled {
  1767. }
  1768. .u47688_input_option {
  1769. font-size:12px;
  1770. }
  1771. #u47689_div {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:0px;
  1775. top:0px;
  1776. width:64px;
  1777. height:30px;
  1778. background:inherit;
  1779. background-color:rgba(255, 255, 255, 0);
  1780. border-left:0px;
  1781. border-top:0px;
  1782. border-right:0px;
  1783. border-radius:0px;
  1784. border-bottom-right-radius:0px;
  1785. border-bottom-left-radius:0px;
  1786. filter:drop-shadow(none);
  1787. transition:none;
  1788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1789. font-weight:400;
  1790. font-style:normal;
  1791. font-size:12px;
  1792. color:#1890FF;
  1793. line-height:30px;
  1794. }
  1795. #u47689 {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:332px;
  1799. top:117px;
  1800. width:64px;
  1801. height:30px;
  1802. display:flex;
  1803. transition:none;
  1804. transform-origin:50% 50%;
  1805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1806. font-weight:400;
  1807. font-style:normal;
  1808. font-size:12px;
  1809. color:#1890FF;
  1810. line-height:30px;
  1811. }
  1812. #u47689 .text {
  1813. position:absolute;
  1814. align-self:flex-start;
  1815. padding:0px 0px 0px 0px;
  1816. box-sizing:border-box;
  1817. width:100%;
  1818. }
  1819. #u47689_text {
  1820. border-width:0px;
  1821. white-space:nowrap;
  1822. text-transform:none;
  1823. }
  1824. #u47690 {
  1825. border-width:0px;
  1826. position:absolute;
  1827. left:0px;
  1828. top:0px;
  1829. width:0px;
  1830. height:0px;
  1831. }
  1832. #u47691_div {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:0px;
  1836. top:0px;
  1837. width:355px;
  1838. height:303px;
  1839. background:inherit;
  1840. background-color:rgba(255, 255, 255, 1);
  1841. border-radius:4px;
  1842. filter:drop-shadow(none);
  1843. transition:none;
  1844. }
  1845. #u47691 {
  1846. border-width:0px;
  1847. position:absolute;
  1848. left:39px;
  1849. top:207px;
  1850. width:355px;
  1851. height:303px;
  1852. display:flex;
  1853. transition:none;
  1854. transform-origin:50% 50%;
  1855. }
  1856. #u47691 .text {
  1857. position:absolute;
  1858. align-self:center;
  1859. padding:2px 2px 2px 2px;
  1860. box-sizing:border-box;
  1861. width:100%;
  1862. }
  1863. #u47691_text {
  1864. border-width:0px;
  1865. word-wrap:break-word;
  1866. text-transform:none;
  1867. visibility:hidden;
  1868. }
  1869. #u47692_div {
  1870. border-width:0px;
  1871. position:absolute;
  1872. left:0px;
  1873. top:0px;
  1874. width:127px;
  1875. height:30px;
  1876. background:inherit;
  1877. background-color:rgba(255, 255, 255, 0);
  1878. border-left:0px;
  1879. border-top:0px;
  1880. border-right:0px;
  1881. border-radius:0px;
  1882. border-bottom-right-radius:0px;
  1883. border-bottom-left-radius:0px;
  1884. filter:drop-shadow(none);
  1885. transition:none;
  1886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1887. font-weight:400;
  1888. font-style:normal;
  1889. font-size:14px;
  1890. line-height:30px;
  1891. }
  1892. #u47692 {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:55px;
  1896. top:246px;
  1897. width:127px;
  1898. height:30px;
  1899. display:flex;
  1900. transition:none;
  1901. transform-origin:50% 50%;
  1902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1903. font-weight:400;
  1904. font-style:normal;
  1905. font-size:14px;
  1906. line-height:30px;
  1907. }
  1908. #u47692 .text {
  1909. position:absolute;
  1910. align-self:flex-start;
  1911. padding:0px 0px 0px 0px;
  1912. box-sizing:border-box;
  1913. width:100%;
  1914. }
  1915. #u47692_text {
  1916. border-width:0px;
  1917. white-space:nowrap;
  1918. text-transform:none;
  1919. }
  1920. #u47693_div {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:0px;
  1924. top:0px;
  1925. width:97px;
  1926. height:17px;
  1927. background:inherit;
  1928. background-color:rgba(255, 255, 255, 0);
  1929. border-left:0px;
  1930. border-top:0px;
  1931. border-right:0px;
  1932. border-radius:0px;
  1933. border-bottom-right-radius:0px;
  1934. border-bottom-left-radius:0px;
  1935. filter:drop-shadow(none);
  1936. transition:none;
  1937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1938. font-weight:400;
  1939. font-style:normal;
  1940. font-size:12px;
  1941. color:#AAAAAA;
  1942. }
  1943. #u47693 {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:55px;
  1947. top:276px;
  1948. width:97px;
  1949. height:17px;
  1950. display:flex;
  1951. transition:none;
  1952. transform-origin:50% 50%;
  1953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1954. font-weight:400;
  1955. font-style:normal;
  1956. font-size:12px;
  1957. color:#AAAAAA;
  1958. }
  1959. #u47693 .text {
  1960. position:absolute;
  1961. align-self:flex-start;
  1962. padding:0px 0px 0px 0px;
  1963. box-sizing:border-box;
  1964. width:100%;
  1965. }
  1966. #u47693_text {
  1967. border-width:0px;
  1968. white-space:nowrap;
  1969. text-transform:none;
  1970. }
  1971. #u47694 {
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:0px;
  1975. top:0px;
  1976. width:0px;
  1977. height:0px;
  1978. }
  1979. #u47695_div {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:0px;
  1983. top:0px;
  1984. width:128px;
  1985. height:30px;
  1986. background:inherit;
  1987. background-color:rgba(255, 255, 255, 0);
  1988. border-left:0px;
  1989. border-top:0px;
  1990. border-right:0px;
  1991. border-radius:0px;
  1992. border-bottom-right-radius:0px;
  1993. border-bottom-left-radius:0px;
  1994. filter:drop-shadow(none);
  1995. transition:none;
  1996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1997. font-weight:400;
  1998. font-style:normal;
  1999. font-size:12px;
  2000. color:#AAAAAA;
  2001. line-height:30px;
  2002. }
  2003. #u47695 {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:55px;
  2007. top:216px;
  2008. width:128px;
  2009. height:30px;
  2010. display:flex;
  2011. transition:none;
  2012. transform-origin:50% 50%;
  2013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2014. font-weight:400;
  2015. font-style:normal;
  2016. font-size:12px;
  2017. color:#AAAAAA;
  2018. line-height:30px;
  2019. }
  2020. #u47695 .text {
  2021. position:absolute;
  2022. align-self:center;
  2023. padding:0px 0px 0px 0px;
  2024. box-sizing:border-box;
  2025. width:100%;
  2026. }
  2027. #u47695_text {
  2028. border-width:0px;
  2029. white-space:nowrap;
  2030. text-transform:none;
  2031. }
  2032. #u47696_div {
  2033. border-width:0px;
  2034. position:absolute;
  2035. left:0px;
  2036. top:0px;
  2037. width:8px;
  2038. height:8px;
  2039. background:inherit;
  2040. background-color:rgba(255, 255, 255, 0);
  2041. box-sizing:border-box;
  2042. border-width:1px;
  2043. border-style:solid;
  2044. border-color:rgba(51, 51, 51, 1);
  2045. border-right:0px;
  2046. border-bottom:0px;
  2047. border-radius:0px;
  2048. border-top-right-radius:0px;
  2049. border-bottom-left-radius:0px;
  2050. filter:drop-shadow(none);
  2051. transition:none;
  2052. }
  2053. #u47696 {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:372px;
  2057. top:227px;
  2058. width:8px;
  2059. height:8px;
  2060. display:flex;
  2061. -webkit-transform:rotate(135deg);
  2062. -moz-transform:rotate(135deg);
  2063. -ms-transform:rotate(135deg);
  2064. transform:rotate(135deg);
  2065. transition:none;
  2066. transform-origin:50% 50%;
  2067. }
  2068. #u47696 .text {
  2069. position:absolute;
  2070. align-self:center;
  2071. padding:2px 2px 2px 2px;
  2072. box-sizing:border-box;
  2073. width:100%;
  2074. }
  2075. #u47696_text {
  2076. border-width:0px;
  2077. word-wrap:break-word;
  2078. text-transform:none;
  2079. visibility:hidden;
  2080. }
  2081. #u47697_div {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:0px;
  2085. top:0px;
  2086. width:211px;
  2087. height:150px;
  2088. background:inherit;
  2089. background-color:rgba(255, 255, 255, 0);
  2090. border-left:0px;
  2091. border-top:0px;
  2092. border-right:0px;
  2093. border-radius:0px;
  2094. border-bottom-right-radius:0px;
  2095. border-bottom-left-radius:0px;
  2096. filter:drop-shadow(none);
  2097. transition:none;
  2098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2099. font-weight:400;
  2100. font-style:normal;
  2101. font-size:12px;
  2102. line-height:25px;
  2103. }
  2104. #u47697 {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:55px;
  2108. top:344px;
  2109. width:211px;
  2110. height:150px;
  2111. display:flex;
  2112. transition:none;
  2113. transform-origin:50% 50%;
  2114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2115. font-weight:400;
  2116. font-style:normal;
  2117. font-size:12px;
  2118. line-height:25px;
  2119. }
  2120. #u47697 .text {
  2121. position:absolute;
  2122. align-self:flex-start;
  2123. padding:0px 0px 0px 0px;
  2124. box-sizing:border-box;
  2125. width:100%;
  2126. }
  2127. #u47697_text {
  2128. border-width:0px;
  2129. white-space:nowrap;
  2130. text-transform:none;
  2131. }
  2132. #u47698 {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:0px;
  2136. top:0px;
  2137. width:0px;
  2138. height:0px;
  2139. }
  2140. #u47699_div {
  2141. border-width:0px;
  2142. position:absolute;
  2143. left:0px;
  2144. top:0px;
  2145. width:327px;
  2146. height:31px;
  2147. background:inherit;
  2148. background-color:rgba(242, 242, 242, 1);
  2149. border-radius:4px;
  2150. filter:drop-shadow(none);
  2151. transition:none;
  2152. }
  2153. #u47699 {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:55px;
  2157. top:303px;
  2158. width:327px;
  2159. height:31px;
  2160. display:flex;
  2161. transition:none;
  2162. transform-origin:50% 50%;
  2163. }
  2164. #u47699 .text {
  2165. position:absolute;
  2166. align-self:center;
  2167. padding:2px 2px 2px 2px;
  2168. box-sizing:border-box;
  2169. width:100%;
  2170. }
  2171. #u47699_text {
  2172. border-width:0px;
  2173. word-wrap:break-word;
  2174. text-transform:none;
  2175. visibility:hidden;
  2176. }
  2177. #u47700_div {
  2178. border-width:0px;
  2179. position:absolute;
  2180. left:0px;
  2181. top:0px;
  2182. width:235px;
  2183. height:17px;
  2184. background:inherit;
  2185. background-color:rgba(255, 255, 255, 0);
  2186. border-left:0px;
  2187. border-top:0px;
  2188. border-right:0px;
  2189. border-radius:0px;
  2190. border-bottom-right-radius:0px;
  2191. border-bottom-left-radius:0px;
  2192. filter:drop-shadow(none);
  2193. transition:none;
  2194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2195. font-weight:400;
  2196. font-style:normal;
  2197. font-size:12px;
  2198. }
  2199. #u47700 {
  2200. border-width:0px;
  2201. position:absolute;
  2202. left:64px;
  2203. top:310px;
  2204. width:235px;
  2205. height:17px;
  2206. display:flex;
  2207. transition:none;
  2208. transform-origin:50% 50%;
  2209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2210. font-weight:400;
  2211. font-style:normal;
  2212. font-size:12px;
  2213. }
  2214. #u47700 .text {
  2215. position:absolute;
  2216. align-self:flex-start;
  2217. padding:0px 0px 0px 0px;
  2218. box-sizing:border-box;
  2219. width:100%;
  2220. }
  2221. #u47700_text {
  2222. border-width:0px;
  2223. white-space:nowrap;
  2224. text-transform:none;
  2225. }
  2226. #u47701_div {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:0px;
  2230. top:0px;
  2231. width:37px;
  2232. height:17px;
  2233. background:inherit;
  2234. background-color:rgba(255, 255, 255, 0);
  2235. border-left:0px;
  2236. border-top:0px;
  2237. border-right:0px;
  2238. border-radius:0px;
  2239. border-bottom-right-radius:0px;
  2240. border-bottom-left-radius:0px;
  2241. filter:drop-shadow(none);
  2242. transition:none;
  2243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2244. font-weight:400;
  2245. font-style:normal;
  2246. font-size:12px;
  2247. color:#00AAAA;
  2248. }
  2249. #u47701 {
  2250. border-width:0px;
  2251. position:absolute;
  2252. left:335px;
  2253. top:310px;
  2254. width:37px;
  2255. height:17px;
  2256. display:flex;
  2257. transition:none;
  2258. transform-origin:50% 50%;
  2259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2260. font-weight:400;
  2261. font-style:normal;
  2262. font-size:12px;
  2263. color:#00AAAA;
  2264. }
  2265. #u47701 .text {
  2266. position:absolute;
  2267. align-self:flex-start;
  2268. padding:0px 0px 0px 0px;
  2269. box-sizing:border-box;
  2270. width:100%;
  2271. }
  2272. #u47701_text {
  2273. border-width:0px;
  2274. white-space:nowrap;
  2275. text-transform:none;
  2276. }
  2277. #u47702 {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:284px;
  2281. top:344px;
  2282. width:98px;
  2283. height:96px;
  2284. display:flex;
  2285. transition:none;
  2286. }
  2287. #u47702 .text {
  2288. position:absolute;
  2289. align-self:center;
  2290. padding:2px 2px 2px 2px;
  2291. box-sizing:border-box;
  2292. width:100%;
  2293. }
  2294. #u47702_img {
  2295. border-width:0px;
  2296. position:absolute;
  2297. left:0px;
  2298. top:0px;
  2299. width:98px;
  2300. height:96px;
  2301. }
  2302. #u47702_text {
  2303. border-width:0px;
  2304. word-wrap:break-word;
  2305. text-transform:none;
  2306. visibility:hidden;
  2307. }