styles.css 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:769px;
  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. #u161712_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u161712 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u161712 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u161712_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u161713_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. #u161713 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u161713 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u161713_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u161714 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u161715_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. #u161715 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u161715 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u161715_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u161716 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u161717_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u161717 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u161717 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u161717_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u161718_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u161718 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u161718 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u161718_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u161719 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u161720_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u161720 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u161720 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u161720_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u161721_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u161721 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u161721 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u161721_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u161722_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u161722 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u161722 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u161722_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u161723_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u161723 {
  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. #u161723 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u161723_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u161724_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u161724 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u161724 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u161724_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u161725_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. #u161725 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u161725 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u161725_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u161726 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u161727_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u161727 {
  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. #u161727 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u161727_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u161728_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. #u161728 {
  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. #u161728 .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. #u161728_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u161729 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u161730_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u161730 {
  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. #u161730 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u161730_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u161731_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. #u161731 {
  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. #u161731 .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. #u161731_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u161732_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. #u161732 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u161732 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u161732_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u161733 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u161734_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u161734 {
  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. #u161734 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u161734_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u161735_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. #u161735 {
  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. #u161735 .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. #u161735_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u161736 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u161737_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u161737 {
  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. #u161737 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u161737_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u161738_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. #u161738 {
  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. #u161738 .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. #u161738_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u161739_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. #u161739 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:105px;
  802. width:375px;
  803. height:735px;
  804. display:flex;
  805. }
  806. #u161739 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u161739_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u161740_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:375px;
  825. height:735px;
  826. background:inherit;
  827. background-color:rgba(242, 242, 242, 1);
  828. border:none;
  829. border-top:0px;
  830. border-radius:22px;
  831. border-top-left-radius:0px;
  832. border-top-right-radius:0px;
  833. -moz-box-shadow:none;
  834. -webkit-box-shadow:none;
  835. box-shadow:none;
  836. }
  837. #u161740 {
  838. border-width:0px;
  839. position:absolute;
  840. left:29px;
  841. top:105px;
  842. width:375px;
  843. height:735px;
  844. display:flex;
  845. }
  846. #u161740 .text {
  847. position:absolute;
  848. align-self:center;
  849. padding:2px 2px 2px 2px;
  850. box-sizing:border-box;
  851. width:100%;
  852. }
  853. #u161740_text {
  854. border-width:0px;
  855. word-wrap:break-word;
  856. text-transform:none;
  857. visibility:hidden;
  858. }
  859. #u161741_div {
  860. border-width:0px;
  861. position:absolute;
  862. left:0px;
  863. top:0px;
  864. width:375px;
  865. height:305px;
  866. background:inherit;
  867. background-color:rgba(255, 255, 255, 1);
  868. border:none;
  869. border-top:0px;
  870. border-bottom:0px;
  871. border-radius:0px;
  872. border-top-left-radius:0px;
  873. border-top-right-radius:0px;
  874. border-bottom-right-radius:0px;
  875. border-bottom-left-radius:0px;
  876. -moz-box-shadow:none;
  877. -webkit-box-shadow:none;
  878. box-shadow:none;
  879. }
  880. #u161741 {
  881. border-width:0px;
  882. position:absolute;
  883. left:29px;
  884. top:276px;
  885. width:375px;
  886. height:305px;
  887. display:flex;
  888. }
  889. #u161741 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u161741_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u161742_img {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:11px;
  908. height:18px;
  909. }
  910. #u161742 {
  911. border-width:0px;
  912. position:absolute;
  913. left:42px;
  914. top:79px;
  915. width:11px;
  916. height:18px;
  917. display:flex;
  918. }
  919. #u161742 .text {
  920. position:absolute;
  921. align-self:center;
  922. padding:2px 2px 2px 2px;
  923. box-sizing:border-box;
  924. width:100%;
  925. }
  926. #u161742_text {
  927. border-width:0px;
  928. word-wrap:break-word;
  929. text-transform:none;
  930. visibility:hidden;
  931. }
  932. #u161743_div {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:73px;
  938. height:30px;
  939. background:inherit;
  940. background-color:rgba(255, 255, 255, 0);
  941. border:none;
  942. border-left:0px;
  943. border-top:0px;
  944. border-right:0px;
  945. border-radius:0px;
  946. border-bottom-right-radius:0px;
  947. border-bottom-left-radius:0px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  952. font-weight:500;
  953. font-style:normal;
  954. font-size:18px;
  955. line-height:30px;
  956. }
  957. #u161743 {
  958. border-width:0px;
  959. position:absolute;
  960. left:71px;
  961. top:73px;
  962. width:73px;
  963. height:30px;
  964. display:flex;
  965. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  966. font-weight:500;
  967. font-style:normal;
  968. font-size:18px;
  969. line-height:30px;
  970. }
  971. #u161743 .text {
  972. position:absolute;
  973. align-self:flex-start;
  974. padding:0px 0px 0px 0px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u161743_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u161744 {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:0px;
  989. height:0px;
  990. }
  991. #u161745_div {
  992. border-width:0px;
  993. position:absolute;
  994. left:0px;
  995. top:0px;
  996. width:375px;
  997. height:50px;
  998. background:inherit;
  999. background-color:rgba(255, 255, 255, 1);
  1000. border:none;
  1001. border-left:0px;
  1002. border-right:0px;
  1003. border-radius:0px;
  1004. border-top-left-radius:0px;
  1005. border-top-right-radius:0px;
  1006. border-bottom-right-radius:0px;
  1007. border-bottom-left-radius:0px;
  1008. -moz-box-shadow:none;
  1009. -webkit-box-shadow:none;
  1010. box-shadow:none;
  1011. }
  1012. #u161745 {
  1013. border-width:0px;
  1014. position:absolute;
  1015. left:29px;
  1016. top:324px;
  1017. width:375px;
  1018. height:50px;
  1019. display:flex;
  1020. }
  1021. #u161745 .text {
  1022. position:absolute;
  1023. align-self:center;
  1024. padding:2px 2px 2px 2px;
  1025. box-sizing:border-box;
  1026. width:100%;
  1027. }
  1028. #u161745_text {
  1029. border-width:0px;
  1030. word-wrap:break-word;
  1031. text-transform:none;
  1032. visibility:hidden;
  1033. }
  1034. #u161746_div {
  1035. border-width:0px;
  1036. position:absolute;
  1037. left:0px;
  1038. top:0px;
  1039. width:50px;
  1040. height:30px;
  1041. background:inherit;
  1042. background-color:rgba(255, 255, 255, 0);
  1043. border:none;
  1044. border-left:0px;
  1045. border-top:0px;
  1046. border-right:0px;
  1047. border-radius:0px;
  1048. border-bottom-right-radius:0px;
  1049. border-bottom-left-radius:0px;
  1050. -moz-box-shadow:none;
  1051. -webkit-box-shadow:none;
  1052. box-shadow:none;
  1053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1054. font-weight:400;
  1055. font-style:normal;
  1056. font-size:14px;
  1057. line-height:30px;
  1058. }
  1059. #u161746 {
  1060. border-width:0px;
  1061. position:absolute;
  1062. left:53px;
  1063. top:334px;
  1064. width:50px;
  1065. height:30px;
  1066. display:flex;
  1067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1068. font-weight:400;
  1069. font-style:normal;
  1070. font-size:14px;
  1071. line-height:30px;
  1072. }
  1073. #u161746 .text {
  1074. position:absolute;
  1075. align-self:flex-start;
  1076. padding:0px 0px 0px 0px;
  1077. box-sizing:border-box;
  1078. width:100%;
  1079. }
  1080. #u161746_text {
  1081. border-width:0px;
  1082. white-space:nowrap;
  1083. text-transform:none;
  1084. }
  1085. #u161747_input {
  1086. position:absolute;
  1087. left:0px;
  1088. top:0px;
  1089. width:264px;
  1090. height:33px;
  1091. padding:2px 2px 2px 2px;
  1092. font-family:'Microsoft YaHei', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:13px;
  1096. letter-spacing:normal;
  1097. color:#000000;
  1098. vertical-align:none;
  1099. text-align:left;
  1100. text-transform:none;
  1101. background-color:transparent;
  1102. border-color:transparent;
  1103. }
  1104. #u161747_input.disabled {
  1105. position:absolute;
  1106. left:0px;
  1107. top:0px;
  1108. width:264px;
  1109. height:33px;
  1110. padding:2px 2px 2px 2px;
  1111. font-family:'Microsoft YaHei', sans-serif;
  1112. font-weight:400;
  1113. font-style:normal;
  1114. font-size:13px;
  1115. letter-spacing:normal;
  1116. color:#000000;
  1117. vertical-align:none;
  1118. text-align:left;
  1119. text-transform:none;
  1120. background-color:transparent;
  1121. border-color:transparent;
  1122. }
  1123. #u161747_div {
  1124. border-width:0px;
  1125. position:absolute;
  1126. left:0px;
  1127. top:0px;
  1128. width:264px;
  1129. height:33px;
  1130. background:inherit;
  1131. background-color:rgba(255, 255, 255, 1);
  1132. border:none;
  1133. border-radius:0px;
  1134. -moz-box-shadow:none;
  1135. -webkit-box-shadow:none;
  1136. box-shadow:none;
  1137. font-family:'Microsoft YaHei', sans-serif;
  1138. font-weight:400;
  1139. font-style:normal;
  1140. }
  1141. #u161747 {
  1142. border-width:0px;
  1143. position:absolute;
  1144. left:128px;
  1145. top:333px;
  1146. width:264px;
  1147. height:33px;
  1148. display:flex;
  1149. font-family:'Microsoft YaHei', sans-serif;
  1150. font-weight:400;
  1151. font-style:normal;
  1152. }
  1153. #u161747 .text {
  1154. position:absolute;
  1155. align-self:center;
  1156. padding:2px 2px 2px 2px;
  1157. box-sizing:border-box;
  1158. width:100%;
  1159. }
  1160. #u161747_div.disabled {
  1161. border-width:0px;
  1162. position:absolute;
  1163. left:0px;
  1164. top:0px;
  1165. width:264px;
  1166. height:33px;
  1167. background:inherit;
  1168. background-color:rgba(240, 240, 240, 1);
  1169. border:none;
  1170. border-radius:0px;
  1171. -moz-box-shadow:none;
  1172. -webkit-box-shadow:none;
  1173. box-shadow:none;
  1174. font-family:'Microsoft YaHei', sans-serif;
  1175. font-weight:400;
  1176. font-style:normal;
  1177. }
  1178. #u161747.disabled {
  1179. }
  1180. #u161748 {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:0px;
  1186. height:0px;
  1187. }
  1188. #u161749_div {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:375px;
  1194. height:50px;
  1195. background:inherit;
  1196. background-color:rgba(255, 255, 255, 1);
  1197. border:none;
  1198. border-left:0px;
  1199. border-right:0px;
  1200. border-radius:0px;
  1201. border-top-left-radius:0px;
  1202. border-top-right-radius:0px;
  1203. border-bottom-right-radius:0px;
  1204. border-bottom-left-radius:0px;
  1205. -moz-box-shadow:none;
  1206. -webkit-box-shadow:none;
  1207. box-shadow:none;
  1208. }
  1209. #u161749 {
  1210. border-width:0px;
  1211. position:absolute;
  1212. left:29px;
  1213. top:373px;
  1214. width:375px;
  1215. height:50px;
  1216. display:flex;
  1217. }
  1218. #u161749 .text {
  1219. position:absolute;
  1220. align-self:center;
  1221. padding:2px 2px 2px 2px;
  1222. box-sizing:border-box;
  1223. width:100%;
  1224. }
  1225. #u161749_text {
  1226. border-width:0px;
  1227. word-wrap:break-word;
  1228. text-transform:none;
  1229. visibility:hidden;
  1230. }
  1231. #u161750_div {
  1232. border-width:0px;
  1233. position:absolute;
  1234. left:0px;
  1235. top:0px;
  1236. width:64px;
  1237. height:30px;
  1238. background:inherit;
  1239. background-color:rgba(255, 255, 255, 0);
  1240. border:none;
  1241. border-left:0px;
  1242. border-top:0px;
  1243. border-right:0px;
  1244. border-radius:0px;
  1245. border-bottom-right-radius:0px;
  1246. border-bottom-left-radius:0px;
  1247. -moz-box-shadow:none;
  1248. -webkit-box-shadow:none;
  1249. box-shadow:none;
  1250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1251. font-weight:400;
  1252. font-style:normal;
  1253. font-size:14px;
  1254. line-height:30px;
  1255. }
  1256. #u161750 {
  1257. border-width:0px;
  1258. position:absolute;
  1259. left:53px;
  1260. top:383px;
  1261. width:64px;
  1262. height:30px;
  1263. display:flex;
  1264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1265. font-weight:400;
  1266. font-style:normal;
  1267. font-size:14px;
  1268. line-height:30px;
  1269. }
  1270. #u161750 .text {
  1271. position:absolute;
  1272. align-self:flex-start;
  1273. padding:0px 0px 0px 0px;
  1274. box-sizing:border-box;
  1275. width:100%;
  1276. }
  1277. #u161750_text {
  1278. border-width:0px;
  1279. white-space:nowrap;
  1280. text-transform:none;
  1281. }
  1282. #u161751_input {
  1283. position:absolute;
  1284. left:0px;
  1285. top:0px;
  1286. width:258px;
  1287. height:33px;
  1288. padding:2px 2px 2px 2px;
  1289. font-family:'Microsoft YaHei', sans-serif;
  1290. font-weight:400;
  1291. font-style:normal;
  1292. font-size:13px;
  1293. letter-spacing:normal;
  1294. color:#000000;
  1295. vertical-align:none;
  1296. text-align:left;
  1297. text-transform:none;
  1298. background-color:transparent;
  1299. border-color:transparent;
  1300. }
  1301. #u161751_input.disabled {
  1302. position:absolute;
  1303. left:0px;
  1304. top:0px;
  1305. width:258px;
  1306. height:33px;
  1307. padding:2px 2px 2px 2px;
  1308. font-family:'Microsoft YaHei', sans-serif;
  1309. font-weight:400;
  1310. font-style:normal;
  1311. font-size:13px;
  1312. letter-spacing:normal;
  1313. color:#000000;
  1314. vertical-align:none;
  1315. text-align:left;
  1316. text-transform:none;
  1317. background-color:transparent;
  1318. border-color:transparent;
  1319. }
  1320. #u161751_div {
  1321. border-width:0px;
  1322. position:absolute;
  1323. left:0px;
  1324. top:0px;
  1325. width:258px;
  1326. height:33px;
  1327. background:inherit;
  1328. background-color:rgba(255, 255, 255, 1);
  1329. border:none;
  1330. border-radius:0px;
  1331. -moz-box-shadow:none;
  1332. -webkit-box-shadow:none;
  1333. box-shadow:none;
  1334. font-family:'Microsoft YaHei', sans-serif;
  1335. font-weight:400;
  1336. font-style:normal;
  1337. }
  1338. #u161751 {
  1339. border-width:0px;
  1340. position:absolute;
  1341. left:134px;
  1342. top:382px;
  1343. width:258px;
  1344. height:33px;
  1345. display:flex;
  1346. font-family:'Microsoft YaHei', sans-serif;
  1347. font-weight:400;
  1348. font-style:normal;
  1349. }
  1350. #u161751 .text {
  1351. position:absolute;
  1352. align-self:center;
  1353. padding:2px 2px 2px 2px;
  1354. box-sizing:border-box;
  1355. width:100%;
  1356. }
  1357. #u161751_div.disabled {
  1358. border-width:0px;
  1359. position:absolute;
  1360. left:0px;
  1361. top:0px;
  1362. width:258px;
  1363. height:33px;
  1364. background:inherit;
  1365. background-color:rgba(240, 240, 240, 1);
  1366. border:none;
  1367. border-radius:0px;
  1368. -moz-box-shadow:none;
  1369. -webkit-box-shadow:none;
  1370. box-shadow:none;
  1371. font-family:'Microsoft YaHei', sans-serif;
  1372. font-weight:400;
  1373. font-style:normal;
  1374. }
  1375. #u161751.disabled {
  1376. }
  1377. #u161752 {
  1378. border-width:0px;
  1379. position:absolute;
  1380. left:0px;
  1381. top:0px;
  1382. width:0px;
  1383. height:0px;
  1384. }
  1385. #u161753_div {
  1386. border-width:0px;
  1387. position:absolute;
  1388. left:0px;
  1389. top:0px;
  1390. width:375px;
  1391. height:80px;
  1392. background:inherit;
  1393. background-color:rgba(255, 255, 255, 1);
  1394. border:none;
  1395. border-top:0px;
  1396. border-bottom:0px;
  1397. border-radius:0px;
  1398. border-top-left-radius:0px;
  1399. border-top-right-radius:0px;
  1400. border-bottom-right-radius:0px;
  1401. border-bottom-left-radius:0px;
  1402. -moz-box-shadow:none;
  1403. -webkit-box-shadow:none;
  1404. box-shadow:none;
  1405. }
  1406. #u161753 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:29px;
  1410. top:105px;
  1411. width:375px;
  1412. height:80px;
  1413. display:flex;
  1414. }
  1415. #u161753 .text {
  1416. position:absolute;
  1417. align-self:center;
  1418. padding:2px 2px 2px 2px;
  1419. box-sizing:border-box;
  1420. width:100%;
  1421. }
  1422. #u161753_text {
  1423. border-width:0px;
  1424. word-wrap:break-word;
  1425. text-transform:none;
  1426. visibility:hidden;
  1427. }
  1428. #u161754_div {
  1429. border-width:0px;
  1430. position:absolute;
  1431. left:0px;
  1432. top:0px;
  1433. width:57px;
  1434. height:30px;
  1435. background:inherit;
  1436. background-color:rgba(255, 255, 255, 0);
  1437. border:none;
  1438. border-left:0px;
  1439. border-top:0px;
  1440. border-right:0px;
  1441. border-radius:0px;
  1442. border-bottom-right-radius:0px;
  1443. border-bottom-left-radius:0px;
  1444. -moz-box-shadow:none;
  1445. -webkit-box-shadow:none;
  1446. box-shadow:none;
  1447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1448. font-weight:400;
  1449. font-style:normal;
  1450. font-size:14px;
  1451. color:#1890FF;
  1452. line-height:30px;
  1453. }
  1454. #u161754 {
  1455. border-width:0px;
  1456. position:absolute;
  1457. left:48px;
  1458. top:145px;
  1459. width:57px;
  1460. height:30px;
  1461. display:flex;
  1462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1463. font-weight:400;
  1464. font-style:normal;
  1465. font-size:14px;
  1466. color:#1890FF;
  1467. line-height:30px;
  1468. }
  1469. #u161754 .text {
  1470. position:absolute;
  1471. align-self:flex-start;
  1472. padding:0px 0px 0px 0px;
  1473. box-sizing:border-box;
  1474. width:100%;
  1475. }
  1476. #u161754_text {
  1477. border-width:0px;
  1478. white-space:nowrap;
  1479. text-transform:none;
  1480. }
  1481. #u161755_div {
  1482. border-width:0px;
  1483. position:absolute;
  1484. left:0px;
  1485. top:0px;
  1486. width:73px;
  1487. height:30px;
  1488. background:inherit;
  1489. background-color:rgba(255, 255, 255, 0);
  1490. border:none;
  1491. border-left:0px;
  1492. border-top:0px;
  1493. border-right:0px;
  1494. border-radius:0px;
  1495. border-bottom-right-radius:0px;
  1496. border-bottom-left-radius:0px;
  1497. -moz-box-shadow:none;
  1498. -webkit-box-shadow:none;
  1499. box-shadow:none;
  1500. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1501. font-weight:500;
  1502. font-style:normal;
  1503. font-size:18px;
  1504. line-height:30px;
  1505. }
  1506. #u161755 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:48px;
  1510. top:115px;
  1511. width:73px;
  1512. height:30px;
  1513. display:flex;
  1514. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1515. font-weight:500;
  1516. font-style:normal;
  1517. font-size:18px;
  1518. line-height:30px;
  1519. }
  1520. #u161755 .text {
  1521. position:absolute;
  1522. align-self:flex-start;
  1523. padding:0px 0px 0px 0px;
  1524. box-sizing:border-box;
  1525. width:100%;
  1526. }
  1527. #u161755_text {
  1528. border-width:0px;
  1529. white-space:nowrap;
  1530. text-transform:none;
  1531. }
  1532. #u161756_img {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:0px;
  1536. top:0px;
  1537. width:8px;
  1538. height:13px;
  1539. }
  1540. #u161756 {
  1541. border-width:0px;
  1542. position:absolute;
  1543. left:384px;
  1544. top:154px;
  1545. width:8px;
  1546. height:13px;
  1547. display:flex;
  1548. -webkit-transform:rotate(180deg);
  1549. -moz-transform:rotate(180deg);
  1550. -ms-transform:rotate(180deg);
  1551. transform:rotate(180deg);
  1552. }
  1553. #u161756 .text {
  1554. position:absolute;
  1555. align-self:center;
  1556. padding:2px 2px 2px 2px;
  1557. box-sizing:border-box;
  1558. width:100%;
  1559. }
  1560. #u161756_text {
  1561. border-width:0px;
  1562. word-wrap:break-word;
  1563. text-transform:none;
  1564. visibility:hidden;
  1565. }
  1566. #u161757 {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:0px;
  1572. height:0px;
  1573. }
  1574. #u161758_div {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:0px;
  1578. top:0px;
  1579. width:375px;
  1580. height:60px;
  1581. background:inherit;
  1582. background-color:rgba(255, 255, 255, 1);
  1583. border:none;
  1584. border-top:0px;
  1585. border-radius:28px;
  1586. border-top-left-radius:0px;
  1587. border-top-right-radius:0px;
  1588. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1589. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1590. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1592. font-weight:400;
  1593. font-style:normal;
  1594. font-size:14px;
  1595. color:#FFFFFF;
  1596. }
  1597. #u161758 {
  1598. border-width:0px;
  1599. position:absolute;
  1600. left:29px;
  1601. top:780px;
  1602. width:375px;
  1603. height:60px;
  1604. display:flex;
  1605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1606. font-weight:400;
  1607. font-style:normal;
  1608. font-size:14px;
  1609. color:#FFFFFF;
  1610. }
  1611. #u161758 .text {
  1612. position:absolute;
  1613. align-self:center;
  1614. padding:2px 2px 2px 2px;
  1615. box-sizing:border-box;
  1616. width:100%;
  1617. }
  1618. #u161758_text {
  1619. border-width:0px;
  1620. word-wrap:break-word;
  1621. text-transform:none;
  1622. visibility:hidden;
  1623. }
  1624. #u161759_div {
  1625. border-width:0px;
  1626. position:absolute;
  1627. left:0px;
  1628. top:0px;
  1629. width:333px;
  1630. height:40px;
  1631. background:inherit;
  1632. background-color:rgba(0, 137, 254, 1);
  1633. border:none;
  1634. border-radius:63px;
  1635. -moz-box-shadow:none;
  1636. -webkit-box-shadow:none;
  1637. box-shadow:none;
  1638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1639. font-weight:400;
  1640. font-style:normal;
  1641. font-size:14px;
  1642. color:#FFFFFF;
  1643. }
  1644. #u161759 {
  1645. border-width:0px;
  1646. position:absolute;
  1647. left:48px;
  1648. top:789px;
  1649. width:333px;
  1650. height:40px;
  1651. display:flex;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:14px;
  1656. color:#FFFFFF;
  1657. }
  1658. #u161759 .text {
  1659. position:absolute;
  1660. align-self:center;
  1661. padding:2px 2px 2px 2px;
  1662. box-sizing:border-box;
  1663. width:100%;
  1664. }
  1665. #u161759_text {
  1666. border-width:0px;
  1667. word-wrap:break-word;
  1668. text-transform:none;
  1669. }
  1670. #u161760 {
  1671. border-width:0px;
  1672. position:absolute;
  1673. left:0px;
  1674. top:0px;
  1675. width:0px;
  1676. height:0px;
  1677. }
  1678. #u161761_div {
  1679. border-width:0px;
  1680. position:absolute;
  1681. left:0px;
  1682. top:0px;
  1683. width:375px;
  1684. height:50px;
  1685. background:inherit;
  1686. background-color:rgba(255, 255, 255, 1);
  1687. border:none;
  1688. border-left:0px;
  1689. border-right:0px;
  1690. border-radius:0px;
  1691. border-top-left-radius:0px;
  1692. border-top-right-radius:0px;
  1693. border-bottom-right-radius:0px;
  1694. border-bottom-left-radius:0px;
  1695. -moz-box-shadow:none;
  1696. -webkit-box-shadow:none;
  1697. box-shadow:none;
  1698. }
  1699. #u161761 {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:29px;
  1703. top:423px;
  1704. width:375px;
  1705. height:50px;
  1706. display:flex;
  1707. }
  1708. #u161761 .text {
  1709. position:absolute;
  1710. align-self:center;
  1711. padding:2px 2px 2px 2px;
  1712. box-sizing:border-box;
  1713. width:100%;
  1714. }
  1715. #u161761_text {
  1716. border-width:0px;
  1717. word-wrap:break-word;
  1718. text-transform:none;
  1719. visibility:hidden;
  1720. }
  1721. #u161762_div {
  1722. border-width:0px;
  1723. position:absolute;
  1724. left:0px;
  1725. top:0px;
  1726. width:71px;
  1727. height:30px;
  1728. background:inherit;
  1729. background-color:rgba(255, 255, 255, 0);
  1730. border:none;
  1731. border-left:0px;
  1732. border-top:0px;
  1733. border-right:0px;
  1734. border-radius:0px;
  1735. border-bottom-right-radius:0px;
  1736. border-bottom-left-radius:0px;
  1737. -moz-box-shadow:none;
  1738. -webkit-box-shadow:none;
  1739. box-shadow:none;
  1740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1741. font-weight:400;
  1742. font-style:normal;
  1743. font-size:14px;
  1744. line-height:30px;
  1745. }
  1746. #u161762 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:53px;
  1750. top:433px;
  1751. width:71px;
  1752. height:30px;
  1753. display:flex;
  1754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1755. font-weight:400;
  1756. font-style:normal;
  1757. font-size:14px;
  1758. line-height:30px;
  1759. }
  1760. #u161762 .text {
  1761. position:absolute;
  1762. align-self:flex-start;
  1763. padding:0px 0px 0px 0px;
  1764. box-sizing:border-box;
  1765. width:100%;
  1766. }
  1767. #u161762_text {
  1768. border-width:0px;
  1769. white-space:nowrap;
  1770. text-transform:none;
  1771. }
  1772. #u161763_input {
  1773. position:absolute;
  1774. left:0px;
  1775. top:0px;
  1776. width:258px;
  1777. height:33px;
  1778. padding:2px 2px 2px 2px;
  1779. font-family:'Microsoft YaHei', sans-serif;
  1780. font-weight:400;
  1781. font-style:normal;
  1782. font-size:13px;
  1783. letter-spacing:normal;
  1784. color:#000000;
  1785. vertical-align:none;
  1786. text-align:left;
  1787. text-transform:none;
  1788. background-color:transparent;
  1789. border-color:transparent;
  1790. }
  1791. #u161763_input.disabled {
  1792. position:absolute;
  1793. left:0px;
  1794. top:0px;
  1795. width:258px;
  1796. height:33px;
  1797. padding:2px 2px 2px 2px;
  1798. font-family:'Microsoft YaHei', sans-serif;
  1799. font-weight:400;
  1800. font-style:normal;
  1801. font-size:13px;
  1802. letter-spacing:normal;
  1803. color:#000000;
  1804. vertical-align:none;
  1805. text-align:left;
  1806. text-transform:none;
  1807. background-color:transparent;
  1808. border-color:transparent;
  1809. }
  1810. #u161763_div {
  1811. border-width:0px;
  1812. position:absolute;
  1813. left:0px;
  1814. top:0px;
  1815. width:258px;
  1816. height:33px;
  1817. background:inherit;
  1818. background-color:rgba(255, 255, 255, 1);
  1819. border:none;
  1820. border-radius:0px;
  1821. -moz-box-shadow:none;
  1822. -webkit-box-shadow:none;
  1823. box-shadow:none;
  1824. font-family:'Microsoft YaHei', sans-serif;
  1825. font-weight:400;
  1826. font-style:normal;
  1827. }
  1828. #u161763 {
  1829. border-width:0px;
  1830. position:absolute;
  1831. left:134px;
  1832. top:432px;
  1833. width:258px;
  1834. height:33px;
  1835. display:flex;
  1836. font-family:'Microsoft YaHei', sans-serif;
  1837. font-weight:400;
  1838. font-style:normal;
  1839. }
  1840. #u161763 .text {
  1841. position:absolute;
  1842. align-self:center;
  1843. padding:2px 2px 2px 2px;
  1844. box-sizing:border-box;
  1845. width:100%;
  1846. }
  1847. #u161763_div.disabled {
  1848. border-width:0px;
  1849. position:absolute;
  1850. left:0px;
  1851. top:0px;
  1852. width:258px;
  1853. height:33px;
  1854. background:inherit;
  1855. background-color:rgba(240, 240, 240, 1);
  1856. border:none;
  1857. border-radius:0px;
  1858. -moz-box-shadow:none;
  1859. -webkit-box-shadow:none;
  1860. box-shadow:none;
  1861. font-family:'Microsoft YaHei', sans-serif;
  1862. font-weight:400;
  1863. font-style:normal;
  1864. }
  1865. #u161763.disabled {
  1866. }
  1867. #u161764 {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:0px;
  1871. top:0px;
  1872. width:0px;
  1873. height:0px;
  1874. }
  1875. #u161765_div {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:0px;
  1879. top:0px;
  1880. width:375px;
  1881. height:80px;
  1882. background:inherit;
  1883. background-color:rgba(255, 255, 255, 1);
  1884. border:none;
  1885. border-top:0px;
  1886. border-bottom:0px;
  1887. border-radius:0px;
  1888. border-top-left-radius:0px;
  1889. border-top-right-radius:0px;
  1890. border-bottom-right-radius:0px;
  1891. border-bottom-left-radius:0px;
  1892. -moz-box-shadow:none;
  1893. -webkit-box-shadow:none;
  1894. box-shadow:none;
  1895. }
  1896. #u161765 {
  1897. border-width:0px;
  1898. position:absolute;
  1899. left:29px;
  1900. top:186px;
  1901. width:375px;
  1902. height:80px;
  1903. display:flex;
  1904. }
  1905. #u161765 .text {
  1906. position:absolute;
  1907. align-self:center;
  1908. padding:2px 2px 2px 2px;
  1909. box-sizing:border-box;
  1910. width:100%;
  1911. }
  1912. #u161765_text {
  1913. border-width:0px;
  1914. word-wrap:break-word;
  1915. text-transform:none;
  1916. visibility:hidden;
  1917. }
  1918. #u161766_div {
  1919. border-width:0px;
  1920. position:absolute;
  1921. left:0px;
  1922. top:0px;
  1923. width:160px;
  1924. height:30px;
  1925. background:inherit;
  1926. background-color:rgba(255, 255, 255, 0);
  1927. border:none;
  1928. border-left:0px;
  1929. border-top:0px;
  1930. border-right:0px;
  1931. border-radius:0px;
  1932. border-bottom-right-radius:0px;
  1933. border-bottom-left-radius:0px;
  1934. -moz-box-shadow:none;
  1935. -webkit-box-shadow:none;
  1936. box-shadow:none;
  1937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1938. font-weight:400;
  1939. font-style:normal;
  1940. font-size:14px;
  1941. color:#1890FF;
  1942. line-height:30px;
  1943. }
  1944. #u161766 {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:48px;
  1948. top:226px;
  1949. width:160px;
  1950. height:30px;
  1951. display:flex;
  1952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1953. font-weight:400;
  1954. font-style:normal;
  1955. font-size:14px;
  1956. color:#1890FF;
  1957. line-height:30px;
  1958. }
  1959. #u161766 .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. #u161766_text {
  1967. border-width:0px;
  1968. white-space:nowrap;
  1969. text-transform:none;
  1970. }
  1971. #u161767_div {
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:0px;
  1975. top:0px;
  1976. width:73px;
  1977. height:30px;
  1978. background:inherit;
  1979. background-color:rgba(255, 255, 255, 0);
  1980. border:none;
  1981. border-left:0px;
  1982. border-top:0px;
  1983. border-right:0px;
  1984. border-radius:0px;
  1985. border-bottom-right-radius:0px;
  1986. border-bottom-left-radius:0px;
  1987. -moz-box-shadow:none;
  1988. -webkit-box-shadow:none;
  1989. box-shadow:none;
  1990. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1991. font-weight:500;
  1992. font-style:normal;
  1993. font-size:18px;
  1994. line-height:30px;
  1995. }
  1996. #u161767 {
  1997. border-width:0px;
  1998. position:absolute;
  1999. left:48px;
  2000. top:196px;
  2001. width:73px;
  2002. height:30px;
  2003. display:flex;
  2004. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2005. font-weight:500;
  2006. font-style:normal;
  2007. font-size:18px;
  2008. line-height:30px;
  2009. }
  2010. #u161767 .text {
  2011. position:absolute;
  2012. align-self:flex-start;
  2013. padding:0px 0px 0px 0px;
  2014. box-sizing:border-box;
  2015. width:100%;
  2016. }
  2017. #u161767_text {
  2018. border-width:0px;
  2019. white-space:nowrap;
  2020. text-transform:none;
  2021. }
  2022. #u161768_img {
  2023. border-width:0px;
  2024. position:absolute;
  2025. left:0px;
  2026. top:0px;
  2027. width:8px;
  2028. height:13px;
  2029. }
  2030. #u161768 {
  2031. border-width:0px;
  2032. position:absolute;
  2033. left:384px;
  2034. top:235px;
  2035. width:8px;
  2036. height:13px;
  2037. display:flex;
  2038. -webkit-transform:rotate(180deg);
  2039. -moz-transform:rotate(180deg);
  2040. -ms-transform:rotate(180deg);
  2041. transform:rotate(180deg);
  2042. }
  2043. #u161768 .text {
  2044. position:absolute;
  2045. align-self:center;
  2046. padding:2px 2px 2px 2px;
  2047. box-sizing:border-box;
  2048. width:100%;
  2049. }
  2050. #u161768_text {
  2051. border-width:0px;
  2052. word-wrap:break-word;
  2053. text-transform:none;
  2054. visibility:hidden;
  2055. }
  2056. #u161769_div {
  2057. border-width:0px;
  2058. position:absolute;
  2059. left:0px;
  2060. top:0px;
  2061. width:73px;
  2062. height:30px;
  2063. background:inherit;
  2064. background-color:rgba(255, 255, 255, 0);
  2065. border:none;
  2066. border-left:0px;
  2067. border-top:0px;
  2068. border-right:0px;
  2069. border-radius:0px;
  2070. border-bottom-right-radius:0px;
  2071. border-bottom-left-radius:0px;
  2072. -moz-box-shadow:none;
  2073. -webkit-box-shadow:none;
  2074. box-shadow:none;
  2075. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2076. font-weight:500;
  2077. font-style:normal;
  2078. font-size:18px;
  2079. line-height:30px;
  2080. }
  2081. #u161769 {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:48px;
  2085. top:286px;
  2086. width:73px;
  2087. height:30px;
  2088. display:flex;
  2089. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2090. font-weight:500;
  2091. font-style:normal;
  2092. font-size:18px;
  2093. line-height:30px;
  2094. }
  2095. #u161769 .text {
  2096. position:absolute;
  2097. align-self:flex-start;
  2098. padding:0px 0px 0px 0px;
  2099. box-sizing:border-box;
  2100. width:100%;
  2101. }
  2102. #u161769_text {
  2103. border-width:0px;
  2104. white-space:nowrap;
  2105. text-transform:none;
  2106. }
  2107. #u161770 {
  2108. border-width:0px;
  2109. position:absolute;
  2110. left:0px;
  2111. top:0px;
  2112. width:0px;
  2113. height:0px;
  2114. }
  2115. #u161771_div {
  2116. border-width:0px;
  2117. position:absolute;
  2118. left:0px;
  2119. top:0px;
  2120. width:300px;
  2121. height:181px;
  2122. background:inherit;
  2123. background-color:rgba(255, 255, 255, 1);
  2124. border:none;
  2125. border-radius:9px;
  2126. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2127. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2128. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2129. }
  2130. #u161771 {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:469px;
  2134. top:498px;
  2135. width:300px;
  2136. height:181px;
  2137. display:flex;
  2138. }
  2139. #u161771 .text {
  2140. position:absolute;
  2141. align-self:center;
  2142. padding:2px 2px 2px 2px;
  2143. box-sizing:border-box;
  2144. width:100%;
  2145. }
  2146. #u161771_text {
  2147. border-width:0px;
  2148. word-wrap:break-word;
  2149. text-transform:none;
  2150. visibility:hidden;
  2151. }
  2152. #u161772_div {
  2153. border-width:0px;
  2154. position:absolute;
  2155. left:0px;
  2156. top:0px;
  2157. width:300px;
  2158. height:60px;
  2159. background:inherit;
  2160. background-color:rgba(255, 255, 255, 0);
  2161. box-sizing:border-box;
  2162. border-width:1px;
  2163. border-style:solid;
  2164. border-color:rgba(215, 215, 215, 1);
  2165. border-left:0px;
  2166. border-right:0px;
  2167. border-bottom:0px;
  2168. border-radius:0px;
  2169. border-top-left-radius:0px;
  2170. border-top-right-radius:0px;
  2171. -moz-box-shadow:none;
  2172. -webkit-box-shadow:none;
  2173. box-shadow:none;
  2174. font-family:'ArialMT', 'Arial', sans-serif;
  2175. font-weight:400;
  2176. font-style:normal;
  2177. font-size:22px;
  2178. color:#0099FF;
  2179. text-align:center;
  2180. }
  2181. #u161772 {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:469px;
  2185. top:619px;
  2186. width:300px;
  2187. height:60px;
  2188. display:flex;
  2189. font-family:'ArialMT', 'Arial', sans-serif;
  2190. font-weight:400;
  2191. font-style:normal;
  2192. font-size:22px;
  2193. color:#0099FF;
  2194. text-align:center;
  2195. }
  2196. #u161772 .text {
  2197. position:absolute;
  2198. align-self:center;
  2199. padding:0px 0px 0px 0px;
  2200. box-sizing:border-box;
  2201. width:100%;
  2202. }
  2203. #u161772_text {
  2204. border-width:0px;
  2205. word-wrap:break-word;
  2206. text-transform:none;
  2207. }
  2208. #u161773_div {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:0px;
  2212. top:0px;
  2213. width:109px;
  2214. height:40px;
  2215. background:inherit;
  2216. background-color:rgba(255, 255, 255, 0);
  2217. border:none;
  2218. border-radius:0px;
  2219. -moz-box-shadow:none;
  2220. -webkit-box-shadow:none;
  2221. box-shadow:none;
  2222. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2223. font-weight:650;
  2224. font-style:normal;
  2225. font-size:22px;
  2226. text-align:center;
  2227. }
  2228. #u161773 {
  2229. border-width:0px;
  2230. position:absolute;
  2231. left:564px;
  2232. top:514px;
  2233. width:109px;
  2234. height:40px;
  2235. display:flex;
  2236. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2237. font-weight:650;
  2238. font-style:normal;
  2239. font-size:22px;
  2240. text-align:center;
  2241. }
  2242. #u161773 .text {
  2243. position:absolute;
  2244. align-self:center;
  2245. padding:0px 0px 0px 0px;
  2246. box-sizing:border-box;
  2247. width:100%;
  2248. }
  2249. #u161773_text {
  2250. border-width:0px;
  2251. word-wrap:break-word;
  2252. text-transform:none;
  2253. }
  2254. #u161774_div {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:0px;
  2258. top:0px;
  2259. width:145px;
  2260. height:25px;
  2261. background:inherit;
  2262. background-color:rgba(255, 255, 255, 0);
  2263. border:none;
  2264. border-radius:0px;
  2265. -moz-box-shadow:none;
  2266. -webkit-box-shadow:none;
  2267. box-shadow:none;
  2268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2269. font-weight:400;
  2270. font-style:normal;
  2271. font-size:18px;
  2272. text-align:center;
  2273. }
  2274. #u161774 {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:546px;
  2278. top:568px;
  2279. width:145px;
  2280. height:25px;
  2281. display:flex;
  2282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2283. font-weight:400;
  2284. font-style:normal;
  2285. font-size:18px;
  2286. text-align:center;
  2287. }
  2288. #u161774 .text {
  2289. position:absolute;
  2290. align-self:flex-start;
  2291. padding:0px 0px 0px 0px;
  2292. box-sizing:border-box;
  2293. width:100%;
  2294. }
  2295. #u161774_text {
  2296. border-width:0px;
  2297. white-space:nowrap;
  2298. text-transform:none;
  2299. }
  2300. #u161775 {
  2301. border-width:0px;
  2302. position:absolute;
  2303. left:0px;
  2304. top:0px;
  2305. width:0px;
  2306. height:0px;
  2307. }
  2308. #u161776_div {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:375px;
  2314. height:95px;
  2315. background:inherit;
  2316. background-color:rgba(255, 255, 255, 1);
  2317. border:none;
  2318. border-left:0px;
  2319. border-right:0px;
  2320. border-radius:0px;
  2321. border-top-left-radius:0px;
  2322. border-top-right-radius:0px;
  2323. border-bottom-right-radius:0px;
  2324. border-bottom-left-radius:0px;
  2325. -moz-box-shadow:none;
  2326. -webkit-box-shadow:none;
  2327. box-shadow:none;
  2328. }
  2329. #u161776 {
  2330. border-width:0px;
  2331. position:absolute;
  2332. left:29px;
  2333. top:486px;
  2334. width:375px;
  2335. height:95px;
  2336. display:flex;
  2337. }
  2338. #u161776 .text {
  2339. position:absolute;
  2340. align-self:center;
  2341. padding:2px 2px 2px 2px;
  2342. box-sizing:border-box;
  2343. width:100%;
  2344. }
  2345. #u161776_text {
  2346. border-width:0px;
  2347. word-wrap:break-word;
  2348. text-transform:none;
  2349. visibility:hidden;
  2350. }
  2351. #u161777_div {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:0px;
  2355. top:0px;
  2356. width:57px;
  2357. height:30px;
  2358. background:inherit;
  2359. background-color:rgba(255, 255, 255, 0);
  2360. border:none;
  2361. border-left:0px;
  2362. border-top:0px;
  2363. border-right:0px;
  2364. border-radius:0px;
  2365. border-bottom-right-radius:0px;
  2366. border-bottom-left-radius:0px;
  2367. -moz-box-shadow:none;
  2368. -webkit-box-shadow:none;
  2369. box-shadow:none;
  2370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2371. font-weight:400;
  2372. font-style:normal;
  2373. font-size:14px;
  2374. line-height:30px;
  2375. }
  2376. #u161777 {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:53px;
  2380. top:496px;
  2381. width:57px;
  2382. height:30px;
  2383. display:flex;
  2384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2385. font-weight:400;
  2386. font-style:normal;
  2387. font-size:14px;
  2388. line-height:30px;
  2389. }
  2390. #u161777 .text {
  2391. position:absolute;
  2392. align-self:flex-start;
  2393. padding:0px 0px 0px 0px;
  2394. box-sizing:border-box;
  2395. width:100%;
  2396. }
  2397. #u161777_text {
  2398. border-width:0px;
  2399. white-space:nowrap;
  2400. text-transform:none;
  2401. }
  2402. #u161778_div {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:0px;
  2406. top:0px;
  2407. width:85px;
  2408. height:30px;
  2409. background:inherit;
  2410. background-color:rgba(255, 255, 255, 0);
  2411. border:none;
  2412. border-left:0px;
  2413. border-top:0px;
  2414. border-right:0px;
  2415. border-radius:0px;
  2416. border-bottom-right-radius:0px;
  2417. border-bottom-left-radius:0px;
  2418. -moz-box-shadow:none;
  2419. -webkit-box-shadow:none;
  2420. box-shadow:none;
  2421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2422. font-weight:400;
  2423. font-style:normal;
  2424. font-size:12px;
  2425. color:#AAAAAA;
  2426. line-height:30px;
  2427. }
  2428. #u161778 {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:53px;
  2432. top:526px;
  2433. width:85px;
  2434. height:30px;
  2435. display:flex;
  2436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2437. font-weight:400;
  2438. font-style:normal;
  2439. font-size:12px;
  2440. color:#AAAAAA;
  2441. line-height:30px;
  2442. }
  2443. #u161778 .text {
  2444. position:absolute;
  2445. align-self:flex-start;
  2446. padding:0px 0px 0px 0px;
  2447. box-sizing:border-box;
  2448. width:100%;
  2449. }
  2450. #u161778_text {
  2451. border-width:0px;
  2452. white-space:nowrap;
  2453. text-transform:none;
  2454. }