styles.css 42 KB

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