styles.css 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589
  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. #u173781_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u173781 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u173781 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u173781_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u173782_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. #u173782 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u173782 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u173782_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u173783 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u173784_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. #u173784 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u173784 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u173784_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u173785 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u173786_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u173786 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u173786 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u173786_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u173787_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u173787 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u173787 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u173787_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u173788 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u173789_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u173789 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u173789 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u173789_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u173790_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u173790 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u173790 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u173790_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u173791_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u173791 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u173791 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u173791_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u173792_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u173792 {
  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. #u173792 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u173792_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u173793_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u173793 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u173793 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u173793_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u173794_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. #u173794 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u173794 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u173794_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u173795 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u173796_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u173796 {
  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. #u173796 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u173796_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u173797_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. #u173797 {
  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. #u173797 .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. #u173797_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u173798 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u173799_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u173799 {
  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. #u173799 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u173799_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u173800_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. #u173800 {
  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. #u173800 .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. #u173800_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u173801_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. #u173801 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u173801 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u173801_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u173802 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u173803_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u173803 {
  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. #u173803 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u173803_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u173804_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. #u173804 {
  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. #u173804 .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. #u173804_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u173805 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u173806_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u173806 {
  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. #u173806 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u173806_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u173807_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. #u173807 {
  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. #u173807 .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. #u173807_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u173808_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. #u173808 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:107px;
  802. width:375px;
  803. height:732px;
  804. display:flex;
  805. }
  806. #u173808 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u173808_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u173809_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:375px;
  825. height:40px;
  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. #u173809 {
  843. border-width:0px;
  844. position:absolute;
  845. left:29px;
  846. top:67px;
  847. width:375px;
  848. height:40px;
  849. display:flex;
  850. }
  851. #u173809 .text {
  852. position:absolute;
  853. align-self:center;
  854. padding:2px 2px 2px 2px;
  855. box-sizing:border-box;
  856. width:100%;
  857. }
  858. #u173809_text {
  859. border-width:0px;
  860. word-wrap:break-word;
  861. text-transform:none;
  862. visibility:hidden;
  863. }
  864. #u173810_img {
  865. border-width:0px;
  866. position:absolute;
  867. left:0px;
  868. top:0px;
  869. width:375px;
  870. height:44px;
  871. }
  872. #u173810 {
  873. border-width:0px;
  874. position:absolute;
  875. left:29px;
  876. top:24px;
  877. width:375px;
  878. height:44px;
  879. display:flex;
  880. }
  881. #u173810 .text {
  882. position:absolute;
  883. align-self:center;
  884. padding:2px 2px 2px 2px;
  885. box-sizing:border-box;
  886. width:100%;
  887. }
  888. #u173810_text {
  889. border-width:0px;
  890. word-wrap:break-word;
  891. text-transform:none;
  892. visibility:hidden;
  893. }
  894. #u173811 {
  895. border-width:0px;
  896. position:absolute;
  897. left:0px;
  898. top:0px;
  899. width:0px;
  900. height:0px;
  901. }
  902. #u173812_div {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:88px;
  908. height:32px;
  909. background:inherit;
  910. background-color:rgba(255, 255, 255, 1);
  911. box-sizing:border-box;
  912. border-width:1px;
  913. border-style:solid;
  914. border-color:rgba(242, 242, 242, 1);
  915. border-radius:33px;
  916. -moz-box-shadow:none;
  917. -webkit-box-shadow:none;
  918. box-shadow:none;
  919. }
  920. #u173812 {
  921. border-width:0px;
  922. position:absolute;
  923. left:309px;
  924. top:71px;
  925. width:88px;
  926. height:32px;
  927. display:flex;
  928. }
  929. #u173812 .text {
  930. position:absolute;
  931. align-self:center;
  932. padding:2px 2px 2px 2px;
  933. box-sizing:border-box;
  934. width:100%;
  935. }
  936. #u173812_text {
  937. border-width:0px;
  938. word-wrap:break-word;
  939. text-transform:none;
  940. visibility:hidden;
  941. }
  942. #u173813 {
  943. border-width:0px;
  944. position:absolute;
  945. left:0px;
  946. top:0px;
  947. width:0px;
  948. height:0px;
  949. }
  950. #u173814_img {
  951. border-width:0px;
  952. position:absolute;
  953. left:0px;
  954. top:0px;
  955. width:18px;
  956. height:18px;
  957. }
  958. #u173814 {
  959. border-width:0px;
  960. position:absolute;
  961. left:372px;
  962. top:78px;
  963. width:18px;
  964. height:18px;
  965. display:flex;
  966. }
  967. #u173814 .text {
  968. position:absolute;
  969. align-self:center;
  970. padding:2px 2px 2px 2px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u173814_text {
  975. border-width:0px;
  976. word-wrap:break-word;
  977. text-transform:none;
  978. visibility:hidden;
  979. }
  980. #u173815_img {
  981. border-width:0px;
  982. position:absolute;
  983. left:0px;
  984. top:0px;
  985. width:6px;
  986. height:6px;
  987. }
  988. #u173815 {
  989. border-width:0px;
  990. position:absolute;
  991. left:378px;
  992. top:84px;
  993. width:6px;
  994. height:6px;
  995. display:flex;
  996. }
  997. #u173815 .text {
  998. position:absolute;
  999. align-self:center;
  1000. padding:2px 2px 2px 2px;
  1001. box-sizing:border-box;
  1002. width:100%;
  1003. }
  1004. #u173815_text {
  1005. border-width:0px;
  1006. word-wrap:break-word;
  1007. text-transform:none;
  1008. visibility:hidden;
  1009. }
  1010. #u173816 {
  1011. border-width:0px;
  1012. position:absolute;
  1013. left:0px;
  1014. top:0px;
  1015. width:0px;
  1016. height:0px;
  1017. }
  1018. #u173817_img {
  1019. border-width:0px;
  1020. position:absolute;
  1021. left:0px;
  1022. top:0px;
  1023. width:5px;
  1024. height:5px;
  1025. }
  1026. #u173817 {
  1027. border-width:0px;
  1028. position:absolute;
  1029. left:323px;
  1030. top:85px;
  1031. width:5px;
  1032. height:5px;
  1033. display:flex;
  1034. }
  1035. #u173817 .text {
  1036. position:absolute;
  1037. align-self:center;
  1038. padding:2px 2px 2px 2px;
  1039. box-sizing:border-box;
  1040. width:100%;
  1041. }
  1042. #u173817_text {
  1043. border-width:0px;
  1044. word-wrap:break-word;
  1045. text-transform:none;
  1046. visibility:hidden;
  1047. }
  1048. #u173818_img {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:0px;
  1052. top:0px;
  1053. width:5px;
  1054. height:5px;
  1055. }
  1056. #u173818 {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:339px;
  1060. top:85px;
  1061. width:5px;
  1062. height:5px;
  1063. display:flex;
  1064. }
  1065. #u173818 .text {
  1066. position:absolute;
  1067. align-self:center;
  1068. padding:2px 2px 2px 2px;
  1069. box-sizing:border-box;
  1070. width:100%;
  1071. }
  1072. #u173818_text {
  1073. border-width:0px;
  1074. word-wrap:break-word;
  1075. text-transform:none;
  1076. visibility:hidden;
  1077. }
  1078. #u173819_img {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:7px;
  1084. height:7px;
  1085. }
  1086. #u173819 {
  1087. border-width:0px;
  1088. position:absolute;
  1089. left:330px;
  1090. top:84px;
  1091. width:7px;
  1092. height:7px;
  1093. display:flex;
  1094. }
  1095. #u173819 .text {
  1096. position:absolute;
  1097. align-self:center;
  1098. padding:2px 2px 2px 2px;
  1099. box-sizing:border-box;
  1100. width:100%;
  1101. }
  1102. #u173819_text {
  1103. border-width:0px;
  1104. word-wrap:break-word;
  1105. text-transform:none;
  1106. visibility:hidden;
  1107. }
  1108. #u173820_img {
  1109. border-width:0px;
  1110. position:absolute;
  1111. left:0px;
  1112. top:0px;
  1113. width:19px;
  1114. height:2px;
  1115. }
  1116. #u173820 {
  1117. border-width:0px;
  1118. position:absolute;
  1119. left:347px;
  1120. top:87px;
  1121. width:18px;
  1122. height:1px;
  1123. display:flex;
  1124. -webkit-transform:rotate(90deg);
  1125. -moz-transform:rotate(90deg);
  1126. -ms-transform:rotate(90deg);
  1127. transform:rotate(90deg);
  1128. }
  1129. #u173820 .text {
  1130. position:absolute;
  1131. align-self:center;
  1132. padding:2px 2px 2px 2px;
  1133. box-sizing:border-box;
  1134. width:100%;
  1135. }
  1136. #u173820_text {
  1137. border-width:0px;
  1138. word-wrap:break-word;
  1139. text-transform:none;
  1140. visibility:hidden;
  1141. }
  1142. #u173821_div {
  1143. border-width:0px;
  1144. position:absolute;
  1145. left:0px;
  1146. top:0px;
  1147. width:109px;
  1148. height:25px;
  1149. background:inherit;
  1150. background-color:rgba(255, 255, 255, 0);
  1151. border:none;
  1152. border-radius:0px;
  1153. -moz-box-shadow:none;
  1154. -webkit-box-shadow:none;
  1155. box-shadow:none;
  1156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1157. font-weight:400;
  1158. font-style:normal;
  1159. font-size:18px;
  1160. color:#000000;
  1161. text-align:center;
  1162. }
  1163. #u173821 {
  1164. border-width:0px;
  1165. position:absolute;
  1166. left:162px;
  1167. top:75px;
  1168. width:109px;
  1169. height:25px;
  1170. display:flex;
  1171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1172. font-weight:400;
  1173. font-style:normal;
  1174. font-size:18px;
  1175. color:#000000;
  1176. text-align:center;
  1177. }
  1178. #u173821 .text {
  1179. position:absolute;
  1180. align-self:flex-start;
  1181. padding:0px 0px 0px 0px;
  1182. box-sizing:border-box;
  1183. width:100%;
  1184. }
  1185. #u173821_text {
  1186. border-width:0px;
  1187. white-space:nowrap;
  1188. text-transform:none;
  1189. }
  1190. #u173822_div {
  1191. border-width:0px;
  1192. position:absolute;
  1193. left:0px;
  1194. top:0px;
  1195. width:12px;
  1196. height:12px;
  1197. background:inherit;
  1198. background-color:rgba(255, 255, 255, 0);
  1199. box-sizing:border-box;
  1200. border-width:2px;
  1201. border-style:solid;
  1202. border-color:rgba(51, 51, 51, 1);
  1203. border-right:0px;
  1204. border-bottom:0px;
  1205. border-radius:0px;
  1206. border-top-right-radius:0px;
  1207. border-bottom-left-radius:0px;
  1208. -moz-box-shadow:none;
  1209. -webkit-box-shadow:none;
  1210. box-shadow:none;
  1211. }
  1212. #u173822 {
  1213. border-width:0px;
  1214. position:absolute;
  1215. left:44px;
  1216. top:81px;
  1217. width:12px;
  1218. height:12px;
  1219. display:flex;
  1220. -webkit-transform:rotate(315deg);
  1221. -moz-transform:rotate(315deg);
  1222. -ms-transform:rotate(315deg);
  1223. transform:rotate(315deg);
  1224. }
  1225. #u173822 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u173822_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u173823_div {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:375px;
  1244. height:50px;
  1245. background:inherit;
  1246. background-color:rgba(255, 255, 255, 1);
  1247. border:none;
  1248. border-left:0px;
  1249. border-top:0px;
  1250. border-right:0px;
  1251. border-radius:0px;
  1252. border-bottom-right-radius:0px;
  1253. border-bottom-left-radius:0px;
  1254. -moz-box-shadow:none;
  1255. -webkit-box-shadow:none;
  1256. box-shadow:none;
  1257. }
  1258. #u173823 {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:29px;
  1262. top:158px;
  1263. width:375px;
  1264. height:50px;
  1265. display:flex;
  1266. }
  1267. #u173823 .text {
  1268. position:absolute;
  1269. align-self:center;
  1270. padding:2px 2px 2px 2px;
  1271. box-sizing:border-box;
  1272. width:100%;
  1273. }
  1274. #u173823_text {
  1275. border-width:0px;
  1276. word-wrap:break-word;
  1277. text-transform:none;
  1278. visibility:hidden;
  1279. }
  1280. #u173824_div {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:64px;
  1286. height:30px;
  1287. background:inherit;
  1288. background-color:rgba(255, 255, 255, 0);
  1289. border:none;
  1290. border-left:0px;
  1291. border-top:0px;
  1292. border-right:0px;
  1293. border-radius:0px;
  1294. border-bottom-right-radius:0px;
  1295. border-bottom-left-radius:0px;
  1296. -moz-box-shadow:none;
  1297. -webkit-box-shadow:none;
  1298. box-shadow:none;
  1299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1300. font-weight:400;
  1301. font-style:normal;
  1302. font-size:14px;
  1303. color:#AAAAAA;
  1304. line-height:30px;
  1305. }
  1306. #u173824 {
  1307. border-width:0px;
  1308. position:absolute;
  1309. left:49px;
  1310. top:168px;
  1311. width:64px;
  1312. height:30px;
  1313. display:flex;
  1314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1315. font-weight:400;
  1316. font-style:normal;
  1317. font-size:14px;
  1318. color:#AAAAAA;
  1319. line-height:30px;
  1320. }
  1321. #u173824 .text {
  1322. position:absolute;
  1323. align-self:center;
  1324. padding:0px 0px 0px 0px;
  1325. box-sizing:border-box;
  1326. width:100%;
  1327. }
  1328. #u173824_text {
  1329. border-width:0px;
  1330. white-space:nowrap;
  1331. text-transform:none;
  1332. }
  1333. #u173825_div {
  1334. border-width:0px;
  1335. position:absolute;
  1336. left:0px;
  1337. top:0px;
  1338. width:375px;
  1339. height:50px;
  1340. background:inherit;
  1341. background-color:rgba(255, 255, 255, 1);
  1342. border:none;
  1343. border-left:0px;
  1344. border-top:0px;
  1345. border-right:0px;
  1346. border-radius:0px;
  1347. border-bottom-right-radius:0px;
  1348. border-bottom-left-radius:0px;
  1349. -moz-box-shadow:none;
  1350. -webkit-box-shadow:none;
  1351. box-shadow:none;
  1352. }
  1353. #u173825 {
  1354. border-width:0px;
  1355. position:absolute;
  1356. left:29px;
  1357. top:107px;
  1358. width:375px;
  1359. height:50px;
  1360. display:flex;
  1361. }
  1362. #u173825 .text {
  1363. position:absolute;
  1364. align-self:center;
  1365. padding:2px 2px 2px 2px;
  1366. box-sizing:border-box;
  1367. width:100%;
  1368. }
  1369. #u173825_text {
  1370. border-width:0px;
  1371. word-wrap:break-word;
  1372. text-transform:none;
  1373. visibility:hidden;
  1374. }
  1375. #u173826_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:43px;
  1381. height:30px;
  1382. background:inherit;
  1383. background-color:rgba(255, 255, 255, 0);
  1384. border:none;
  1385. border-left:0px;
  1386. border-top:0px;
  1387. border-right:0px;
  1388. border-radius:0px;
  1389. border-bottom-right-radius:0px;
  1390. border-bottom-left-radius:0px;
  1391. -moz-box-shadow:none;
  1392. -webkit-box-shadow:none;
  1393. box-shadow:none;
  1394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1395. font-weight:400;
  1396. font-style:normal;
  1397. font-size:14px;
  1398. color:#AAAAAA;
  1399. line-height:30px;
  1400. }
  1401. #u173826 {
  1402. border-width:0px;
  1403. position:absolute;
  1404. left:49px;
  1405. top:117px;
  1406. width:43px;
  1407. height:30px;
  1408. display:flex;
  1409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1410. font-weight:400;
  1411. font-style:normal;
  1412. font-size:14px;
  1413. color:#AAAAAA;
  1414. line-height:30px;
  1415. }
  1416. #u173826 .text {
  1417. position:absolute;
  1418. align-self:center;
  1419. padding:0px 0px 0px 0px;
  1420. box-sizing:border-box;
  1421. width:100%;
  1422. }
  1423. #u173826_text {
  1424. border-width:0px;
  1425. white-space:nowrap;
  1426. text-transform:none;
  1427. }
  1428. #u173827_div {
  1429. border-width:0px;
  1430. position:absolute;
  1431. left:0px;
  1432. top:0px;
  1433. width:29px;
  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:#D7D7D7;
  1452. line-height:30px;
  1453. }
  1454. #u173827 {
  1455. border-width:0px;
  1456. position:absolute;
  1457. left:137px;
  1458. top:117px;
  1459. width:29px;
  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:#D7D7D7;
  1467. line-height:30px;
  1468. }
  1469. #u173827 .text {
  1470. position:absolute;
  1471. align-self:center;
  1472. padding:0px 0px 0px 0px;
  1473. box-sizing:border-box;
  1474. width:100%;
  1475. }
  1476. #u173827_text {
  1477. border-width:0px;
  1478. white-space:nowrap;
  1479. text-transform:none;
  1480. }
  1481. #u173828_div {
  1482. border-width:0px;
  1483. position:absolute;
  1484. left:0px;
  1485. top:0px;
  1486. width:43px;
  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-Regular', 'PingFang SC', sans-serif;
  1501. font-weight:400;
  1502. font-style:normal;
  1503. font-size:14px;
  1504. line-height:30px;
  1505. }
  1506. #u173828 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:137px;
  1510. top:168px;
  1511. width:43px;
  1512. height:30px;
  1513. display:flex;
  1514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1515. font-weight:400;
  1516. font-style:normal;
  1517. font-size:14px;
  1518. line-height:30px;
  1519. }
  1520. #u173828 .text {
  1521. position:absolute;
  1522. align-self:center;
  1523. padding:0px 0px 0px 0px;
  1524. box-sizing:border-box;
  1525. width:100%;
  1526. }
  1527. #u173828_text {
  1528. border-width:0px;
  1529. white-space:nowrap;
  1530. text-transform:none;
  1531. }
  1532. #u173829_div {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:0px;
  1536. top:0px;
  1537. width:8px;
  1538. height:8px;
  1539. background:inherit;
  1540. background-color:rgba(255, 255, 255, 0);
  1541. box-sizing:border-box;
  1542. border-width:1px;
  1543. border-style:solid;
  1544. border-color:rgba(127, 127, 127, 1);
  1545. border-right:0px;
  1546. border-bottom:0px;
  1547. border-radius:0px;
  1548. border-top-right-radius:0px;
  1549. border-bottom-left-radius:0px;
  1550. -moz-box-shadow:none;
  1551. -webkit-box-shadow:none;
  1552. box-shadow:none;
  1553. }
  1554. #u173829 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:379px;
  1558. top:179px;
  1559. width:8px;
  1560. height:8px;
  1561. display:flex;
  1562. -webkit-transform:rotate(135deg);
  1563. -moz-transform:rotate(135deg);
  1564. -ms-transform:rotate(135deg);
  1565. transform:rotate(135deg);
  1566. }
  1567. #u173829 .text {
  1568. position:absolute;
  1569. align-self:center;
  1570. padding:2px 2px 2px 2px;
  1571. box-sizing:border-box;
  1572. width:100%;
  1573. }
  1574. #u173829_text {
  1575. border-width:0px;
  1576. word-wrap:break-word;
  1577. text-transform:none;
  1578. visibility:hidden;
  1579. }
  1580. #u173830_div {
  1581. border-width:0px;
  1582. position:absolute;
  1583. left:0px;
  1584. top:0px;
  1585. width:375px;
  1586. height:50px;
  1587. background:inherit;
  1588. background-color:rgba(255, 255, 255, 1);
  1589. border:none;
  1590. border-left:0px;
  1591. border-top:0px;
  1592. border-right:0px;
  1593. border-radius:0px;
  1594. border-bottom-right-radius:0px;
  1595. border-bottom-left-radius:0px;
  1596. -moz-box-shadow:none;
  1597. -webkit-box-shadow:none;
  1598. box-shadow:none;
  1599. }
  1600. #u173830 {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:29px;
  1604. top:209px;
  1605. width:375px;
  1606. height:50px;
  1607. display:flex;
  1608. }
  1609. #u173830 .text {
  1610. position:absolute;
  1611. align-self:center;
  1612. padding:2px 2px 2px 2px;
  1613. box-sizing:border-box;
  1614. width:100%;
  1615. }
  1616. #u173830_text {
  1617. border-width:0px;
  1618. word-wrap:break-word;
  1619. text-transform:none;
  1620. visibility:hidden;
  1621. }
  1622. #u173831_div {
  1623. border-width:0px;
  1624. position:absolute;
  1625. left:0px;
  1626. top:0px;
  1627. width:64px;
  1628. height:30px;
  1629. background:inherit;
  1630. background-color:rgba(255, 255, 255, 0);
  1631. border:none;
  1632. border-left:0px;
  1633. border-top:0px;
  1634. border-right:0px;
  1635. border-radius:0px;
  1636. border-bottom-right-radius:0px;
  1637. border-bottom-left-radius:0px;
  1638. -moz-box-shadow:none;
  1639. -webkit-box-shadow:none;
  1640. box-shadow:none;
  1641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1642. font-weight:400;
  1643. font-style:normal;
  1644. font-size:14px;
  1645. color:#AAAAAA;
  1646. line-height:30px;
  1647. }
  1648. #u173831 {
  1649. border-width:0px;
  1650. position:absolute;
  1651. left:49px;
  1652. top:219px;
  1653. width:64px;
  1654. height:30px;
  1655. display:flex;
  1656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1657. font-weight:400;
  1658. font-style:normal;
  1659. font-size:14px;
  1660. color:#AAAAAA;
  1661. line-height:30px;
  1662. }
  1663. #u173831 .text {
  1664. position:absolute;
  1665. align-self:center;
  1666. padding:0px 0px 0px 0px;
  1667. box-sizing:border-box;
  1668. width:100%;
  1669. }
  1670. #u173831_text {
  1671. border-width:0px;
  1672. white-space:nowrap;
  1673. text-transform:none;
  1674. }
  1675. #u173832_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:79px;
  1681. height:30px;
  1682. background:inherit;
  1683. background-color:rgba(255, 255, 255, 0);
  1684. border:none;
  1685. border-left:0px;
  1686. border-top:0px;
  1687. border-right:0px;
  1688. border-radius:0px;
  1689. border-bottom-right-radius:0px;
  1690. border-bottom-left-radius:0px;
  1691. -moz-box-shadow:none;
  1692. -webkit-box-shadow:none;
  1693. box-shadow:none;
  1694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1695. font-weight:400;
  1696. font-style:normal;
  1697. font-size:14px;
  1698. line-height:30px;
  1699. }
  1700. #u173832 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:137px;
  1704. top:219px;
  1705. width:79px;
  1706. height:30px;
  1707. display:flex;
  1708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1709. font-weight:400;
  1710. font-style:normal;
  1711. font-size:14px;
  1712. line-height:30px;
  1713. }
  1714. #u173832 .text {
  1715. position:absolute;
  1716. align-self:center;
  1717. padding:0px 0px 0px 0px;
  1718. box-sizing:border-box;
  1719. width:100%;
  1720. }
  1721. #u173832_text {
  1722. border-width:0px;
  1723. white-space:nowrap;
  1724. text-transform:none;
  1725. }
  1726. #u173833_div {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:0px;
  1730. top:0px;
  1731. width:8px;
  1732. height:8px;
  1733. background:inherit;
  1734. background-color:rgba(255, 255, 255, 0);
  1735. box-sizing:border-box;
  1736. border-width:1px;
  1737. border-style:solid;
  1738. border-color:rgba(127, 127, 127, 1);
  1739. border-right:0px;
  1740. border-bottom:0px;
  1741. border-radius:0px;
  1742. border-top-right-radius:0px;
  1743. border-bottom-left-radius:0px;
  1744. -moz-box-shadow:none;
  1745. -webkit-box-shadow:none;
  1746. box-shadow:none;
  1747. }
  1748. #u173833 {
  1749. border-width:0px;
  1750. position:absolute;
  1751. left:379px;
  1752. top:230px;
  1753. width:8px;
  1754. height:8px;
  1755. display:flex;
  1756. -webkit-transform:rotate(135deg);
  1757. -moz-transform:rotate(135deg);
  1758. -ms-transform:rotate(135deg);
  1759. transform:rotate(135deg);
  1760. }
  1761. #u173833 .text {
  1762. position:absolute;
  1763. align-self:center;
  1764. padding:2px 2px 2px 2px;
  1765. box-sizing:border-box;
  1766. width:100%;
  1767. }
  1768. #u173833_text {
  1769. border-width:0px;
  1770. word-wrap:break-word;
  1771. text-transform:none;
  1772. visibility:hidden;
  1773. }
  1774. #u173834_div {
  1775. border-width:0px;
  1776. position:absolute;
  1777. left:0px;
  1778. top:0px;
  1779. width:375px;
  1780. height:50px;
  1781. background:inherit;
  1782. background-color:rgba(255, 255, 255, 1);
  1783. border:none;
  1784. border-left:0px;
  1785. border-top:0px;
  1786. border-right:0px;
  1787. border-radius:0px;
  1788. border-bottom-right-radius:0px;
  1789. border-bottom-left-radius:0px;
  1790. -moz-box-shadow:none;
  1791. -webkit-box-shadow:none;
  1792. box-shadow:none;
  1793. }
  1794. #u173834 {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:29px;
  1798. top:260px;
  1799. width:375px;
  1800. height:50px;
  1801. display:flex;
  1802. }
  1803. #u173834 .text {
  1804. position:absolute;
  1805. align-self:center;
  1806. padding:2px 2px 2px 2px;
  1807. box-sizing:border-box;
  1808. width:100%;
  1809. }
  1810. #u173834_text {
  1811. border-width:0px;
  1812. word-wrap:break-word;
  1813. text-transform:none;
  1814. visibility:hidden;
  1815. }
  1816. #u173835_div {
  1817. border-width:0px;
  1818. position:absolute;
  1819. left:0px;
  1820. top:0px;
  1821. width:71px;
  1822. height:40px;
  1823. background:inherit;
  1824. background-color:rgba(255, 255, 255, 0);
  1825. border:none;
  1826. border-left:0px;
  1827. border-top:0px;
  1828. border-right:0px;
  1829. border-radius:0px;
  1830. border-bottom-right-radius:0px;
  1831. border-bottom-left-radius:0px;
  1832. -moz-box-shadow:none;
  1833. -webkit-box-shadow:none;
  1834. box-shadow:none;
  1835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1836. font-weight:400;
  1837. font-style:normal;
  1838. font-size:14px;
  1839. color:#AAAAAA;
  1840. }
  1841. #u173835 {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:49px;
  1845. top:265px;
  1846. width:71px;
  1847. height:40px;
  1848. display:flex;
  1849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1850. font-weight:400;
  1851. font-style:normal;
  1852. font-size:14px;
  1853. color:#AAAAAA;
  1854. }
  1855. #u173835 .text {
  1856. position:absolute;
  1857. align-self:center;
  1858. padding:0px 0px 0px 0px;
  1859. box-sizing:border-box;
  1860. width:100%;
  1861. }
  1862. #u173835_text {
  1863. border-width:0px;
  1864. word-wrap:break-word;
  1865. text-transform:none;
  1866. }
  1867. #u173836_div {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:0px;
  1871. top:0px;
  1872. width:127px;
  1873. height:30px;
  1874. background:inherit;
  1875. background-color:rgba(255, 255, 255, 0);
  1876. border:none;
  1877. border-left:0px;
  1878. border-top:0px;
  1879. border-right:0px;
  1880. border-radius:0px;
  1881. border-bottom-right-radius:0px;
  1882. border-bottom-left-radius:0px;
  1883. -moz-box-shadow:none;
  1884. -webkit-box-shadow:none;
  1885. box-shadow:none;
  1886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1887. font-weight:400;
  1888. font-style:normal;
  1889. font-size:14px;
  1890. color:#D7D7D7;
  1891. line-height:30px;
  1892. }
  1893. #u173836 {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:137px;
  1897. top:270px;
  1898. width:127px;
  1899. height:30px;
  1900. display:flex;
  1901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1902. font-weight:400;
  1903. font-style:normal;
  1904. font-size:14px;
  1905. color:#D7D7D7;
  1906. line-height:30px;
  1907. }
  1908. #u173836 .text {
  1909. position:absolute;
  1910. align-self:center;
  1911. padding:0px 0px 0px 0px;
  1912. box-sizing:border-box;
  1913. width:100%;
  1914. }
  1915. #u173836_text {
  1916. border-width:0px;
  1917. white-space:nowrap;
  1918. text-transform:none;
  1919. }
  1920. #u173837_div {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:0px;
  1924. top:0px;
  1925. width:8px;
  1926. height:8px;
  1927. background:inherit;
  1928. background-color:rgba(255, 255, 255, 0);
  1929. box-sizing:border-box;
  1930. border-width:1px;
  1931. border-style:solid;
  1932. border-color:rgba(127, 127, 127, 1);
  1933. border-right:0px;
  1934. border-bottom:0px;
  1935. border-radius:0px;
  1936. border-top-right-radius:0px;
  1937. border-bottom-left-radius:0px;
  1938. -moz-box-shadow:none;
  1939. -webkit-box-shadow:none;
  1940. box-shadow:none;
  1941. }
  1942. #u173837 {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:379px;
  1946. top:281px;
  1947. width:8px;
  1948. height:8px;
  1949. display:flex;
  1950. -webkit-transform:rotate(135deg);
  1951. -moz-transform:rotate(135deg);
  1952. -ms-transform:rotate(135deg);
  1953. transform:rotate(135deg);
  1954. }
  1955. #u173837 .text {
  1956. position:absolute;
  1957. align-self:center;
  1958. padding:2px 2px 2px 2px;
  1959. box-sizing:border-box;
  1960. width:100%;
  1961. }
  1962. #u173837_text {
  1963. border-width:0px;
  1964. word-wrap:break-word;
  1965. text-transform:none;
  1966. visibility:hidden;
  1967. }
  1968. #u173838_div {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:0px;
  1972. top:0px;
  1973. width:375px;
  1974. height:50px;
  1975. background:inherit;
  1976. background-color:rgba(255, 255, 255, 1);
  1977. border:none;
  1978. border-left:0px;
  1979. border-top:0px;
  1980. border-right:0px;
  1981. border-radius:0px;
  1982. border-bottom-right-radius:0px;
  1983. border-bottom-left-radius:0px;
  1984. -moz-box-shadow:none;
  1985. -webkit-box-shadow:none;
  1986. box-shadow:none;
  1987. }
  1988. #u173838 {
  1989. border-width:0px;
  1990. position:absolute;
  1991. left:29px;
  1992. top:311px;
  1993. width:375px;
  1994. height:50px;
  1995. display:flex;
  1996. }
  1997. #u173838 .text {
  1998. position:absolute;
  1999. align-self:center;
  2000. padding:2px 2px 2px 2px;
  2001. box-sizing:border-box;
  2002. width:100%;
  2003. }
  2004. #u173838_text {
  2005. border-width:0px;
  2006. word-wrap:break-word;
  2007. text-transform:none;
  2008. visibility:hidden;
  2009. }
  2010. #u173839_div {
  2011. border-width:0px;
  2012. position:absolute;
  2013. left:0px;
  2014. top:0px;
  2015. width:78px;
  2016. height:30px;
  2017. background:inherit;
  2018. background-color:rgba(255, 255, 255, 0);
  2019. border:none;
  2020. border-left:0px;
  2021. border-top:0px;
  2022. border-right:0px;
  2023. border-radius:0px;
  2024. border-bottom-right-radius:0px;
  2025. border-bottom-left-radius:0px;
  2026. -moz-box-shadow:none;
  2027. -webkit-box-shadow:none;
  2028. box-shadow:none;
  2029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2030. font-weight:400;
  2031. font-style:normal;
  2032. font-size:14px;
  2033. color:#AAAAAA;
  2034. line-height:30px;
  2035. }
  2036. #u173839 {
  2037. border-width:0px;
  2038. position:absolute;
  2039. left:49px;
  2040. top:321px;
  2041. width:78px;
  2042. height:30px;
  2043. display:flex;
  2044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2045. font-weight:400;
  2046. font-style:normal;
  2047. font-size:14px;
  2048. color:#AAAAAA;
  2049. line-height:30px;
  2050. }
  2051. #u173839 .text {
  2052. position:absolute;
  2053. align-self:center;
  2054. padding:0px 0px 0px 0px;
  2055. box-sizing:border-box;
  2056. width:100%;
  2057. }
  2058. #u173839_text {
  2059. border-width:0px;
  2060. white-space:nowrap;
  2061. text-transform:none;
  2062. }
  2063. #u173840_div {
  2064. border-width:0px;
  2065. position:absolute;
  2066. left:0px;
  2067. top:0px;
  2068. width:113px;
  2069. height:30px;
  2070. background:inherit;
  2071. background-color:rgba(255, 255, 255, 0);
  2072. border:none;
  2073. border-left:0px;
  2074. border-top:0px;
  2075. border-right:0px;
  2076. border-radius:0px;
  2077. border-bottom-right-radius:0px;
  2078. border-bottom-left-radius:0px;
  2079. -moz-box-shadow:none;
  2080. -webkit-box-shadow:none;
  2081. box-shadow:none;
  2082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2083. font-weight:400;
  2084. font-style:normal;
  2085. font-size:14px;
  2086. color:#D7D7D7;
  2087. line-height:30px;
  2088. }
  2089. #u173840 {
  2090. border-width:0px;
  2091. position:absolute;
  2092. left:137px;
  2093. top:321px;
  2094. width:113px;
  2095. height:30px;
  2096. display:flex;
  2097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2098. font-weight:400;
  2099. font-style:normal;
  2100. font-size:14px;
  2101. color:#D7D7D7;
  2102. line-height:30px;
  2103. }
  2104. #u173840 .text {
  2105. position:absolute;
  2106. align-self:center;
  2107. padding:0px 0px 0px 0px;
  2108. box-sizing:border-box;
  2109. width:100%;
  2110. }
  2111. #u173840_text {
  2112. border-width:0px;
  2113. white-space:nowrap;
  2114. text-transform:none;
  2115. }
  2116. #u173841_div {
  2117. border-width:0px;
  2118. position:absolute;
  2119. left:0px;
  2120. top:0px;
  2121. width:375px;
  2122. height:80px;
  2123. background:inherit;
  2124. background-color:rgba(255, 255, 255, 1);
  2125. border:none;
  2126. border-left:0px;
  2127. border-top:0px;
  2128. border-right:0px;
  2129. border-radius:0px;
  2130. border-bottom-right-radius:0px;
  2131. border-bottom-left-radius:0px;
  2132. -moz-box-shadow:none;
  2133. -webkit-box-shadow:none;
  2134. box-shadow:none;
  2135. }
  2136. #u173841 {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:29px;
  2140. top:362px;
  2141. width:375px;
  2142. height:80px;
  2143. display:flex;
  2144. }
  2145. #u173841 .text {
  2146. position:absolute;
  2147. align-self:center;
  2148. padding:2px 2px 2px 2px;
  2149. box-sizing:border-box;
  2150. width:100%;
  2151. }
  2152. #u173841_text {
  2153. border-width:0px;
  2154. word-wrap:break-word;
  2155. text-transform:none;
  2156. visibility:hidden;
  2157. }
  2158. #u173842_div {
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:0px;
  2162. top:0px;
  2163. width:57px;
  2164. height:30px;
  2165. background:inherit;
  2166. background-color:rgba(255, 255, 255, 0);
  2167. border:none;
  2168. border-left:0px;
  2169. border-top:0px;
  2170. border-right:0px;
  2171. border-radius:0px;
  2172. border-bottom-right-radius:0px;
  2173. border-bottom-left-radius:0px;
  2174. -moz-box-shadow:none;
  2175. -webkit-box-shadow:none;
  2176. box-shadow:none;
  2177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2178. font-weight:400;
  2179. font-style:normal;
  2180. font-size:14px;
  2181. color:#AAAAAA;
  2182. line-height:30px;
  2183. }
  2184. #u173842 {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:49px;
  2188. top:372px;
  2189. width:57px;
  2190. height:30px;
  2191. display:flex;
  2192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2193. font-weight:400;
  2194. font-style:normal;
  2195. font-size:14px;
  2196. color:#AAAAAA;
  2197. line-height:30px;
  2198. }
  2199. #u173842 .text {
  2200. position:absolute;
  2201. align-self:center;
  2202. padding:0px 0px 0px 0px;
  2203. box-sizing:border-box;
  2204. width:100%;
  2205. }
  2206. #u173842_text {
  2207. border-width:0px;
  2208. white-space:nowrap;
  2209. text-transform:none;
  2210. }
  2211. #u173843_div {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:0px;
  2215. top:0px;
  2216. width:71px;
  2217. height:30px;
  2218. background:inherit;
  2219. background-color:rgba(255, 255, 255, 0);
  2220. border:none;
  2221. border-left:0px;
  2222. border-top:0px;
  2223. border-right:0px;
  2224. border-radius:0px;
  2225. border-bottom-right-radius:0px;
  2226. border-bottom-left-radius:0px;
  2227. -moz-box-shadow:none;
  2228. -webkit-box-shadow:none;
  2229. box-shadow:none;
  2230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2231. font-weight:400;
  2232. font-style:normal;
  2233. font-size:14px;
  2234. color:#D7D7D7;
  2235. line-height:30px;
  2236. }
  2237. #u173843 {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:137px;
  2241. top:372px;
  2242. width:71px;
  2243. height:30px;
  2244. display:flex;
  2245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2246. font-weight:400;
  2247. font-style:normal;
  2248. font-size:14px;
  2249. color:#D7D7D7;
  2250. line-height:30px;
  2251. }
  2252. #u173843 .text {
  2253. position:absolute;
  2254. align-self:center;
  2255. padding:0px 0px 0px 0px;
  2256. box-sizing:border-box;
  2257. width:100%;
  2258. }
  2259. #u173843_text {
  2260. border-width:0px;
  2261. white-space:nowrap;
  2262. text-transform:none;
  2263. }
  2264. #u173844_div {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:0px;
  2268. top:0px;
  2269. width:344px;
  2270. height:40px;
  2271. background:inherit;
  2272. background-color:rgba(24, 144, 255, 0);
  2273. box-sizing:border-box;
  2274. border-width:1px;
  2275. border-style:solid;
  2276. border-color:rgba(24, 144, 255, 1);
  2277. border-radius:81px;
  2278. -moz-box-shadow:none;
  2279. -webkit-box-shadow:none;
  2280. box-shadow:none;
  2281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2282. font-weight:400;
  2283. font-style:normal;
  2284. font-size:14px;
  2285. color:#1890FF;
  2286. }
  2287. #u173844 {
  2288. border-width:0px;
  2289. position:absolute;
  2290. left:46px;
  2291. top:463px;
  2292. width:344px;
  2293. height:40px;
  2294. display:flex;
  2295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2296. font-weight:400;
  2297. font-style:normal;
  2298. font-size:14px;
  2299. color:#1890FF;
  2300. }
  2301. #u173844 .text {
  2302. position:absolute;
  2303. align-self:center;
  2304. padding:2px 2px 2px 2px;
  2305. box-sizing:border-box;
  2306. width:100%;
  2307. }
  2308. #u173844_text {
  2309. border-width:0px;
  2310. word-wrap:break-word;
  2311. text-transform:none;
  2312. }
  2313. #u173845 {
  2314. border-width:0px;
  2315. position:absolute;
  2316. left:0px;
  2317. top:0px;
  2318. width:0px;
  2319. height:0px;
  2320. }
  2321. #u173846_div {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:0px;
  2325. top:0px;
  2326. width:375px;
  2327. height:60px;
  2328. background:inherit;
  2329. background-color:rgba(255, 255, 255, 1);
  2330. border:none;
  2331. border-top:0px;
  2332. border-radius:28px;
  2333. border-top-left-radius:0px;
  2334. border-top-right-radius:0px;
  2335. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2336. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2337. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2339. font-weight:400;
  2340. font-style:normal;
  2341. font-size:14px;
  2342. color:#FFFFFF;
  2343. }
  2344. #u173846 {
  2345. border-width:0px;
  2346. position:absolute;
  2347. left:29px;
  2348. top:780px;
  2349. width:375px;
  2350. height:60px;
  2351. display:flex;
  2352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2353. font-weight:400;
  2354. font-style:normal;
  2355. font-size:14px;
  2356. color:#FFFFFF;
  2357. }
  2358. #u173846 .text {
  2359. position:absolute;
  2360. align-self:center;
  2361. padding:2px 2px 2px 2px;
  2362. box-sizing:border-box;
  2363. width:100%;
  2364. }
  2365. #u173846_text {
  2366. border-width:0px;
  2367. word-wrap:break-word;
  2368. text-transform:none;
  2369. visibility:hidden;
  2370. }
  2371. #u173847_div {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:0px;
  2375. top:0px;
  2376. width:106px;
  2377. height:40px;
  2378. background:inherit;
  2379. background-color:rgba(0, 137, 254, 1);
  2380. border:none;
  2381. border-radius:63px;
  2382. -moz-box-shadow:none;
  2383. -webkit-box-shadow:none;
  2384. box-shadow:none;
  2385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2386. font-weight:400;
  2387. font-style:normal;
  2388. font-size:14px;
  2389. color:#FFFFFF;
  2390. }
  2391. #u173847 {
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:275px;
  2395. top:789px;
  2396. width:106px;
  2397. height:40px;
  2398. display:flex;
  2399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2400. font-weight:400;
  2401. font-style:normal;
  2402. font-size:14px;
  2403. color:#FFFFFF;
  2404. }
  2405. #u173847 .text {
  2406. position:absolute;
  2407. align-self:center;
  2408. padding:2px 2px 2px 2px;
  2409. box-sizing:border-box;
  2410. width:100%;
  2411. }
  2412. #u173847_text {
  2413. border-width:0px;
  2414. word-wrap:break-word;
  2415. text-transform:none;
  2416. }
  2417. #u173848 {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:0px;
  2421. top:0px;
  2422. width:0px;
  2423. height:0px;
  2424. }
  2425. #u173849 {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:0px;
  2429. top:0px;
  2430. width:0px;
  2431. height:0px;
  2432. }
  2433. #u173850_div {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:0px;
  2437. top:0px;
  2438. width:93px;
  2439. height:20px;
  2440. background:inherit;
  2441. background-color:rgba(255, 255, 255, 0);
  2442. border:none;
  2443. border-left:0px;
  2444. border-top:0px;
  2445. border-right:0px;
  2446. border-radius:0px;
  2447. border-bottom-right-radius:0px;
  2448. border-bottom-left-radius:0px;
  2449. -moz-box-shadow:none;
  2450. -webkit-box-shadow:none;
  2451. box-shadow:none;
  2452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2453. font-weight:400;
  2454. font-style:normal;
  2455. font-size:14px;
  2456. }
  2457. #u173850 {
  2458. border-width:0px;
  2459. position:absolute;
  2460. left:47px;
  2461. top:799px;
  2462. width:93px;
  2463. height:20px;
  2464. display:flex;
  2465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2466. font-weight:400;
  2467. font-style:normal;
  2468. font-size:14px;
  2469. }
  2470. #u173850 .text {
  2471. position:absolute;
  2472. align-self:center;
  2473. padding:0px 0px 0px 0px;
  2474. box-sizing:border-box;
  2475. width:100%;
  2476. }
  2477. #u173850_text {
  2478. border-width:0px;
  2479. white-space:nowrap;
  2480. text-transform:none;
  2481. }
  2482. #u173851_div {
  2483. border-width:0px;
  2484. position:absolute;
  2485. left:0px;
  2486. top:0px;
  2487. width:6px;
  2488. height:6px;
  2489. background:inherit;
  2490. background-color:rgba(255, 255, 255, 0);
  2491. box-sizing:border-box;
  2492. border-width:1px;
  2493. border-style:solid;
  2494. border-color:rgba(0, 191, 191, 1);
  2495. border-right:0px;
  2496. border-bottom:0px;
  2497. border-radius:0px;
  2498. border-top-right-radius:0px;
  2499. border-bottom-left-radius:0px;
  2500. -moz-box-shadow:none;
  2501. -webkit-box-shadow:none;
  2502. box-shadow:none;
  2503. }
  2504. #u173851 {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:146px;
  2508. top:808px;
  2509. width:6px;
  2510. height:6px;
  2511. display:flex;
  2512. -webkit-transform:rotate(45deg);
  2513. -moz-transform:rotate(45deg);
  2514. -ms-transform:rotate(45deg);
  2515. transform:rotate(45deg);
  2516. }
  2517. #u173851 .text {
  2518. position:absolute;
  2519. align-self:center;
  2520. padding:2px 2px 2px 2px;
  2521. box-sizing:border-box;
  2522. width:100%;
  2523. }
  2524. #u173851_text {
  2525. border-width:0px;
  2526. word-wrap:break-word;
  2527. text-transform:none;
  2528. visibility:hidden;
  2529. }
  2530. #u173852 label {
  2531. left:0px;
  2532. width:100%;
  2533. }
  2534. #u173852_img {
  2535. border-width:0px;
  2536. position:absolute;
  2537. left:0px;
  2538. top:3px;
  2539. width:12px;
  2540. height:12px;
  2541. }
  2542. #u173852 {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:40px;
  2546. top:753px;
  2547. width:364px;
  2548. height:18px;
  2549. display:flex;
  2550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2551. font-weight:400;
  2552. font-style:normal;
  2553. }
  2554. #u173852 .text {
  2555. position:absolute;
  2556. align-self:center;
  2557. padding:0px 2px 0px 2px;
  2558. box-sizing:border-box;
  2559. }
  2560. #u173852_img.selected {
  2561. }
  2562. #u173852.selected {
  2563. }
  2564. #u173852_img.disabled {
  2565. }
  2566. #u173852.disabled {
  2567. }
  2568. #u173852_img.selectedDisabled {
  2569. }
  2570. #u173852.selectedDisabled {
  2571. }
  2572. #u173852_text {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:14px;
  2576. top:0px;
  2577. width:348px;
  2578. word-wrap:break-word;
  2579. text-transform:none;
  2580. }
  2581. #u173852_input {
  2582. border-width:0px;
  2583. position:absolute;
  2584. left:0px;
  2585. top:0px;
  2586. width:0px;
  2587. height:0px;
  2588. opacity:0;
  2589. }