styles.css 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184
  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. #u185679_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u185679 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u185679 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u185679_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u185680_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. box-sizing:border-box;
  59. border-width:1px;
  60. border-style:solid;
  61. border-color:rgba(215, 215, 215, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. }
  72. #u185680 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u185680 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u185680_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u185681 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u185682_div {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:88px;
  108. height:32px;
  109. background:inherit;
  110. background-color:rgba(255, 255, 255, 1);
  111. box-sizing:border-box;
  112. border-width:1px;
  113. border-style:solid;
  114. border-color:rgba(242, 242, 242, 1);
  115. border-radius:33px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. }
  120. #u185682 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u185682 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u185682_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u185683 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u185684_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u185684 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u185684 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u185684_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u185685_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u185685 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u185685 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u185685_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u185686 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u185687_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u185687 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u185687 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u185687_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u185688_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u185688 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u185688 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u185688_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u185689_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u185689 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u185689 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u185689_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u185690_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u185690 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u185690 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u185690_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u185691_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u185691 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u185691 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u185691_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u185692_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:50px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 1);
  381. box-sizing:border-box;
  382. border-width:1px;
  383. border-style:solid;
  384. border-color:rgba(242, 242, 242, 1);
  385. border-radius:26px;
  386. border-top-left-radius:0px;
  387. border-top-right-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. }
  392. #u185692 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u185692 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u185692_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u185693 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u185694_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u185694 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u185694 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u185694_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u185695_div {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:25px;
  458. height:17px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:12px;
  470. }
  471. #u185695 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u185695 .text {
  485. position:absolute;
  486. align-self:flex-start;
  487. padding:0px 0px 0px 0px;
  488. box-sizing:border-box;
  489. width:100%;
  490. }
  491. #u185695_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u185696 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u185697_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u185697 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u185697 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u185697_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u185698_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:25px;
  540. height:17px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:12px;
  552. }
  553. #u185698 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u185698 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 0px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u185698_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u185699_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:375px;
  584. height:681px;
  585. background:inherit;
  586. background-color:rgba(242, 242, 242, 0.462745098039216);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u185699 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u185699 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u185699_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u185700 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u185701_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u185701 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u185701 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u185701_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u185702_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:37px;
  659. height:17px;
  660. background:inherit;
  661. background-color:rgba(255, 255, 255, 0);
  662. border:none;
  663. border-radius:0px;
  664. -moz-box-shadow:none;
  665. -webkit-box-shadow:none;
  666. box-shadow:none;
  667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:12px;
  671. }
  672. #u185702 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u185702 .text {
  686. position:absolute;
  687. align-self:flex-start;
  688. padding:0px 0px 0px 0px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u185702_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u185703 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u185704_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u185704 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u185704 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u185704_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u185705_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:37px;
  741. height:17px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. }
  754. #u185705 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u185705 .text {
  768. position:absolute;
  769. align-self:flex-start;
  770. padding:0px 0px 0px 0px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u185705_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u185706_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:735px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. border:none;
  789. border-top:0px;
  790. border-radius:25px;
  791. border-top-left-radius:0px;
  792. border-top-right-radius:0px;
  793. -moz-box-shadow:none;
  794. -webkit-box-shadow:none;
  795. box-shadow:none;
  796. }
  797. #u185706 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:106px;
  802. width:375px;
  803. height:735px;
  804. display:flex;
  805. }
  806. #u185706 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u185706_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u185707_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:57px;
  825. height:30px;
  826. background:inherit;
  827. background-color:rgba(255, 255, 255, 0);
  828. border:none;
  829. border-left:0px;
  830. border-top:0px;
  831. border-right:0px;
  832. border-radius:0px;
  833. border-bottom-right-radius:0px;
  834. border-bottom-left-radius:0px;
  835. -moz-box-shadow:none;
  836. -webkit-box-shadow:none;
  837. box-shadow:none;
  838. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  839. font-weight:500;
  840. font-style:normal;
  841. font-size:14px;
  842. line-height:30px;
  843. }
  844. #u185707 {
  845. border-width:0px;
  846. position:absolute;
  847. left:188px;
  848. top:74px;
  849. width:57px;
  850. height:30px;
  851. display:flex;
  852. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  853. font-weight:500;
  854. font-style:normal;
  855. font-size:14px;
  856. line-height:30px;
  857. }
  858. #u185707 .text {
  859. position:absolute;
  860. align-self:flex-start;
  861. padding:0px 0px 0px 0px;
  862. box-sizing:border-box;
  863. width:100%;
  864. }
  865. #u185707_text {
  866. border-width:0px;
  867. white-space:nowrap;
  868. text-transform:none;
  869. }
  870. #u185708 {
  871. border-width:0px;
  872. position:absolute;
  873. left:0px;
  874. top:0px;
  875. width:0px;
  876. height:0px;
  877. }
  878. #u185709_img {
  879. border-width:0px;
  880. position:absolute;
  881. left:0px;
  882. top:0px;
  883. width:11px;
  884. height:18px;
  885. }
  886. #u185709 {
  887. border-width:0px;
  888. position:absolute;
  889. left:42px;
  890. top:80px;
  891. width:11px;
  892. height:18px;
  893. display:flex;
  894. }
  895. #u185709 .text {
  896. position:absolute;
  897. align-self:center;
  898. padding:2px 2px 2px 2px;
  899. box-sizing:border-box;
  900. width:100%;
  901. }
  902. #u185709_text {
  903. border-width:0px;
  904. word-wrap:break-word;
  905. text-transform:none;
  906. visibility:hidden;
  907. }
  908. #u185710_div {
  909. border-width:0px;
  910. position:absolute;
  911. left:0px;
  912. top:0px;
  913. width:375px;
  914. height:110px;
  915. background:inherit;
  916. background-color:rgba(255, 255, 255, 1);
  917. border:none;
  918. border-left:0px;
  919. border-top:0px;
  920. border-right:0px;
  921. border-radius:0px;
  922. border-bottom-right-radius:0px;
  923. border-bottom-left-radius:0px;
  924. -moz-box-shadow:none;
  925. -webkit-box-shadow:none;
  926. box-shadow:none;
  927. }
  928. #u185710 {
  929. border-width:0px;
  930. position:absolute;
  931. left:29px;
  932. top:106px;
  933. width:375px;
  934. height:110px;
  935. display:flex;
  936. }
  937. #u185710 .text {
  938. position:absolute;
  939. align-self:center;
  940. padding:2px 2px 2px 2px;
  941. box-sizing:border-box;
  942. width:100%;
  943. }
  944. #u185710_text {
  945. border-width:0px;
  946. word-wrap:break-word;
  947. text-transform:none;
  948. visibility:hidden;
  949. }
  950. #u185711 {
  951. border-width:0px;
  952. position:absolute;
  953. left:0px;
  954. top:0px;
  955. width:0px;
  956. height:0px;
  957. }
  958. #u185712 {
  959. border-width:0px;
  960. position:absolute;
  961. left:0px;
  962. top:0px;
  963. width:0px;
  964. height:0px;
  965. }
  966. #u185713_div {
  967. border-width:0px;
  968. position:absolute;
  969. left:0px;
  970. top:0px;
  971. width:349px;
  972. height:30px;
  973. background:inherit;
  974. background-color:rgba(242, 242, 242, 0.545098039215686);
  975. border:none;
  976. border-radius:4px;
  977. -moz-box-shadow:none;
  978. -webkit-box-shadow:none;
  979. box-shadow:none;
  980. font-family:'Microsoft YaHei', sans-serif;
  981. font-weight:400;
  982. font-style:normal;
  983. font-size:14px;
  984. color:#CCCCCC;
  985. text-align:left;
  986. }
  987. #u185713 {
  988. border-width:0px;
  989. position:absolute;
  990. left:42px;
  991. top:122px;
  992. width:349px;
  993. height:30px;
  994. display:flex;
  995. font-family:'Microsoft YaHei', sans-serif;
  996. font-weight:400;
  997. font-style:normal;
  998. font-size:14px;
  999. color:#CCCCCC;
  1000. text-align:left;
  1001. }
  1002. #u185713 .text {
  1003. position:absolute;
  1004. align-self:center;
  1005. padding:2px 8px 2px 8px;
  1006. box-sizing:border-box;
  1007. width:100%;
  1008. }
  1009. #u185713_text {
  1010. border-width:0px;
  1011. word-wrap:break-word;
  1012. text-transform:none;
  1013. visibility:hidden;
  1014. }
  1015. #u185714_input {
  1016. position:absolute;
  1017. left:0px;
  1018. top:0px;
  1019. width:309px;
  1020. height:25px;
  1021. padding:2px 2px 2px 2px;
  1022. font-family:'Microsoft YaHei', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:10px;
  1026. letter-spacing:normal;
  1027. color:#000000;
  1028. vertical-align:none;
  1029. text-align:left;
  1030. text-transform:none;
  1031. background-color:transparent;
  1032. border-color:transparent;
  1033. }
  1034. #u185714_input.disabled {
  1035. position:absolute;
  1036. left:0px;
  1037. top:0px;
  1038. width:309px;
  1039. height:25px;
  1040. padding:2px 2px 2px 2px;
  1041. font-family:'Microsoft YaHei', sans-serif;
  1042. font-weight:400;
  1043. font-style:normal;
  1044. font-size:10px;
  1045. letter-spacing:normal;
  1046. color:#000000;
  1047. vertical-align:none;
  1048. text-align:left;
  1049. text-transform:none;
  1050. background-color:transparent;
  1051. border-color:transparent;
  1052. }
  1053. #u185714_div {
  1054. border-width:0px;
  1055. position:absolute;
  1056. left:0px;
  1057. top:0px;
  1058. width:309px;
  1059. height:25px;
  1060. background:inherit;
  1061. background-color:rgba(255, 255, 255, 0);
  1062. border:none;
  1063. border-radius:0px;
  1064. -moz-box-shadow:none;
  1065. -webkit-box-shadow:none;
  1066. box-shadow:none;
  1067. font-family:'Microsoft YaHei', sans-serif;
  1068. font-weight:400;
  1069. font-style:normal;
  1070. font-size:10px;
  1071. }
  1072. #u185714 {
  1073. border-width:0px;
  1074. position:absolute;
  1075. left:72px;
  1076. top:123px;
  1077. width:309px;
  1078. height:25px;
  1079. display:flex;
  1080. font-family:'Microsoft YaHei', sans-serif;
  1081. font-weight:400;
  1082. font-style:normal;
  1083. font-size:10px;
  1084. }
  1085. #u185714 .text {
  1086. position:absolute;
  1087. align-self:center;
  1088. padding:2px 2px 2px 2px;
  1089. box-sizing:border-box;
  1090. width:100%;
  1091. }
  1092. #u185714_div.disabled {
  1093. border-width:0px;
  1094. position:absolute;
  1095. left:0px;
  1096. top:0px;
  1097. width:309px;
  1098. height:25px;
  1099. background:inherit;
  1100. background-color:rgba(240, 240, 240, 1);
  1101. border:none;
  1102. border-radius:0px;
  1103. -moz-box-shadow:none;
  1104. -webkit-box-shadow:none;
  1105. box-shadow:none;
  1106. font-family:'Microsoft YaHei', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:10px;
  1110. }
  1111. #u185714.disabled {
  1112. }
  1113. #u185715_img {
  1114. border-width:0px;
  1115. position:absolute;
  1116. left:0px;
  1117. top:0px;
  1118. width:14px;
  1119. height:14px;
  1120. }
  1121. #u185715 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:52px;
  1125. top:129px;
  1126. width:14px;
  1127. height:14px;
  1128. display:flex;
  1129. }
  1130. #u185715 .text {
  1131. position:absolute;
  1132. align-self:center;
  1133. padding:2px 2px 2px 2px;
  1134. box-sizing:border-box;
  1135. width:100%;
  1136. }
  1137. #u185715_text {
  1138. border-width:0px;
  1139. word-wrap:break-word;
  1140. text-transform:none;
  1141. visibility:hidden;
  1142. }
  1143. #u185716_div {
  1144. border-width:0px;
  1145. position:absolute;
  1146. left:0px;
  1147. top:0px;
  1148. width:375px;
  1149. height:270px;
  1150. background:inherit;
  1151. background-color:rgba(255, 255, 255, 1);
  1152. border:none;
  1153. border-left:0px;
  1154. border-top:0px;
  1155. border-right:0px;
  1156. border-radius:0px;
  1157. border-bottom-right-radius:0px;
  1158. border-bottom-left-radius:0px;
  1159. -moz-box-shadow:none;
  1160. -webkit-box-shadow:none;
  1161. box-shadow:none;
  1162. }
  1163. #u185716 {
  1164. border-width:0px;
  1165. position:absolute;
  1166. left:29px;
  1167. top:226px;
  1168. width:375px;
  1169. height:270px;
  1170. display:flex;
  1171. }
  1172. #u185716 .text {
  1173. position:absolute;
  1174. align-self:center;
  1175. padding:2px 2px 2px 2px;
  1176. box-sizing:border-box;
  1177. width:100%;
  1178. }
  1179. #u185716_text {
  1180. border-width:0px;
  1181. word-wrap:break-word;
  1182. text-transform:none;
  1183. visibility:hidden;
  1184. }
  1185. #u185717 {
  1186. border-width:0px;
  1187. position:absolute;
  1188. left:0px;
  1189. top:0px;
  1190. width:0px;
  1191. height:0px;
  1192. }
  1193. #u185718_div {
  1194. border-width:0px;
  1195. position:absolute;
  1196. left:0px;
  1197. top:0px;
  1198. width:375px;
  1199. height:50px;
  1200. background:inherit;
  1201. background-color:rgba(255, 255, 255, 1);
  1202. border:none;
  1203. border-left:0px;
  1204. border-top:0px;
  1205. border-right:0px;
  1206. border-radius:0px;
  1207. border-bottom-right-radius:0px;
  1208. border-bottom-left-radius:0px;
  1209. -moz-box-shadow:none;
  1210. -webkit-box-shadow:none;
  1211. box-shadow:none;
  1212. }
  1213. #u185718 {
  1214. border-width:0px;
  1215. position:absolute;
  1216. left:29px;
  1217. top:236px;
  1218. width:375px;
  1219. height:50px;
  1220. display:flex;
  1221. }
  1222. #u185718 .text {
  1223. position:absolute;
  1224. align-self:center;
  1225. padding:2px 2px 2px 2px;
  1226. box-sizing:border-box;
  1227. width:100%;
  1228. }
  1229. #u185718_text {
  1230. border-width:0px;
  1231. word-wrap:break-word;
  1232. text-transform:none;
  1233. visibility:hidden;
  1234. }
  1235. #u185719_div {
  1236. border-width:0px;
  1237. position:absolute;
  1238. left:0px;
  1239. top:0px;
  1240. width:61px;
  1241. height:30px;
  1242. background:inherit;
  1243. background-color:rgba(255, 255, 255, 0);
  1244. border:none;
  1245. border-left:0px;
  1246. border-top:0px;
  1247. border-right:0px;
  1248. border-radius:0px;
  1249. border-bottom-right-radius:0px;
  1250. border-bottom-left-radius:0px;
  1251. -moz-box-shadow:none;
  1252. -webkit-box-shadow:none;
  1253. box-shadow:none;
  1254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1255. font-weight:400;
  1256. font-style:normal;
  1257. font-size:14px;
  1258. line-height:30px;
  1259. }
  1260. #u185719 {
  1261. border-width:0px;
  1262. position:absolute;
  1263. left:49px;
  1264. top:246px;
  1265. width:61px;
  1266. height:30px;
  1267. display:flex;
  1268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1269. font-weight:400;
  1270. font-style:normal;
  1271. font-size:14px;
  1272. line-height:30px;
  1273. }
  1274. #u185719 .text {
  1275. position:absolute;
  1276. align-self:flex-start;
  1277. padding:0px 0px 0px 0px;
  1278. box-sizing:border-box;
  1279. width:100%;
  1280. }
  1281. #u185719_text {
  1282. border-width:0px;
  1283. white-space:nowrap;
  1284. text-transform:none;
  1285. }
  1286. #u185720_img {
  1287. border-width:0px;
  1288. position:absolute;
  1289. left:0px;
  1290. top:0px;
  1291. width:8px;
  1292. height:13px;
  1293. }
  1294. #u185720 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:377px;
  1298. top:255px;
  1299. width:8px;
  1300. height:13px;
  1301. display:flex;
  1302. -webkit-transform:rotate(180deg);
  1303. -moz-transform:rotate(180deg);
  1304. -ms-transform:rotate(180deg);
  1305. transform:rotate(180deg);
  1306. }
  1307. #u185720 .text {
  1308. position:absolute;
  1309. align-self:center;
  1310. padding:2px 2px 2px 2px;
  1311. box-sizing:border-box;
  1312. width:100%;
  1313. }
  1314. #u185720_text {
  1315. border-width:0px;
  1316. word-wrap:break-word;
  1317. text-transform:none;
  1318. visibility:hidden;
  1319. }
  1320. #u185721 {
  1321. border-width:0px;
  1322. position:absolute;
  1323. left:0px;
  1324. top:0px;
  1325. width:0px;
  1326. height:0px;
  1327. }
  1328. #u185722_div {
  1329. border-width:0px;
  1330. position:absolute;
  1331. left:0px;
  1332. top:0px;
  1333. width:375px;
  1334. height:50px;
  1335. background:inherit;
  1336. background-color:rgba(255, 255, 255, 1);
  1337. border:none;
  1338. border-left:0px;
  1339. border-top:0px;
  1340. border-right:0px;
  1341. border-radius:0px;
  1342. border-bottom-right-radius:0px;
  1343. border-bottom-left-radius:0px;
  1344. -moz-box-shadow:none;
  1345. -webkit-box-shadow:none;
  1346. box-shadow:none;
  1347. }
  1348. #u185722 {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:29px;
  1352. top:286px;
  1353. width:375px;
  1354. height:50px;
  1355. display:flex;
  1356. }
  1357. #u185722 .text {
  1358. position:absolute;
  1359. align-self:center;
  1360. padding:2px 2px 2px 2px;
  1361. box-sizing:border-box;
  1362. width:100%;
  1363. }
  1364. #u185722_text {
  1365. border-width:0px;
  1366. word-wrap:break-word;
  1367. text-transform:none;
  1368. visibility:hidden;
  1369. }
  1370. #u185723_div {
  1371. border-width:0px;
  1372. position:absolute;
  1373. left:0px;
  1374. top:0px;
  1375. width:61px;
  1376. height:30px;
  1377. background:inherit;
  1378. background-color:rgba(255, 255, 255, 0);
  1379. border:none;
  1380. border-left:0px;
  1381. border-top:0px;
  1382. border-right:0px;
  1383. border-radius:0px;
  1384. border-bottom-right-radius:0px;
  1385. border-bottom-left-radius:0px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1390. font-weight:400;
  1391. font-style:normal;
  1392. font-size:14px;
  1393. line-height:30px;
  1394. }
  1395. #u185723 {
  1396. border-width:0px;
  1397. position:absolute;
  1398. left:50px;
  1399. top:296px;
  1400. width:61px;
  1401. height:30px;
  1402. display:flex;
  1403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1404. font-weight:400;
  1405. font-style:normal;
  1406. font-size:14px;
  1407. line-height:30px;
  1408. }
  1409. #u185723 .text {
  1410. position:absolute;
  1411. align-self:flex-start;
  1412. padding:0px 0px 0px 0px;
  1413. box-sizing:border-box;
  1414. width:100%;
  1415. }
  1416. #u185723_text {
  1417. border-width:0px;
  1418. white-space:nowrap;
  1419. text-transform:none;
  1420. }
  1421. #u185724_img {
  1422. border-width:0px;
  1423. position:absolute;
  1424. left:0px;
  1425. top:0px;
  1426. width:8px;
  1427. height:13px;
  1428. }
  1429. #u185724 {
  1430. border-width:0px;
  1431. position:absolute;
  1432. left:377px;
  1433. top:305px;
  1434. width:8px;
  1435. height:13px;
  1436. display:flex;
  1437. -webkit-transform:rotate(180deg);
  1438. -moz-transform:rotate(180deg);
  1439. -ms-transform:rotate(180deg);
  1440. transform:rotate(180deg);
  1441. }
  1442. #u185724 .text {
  1443. position:absolute;
  1444. align-self:center;
  1445. padding:2px 2px 2px 2px;
  1446. box-sizing:border-box;
  1447. width:100%;
  1448. }
  1449. #u185724_text {
  1450. border-width:0px;
  1451. word-wrap:break-word;
  1452. text-transform:none;
  1453. visibility:hidden;
  1454. }
  1455. #u185725 {
  1456. border-width:0px;
  1457. position:absolute;
  1458. left:0px;
  1459. top:0px;
  1460. width:0px;
  1461. height:0px;
  1462. }
  1463. #u185726_div {
  1464. border-width:0px;
  1465. position:absolute;
  1466. left:0px;
  1467. top:0px;
  1468. width:375px;
  1469. height:50px;
  1470. background:inherit;
  1471. background-color:rgba(255, 255, 255, 1);
  1472. border:none;
  1473. border-left:0px;
  1474. border-top:0px;
  1475. border-right:0px;
  1476. border-radius:0px;
  1477. border-bottom-right-radius:0px;
  1478. border-bottom-left-radius:0px;
  1479. -moz-box-shadow:none;
  1480. -webkit-box-shadow:none;
  1481. box-shadow:none;
  1482. }
  1483. #u185726 {
  1484. border-width:0px;
  1485. position:absolute;
  1486. left:29px;
  1487. top:336px;
  1488. width:375px;
  1489. height:50px;
  1490. display:flex;
  1491. }
  1492. #u185726 .text {
  1493. position:absolute;
  1494. align-self:center;
  1495. padding:2px 2px 2px 2px;
  1496. box-sizing:border-box;
  1497. width:100%;
  1498. }
  1499. #u185726_text {
  1500. border-width:0px;
  1501. word-wrap:break-word;
  1502. text-transform:none;
  1503. visibility:hidden;
  1504. }
  1505. #u185727_div {
  1506. border-width:0px;
  1507. position:absolute;
  1508. left:0px;
  1509. top:0px;
  1510. width:43px;
  1511. height:30px;
  1512. background:inherit;
  1513. background-color:rgba(255, 255, 255, 0);
  1514. border:none;
  1515. border-left:0px;
  1516. border-top:0px;
  1517. border-right:0px;
  1518. border-radius:0px;
  1519. border-bottom-right-radius:0px;
  1520. border-bottom-left-radius:0px;
  1521. -moz-box-shadow:none;
  1522. -webkit-box-shadow:none;
  1523. box-shadow:none;
  1524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1525. font-weight:400;
  1526. font-style:normal;
  1527. font-size:14px;
  1528. line-height:30px;
  1529. }
  1530. #u185727 {
  1531. border-width:0px;
  1532. position:absolute;
  1533. left:49px;
  1534. top:346px;
  1535. width:43px;
  1536. height:30px;
  1537. display:flex;
  1538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1539. font-weight:400;
  1540. font-style:normal;
  1541. font-size:14px;
  1542. line-height:30px;
  1543. }
  1544. #u185727 .text {
  1545. position:absolute;
  1546. align-self:flex-start;
  1547. padding:0px 0px 0px 0px;
  1548. box-sizing:border-box;
  1549. width:100%;
  1550. }
  1551. #u185727_text {
  1552. border-width:0px;
  1553. white-space:nowrap;
  1554. text-transform:none;
  1555. }
  1556. #u185728_img {
  1557. border-width:0px;
  1558. position:absolute;
  1559. left:0px;
  1560. top:0px;
  1561. width:8px;
  1562. height:13px;
  1563. }
  1564. #u185728 {
  1565. border-width:0px;
  1566. position:absolute;
  1567. left:377px;
  1568. top:355px;
  1569. width:8px;
  1570. height:13px;
  1571. display:flex;
  1572. -webkit-transform:rotate(180deg);
  1573. -moz-transform:rotate(180deg);
  1574. -ms-transform:rotate(180deg);
  1575. transform:rotate(180deg);
  1576. }
  1577. #u185728 .text {
  1578. position:absolute;
  1579. align-self:center;
  1580. padding:2px 2px 2px 2px;
  1581. box-sizing:border-box;
  1582. width:100%;
  1583. }
  1584. #u185728_text {
  1585. border-width:0px;
  1586. word-wrap:break-word;
  1587. text-transform:none;
  1588. visibility:hidden;
  1589. }
  1590. #u185729 {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:0px;
  1594. top:0px;
  1595. width:0px;
  1596. height:0px;
  1597. }
  1598. #u185730_div {
  1599. border-width:0px;
  1600. position:absolute;
  1601. left:0px;
  1602. top:0px;
  1603. width:375px;
  1604. height:50px;
  1605. background:inherit;
  1606. background-color:rgba(255, 255, 255, 1);
  1607. border:none;
  1608. border-left:0px;
  1609. border-top:0px;
  1610. border-right:0px;
  1611. border-radius:0px;
  1612. border-bottom-right-radius:0px;
  1613. border-bottom-left-radius:0px;
  1614. -moz-box-shadow:none;
  1615. -webkit-box-shadow:none;
  1616. box-shadow:none;
  1617. }
  1618. #u185730 {
  1619. border-width:0px;
  1620. position:absolute;
  1621. left:29px;
  1622. top:386px;
  1623. width:375px;
  1624. height:50px;
  1625. display:flex;
  1626. }
  1627. #u185730 .text {
  1628. position:absolute;
  1629. align-self:center;
  1630. padding:2px 2px 2px 2px;
  1631. box-sizing:border-box;
  1632. width:100%;
  1633. }
  1634. #u185730_text {
  1635. border-width:0px;
  1636. word-wrap:break-word;
  1637. text-transform:none;
  1638. visibility:hidden;
  1639. }
  1640. #u185731_div {
  1641. border-width:0px;
  1642. position:absolute;
  1643. left:0px;
  1644. top:0px;
  1645. width:43px;
  1646. height:30px;
  1647. background:inherit;
  1648. background-color:rgba(255, 255, 255, 0);
  1649. border:none;
  1650. border-left:0px;
  1651. border-top:0px;
  1652. border-right:0px;
  1653. border-radius:0px;
  1654. border-bottom-right-radius:0px;
  1655. border-bottom-left-radius:0px;
  1656. -moz-box-shadow:none;
  1657. -webkit-box-shadow:none;
  1658. box-shadow:none;
  1659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1660. font-weight:400;
  1661. font-style:normal;
  1662. font-size:14px;
  1663. line-height:30px;
  1664. }
  1665. #u185731 {
  1666. border-width:0px;
  1667. position:absolute;
  1668. left:49px;
  1669. top:396px;
  1670. width:43px;
  1671. height:30px;
  1672. display:flex;
  1673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1674. font-weight:400;
  1675. font-style:normal;
  1676. font-size:14px;
  1677. line-height:30px;
  1678. }
  1679. #u185731 .text {
  1680. position:absolute;
  1681. align-self:flex-start;
  1682. padding:0px 0px 0px 0px;
  1683. box-sizing:border-box;
  1684. width:100%;
  1685. }
  1686. #u185731_text {
  1687. border-width:0px;
  1688. white-space:nowrap;
  1689. text-transform:none;
  1690. }
  1691. #u185732_img {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:0px;
  1695. top:0px;
  1696. width:8px;
  1697. height:13px;
  1698. }
  1699. #u185732 {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:377px;
  1703. top:405px;
  1704. width:8px;
  1705. height:13px;
  1706. display:flex;
  1707. -webkit-transform:rotate(180deg);
  1708. -moz-transform:rotate(180deg);
  1709. -ms-transform:rotate(180deg);
  1710. transform:rotate(180deg);
  1711. }
  1712. #u185732 .text {
  1713. position:absolute;
  1714. align-self:center;
  1715. padding:2px 2px 2px 2px;
  1716. box-sizing:border-box;
  1717. width:100%;
  1718. }
  1719. #u185732_text {
  1720. border-width:0px;
  1721. word-wrap:break-word;
  1722. text-transform:none;
  1723. visibility:hidden;
  1724. }
  1725. #u185733 {
  1726. border-width:0px;
  1727. position:absolute;
  1728. left:0px;
  1729. top:0px;
  1730. width:0px;
  1731. height:0px;
  1732. }
  1733. #u185734_div {
  1734. border-width:0px;
  1735. position:absolute;
  1736. left:0px;
  1737. top:0px;
  1738. width:375px;
  1739. height:50px;
  1740. background:inherit;
  1741. background-color:rgba(255, 255, 255, 1);
  1742. border:none;
  1743. border-left:0px;
  1744. border-top:0px;
  1745. border-right:0px;
  1746. border-radius:0px;
  1747. border-bottom-right-radius:0px;
  1748. border-bottom-left-radius:0px;
  1749. -moz-box-shadow:none;
  1750. -webkit-box-shadow:none;
  1751. box-shadow:none;
  1752. }
  1753. #u185734 {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:29px;
  1757. top:436px;
  1758. width:375px;
  1759. height:50px;
  1760. display:flex;
  1761. }
  1762. #u185734 .text {
  1763. position:absolute;
  1764. align-self:center;
  1765. padding:2px 2px 2px 2px;
  1766. box-sizing:border-box;
  1767. width:100%;
  1768. }
  1769. #u185734_text {
  1770. border-width:0px;
  1771. word-wrap:break-word;
  1772. text-transform:none;
  1773. visibility:hidden;
  1774. }
  1775. #u185735_div {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:0px;
  1779. top:0px;
  1780. width:43px;
  1781. height:30px;
  1782. background:inherit;
  1783. background-color:rgba(255, 255, 255, 0);
  1784. border:none;
  1785. border-left:0px;
  1786. border-top:0px;
  1787. border-right:0px;
  1788. border-radius:0px;
  1789. border-bottom-right-radius:0px;
  1790. border-bottom-left-radius:0px;
  1791. -moz-box-shadow:none;
  1792. -webkit-box-shadow:none;
  1793. box-shadow:none;
  1794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1795. font-weight:400;
  1796. font-style:normal;
  1797. font-size:14px;
  1798. line-height:30px;
  1799. }
  1800. #u185735 {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:49px;
  1804. top:446px;
  1805. width:43px;
  1806. height:30px;
  1807. display:flex;
  1808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1809. font-weight:400;
  1810. font-style:normal;
  1811. font-size:14px;
  1812. line-height:30px;
  1813. }
  1814. #u185735 .text {
  1815. position:absolute;
  1816. align-self:flex-start;
  1817. padding:0px 0px 0px 0px;
  1818. box-sizing:border-box;
  1819. width:100%;
  1820. }
  1821. #u185735_text {
  1822. border-width:0px;
  1823. white-space:nowrap;
  1824. text-transform:none;
  1825. }
  1826. #u185736_img {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:0px;
  1830. top:0px;
  1831. width:8px;
  1832. height:13px;
  1833. }
  1834. #u185736 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:377px;
  1838. top:455px;
  1839. width:8px;
  1840. height:13px;
  1841. display:flex;
  1842. -webkit-transform:rotate(180deg);
  1843. -moz-transform:rotate(180deg);
  1844. -ms-transform:rotate(180deg);
  1845. transform:rotate(180deg);
  1846. }
  1847. #u185736 .text {
  1848. position:absolute;
  1849. align-self:center;
  1850. padding:2px 2px 2px 2px;
  1851. box-sizing:border-box;
  1852. width:100%;
  1853. }
  1854. #u185736_text {
  1855. border-width:0px;
  1856. word-wrap:break-word;
  1857. text-transform:none;
  1858. visibility:hidden;
  1859. }
  1860. #u185737_div {
  1861. border-width:0px;
  1862. position:absolute;
  1863. left:0px;
  1864. top:0px;
  1865. width:341px;
  1866. height:30px;
  1867. background:inherit;
  1868. background-color:rgba(255, 255, 255, 0);
  1869. border:none;
  1870. border-left:0px;
  1871. border-top:0px;
  1872. border-right:0px;
  1873. border-radius:0px;
  1874. border-bottom-right-radius:0px;
  1875. border-bottom-left-radius:0px;
  1876. -moz-box-shadow:none;
  1877. -webkit-box-shadow:none;
  1878. box-shadow:none;
  1879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1880. font-weight:400;
  1881. font-style:normal;
  1882. font-size:14px;
  1883. line-height:30px;
  1884. }
  1885. #u185737 {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:42px;
  1889. top:172px;
  1890. width:341px;
  1891. height:30px;
  1892. display:flex;
  1893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1894. font-weight:400;
  1895. font-style:normal;
  1896. font-size:14px;
  1897. line-height:30px;
  1898. }
  1899. #u185737 .text {
  1900. position:absolute;
  1901. align-self:flex-start;
  1902. padding:0px 0px 0px 0px;
  1903. box-sizing:border-box;
  1904. width:100%;
  1905. }
  1906. #u185737_text {
  1907. border-width:0px;
  1908. white-space:nowrap;
  1909. text-transform:none;
  1910. }
  1911. #u185738_div {
  1912. border-width:0px;
  1913. position:absolute;
  1914. left:0px;
  1915. top:0px;
  1916. width:375px;
  1917. height:60px;
  1918. background:inherit;
  1919. background-color:rgba(255, 255, 255, 1);
  1920. border:none;
  1921. border-left:0px;
  1922. border-top:0px;
  1923. border-right:0px;
  1924. border-radius:0px;
  1925. border-bottom-right-radius:0px;
  1926. border-bottom-left-radius:0px;
  1927. -moz-box-shadow:none;
  1928. -webkit-box-shadow:none;
  1929. box-shadow:none;
  1930. }
  1931. #u185738 {
  1932. border-width:0px;
  1933. position:absolute;
  1934. left:29px;
  1935. top:497px;
  1936. width:375px;
  1937. height:60px;
  1938. display:flex;
  1939. }
  1940. #u185738 .text {
  1941. position:absolute;
  1942. align-self:center;
  1943. padding:2px 2px 2px 2px;
  1944. box-sizing:border-box;
  1945. width:100%;
  1946. }
  1947. #u185738_text {
  1948. border-width:0px;
  1949. word-wrap:break-word;
  1950. text-transform:none;
  1951. visibility:hidden;
  1952. }
  1953. #u185739_div {
  1954. border-width:0px;
  1955. position:absolute;
  1956. left:0px;
  1957. top:0px;
  1958. width:40px;
  1959. height:40px;
  1960. background:inherit;
  1961. background-color:rgba(0, 137, 254, 1);
  1962. border:none;
  1963. border-radius:4px;
  1964. -moz-box-shadow:none;
  1965. -webkit-box-shadow:none;
  1966. box-shadow:none;
  1967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1968. font-weight:400;
  1969. font-style:normal;
  1970. color:#FFFFFF;
  1971. }
  1972. #u185739 {
  1973. border-width:0px;
  1974. position:absolute;
  1975. left:47px;
  1976. top:507px;
  1977. width:40px;
  1978. height:40px;
  1979. display:flex;
  1980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1981. font-weight:400;
  1982. font-style:normal;
  1983. color:#FFFFFF;
  1984. }
  1985. #u185739 .text {
  1986. position:absolute;
  1987. align-self:center;
  1988. padding:2px 2px 2px 2px;
  1989. box-sizing:border-box;
  1990. width:100%;
  1991. }
  1992. #u185739_text {
  1993. border-width:0px;
  1994. word-wrap:break-word;
  1995. text-transform:none;
  1996. }
  1997. #u185740_div {
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:0px;
  2001. top:0px;
  2002. width:37px;
  2003. height:30px;
  2004. background:inherit;
  2005. background-color:rgba(255, 255, 255, 0);
  2006. border:none;
  2007. border-left:0px;
  2008. border-top:0px;
  2009. border-right:0px;
  2010. border-radius:0px;
  2011. border-bottom-right-radius:0px;
  2012. border-bottom-left-radius:0px;
  2013. -moz-box-shadow:none;
  2014. -webkit-box-shadow:none;
  2015. box-shadow:none;
  2016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2017. font-weight:400;
  2018. font-style:normal;
  2019. font-size:18px;
  2020. line-height:30px;
  2021. }
  2022. #u185740 {
  2023. border-width:0px;
  2024. position:absolute;
  2025. left:100px;
  2026. top:512px;
  2027. width:37px;
  2028. height:30px;
  2029. display:flex;
  2030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2031. font-weight:400;
  2032. font-style:normal;
  2033. font-size:18px;
  2034. line-height:30px;
  2035. }
  2036. #u185740 .text {
  2037. position:absolute;
  2038. align-self:flex-start;
  2039. padding:0px 0px 0px 0px;
  2040. box-sizing:border-box;
  2041. width:100%;
  2042. }
  2043. #u185740_text {
  2044. border-width:0px;
  2045. white-space:nowrap;
  2046. text-transform:none;
  2047. }
  2048. #u185741_div {
  2049. border-width:0px;
  2050. position:absolute;
  2051. left:0px;
  2052. top:0px;
  2053. width:375px;
  2054. height:60px;
  2055. background:inherit;
  2056. background-color:rgba(255, 255, 255, 1);
  2057. border:none;
  2058. border-left:0px;
  2059. border-top:0px;
  2060. border-right:0px;
  2061. border-radius:0px;
  2062. border-bottom-right-radius:0px;
  2063. border-bottom-left-radius:0px;
  2064. -moz-box-shadow:none;
  2065. -webkit-box-shadow:none;
  2066. box-shadow:none;
  2067. }
  2068. #u185741 {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:29px;
  2072. top:558px;
  2073. width:375px;
  2074. height:60px;
  2075. display:flex;
  2076. }
  2077. #u185741 .text {
  2078. position:absolute;
  2079. align-self:center;
  2080. padding:2px 2px 2px 2px;
  2081. box-sizing:border-box;
  2082. width:100%;
  2083. }
  2084. #u185741_text {
  2085. border-width:0px;
  2086. word-wrap:break-word;
  2087. text-transform:none;
  2088. visibility:hidden;
  2089. }
  2090. #u185742_div {
  2091. border-width:0px;
  2092. position:absolute;
  2093. left:0px;
  2094. top:0px;
  2095. width:40px;
  2096. height:40px;
  2097. background:inherit;
  2098. background-color:rgba(0, 137, 254, 1);
  2099. border:none;
  2100. border-radius:4px;
  2101. -moz-box-shadow:none;
  2102. -webkit-box-shadow:none;
  2103. box-shadow:none;
  2104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2105. font-weight:400;
  2106. font-style:normal;
  2107. color:#FFFFFF;
  2108. }
  2109. #u185742 {
  2110. border-width:0px;
  2111. position:absolute;
  2112. left:47px;
  2113. top:568px;
  2114. width:40px;
  2115. height:40px;
  2116. display:flex;
  2117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2118. font-weight:400;
  2119. font-style:normal;
  2120. color:#FFFFFF;
  2121. }
  2122. #u185742 .text {
  2123. position:absolute;
  2124. align-self:center;
  2125. padding:2px 2px 2px 2px;
  2126. box-sizing:border-box;
  2127. width:100%;
  2128. }
  2129. #u185742_text {
  2130. border-width:0px;
  2131. word-wrap:break-word;
  2132. text-transform:none;
  2133. }
  2134. #u185743_div {
  2135. border-width:0px;
  2136. position:absolute;
  2137. left:0px;
  2138. top:0px;
  2139. width:37px;
  2140. height:30px;
  2141. background:inherit;
  2142. background-color:rgba(255, 255, 255, 0);
  2143. border:none;
  2144. border-left:0px;
  2145. border-top:0px;
  2146. border-right:0px;
  2147. border-radius:0px;
  2148. border-bottom-right-radius:0px;
  2149. border-bottom-left-radius:0px;
  2150. -moz-box-shadow:none;
  2151. -webkit-box-shadow:none;
  2152. box-shadow:none;
  2153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2154. font-weight:400;
  2155. font-style:normal;
  2156. font-size:18px;
  2157. line-height:30px;
  2158. }
  2159. #u185743 {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:100px;
  2163. top:573px;
  2164. width:37px;
  2165. height:30px;
  2166. display:flex;
  2167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2168. font-weight:400;
  2169. font-style:normal;
  2170. font-size:18px;
  2171. line-height:30px;
  2172. }
  2173. #u185743 .text {
  2174. position:absolute;
  2175. align-self:flex-start;
  2176. padding:0px 0px 0px 0px;
  2177. box-sizing:border-box;
  2178. width:100%;
  2179. }
  2180. #u185743_text {
  2181. border-width:0px;
  2182. white-space:nowrap;
  2183. text-transform:none;
  2184. }