styles.css 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334
  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. #u139107_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u139107 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u139107 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u139107_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u139108_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. #u139108 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u139108 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u139108_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u139109 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u139110_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. #u139110 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u139110 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u139110_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u139111 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u139112_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u139112 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u139112 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u139112_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u139113_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u139113 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u139113 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u139113_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u139114 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u139115_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u139115 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u139115 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u139115_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u139116_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u139116 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u139116 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u139116_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u139117_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u139117 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u139117 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u139117_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u139118_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u139118 {
  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. #u139118 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u139118_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u139119_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u139119 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u139119 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u139119_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u139120_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. #u139120 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u139120 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u139120_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u139121 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u139122_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u139122 {
  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. #u139122 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u139122_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u139123_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. #u139123 {
  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. #u139123 .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. #u139123_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u139124 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u139125_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u139125 {
  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. #u139125 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u139125_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u139126_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. #u139126 {
  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. #u139126 .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. #u139126_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u139127_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. #u139127 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u139127 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u139127_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u139128 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u139129_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u139129 {
  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. #u139129 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u139129_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u139130_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. #u139130 {
  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. #u139130 .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. #u139130_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u139131 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u139132_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u139132 {
  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. #u139132 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u139132_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u139133_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. #u139133 {
  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. #u139133 .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. #u139133_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u139134_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:732px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 0.996078431372549);
  788. border:none;
  789. border-top:0px;
  790. border-radius:28px;
  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. #u139134 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:107px;
  802. width:375px;
  803. height:732px;
  804. display:flex;
  805. }
  806. #u139134 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u139134_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u139135_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:375px;
  825. height:41px;
  826. background:inherit;
  827. background-color:rgba(255, 255, 255, 1);
  828. box-sizing:border-box;
  829. border-width:1px;
  830. border-style:solid;
  831. border-color:rgba(215, 215, 215, 1);
  832. border-left:0px;
  833. border-top:0px;
  834. border-right:0px;
  835. border-radius:0px;
  836. border-bottom-right-radius:0px;
  837. border-bottom-left-radius:0px;
  838. -moz-box-shadow:none;
  839. -webkit-box-shadow:none;
  840. box-shadow:none;
  841. }
  842. #u139135 {
  843. border-width:0px;
  844. position:absolute;
  845. left:29px;
  846. top:67px;
  847. width:375px;
  848. height:41px;
  849. display:flex;
  850. }
  851. #u139135 .text {
  852. position:absolute;
  853. align-self:center;
  854. padding:2px 2px 2px 2px;
  855. box-sizing:border-box;
  856. width:100%;
  857. }
  858. #u139135_text {
  859. border-width:0px;
  860. word-wrap:break-word;
  861. text-transform:none;
  862. visibility:hidden;
  863. }
  864. #u139136_div {
  865. border-width:0px;
  866. position:absolute;
  867. left:0px;
  868. top:0px;
  869. width:375px;
  870. height:115px;
  871. background:inherit;
  872. background-color:rgba(255, 255, 255, 1);
  873. box-sizing:border-box;
  874. border-width:1px;
  875. border-style:solid;
  876. border-color:rgba(215, 215, 215, 1);
  877. border-left:0px;
  878. border-top:0px;
  879. border-right:0px;
  880. border-radius:0px;
  881. border-bottom-right-radius:0px;
  882. border-bottom-left-radius:0px;
  883. -moz-box-shadow:none;
  884. -webkit-box-shadow:none;
  885. box-shadow:none;
  886. }
  887. #u139136 {
  888. border-width:0px;
  889. position:absolute;
  890. left:29px;
  891. top:108px;
  892. width:375px;
  893. height:115px;
  894. display:flex;
  895. }
  896. #u139136 .text {
  897. position:absolute;
  898. align-self:center;
  899. padding:2px 2px 2px 2px;
  900. box-sizing:border-box;
  901. width:100%;
  902. }
  903. #u139136_text {
  904. border-width:0px;
  905. word-wrap:break-word;
  906. text-transform:none;
  907. visibility:hidden;
  908. }
  909. #u139137_img {
  910. border-width:0px;
  911. position:absolute;
  912. left:0px;
  913. top:0px;
  914. width:375px;
  915. height:44px;
  916. }
  917. #u139137 {
  918. border-width:0px;
  919. position:absolute;
  920. left:29px;
  921. top:24px;
  922. width:375px;
  923. height:44px;
  924. display:flex;
  925. }
  926. #u139137 .text {
  927. position:absolute;
  928. align-self:center;
  929. padding:2px 2px 2px 2px;
  930. box-sizing:border-box;
  931. width:100%;
  932. }
  933. #u139137_text {
  934. border-width:0px;
  935. word-wrap:break-word;
  936. text-transform:none;
  937. visibility:hidden;
  938. }
  939. #u139138 {
  940. border-width:0px;
  941. position:absolute;
  942. left:0px;
  943. top:0px;
  944. width:0px;
  945. height:0px;
  946. }
  947. #u139139_div {
  948. border-width:0px;
  949. position:absolute;
  950. left:0px;
  951. top:0px;
  952. width:88px;
  953. height:32px;
  954. background:inherit;
  955. background-color:rgba(255, 255, 255, 1);
  956. box-sizing:border-box;
  957. border-width:1px;
  958. border-style:solid;
  959. border-color:rgba(242, 242, 242, 1);
  960. border-radius:33px;
  961. -moz-box-shadow:none;
  962. -webkit-box-shadow:none;
  963. box-shadow:none;
  964. }
  965. #u139139 {
  966. border-width:0px;
  967. position:absolute;
  968. left:309px;
  969. top:71px;
  970. width:88px;
  971. height:32px;
  972. display:flex;
  973. }
  974. #u139139 .text {
  975. position:absolute;
  976. align-self:center;
  977. padding:2px 2px 2px 2px;
  978. box-sizing:border-box;
  979. width:100%;
  980. }
  981. #u139139_text {
  982. border-width:0px;
  983. word-wrap:break-word;
  984. text-transform:none;
  985. visibility:hidden;
  986. }
  987. #u139140 {
  988. border-width:0px;
  989. position:absolute;
  990. left:0px;
  991. top:0px;
  992. width:0px;
  993. height:0px;
  994. }
  995. #u139141_img {
  996. border-width:0px;
  997. position:absolute;
  998. left:0px;
  999. top:0px;
  1000. width:18px;
  1001. height:18px;
  1002. }
  1003. #u139141 {
  1004. border-width:0px;
  1005. position:absolute;
  1006. left:372px;
  1007. top:78px;
  1008. width:18px;
  1009. height:18px;
  1010. display:flex;
  1011. }
  1012. #u139141 .text {
  1013. position:absolute;
  1014. align-self:center;
  1015. padding:2px 2px 2px 2px;
  1016. box-sizing:border-box;
  1017. width:100%;
  1018. }
  1019. #u139141_text {
  1020. border-width:0px;
  1021. word-wrap:break-word;
  1022. text-transform:none;
  1023. visibility:hidden;
  1024. }
  1025. #u139142_img {
  1026. border-width:0px;
  1027. position:absolute;
  1028. left:0px;
  1029. top:0px;
  1030. width:6px;
  1031. height:6px;
  1032. }
  1033. #u139142 {
  1034. border-width:0px;
  1035. position:absolute;
  1036. left:378px;
  1037. top:84px;
  1038. width:6px;
  1039. height:6px;
  1040. display:flex;
  1041. }
  1042. #u139142 .text {
  1043. position:absolute;
  1044. align-self:center;
  1045. padding:2px 2px 2px 2px;
  1046. box-sizing:border-box;
  1047. width:100%;
  1048. }
  1049. #u139142_text {
  1050. border-width:0px;
  1051. word-wrap:break-word;
  1052. text-transform:none;
  1053. visibility:hidden;
  1054. }
  1055. #u139143 {
  1056. border-width:0px;
  1057. position:absolute;
  1058. left:0px;
  1059. top:0px;
  1060. width:0px;
  1061. height:0px;
  1062. }
  1063. #u139144_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:5px;
  1069. height:5px;
  1070. }
  1071. #u139144 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:323px;
  1075. top:85px;
  1076. width:5px;
  1077. height:5px;
  1078. display:flex;
  1079. }
  1080. #u139144 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u139144_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u139145_img {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:5px;
  1099. height:5px;
  1100. }
  1101. #u139145 {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:339px;
  1105. top:85px;
  1106. width:5px;
  1107. height:5px;
  1108. display:flex;
  1109. }
  1110. #u139145 .text {
  1111. position:absolute;
  1112. align-self:center;
  1113. padding:2px 2px 2px 2px;
  1114. box-sizing:border-box;
  1115. width:100%;
  1116. }
  1117. #u139145_text {
  1118. border-width:0px;
  1119. word-wrap:break-word;
  1120. text-transform:none;
  1121. visibility:hidden;
  1122. }
  1123. #u139146_img {
  1124. border-width:0px;
  1125. position:absolute;
  1126. left:0px;
  1127. top:0px;
  1128. width:7px;
  1129. height:7px;
  1130. }
  1131. #u139146 {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:330px;
  1135. top:84px;
  1136. width:7px;
  1137. height:7px;
  1138. display:flex;
  1139. }
  1140. #u139146 .text {
  1141. position:absolute;
  1142. align-self:center;
  1143. padding:2px 2px 2px 2px;
  1144. box-sizing:border-box;
  1145. width:100%;
  1146. }
  1147. #u139146_text {
  1148. border-width:0px;
  1149. word-wrap:break-word;
  1150. text-transform:none;
  1151. visibility:hidden;
  1152. }
  1153. #u139147_img {
  1154. border-width:0px;
  1155. position:absolute;
  1156. left:0px;
  1157. top:0px;
  1158. width:19px;
  1159. height:2px;
  1160. }
  1161. #u139147 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:347px;
  1165. top:87px;
  1166. width:18px;
  1167. height:1px;
  1168. display:flex;
  1169. -webkit-transform:rotate(90deg);
  1170. -moz-transform:rotate(90deg);
  1171. -ms-transform:rotate(90deg);
  1172. transform:rotate(90deg);
  1173. }
  1174. #u139147 .text {
  1175. position:absolute;
  1176. align-self:center;
  1177. padding:2px 2px 2px 2px;
  1178. box-sizing:border-box;
  1179. width:100%;
  1180. }
  1181. #u139147_text {
  1182. border-width:0px;
  1183. word-wrap:break-word;
  1184. text-transform:none;
  1185. visibility:hidden;
  1186. }
  1187. #u139148_div {
  1188. border-width:0px;
  1189. position:absolute;
  1190. left:0px;
  1191. top:0px;
  1192. width:12px;
  1193. height:12px;
  1194. background:inherit;
  1195. background-color:rgba(255, 255, 255, 0);
  1196. box-sizing:border-box;
  1197. border-width:2px;
  1198. border-style:solid;
  1199. border-color:rgba(51, 51, 51, 1);
  1200. border-right:0px;
  1201. border-bottom:0px;
  1202. border-radius:0px;
  1203. border-top-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. #u139148 {
  1210. border-width:0px;
  1211. position:absolute;
  1212. left:44px;
  1213. top:81px;
  1214. width:12px;
  1215. height:12px;
  1216. display:flex;
  1217. -webkit-transform:rotate(315deg);
  1218. -moz-transform:rotate(315deg);
  1219. -ms-transform:rotate(315deg);
  1220. transform:rotate(315deg);
  1221. }
  1222. #u139148 .text {
  1223. position:absolute;
  1224. align-self:center;
  1225. padding:2px 2px 2px 2px;
  1226. box-sizing:border-box;
  1227. width:100%;
  1228. }
  1229. #u139148_text {
  1230. border-width:0px;
  1231. word-wrap:break-word;
  1232. text-transform:none;
  1233. visibility:hidden;
  1234. }
  1235. #u139149_div {
  1236. border-width:0px;
  1237. position:absolute;
  1238. left:0px;
  1239. top:0px;
  1240. width:73px;
  1241. height:25px;
  1242. background:inherit;
  1243. background-color:rgba(255, 255, 255, 0);
  1244. border:none;
  1245. border-radius:0px;
  1246. -moz-box-shadow:none;
  1247. -webkit-box-shadow:none;
  1248. box-shadow:none;
  1249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1250. font-weight:400;
  1251. font-style:normal;
  1252. font-size:18px;
  1253. }
  1254. #u139149 {
  1255. border-width:0px;
  1256. position:absolute;
  1257. left:64px;
  1258. top:75px;
  1259. width:73px;
  1260. height:25px;
  1261. display:flex;
  1262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1263. font-weight:400;
  1264. font-style:normal;
  1265. font-size:18px;
  1266. }
  1267. #u139149 .text {
  1268. position:absolute;
  1269. align-self:flex-start;
  1270. padding:0px 0px 0px 0px;
  1271. box-sizing:border-box;
  1272. width:100%;
  1273. }
  1274. #u139149_text {
  1275. border-width:0px;
  1276. white-space:nowrap;
  1277. text-transform:none;
  1278. }
  1279. #u139150_div {
  1280. border-width:0px;
  1281. position:absolute;
  1282. left:0px;
  1283. top:0px;
  1284. width:353px;
  1285. height:40px;
  1286. background:inherit;
  1287. background-color:rgba(255, 255, 255, 0);
  1288. border:none;
  1289. border-top:0px;
  1290. border-right:0px;
  1291. border-bottom:0px;
  1292. border-radius:0px;
  1293. border-top-left-radius:0px;
  1294. border-bottom-left-radius:0px;
  1295. -moz-box-shadow:none;
  1296. -webkit-box-shadow:none;
  1297. box-shadow:none;
  1298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1299. font-weight:400;
  1300. font-style:normal;
  1301. font-size:14px;
  1302. line-height:30px;
  1303. }
  1304. #u139150 {
  1305. border-width:0px;
  1306. position:absolute;
  1307. left:42px;
  1308. top:156px;
  1309. width:353px;
  1310. height:40px;
  1311. display:flex;
  1312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1313. font-weight:400;
  1314. font-style:normal;
  1315. font-size:14px;
  1316. line-height:30px;
  1317. }
  1318. #u139150 .text {
  1319. position:absolute;
  1320. align-self:flex-start;
  1321. padding:5px 10px 5px 0px;
  1322. box-sizing:border-box;
  1323. width:100%;
  1324. }
  1325. #u139150_text {
  1326. border-width:0px;
  1327. word-wrap:break-word;
  1328. text-transform:none;
  1329. }
  1330. #u139151_div {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:0px;
  1334. top:0px;
  1335. width:50px;
  1336. height:14px;
  1337. background:inherit;
  1338. background-color:rgba(242, 242, 242, 1);
  1339. border:none;
  1340. border-radius:9px;
  1341. -moz-box-shadow:none;
  1342. -webkit-box-shadow:none;
  1343. box-shadow:none;
  1344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:10px;
  1348. color:#0000FF;
  1349. text-align:center;
  1350. }
  1351. #u139151 {
  1352. border-width:0px;
  1353. position:absolute;
  1354. left:42px;
  1355. top:196px;
  1356. width:50px;
  1357. height:14px;
  1358. display:flex;
  1359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1360. font-weight:400;
  1361. font-style:normal;
  1362. font-size:10px;
  1363. color:#0000FF;
  1364. text-align:center;
  1365. }
  1366. #u139151 .text {
  1367. position:absolute;
  1368. align-self:flex-start;
  1369. padding:0px 0px 0px 0px;
  1370. box-sizing:border-box;
  1371. width:100%;
  1372. }
  1373. #u139151_text {
  1374. border-width:0px;
  1375. word-wrap:break-word;
  1376. text-transform:none;
  1377. }
  1378. #u139152_div {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:50px;
  1384. height:14px;
  1385. background:inherit;
  1386. background-color:rgba(242, 242, 242, 1);
  1387. border:none;
  1388. border-radius:9px;
  1389. -moz-box-shadow:none;
  1390. -webkit-box-shadow:none;
  1391. box-shadow:none;
  1392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1393. font-weight:400;
  1394. font-style:normal;
  1395. font-size:10px;
  1396. color:#D9001B;
  1397. text-align:center;
  1398. }
  1399. #u139152 {
  1400. border-width:0px;
  1401. position:absolute;
  1402. left:102px;
  1403. top:196px;
  1404. width:50px;
  1405. height:14px;
  1406. display:flex;
  1407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1408. font-weight:400;
  1409. font-style:normal;
  1410. font-size:10px;
  1411. color:#D9001B;
  1412. text-align:center;
  1413. }
  1414. #u139152 .text {
  1415. position:absolute;
  1416. align-self:flex-start;
  1417. padding:0px 0px 0px 0px;
  1418. box-sizing:border-box;
  1419. width:100%;
  1420. }
  1421. #u139152_text {
  1422. border-width:0px;
  1423. word-wrap:break-word;
  1424. text-transform:none;
  1425. }
  1426. #u139153_div {
  1427. border-width:0px;
  1428. position:absolute;
  1429. left:0px;
  1430. top:0px;
  1431. width:353px;
  1432. height:40px;
  1433. background:inherit;
  1434. background-color:rgba(255, 255, 255, 0);
  1435. border:none;
  1436. border-top:0px;
  1437. border-right:0px;
  1438. border-bottom:0px;
  1439. border-radius:0px;
  1440. border-top-left-radius:0px;
  1441. border-bottom-left-radius:0px;
  1442. -moz-box-shadow:none;
  1443. -webkit-box-shadow:none;
  1444. box-shadow:none;
  1445. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1446. font-weight:500;
  1447. font-style:normal;
  1448. font-size:14px;
  1449. line-height:30px;
  1450. }
  1451. #u139153 {
  1452. border-width:0px;
  1453. position:absolute;
  1454. left:42px;
  1455. top:116px;
  1456. width:353px;
  1457. height:40px;
  1458. display:flex;
  1459. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1460. font-weight:500;
  1461. font-style:normal;
  1462. font-size:14px;
  1463. line-height:30px;
  1464. }
  1465. #u139153 .text {
  1466. position:absolute;
  1467. align-self:flex-start;
  1468. padding:5px 10px 5px 0px;
  1469. box-sizing:border-box;
  1470. width:100%;
  1471. }
  1472. #u139153_text {
  1473. border-width:0px;
  1474. word-wrap:break-word;
  1475. text-transform:none;
  1476. }
  1477. #u139154_div {
  1478. border-width:0px;
  1479. position:absolute;
  1480. left:0px;
  1481. top:0px;
  1482. width:11px;
  1483. height:11px;
  1484. background:inherit;
  1485. background-color:rgba(255, 255, 255, 0);
  1486. box-sizing:border-box;
  1487. border-width:2px;
  1488. border-style:solid;
  1489. border-color:rgba(51, 51, 51, 1);
  1490. border-right:0px;
  1491. border-bottom:0px;
  1492. border-radius:0px;
  1493. border-top-right-radius:0px;
  1494. border-bottom-left-radius:0px;
  1495. -moz-box-shadow:none;
  1496. -webkit-box-shadow:none;
  1497. box-shadow:none;
  1498. }
  1499. #u139154 {
  1500. border-width:0px;
  1501. position:absolute;
  1502. left:374px;
  1503. top:130px;
  1504. width:11px;
  1505. height:11px;
  1506. display:flex;
  1507. -webkit-transform:rotate(225deg);
  1508. -moz-transform:rotate(225deg);
  1509. -ms-transform:rotate(225deg);
  1510. transform:rotate(225deg);
  1511. }
  1512. #u139154 .text {
  1513. position:absolute;
  1514. align-self:center;
  1515. padding:2px 2px 2px 2px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u139154_text {
  1520. border-width:0px;
  1521. word-wrap:break-word;
  1522. text-transform:none;
  1523. visibility:hidden;
  1524. }
  1525. #u139155 {
  1526. border-width:0px;
  1527. position:absolute;
  1528. left:0px;
  1529. top:0px;
  1530. width:0px;
  1531. height:0px;
  1532. }
  1533. #u139156_div {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:0px;
  1537. top:0px;
  1538. width:375px;
  1539. height:546px;
  1540. background:inherit;
  1541. background-color:rgba(255, 255, 255, 1);
  1542. box-sizing:border-box;
  1543. border-width:1px;
  1544. border-style:solid;
  1545. border-color:rgba(215, 215, 215, 1);
  1546. border-left:0px;
  1547. border-top:0px;
  1548. border-right:0px;
  1549. border-radius:0px;
  1550. border-bottom-right-radius:0px;
  1551. border-bottom-left-radius:0px;
  1552. -moz-box-shadow:none;
  1553. -webkit-box-shadow:none;
  1554. box-shadow:none;
  1555. }
  1556. #u139156 {
  1557. border-width:0px;
  1558. position:absolute;
  1559. left:29px;
  1560. top:233px;
  1561. width:375px;
  1562. height:546px;
  1563. display:flex;
  1564. }
  1565. #u139156 .text {
  1566. position:absolute;
  1567. align-self:center;
  1568. padding:2px 2px 2px 2px;
  1569. box-sizing:border-box;
  1570. width:100%;
  1571. }
  1572. #u139156_text {
  1573. border-width:0px;
  1574. word-wrap:break-word;
  1575. text-transform:none;
  1576. visibility:hidden;
  1577. }
  1578. #u139157_div {
  1579. border-width:0px;
  1580. position:absolute;
  1581. left:0px;
  1582. top:0px;
  1583. width:353px;
  1584. height:40px;
  1585. background:inherit;
  1586. background-color:rgba(255, 255, 255, 0);
  1587. border:none;
  1588. border-top:0px;
  1589. border-right:0px;
  1590. border-bottom:0px;
  1591. border-radius:0px;
  1592. border-top-left-radius:0px;
  1593. border-bottom-left-radius:0px;
  1594. -moz-box-shadow:none;
  1595. -webkit-box-shadow:none;
  1596. box-shadow:none;
  1597. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1598. font-weight:500;
  1599. font-style:normal;
  1600. font-size:14px;
  1601. line-height:30px;
  1602. }
  1603. #u139157 {
  1604. border-width:0px;
  1605. position:absolute;
  1606. left:42px;
  1607. top:241px;
  1608. width:353px;
  1609. height:40px;
  1610. display:flex;
  1611. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1612. font-weight:500;
  1613. font-style:normal;
  1614. font-size:14px;
  1615. line-height:30px;
  1616. }
  1617. #u139157 .text {
  1618. position:absolute;
  1619. align-self:flex-start;
  1620. padding:5px 10px 5px 0px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u139157_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. }
  1629. #u139158_div {
  1630. border-width:0px;
  1631. position:absolute;
  1632. left:0px;
  1633. top:0px;
  1634. width:355px;
  1635. height:50px;
  1636. background:inherit;
  1637. background-color:rgba(255, 255, 255, 1);
  1638. border:none;
  1639. border-left:0px;
  1640. border-top:0px;
  1641. border-right:0px;
  1642. border-radius:0px;
  1643. border-bottom-right-radius:0px;
  1644. border-bottom-left-radius:0px;
  1645. -moz-box-shadow:none;
  1646. -webkit-box-shadow:none;
  1647. box-shadow:none;
  1648. }
  1649. #u139158 {
  1650. border-width:0px;
  1651. position:absolute;
  1652. left:42px;
  1653. top:520px;
  1654. width:355px;
  1655. height:50px;
  1656. display:flex;
  1657. }
  1658. #u139158 .text {
  1659. position:absolute;
  1660. align-self:center;
  1661. padding:2px 2px 2px 2px;
  1662. box-sizing:border-box;
  1663. width:100%;
  1664. }
  1665. #u139158_text {
  1666. border-width:0px;
  1667. word-wrap:break-word;
  1668. text-transform:none;
  1669. visibility:hidden;
  1670. }
  1671. #u139159_div {
  1672. border-width:0px;
  1673. position:absolute;
  1674. left:0px;
  1675. top:0px;
  1676. width:99px;
  1677. height:30px;
  1678. background:inherit;
  1679. background-color:rgba(255, 255, 255, 0);
  1680. border:none;
  1681. border-left:0px;
  1682. border-top:0px;
  1683. border-right:0px;
  1684. border-radius:0px;
  1685. border-bottom-right-radius:0px;
  1686. border-bottom-left-radius:0px;
  1687. -moz-box-shadow:none;
  1688. -webkit-box-shadow:none;
  1689. box-shadow:none;
  1690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1691. font-weight:400;
  1692. font-style:normal;
  1693. font-size:14px;
  1694. color:#D7D7D7;
  1695. line-height:30px;
  1696. }
  1697. #u139159 {
  1698. border-width:0px;
  1699. position:absolute;
  1700. left:62px;
  1701. top:540px;
  1702. width:99px;
  1703. height:30px;
  1704. display:flex;
  1705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1706. font-weight:400;
  1707. font-style:normal;
  1708. font-size:14px;
  1709. color:#D7D7D7;
  1710. line-height:30px;
  1711. }
  1712. #u139159 .text {
  1713. position:absolute;
  1714. align-self:center;
  1715. padding:0px 0px 0px 0px;
  1716. box-sizing:border-box;
  1717. width:100%;
  1718. }
  1719. #u139159_text {
  1720. border-width:0px;
  1721. white-space:nowrap;
  1722. text-transform:none;
  1723. }
  1724. #u139160 {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:0px;
  1728. top:0px;
  1729. width:0px;
  1730. height:0px;
  1731. }
  1732. #u139161_div {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:0px;
  1736. top:0px;
  1737. width:375px;
  1738. height:60px;
  1739. background:inherit;
  1740. background-color:rgba(255, 255, 255, 1);
  1741. border:none;
  1742. border-top:0px;
  1743. border-radius:28px;
  1744. border-top-left-radius:0px;
  1745. border-top-right-radius:0px;
  1746. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1747. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1748. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1750. font-weight:400;
  1751. font-style:normal;
  1752. font-size:14px;
  1753. color:#FFFFFF;
  1754. }
  1755. #u139161 {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:29px;
  1759. top:779px;
  1760. width:375px;
  1761. height:60px;
  1762. display:flex;
  1763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1764. font-weight:400;
  1765. font-style:normal;
  1766. font-size:14px;
  1767. color:#FFFFFF;
  1768. }
  1769. #u139161 .text {
  1770. position:absolute;
  1771. align-self:center;
  1772. padding:2px 2px 2px 2px;
  1773. box-sizing:border-box;
  1774. width:100%;
  1775. }
  1776. #u139161_text {
  1777. border-width:0px;
  1778. word-wrap:break-word;
  1779. text-transform:none;
  1780. visibility:hidden;
  1781. }
  1782. #u139162_div {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:0px;
  1786. top:0px;
  1787. width:352px;
  1788. height:40px;
  1789. background:inherit;
  1790. background-color:rgba(0, 137, 254, 1);
  1791. border:none;
  1792. border-radius:63px;
  1793. -moz-box-shadow:none;
  1794. -webkit-box-shadow:none;
  1795. box-shadow:none;
  1796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1797. font-weight:400;
  1798. font-style:normal;
  1799. font-size:14px;
  1800. color:#FFFFFF;
  1801. }
  1802. #u139162 {
  1803. border-width:0px;
  1804. position:absolute;
  1805. left:42px;
  1806. top:789px;
  1807. width:352px;
  1808. height:40px;
  1809. display:flex;
  1810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1811. font-weight:400;
  1812. font-style:normal;
  1813. font-size:14px;
  1814. color:#FFFFFF;
  1815. }
  1816. #u139162 .text {
  1817. position:absolute;
  1818. align-self:center;
  1819. padding:2px 2px 2px 2px;
  1820. box-sizing:border-box;
  1821. width:100%;
  1822. }
  1823. #u139162_text {
  1824. border-width:0px;
  1825. word-wrap:break-word;
  1826. text-transform:none;
  1827. }
  1828. #u139163 {
  1829. border-width:0px;
  1830. position:absolute;
  1831. left:0px;
  1832. top:0px;
  1833. width:0px;
  1834. height:0px;
  1835. }
  1836. #u139164_div {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:0px;
  1840. top:0px;
  1841. width:355px;
  1842. height:50px;
  1843. background:inherit;
  1844. background-color:rgba(255, 255, 255, 1);
  1845. box-sizing:border-box;
  1846. border-width:1px;
  1847. border-style:solid;
  1848. border-color:rgba(215, 215, 215, 1);
  1849. border-left:0px;
  1850. border-top:0px;
  1851. border-right:0px;
  1852. border-radius:0px;
  1853. border-bottom-right-radius:0px;
  1854. border-bottom-left-radius:0px;
  1855. -moz-box-shadow:none;
  1856. -webkit-box-shadow:none;
  1857. box-shadow:none;
  1858. }
  1859. #u139164 {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:42px;
  1863. top:286px;
  1864. width:355px;
  1865. height:50px;
  1866. display:flex;
  1867. }
  1868. #u139164 .text {
  1869. position:absolute;
  1870. align-self:center;
  1871. padding:2px 2px 2px 2px;
  1872. box-sizing:border-box;
  1873. width:100%;
  1874. }
  1875. #u139164_text {
  1876. border-width:0px;
  1877. word-wrap:break-word;
  1878. text-transform:none;
  1879. visibility:hidden;
  1880. }
  1881. #u139165 label {
  1882. left:0px;
  1883. width:100%;
  1884. }
  1885. #u139165_img {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:0px;
  1889. top:7px;
  1890. width:12px;
  1891. height:12px;
  1892. }
  1893. #u139165 {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:62px;
  1897. top:298px;
  1898. width:100px;
  1899. height:25px;
  1900. display:flex;
  1901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1902. font-weight:400;
  1903. font-style:normal;
  1904. font-size:18px;
  1905. }
  1906. #u139165 .text {
  1907. position:absolute;
  1908. align-self:center;
  1909. padding:0px 2px 0px 2px;
  1910. box-sizing:border-box;
  1911. }
  1912. #u139165_img.selected {
  1913. }
  1914. #u139165.selected {
  1915. }
  1916. #u139165_img.disabled {
  1917. }
  1918. #u139165.disabled {
  1919. }
  1920. #u139165_img.selectedDisabled {
  1921. }
  1922. #u139165.selectedDisabled {
  1923. }
  1924. #u139165_text {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:14px;
  1928. top:0px;
  1929. width:84px;
  1930. word-wrap:break-word;
  1931. text-transform:none;
  1932. }
  1933. #u139165_input {
  1934. border-width:0px;
  1935. position:absolute;
  1936. left:0px;
  1937. top:0px;
  1938. width:0px;
  1939. height:0px;
  1940. opacity:0;
  1941. }
  1942. #u139166 {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:0px;
  1946. top:0px;
  1947. width:0px;
  1948. height:0px;
  1949. }
  1950. #u139167_div {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:0px;
  1954. top:0px;
  1955. width:355px;
  1956. height:50px;
  1957. background:inherit;
  1958. background-color:rgba(255, 255, 255, 1);
  1959. box-sizing:border-box;
  1960. border-width:1px;
  1961. border-style:solid;
  1962. border-color:rgba(215, 215, 215, 1);
  1963. border-left:0px;
  1964. border-top:0px;
  1965. border-right:0px;
  1966. border-radius:0px;
  1967. border-bottom-right-radius:0px;
  1968. border-bottom-left-radius:0px;
  1969. -moz-box-shadow:none;
  1970. -webkit-box-shadow:none;
  1971. box-shadow:none;
  1972. }
  1973. #u139167 {
  1974. border-width:0px;
  1975. position:absolute;
  1976. left:42px;
  1977. top:336px;
  1978. width:355px;
  1979. height:50px;
  1980. display:flex;
  1981. }
  1982. #u139167 .text {
  1983. position:absolute;
  1984. align-self:center;
  1985. padding:2px 2px 2px 2px;
  1986. box-sizing:border-box;
  1987. width:100%;
  1988. }
  1989. #u139167_text {
  1990. border-width:0px;
  1991. word-wrap:break-word;
  1992. text-transform:none;
  1993. visibility:hidden;
  1994. }
  1995. #u139168 label {
  1996. left:0px;
  1997. width:100%;
  1998. }
  1999. #u139168_img {
  2000. border-width:0px;
  2001. position:absolute;
  2002. left:0px;
  2003. top:7px;
  2004. width:12px;
  2005. height:12px;
  2006. }
  2007. #u139168 {
  2008. border-width:0px;
  2009. position:absolute;
  2010. left:62px;
  2011. top:348px;
  2012. width:100px;
  2013. height:25px;
  2014. display:flex;
  2015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2016. font-weight:400;
  2017. font-style:normal;
  2018. font-size:18px;
  2019. }
  2020. #u139168 .text {
  2021. position:absolute;
  2022. align-self:center;
  2023. padding:0px 2px 0px 2px;
  2024. box-sizing:border-box;
  2025. }
  2026. #u139168_img.selected {
  2027. }
  2028. #u139168.selected {
  2029. }
  2030. #u139168_img.disabled {
  2031. }
  2032. #u139168.disabled {
  2033. }
  2034. #u139168_img.selectedDisabled {
  2035. }
  2036. #u139168.selectedDisabled {
  2037. }
  2038. #u139168_text {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:14px;
  2042. top:0px;
  2043. width:84px;
  2044. word-wrap:break-word;
  2045. text-transform:none;
  2046. }
  2047. #u139168_input {
  2048. border-width:0px;
  2049. position:absolute;
  2050. left:0px;
  2051. top:0px;
  2052. width:0px;
  2053. height:0px;
  2054. opacity:0;
  2055. }
  2056. #u139169 {
  2057. border-width:0px;
  2058. position:absolute;
  2059. left:0px;
  2060. top:0px;
  2061. width:0px;
  2062. height:0px;
  2063. }
  2064. #u139170_div {
  2065. border-width:0px;
  2066. position:absolute;
  2067. left:0px;
  2068. top:0px;
  2069. width:355px;
  2070. height:50px;
  2071. background:inherit;
  2072. background-color:rgba(255, 255, 255, 1);
  2073. box-sizing:border-box;
  2074. border-width:1px;
  2075. border-style:solid;
  2076. border-color:rgba(215, 215, 215, 1);
  2077. border-left:0px;
  2078. border-top:0px;
  2079. border-right:0px;
  2080. border-radius:0px;
  2081. border-bottom-right-radius:0px;
  2082. border-bottom-left-radius:0px;
  2083. -moz-box-shadow:none;
  2084. -webkit-box-shadow:none;
  2085. box-shadow:none;
  2086. }
  2087. #u139170 {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:42px;
  2091. top:386px;
  2092. width:355px;
  2093. height:50px;
  2094. display:flex;
  2095. }
  2096. #u139170 .text {
  2097. position:absolute;
  2098. align-self:center;
  2099. padding:2px 2px 2px 2px;
  2100. box-sizing:border-box;
  2101. width:100%;
  2102. }
  2103. #u139170_text {
  2104. border-width:0px;
  2105. word-wrap:break-word;
  2106. text-transform:none;
  2107. visibility:hidden;
  2108. }
  2109. #u139171 label {
  2110. left:0px;
  2111. width:100%;
  2112. }
  2113. #u139171_img {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:0px;
  2117. top:7px;
  2118. width:12px;
  2119. height:12px;
  2120. }
  2121. #u139171 {
  2122. border-width:0px;
  2123. position:absolute;
  2124. left:62px;
  2125. top:398px;
  2126. width:100px;
  2127. height:25px;
  2128. display:flex;
  2129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2130. font-weight:400;
  2131. font-style:normal;
  2132. font-size:18px;
  2133. }
  2134. #u139171 .text {
  2135. position:absolute;
  2136. align-self:center;
  2137. padding:0px 2px 0px 2px;
  2138. box-sizing:border-box;
  2139. }
  2140. #u139171_img.selected {
  2141. }
  2142. #u139171.selected {
  2143. }
  2144. #u139171_img.disabled {
  2145. }
  2146. #u139171.disabled {
  2147. }
  2148. #u139171_img.selectedDisabled {
  2149. }
  2150. #u139171.selectedDisabled {
  2151. }
  2152. #u139171_text {
  2153. border-width:0px;
  2154. position:absolute;
  2155. left:14px;
  2156. top:0px;
  2157. width:84px;
  2158. word-wrap:break-word;
  2159. text-transform:none;
  2160. }
  2161. #u139171_input {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:0px;
  2165. top:0px;
  2166. width:0px;
  2167. height:0px;
  2168. opacity:0;
  2169. }
  2170. #u139172 {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:0px;
  2174. top:0px;
  2175. width:0px;
  2176. height:0px;
  2177. }
  2178. #u139173_div {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:0px;
  2182. top:0px;
  2183. width:355px;
  2184. height:50px;
  2185. background:inherit;
  2186. background-color:rgba(255, 255, 255, 1);
  2187. box-sizing:border-box;
  2188. border-width:1px;
  2189. border-style:solid;
  2190. border-color:rgba(215, 215, 215, 1);
  2191. border-left:0px;
  2192. border-top:0px;
  2193. border-right:0px;
  2194. border-radius:0px;
  2195. border-bottom-right-radius:0px;
  2196. border-bottom-left-radius:0px;
  2197. -moz-box-shadow:none;
  2198. -webkit-box-shadow:none;
  2199. box-shadow:none;
  2200. }
  2201. #u139173 {
  2202. border-width:0px;
  2203. position:absolute;
  2204. left:42px;
  2205. top:436px;
  2206. width:355px;
  2207. height:50px;
  2208. display:flex;
  2209. }
  2210. #u139173 .text {
  2211. position:absolute;
  2212. align-self:center;
  2213. padding:2px 2px 2px 2px;
  2214. box-sizing:border-box;
  2215. width:100%;
  2216. }
  2217. #u139173_text {
  2218. border-width:0px;
  2219. word-wrap:break-word;
  2220. text-transform:none;
  2221. visibility:hidden;
  2222. }
  2223. #u139174 label {
  2224. left:0px;
  2225. width:100%;
  2226. }
  2227. #u139174_img {
  2228. border-width:0px;
  2229. position:absolute;
  2230. left:0px;
  2231. top:7px;
  2232. width:12px;
  2233. height:12px;
  2234. }
  2235. #u139174 {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:62px;
  2239. top:448px;
  2240. width:100px;
  2241. height:25px;
  2242. display:flex;
  2243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2244. font-weight:400;
  2245. font-style:normal;
  2246. font-size:18px;
  2247. }
  2248. #u139174 .text {
  2249. position:absolute;
  2250. align-self:center;
  2251. padding:0px 2px 0px 2px;
  2252. box-sizing:border-box;
  2253. }
  2254. #u139174_img.selected {
  2255. }
  2256. #u139174.selected {
  2257. }
  2258. #u139174_img.disabled {
  2259. }
  2260. #u139174.disabled {
  2261. }
  2262. #u139174_img.selectedDisabled {
  2263. }
  2264. #u139174.selectedDisabled {
  2265. }
  2266. #u139174_text {
  2267. border-width:0px;
  2268. position:absolute;
  2269. left:14px;
  2270. top:0px;
  2271. width:84px;
  2272. word-wrap:break-word;
  2273. text-transform:none;
  2274. }
  2275. #u139174_input {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:0px;
  2279. top:0px;
  2280. width:0px;
  2281. height:0px;
  2282. opacity:0;
  2283. }
  2284. #u139175_div {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:0px;
  2288. top:0px;
  2289. width:353px;
  2290. height:40px;
  2291. background:inherit;
  2292. background-color:rgba(255, 255, 255, 0);
  2293. border:none;
  2294. border-top:0px;
  2295. border-right:0px;
  2296. border-bottom:0px;
  2297. border-radius:0px;
  2298. border-top-left-radius:0px;
  2299. border-bottom-left-radius:0px;
  2300. -moz-box-shadow:none;
  2301. -webkit-box-shadow:none;
  2302. box-shadow:none;
  2303. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2304. font-weight:500;
  2305. font-style:normal;
  2306. font-size:14px;
  2307. line-height:30px;
  2308. }
  2309. #u139175 {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:42px;
  2313. top:496px;
  2314. width:353px;
  2315. height:40px;
  2316. display:flex;
  2317. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2318. font-weight:500;
  2319. font-style:normal;
  2320. font-size:14px;
  2321. line-height:30px;
  2322. }
  2323. #u139175 .text {
  2324. position:absolute;
  2325. align-self:flex-start;
  2326. padding:5px 10px 5px 0px;
  2327. box-sizing:border-box;
  2328. width:100%;
  2329. }
  2330. #u139175_text {
  2331. border-width:0px;
  2332. word-wrap:break-word;
  2333. text-transform:none;
  2334. }