styles.css 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565
  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. #u203540_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u203540 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u203540 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u203540_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u203541_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. #u203541 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u203541 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u203541_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u203542 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u203543_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. #u203543 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u203543 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u203543_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u203544 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u203545_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u203545 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u203545 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u203545_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u203546_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u203546 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u203546 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u203546_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u203547 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u203548_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u203548 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u203548 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u203548_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u203549_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u203549 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u203549 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u203549_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u203550_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u203550 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u203550 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u203550_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u203551_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u203551 {
  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. #u203551 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u203551_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u203552_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u203552 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u203552 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u203552_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u203553_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. #u203553 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u203553 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u203553_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u203554 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u203555_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u203555 {
  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. #u203555 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u203555_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u203556_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. #u203556 {
  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. #u203556 .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. #u203556_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u203557 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u203558_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u203558 {
  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. #u203558 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u203558_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u203559_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. #u203559 {
  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. #u203559 .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. #u203559_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u203560_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. #u203560 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u203560 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u203560_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u203561 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u203562_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u203562 {
  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. #u203562 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u203562_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u203563_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. #u203563 {
  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. #u203563 .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. #u203563_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u203564 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u203565_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u203565 {
  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. #u203565 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u203565_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u203566_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. #u203566 {
  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. #u203566 .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. #u203566_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u203567_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. #u203567 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:107px;
  802. width:375px;
  803. height:732px;
  804. display:flex;
  805. }
  806. #u203567 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u203567_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u203568_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. #u203568 {
  843. border-width:0px;
  844. position:absolute;
  845. left:29px;
  846. top:67px;
  847. width:375px;
  848. height:40px;
  849. display:flex;
  850. }
  851. #u203568 .text {
  852. position:absolute;
  853. align-self:center;
  854. padding:2px 2px 2px 2px;
  855. box-sizing:border-box;
  856. width:100%;
  857. }
  858. #u203568_text {
  859. border-width:0px;
  860. word-wrap:break-word;
  861. text-transform:none;
  862. visibility:hidden;
  863. }
  864. #u203569_img {
  865. border-width:0px;
  866. position:absolute;
  867. left:0px;
  868. top:0px;
  869. width:375px;
  870. height:44px;
  871. }
  872. #u203569 {
  873. border-width:0px;
  874. position:absolute;
  875. left:29px;
  876. top:24px;
  877. width:375px;
  878. height:44px;
  879. display:flex;
  880. }
  881. #u203569 .text {
  882. position:absolute;
  883. align-self:center;
  884. padding:2px 2px 2px 2px;
  885. box-sizing:border-box;
  886. width:100%;
  887. }
  888. #u203569_text {
  889. border-width:0px;
  890. word-wrap:break-word;
  891. text-transform:none;
  892. visibility:hidden;
  893. }
  894. #u203570 {
  895. border-width:0px;
  896. position:absolute;
  897. left:0px;
  898. top:0px;
  899. width:0px;
  900. height:0px;
  901. }
  902. #u203571_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. #u203571 {
  921. border-width:0px;
  922. position:absolute;
  923. left:306px;
  924. top:71px;
  925. width:88px;
  926. height:32px;
  927. display:flex;
  928. }
  929. #u203571 .text {
  930. position:absolute;
  931. align-self:center;
  932. padding:2px 2px 2px 2px;
  933. box-sizing:border-box;
  934. width:100%;
  935. }
  936. #u203571_text {
  937. border-width:0px;
  938. word-wrap:break-word;
  939. text-transform:none;
  940. visibility:hidden;
  941. }
  942. #u203572 {
  943. border-width:0px;
  944. position:absolute;
  945. left:0px;
  946. top:0px;
  947. width:0px;
  948. height:0px;
  949. }
  950. #u203573_img {
  951. border-width:0px;
  952. position:absolute;
  953. left:0px;
  954. top:0px;
  955. width:18px;
  956. height:18px;
  957. }
  958. #u203573 {
  959. border-width:0px;
  960. position:absolute;
  961. left:369px;
  962. top:78px;
  963. width:18px;
  964. height:18px;
  965. display:flex;
  966. }
  967. #u203573 .text {
  968. position:absolute;
  969. align-self:center;
  970. padding:2px 2px 2px 2px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u203573_text {
  975. border-width:0px;
  976. word-wrap:break-word;
  977. text-transform:none;
  978. visibility:hidden;
  979. }
  980. #u203574_img {
  981. border-width:0px;
  982. position:absolute;
  983. left:0px;
  984. top:0px;
  985. width:6px;
  986. height:6px;
  987. }
  988. #u203574 {
  989. border-width:0px;
  990. position:absolute;
  991. left:375px;
  992. top:84px;
  993. width:6px;
  994. height:6px;
  995. display:flex;
  996. }
  997. #u203574 .text {
  998. position:absolute;
  999. align-self:center;
  1000. padding:2px 2px 2px 2px;
  1001. box-sizing:border-box;
  1002. width:100%;
  1003. }
  1004. #u203574_text {
  1005. border-width:0px;
  1006. word-wrap:break-word;
  1007. text-transform:none;
  1008. visibility:hidden;
  1009. }
  1010. #u203575 {
  1011. border-width:0px;
  1012. position:absolute;
  1013. left:0px;
  1014. top:0px;
  1015. width:0px;
  1016. height:0px;
  1017. }
  1018. #u203576_img {
  1019. border-width:0px;
  1020. position:absolute;
  1021. left:0px;
  1022. top:0px;
  1023. width:5px;
  1024. height:5px;
  1025. }
  1026. #u203576 {
  1027. border-width:0px;
  1028. position:absolute;
  1029. left:320px;
  1030. top:85px;
  1031. width:5px;
  1032. height:5px;
  1033. display:flex;
  1034. }
  1035. #u203576 .text {
  1036. position:absolute;
  1037. align-self:center;
  1038. padding:2px 2px 2px 2px;
  1039. box-sizing:border-box;
  1040. width:100%;
  1041. }
  1042. #u203576_text {
  1043. border-width:0px;
  1044. word-wrap:break-word;
  1045. text-transform:none;
  1046. visibility:hidden;
  1047. }
  1048. #u203577_img {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:0px;
  1052. top:0px;
  1053. width:5px;
  1054. height:5px;
  1055. }
  1056. #u203577 {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:336px;
  1060. top:85px;
  1061. width:5px;
  1062. height:5px;
  1063. display:flex;
  1064. }
  1065. #u203577 .text {
  1066. position:absolute;
  1067. align-self:center;
  1068. padding:2px 2px 2px 2px;
  1069. box-sizing:border-box;
  1070. width:100%;
  1071. }
  1072. #u203577_text {
  1073. border-width:0px;
  1074. word-wrap:break-word;
  1075. text-transform:none;
  1076. visibility:hidden;
  1077. }
  1078. #u203578_img {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:7px;
  1084. height:7px;
  1085. }
  1086. #u203578 {
  1087. border-width:0px;
  1088. position:absolute;
  1089. left:327px;
  1090. top:84px;
  1091. width:7px;
  1092. height:7px;
  1093. display:flex;
  1094. }
  1095. #u203578 .text {
  1096. position:absolute;
  1097. align-self:center;
  1098. padding:2px 2px 2px 2px;
  1099. box-sizing:border-box;
  1100. width:100%;
  1101. }
  1102. #u203578_text {
  1103. border-width:0px;
  1104. word-wrap:break-word;
  1105. text-transform:none;
  1106. visibility:hidden;
  1107. }
  1108. #u203579_img {
  1109. border-width:0px;
  1110. position:absolute;
  1111. left:0px;
  1112. top:0px;
  1113. width:19px;
  1114. height:2px;
  1115. }
  1116. #u203579 {
  1117. border-width:0px;
  1118. position:absolute;
  1119. left:344px;
  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. #u203579 .text {
  1130. position:absolute;
  1131. align-self:center;
  1132. padding:2px 2px 2px 2px;
  1133. box-sizing:border-box;
  1134. width:100%;
  1135. }
  1136. #u203579_text {
  1137. border-width:0px;
  1138. word-wrap:break-word;
  1139. text-transform:none;
  1140. visibility:hidden;
  1141. }
  1142. #u203580_div {
  1143. border-width:0px;
  1144. position:absolute;
  1145. left:0px;
  1146. top:0px;
  1147. width:73px;
  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. #u203580 {
  1164. border-width:0px;
  1165. position:absolute;
  1166. left:180px;
  1167. top:75px;
  1168. width:73px;
  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. #u203580 .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. #u203580_text {
  1186. border-width:0px;
  1187. white-space:nowrap;
  1188. text-transform:none;
  1189. }
  1190. #u203581_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. #u203581 {
  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. #u203581 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u203581_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u203582 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u203583_img {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:355px;
  1252. height:230px;
  1253. }
  1254. #u203583 {
  1255. border-width:0px;
  1256. position:absolute;
  1257. left:39px;
  1258. top:193px;
  1259. width:355px;
  1260. height:230px;
  1261. display:flex;
  1262. }
  1263. #u203583 .text {
  1264. position:absolute;
  1265. align-self:center;
  1266. padding:2px 2px 2px 2px;
  1267. box-sizing:border-box;
  1268. width:100%;
  1269. }
  1270. #u203583_text {
  1271. border-width:0px;
  1272. word-wrap:break-word;
  1273. text-transform:none;
  1274. visibility:hidden;
  1275. }
  1276. #u203584_div {
  1277. border-width:0px;
  1278. position:absolute;
  1279. left:0px;
  1280. top:0px;
  1281. width:85px;
  1282. height:30px;
  1283. background:inherit;
  1284. background-color:rgba(255, 255, 255, 0);
  1285. border:none;
  1286. border-left:0px;
  1287. border-top:0px;
  1288. border-right:0px;
  1289. border-radius:0px;
  1290. border-bottom-right-radius:0px;
  1291. border-bottom-left-radius:0px;
  1292. -moz-box-shadow:none;
  1293. -webkit-box-shadow:none;
  1294. box-shadow:none;
  1295. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1296. font-weight:500;
  1297. font-style:normal;
  1298. font-size:14px;
  1299. line-height:30px;
  1300. }
  1301. #u203584 {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:95px;
  1305. top:200px;
  1306. width:85px;
  1307. height:30px;
  1308. display:flex;
  1309. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1310. font-weight:500;
  1311. font-style:normal;
  1312. font-size:14px;
  1313. line-height:30px;
  1314. }
  1315. #u203584 .text {
  1316. position:absolute;
  1317. align-self:flex-start;
  1318. padding:0px 0px 0px 0px;
  1319. box-sizing:border-box;
  1320. width:100%;
  1321. }
  1322. #u203584_text {
  1323. border-width:0px;
  1324. white-space:nowrap;
  1325. text-transform:none;
  1326. }
  1327. #u203585_div {
  1328. border-width:0px;
  1329. position:absolute;
  1330. left:0px;
  1331. top:0px;
  1332. width:325px;
  1333. height:75px;
  1334. background:inherit;
  1335. background-color:rgba(255, 255, 255, 0);
  1336. border:none;
  1337. border-left:0px;
  1338. border-top:0px;
  1339. border-right:0px;
  1340. border-radius:0px;
  1341. border-bottom-right-radius:0px;
  1342. border-bottom-left-radius:0px;
  1343. -moz-box-shadow:none;
  1344. -webkit-box-shadow:none;
  1345. box-shadow:none;
  1346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1347. font-weight:400;
  1348. font-style:normal;
  1349. font-size:12px;
  1350. line-height:25px;
  1351. }
  1352. #u203585 {
  1353. border-width:0px;
  1354. position:absolute;
  1355. left:55px;
  1356. top:233px;
  1357. width:325px;
  1358. height:75px;
  1359. display:flex;
  1360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1361. font-weight:400;
  1362. font-style:normal;
  1363. font-size:12px;
  1364. line-height:25px;
  1365. }
  1366. #u203585 .text {
  1367. position:absolute;
  1368. align-self:flex-start;
  1369. padding:0px 0px 0px 0px;
  1370. box-sizing:border-box;
  1371. width:100%;
  1372. }
  1373. #u203585_text {
  1374. border-width:0px;
  1375. word-wrap:break-word;
  1376. text-transform:none;
  1377. }
  1378. #u203586_div {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:30px;
  1384. height:16px;
  1385. background:inherit;
  1386. background-color:rgba(128, 128, 255, 1);
  1387. border:none;
  1388. border-radius:2px;
  1389. -moz-box-shadow:none;
  1390. -webkit-box-shadow:none;
  1391. box-shadow:none;
  1392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1393. font-weight:400;
  1394. font-style:normal;
  1395. font-size:10px;
  1396. color:#FFFFFF;
  1397. text-align:center;
  1398. }
  1399. #u203586 {
  1400. border-width:0px;
  1401. position:absolute;
  1402. left:55px;
  1403. top:207px;
  1404. width:30px;
  1405. height:16px;
  1406. display:flex;
  1407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1408. font-weight:400;
  1409. font-style:normal;
  1410. font-size:10px;
  1411. color:#FFFFFF;
  1412. text-align:center;
  1413. }
  1414. #u203586 .text {
  1415. position:absolute;
  1416. align-self:center;
  1417. padding:0px 0px 0px 0px;
  1418. box-sizing:border-box;
  1419. width:100%;
  1420. }
  1421. #u203586_text {
  1422. border-width:0px;
  1423. word-wrap:break-word;
  1424. text-transform:none;
  1425. }
  1426. #u203587_div {
  1427. border-width:0px;
  1428. position:absolute;
  1429. left:0px;
  1430. top:0px;
  1431. width:60px;
  1432. height:52px;
  1433. background:inherit;
  1434. background-color:rgba(242, 242, 242, 1);
  1435. border:none;
  1436. border-radius:4px;
  1437. -moz-box-shadow:none;
  1438. -webkit-box-shadow:none;
  1439. box-shadow:none;
  1440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1441. font-style:normal;
  1442. text-align:left;
  1443. }
  1444. #u203587 {
  1445. border-width:0px;
  1446. position:absolute;
  1447. left:55px;
  1448. top:313px;
  1449. width:60px;
  1450. height:52px;
  1451. display:flex;
  1452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1453. font-style:normal;
  1454. text-align:left;
  1455. }
  1456. #u203587 .text {
  1457. position:absolute;
  1458. align-self:center;
  1459. padding:5px 10px 5px 10px;
  1460. box-sizing:border-box;
  1461. width:100%;
  1462. }
  1463. #u203587_text {
  1464. border-width:0px;
  1465. word-wrap:break-word;
  1466. text-transform:none;
  1467. }
  1468. #u203588_div {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:60px;
  1474. height:52px;
  1475. background:inherit;
  1476. background-color:rgba(242, 242, 242, 1);
  1477. border:none;
  1478. border-radius:4px;
  1479. -moz-box-shadow:none;
  1480. -webkit-box-shadow:none;
  1481. box-shadow:none;
  1482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1483. font-style:normal;
  1484. text-align:left;
  1485. }
  1486. #u203588 {
  1487. border-width:0px;
  1488. position:absolute;
  1489. left:121px;
  1490. top:313px;
  1491. width:60px;
  1492. height:52px;
  1493. display:flex;
  1494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1495. font-style:normal;
  1496. text-align:left;
  1497. }
  1498. #u203588 .text {
  1499. position:absolute;
  1500. align-self:center;
  1501. padding:5px 10px 5px 10px;
  1502. box-sizing:border-box;
  1503. width:100%;
  1504. }
  1505. #u203588_text {
  1506. border-width:0px;
  1507. word-wrap:break-word;
  1508. text-transform:none;
  1509. }
  1510. #u203589_div {
  1511. border-width:0px;
  1512. position:absolute;
  1513. left:0px;
  1514. top:0px;
  1515. width:60px;
  1516. height:52px;
  1517. background:inherit;
  1518. background-color:rgba(242, 242, 242, 1);
  1519. border:none;
  1520. border-radius:4px;
  1521. -moz-box-shadow:none;
  1522. -webkit-box-shadow:none;
  1523. box-shadow:none;
  1524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1525. font-style:normal;
  1526. text-align:left;
  1527. }
  1528. #u203589 {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:187px;
  1532. top:313px;
  1533. width:60px;
  1534. height:52px;
  1535. display:flex;
  1536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1537. font-style:normal;
  1538. text-align:left;
  1539. }
  1540. #u203589 .text {
  1541. position:absolute;
  1542. align-self:center;
  1543. padding:5px 10px 5px 10px;
  1544. box-sizing:border-box;
  1545. width:100%;
  1546. }
  1547. #u203589_text {
  1548. border-width:0px;
  1549. word-wrap:break-word;
  1550. text-transform:none;
  1551. }
  1552. #u203590_div {
  1553. border-width:0px;
  1554. position:absolute;
  1555. left:0px;
  1556. top:0px;
  1557. width:60px;
  1558. height:52px;
  1559. background:inherit;
  1560. background-color:rgba(242, 242, 242, 1);
  1561. border:none;
  1562. border-radius:4px;
  1563. -moz-box-shadow:none;
  1564. -webkit-box-shadow:none;
  1565. box-shadow:none;
  1566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1567. font-style:normal;
  1568. text-align:left;
  1569. }
  1570. #u203590 {
  1571. border-width:0px;
  1572. position:absolute;
  1573. left:253px;
  1574. top:313px;
  1575. width:60px;
  1576. height:52px;
  1577. display:flex;
  1578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1579. font-style:normal;
  1580. text-align:left;
  1581. }
  1582. #u203590 .text {
  1583. position:absolute;
  1584. align-self:center;
  1585. padding:5px 10px 5px 10px;
  1586. box-sizing:border-box;
  1587. width:100%;
  1588. }
  1589. #u203590_text {
  1590. border-width:0px;
  1591. word-wrap:break-word;
  1592. text-transform:none;
  1593. }
  1594. #u203591_div {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:0px;
  1598. top:0px;
  1599. width:60px;
  1600. height:52px;
  1601. background:inherit;
  1602. background-color:rgba(242, 242, 242, 1);
  1603. border:none;
  1604. border-radius:4px;
  1605. -moz-box-shadow:none;
  1606. -webkit-box-shadow:none;
  1607. box-shadow:none;
  1608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1609. font-style:normal;
  1610. text-align:left;
  1611. }
  1612. #u203591 {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:319px;
  1616. top:313px;
  1617. width:60px;
  1618. height:52px;
  1619. display:flex;
  1620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1621. font-style:normal;
  1622. text-align:left;
  1623. }
  1624. #u203591 .text {
  1625. position:absolute;
  1626. align-self:center;
  1627. padding:5px 10px 5px 10px;
  1628. box-sizing:border-box;
  1629. width:100%;
  1630. }
  1631. #u203591_text {
  1632. border-width:0px;
  1633. word-wrap:break-word;
  1634. text-transform:none;
  1635. }
  1636. #u203592_div {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:0px;
  1640. top:0px;
  1641. width:324px;
  1642. height:30px;
  1643. background:inherit;
  1644. background-color:rgba(0, 137, 254, 1);
  1645. border:none;
  1646. border-radius:36px;
  1647. -moz-box-shadow:none;
  1648. -webkit-box-shadow:none;
  1649. box-shadow:none;
  1650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1651. font-weight:400;
  1652. font-style:normal;
  1653. font-size:14px;
  1654. color:#FFFFFF;
  1655. }
  1656. #u203592 {
  1657. border-width:0px;
  1658. position:absolute;
  1659. left:55px;
  1660. top:380px;
  1661. width:324px;
  1662. height:30px;
  1663. display:flex;
  1664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1665. font-weight:400;
  1666. font-style:normal;
  1667. font-size:14px;
  1668. color:#FFFFFF;
  1669. }
  1670. #u203592 .text {
  1671. position:absolute;
  1672. align-self:center;
  1673. padding:2px 2px 2px 2px;
  1674. box-sizing:border-box;
  1675. width:100%;
  1676. }
  1677. #u203592_text {
  1678. border-width:0px;
  1679. word-wrap:break-word;
  1680. text-transform:none;
  1681. }
  1682. #u203593_div {
  1683. border-width:0px;
  1684. position:absolute;
  1685. left:0px;
  1686. top:0px;
  1687. width:375px;
  1688. height:40px;
  1689. background:inherit;
  1690. background-color:rgba(255, 255, 255, 1);
  1691. border:none;
  1692. border-left:0px;
  1693. border-top:0px;
  1694. border-right:0px;
  1695. border-radius:0px;
  1696. border-bottom-right-radius:0px;
  1697. border-bottom-left-radius:0px;
  1698. -moz-box-shadow:none;
  1699. -webkit-box-shadow:none;
  1700. box-shadow:none;
  1701. }
  1702. #u203593 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:29px;
  1706. top:107px;
  1707. width:375px;
  1708. height:40px;
  1709. display:flex;
  1710. }
  1711. #u203593 .text {
  1712. position:absolute;
  1713. align-self:center;
  1714. padding:2px 2px 2px 2px;
  1715. box-sizing:border-box;
  1716. width:100%;
  1717. }
  1718. #u203593_text {
  1719. border-width:0px;
  1720. word-wrap:break-word;
  1721. text-transform:none;
  1722. visibility:hidden;
  1723. }
  1724. #u203594_div {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:0px;
  1728. top:0px;
  1729. width:47px;
  1730. height:40px;
  1731. background:inherit;
  1732. background-color:rgba(255, 255, 255, 0);
  1733. box-sizing:border-box;
  1734. border-width:2px;
  1735. border-style:solid;
  1736. border-color:rgba(0, 137, 254, 1);
  1737. border-left:0px;
  1738. border-top:0px;
  1739. border-right:0px;
  1740. border-radius:0px;
  1741. border-bottom-right-radius:0px;
  1742. border-bottom-left-radius:0px;
  1743. -moz-box-shadow:none;
  1744. -webkit-box-shadow:none;
  1745. box-shadow:none;
  1746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1747. font-weight:400;
  1748. font-style:normal;
  1749. color:#0089FE;
  1750. text-align:center;
  1751. }
  1752. #u203594 {
  1753. border-width:0px;
  1754. position:absolute;
  1755. left:69px;
  1756. top:107px;
  1757. width:47px;
  1758. height:40px;
  1759. display:flex;
  1760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1761. font-weight:400;
  1762. font-style:normal;
  1763. color:#0089FE;
  1764. text-align:center;
  1765. }
  1766. #u203594 .text {
  1767. position:absolute;
  1768. align-self:center;
  1769. padding:0px 0px 0px 0px;
  1770. box-sizing:border-box;
  1771. width:100%;
  1772. }
  1773. #u203594_text {
  1774. border-width:0px;
  1775. white-space:nowrap;
  1776. text-transform:none;
  1777. }
  1778. #u203595_div {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:0px;
  1782. top:0px;
  1783. width:61px;
  1784. height:40px;
  1785. background:inherit;
  1786. background-color:rgba(255, 255, 255, 0);
  1787. border:none;
  1788. border-left:0px;
  1789. border-top:0px;
  1790. border-right:0px;
  1791. border-radius:0px;
  1792. border-bottom-right-radius:0px;
  1793. border-bottom-left-radius:0px;
  1794. -moz-box-shadow:none;
  1795. -webkit-box-shadow:none;
  1796. box-shadow:none;
  1797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1798. font-weight:400;
  1799. font-style:normal;
  1800. color:#000000;
  1801. text-align:center;
  1802. }
  1803. #u203595 {
  1804. border-width:0px;
  1805. position:absolute;
  1806. left:303px;
  1807. top:107px;
  1808. width:61px;
  1809. height:40px;
  1810. display:flex;
  1811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1812. font-weight:400;
  1813. font-style:normal;
  1814. color:#000000;
  1815. text-align:center;
  1816. }
  1817. #u203595 .text {
  1818. position:absolute;
  1819. align-self:center;
  1820. padding:0px 0px 0px 0px;
  1821. box-sizing:border-box;
  1822. width:100%;
  1823. }
  1824. #u203595_text {
  1825. border-width:0px;
  1826. white-space:nowrap;
  1827. text-transform:none;
  1828. }
  1829. #u203596_div {
  1830. border-width:0px;
  1831. position:absolute;
  1832. left:0px;
  1833. top:0px;
  1834. width:61px;
  1835. height:40px;
  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. color:#000000;
  1852. text-align:center;
  1853. }
  1854. #u203596 {
  1855. border-width:0px;
  1856. position:absolute;
  1857. left:179px;
  1858. top:107px;
  1859. width:61px;
  1860. height:40px;
  1861. display:flex;
  1862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1863. font-weight:400;
  1864. font-style:normal;
  1865. color:#000000;
  1866. text-align:center;
  1867. }
  1868. #u203596 .text {
  1869. position:absolute;
  1870. align-self:center;
  1871. padding:0px 0px 0px 0px;
  1872. box-sizing:border-box;
  1873. width:100%;
  1874. }
  1875. #u203596_text {
  1876. border-width:0px;
  1877. white-space:nowrap;
  1878. text-transform:none;
  1879. }
  1880. #u203597_input {
  1881. position:absolute;
  1882. left:0px;
  1883. top:0px;
  1884. width:91px;
  1885. height:22px;
  1886. padding:2px 2px 2px 2px;
  1887. font-family:'ArialMT', 'Arial', sans-serif;
  1888. font-weight:400;
  1889. font-style:normal;
  1890. font-size:12px;
  1891. letter-spacing:normal;
  1892. color:#000000;
  1893. vertical-align:none;
  1894. text-align:left;
  1895. text-transform:none;
  1896. background-color:transparent;
  1897. border-color:transparent;
  1898. }
  1899. #u203597_input.disabled {
  1900. position:absolute;
  1901. left:0px;
  1902. top:0px;
  1903. width:91px;
  1904. height:22px;
  1905. padding:2px 2px 2px 2px;
  1906. font-family:'ArialMT', 'Arial', sans-serif;
  1907. font-weight:400;
  1908. font-style:normal;
  1909. font-size:12px;
  1910. letter-spacing:normal;
  1911. color:#000000;
  1912. vertical-align:none;
  1913. text-align:left;
  1914. text-transform:none;
  1915. background-color:transparent;
  1916. border-color:transparent;
  1917. }
  1918. #u203597_div {
  1919. border-width:0px;
  1920. position:absolute;
  1921. left:0px;
  1922. top:0px;
  1923. width:91px;
  1924. height:22px;
  1925. background:inherit;
  1926. background-color:rgba(255, 255, 255, 0);
  1927. border:none;
  1928. border-radius:0px;
  1929. -moz-box-shadow:none;
  1930. -webkit-box-shadow:none;
  1931. box-shadow:none;
  1932. font-size:12px;
  1933. }
  1934. #u203597 {
  1935. border-width:0px;
  1936. position:absolute;
  1937. left:42px;
  1938. top:157px;
  1939. width:91px;
  1940. height:22px;
  1941. display:flex;
  1942. font-size:12px;
  1943. }
  1944. #u203597 .text {
  1945. position:absolute;
  1946. align-self:flex-start;
  1947. padding:2px 2px 2px 2px;
  1948. box-sizing:border-box;
  1949. width:100%;
  1950. }
  1951. #u203597_div.disabled {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:0px;
  1955. top:0px;
  1956. width:91px;
  1957. height:22px;
  1958. background:inherit;
  1959. background-color:rgba(240, 240, 240, 1);
  1960. border:none;
  1961. border-radius:0px;
  1962. -moz-box-shadow:none;
  1963. -webkit-box-shadow:none;
  1964. box-shadow:none;
  1965. font-size:12px;
  1966. }
  1967. #u203597.disabled {
  1968. }
  1969. .u203597_input_option {
  1970. font-size:12px;
  1971. }
  1972. #u203598 {
  1973. border-width:0px;
  1974. position:absolute;
  1975. left:0px;
  1976. top:0px;
  1977. width:0px;
  1978. height:0px;
  1979. }
  1980. #u203599_img {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:0px;
  1984. top:0px;
  1985. width:14px;
  1986. height:14px;
  1987. }
  1988. #u203599 {
  1989. border-width:0px;
  1990. position:absolute;
  1991. left:380px;
  1992. top:161px;
  1993. width:14px;
  1994. height:14px;
  1995. display:flex;
  1996. }
  1997. #u203599 .text {
  1998. position:absolute;
  1999. align-self:center;
  2000. padding:2px 2px 2px 2px;
  2001. box-sizing:border-box;
  2002. width:100%;
  2003. }
  2004. #u203599_text {
  2005. border-width:0px;
  2006. word-wrap:break-word;
  2007. text-transform:none;
  2008. visibility:hidden;
  2009. }
  2010. #u203600_div {
  2011. border-width:0px;
  2012. position:absolute;
  2013. left:0px;
  2014. top:0px;
  2015. width:25px;
  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:12px;
  2033. line-height:30px;
  2034. }
  2035. #u203600 {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:350px;
  2039. top:153px;
  2040. width:25px;
  2041. height:30px;
  2042. display:flex;
  2043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2044. font-weight:400;
  2045. font-style:normal;
  2046. font-size:12px;
  2047. line-height:30px;
  2048. }
  2049. #u203600 .text {
  2050. position:absolute;
  2051. align-self:flex-start;
  2052. padding:0px 0px 0px 0px;
  2053. box-sizing:border-box;
  2054. width:100%;
  2055. }
  2056. #u203600_text {
  2057. border-width:0px;
  2058. white-space:nowrap;
  2059. text-transform:none;
  2060. }
  2061. #u203601 {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:0px;
  2065. top:0px;
  2066. width:0px;
  2067. height:0px;
  2068. }
  2069. #u203602_img {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:0px;
  2073. top:0px;
  2074. width:355px;
  2075. height:190px;
  2076. }
  2077. #u203602 {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:39px;
  2081. top:433px;
  2082. width:355px;
  2083. height:190px;
  2084. display:flex;
  2085. }
  2086. #u203602 .text {
  2087. position:absolute;
  2088. align-self:center;
  2089. padding:2px 2px 2px 2px;
  2090. box-sizing:border-box;
  2091. width:100%;
  2092. }
  2093. #u203602_text {
  2094. border-width:0px;
  2095. word-wrap:break-word;
  2096. text-transform:none;
  2097. visibility:hidden;
  2098. }
  2099. #u203603_div {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:0px;
  2103. top:0px;
  2104. width:113px;
  2105. height:30px;
  2106. background:inherit;
  2107. background-color:rgba(255, 255, 255, 0);
  2108. border:none;
  2109. border-left:0px;
  2110. border-top:0px;
  2111. border-right:0px;
  2112. border-radius:0px;
  2113. border-bottom-right-radius:0px;
  2114. border-bottom-left-radius:0px;
  2115. -moz-box-shadow:none;
  2116. -webkit-box-shadow:none;
  2117. box-shadow:none;
  2118. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2119. font-weight:500;
  2120. font-style:normal;
  2121. font-size:14px;
  2122. line-height:30px;
  2123. }
  2124. #u203603 {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:95px;
  2128. top:440px;
  2129. width:113px;
  2130. height:30px;
  2131. display:flex;
  2132. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2133. font-weight:500;
  2134. font-style:normal;
  2135. font-size:14px;
  2136. line-height:30px;
  2137. }
  2138. #u203603 .text {
  2139. position:absolute;
  2140. align-self:flex-start;
  2141. padding:0px 0px 0px 0px;
  2142. box-sizing:border-box;
  2143. width:100%;
  2144. }
  2145. #u203603_text {
  2146. border-width:0px;
  2147. white-space:nowrap;
  2148. text-transform:none;
  2149. }
  2150. #u203604_div {
  2151. border-width:0px;
  2152. position:absolute;
  2153. left:0px;
  2154. top:0px;
  2155. width:325px;
  2156. height:75px;
  2157. background:inherit;
  2158. background-color:rgba(255, 255, 255, 0);
  2159. border:none;
  2160. border-left:0px;
  2161. border-top:0px;
  2162. border-right:0px;
  2163. border-radius:0px;
  2164. border-bottom-right-radius:0px;
  2165. border-bottom-left-radius:0px;
  2166. -moz-box-shadow:none;
  2167. -webkit-box-shadow:none;
  2168. box-shadow:none;
  2169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2170. font-weight:400;
  2171. font-style:normal;
  2172. font-size:12px;
  2173. line-height:25px;
  2174. }
  2175. #u203604 {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:55px;
  2179. top:473px;
  2180. width:325px;
  2181. height:75px;
  2182. display:flex;
  2183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2184. font-weight:400;
  2185. font-style:normal;
  2186. font-size:12px;
  2187. line-height:25px;
  2188. }
  2189. #u203604 .text {
  2190. position:absolute;
  2191. align-self:flex-start;
  2192. padding:0px 0px 0px 0px;
  2193. box-sizing:border-box;
  2194. width:100%;
  2195. }
  2196. #u203604_text {
  2197. border-width:0px;
  2198. word-wrap:break-word;
  2199. text-transform:none;
  2200. }
  2201. #u203605_div {
  2202. border-width:0px;
  2203. position:absolute;
  2204. left:0px;
  2205. top:0px;
  2206. width:30px;
  2207. height:16px;
  2208. background:inherit;
  2209. background-color:rgba(245, 154, 35, 1);
  2210. border:none;
  2211. border-radius:2px;
  2212. -moz-box-shadow:none;
  2213. -webkit-box-shadow:none;
  2214. box-shadow:none;
  2215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2216. font-weight:400;
  2217. font-style:normal;
  2218. font-size:10px;
  2219. color:#FFFFFF;
  2220. text-align:center;
  2221. }
  2222. #u203605 {
  2223. border-width:0px;
  2224. position:absolute;
  2225. left:55px;
  2226. top:447px;
  2227. width:30px;
  2228. height:16px;
  2229. display:flex;
  2230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2231. font-weight:400;
  2232. font-style:normal;
  2233. font-size:10px;
  2234. color:#FFFFFF;
  2235. text-align:center;
  2236. }
  2237. #u203605 .text {
  2238. position:absolute;
  2239. align-self:center;
  2240. padding:0px 0px 0px 0px;
  2241. box-sizing:border-box;
  2242. width:100%;
  2243. }
  2244. #u203605_text {
  2245. border-width:0px;
  2246. word-wrap:break-word;
  2247. text-transform:none;
  2248. }
  2249. #u203606_div {
  2250. border-width:0px;
  2251. position:absolute;
  2252. left:0px;
  2253. top:0px;
  2254. width:60px;
  2255. height:52px;
  2256. background:inherit;
  2257. background-color:rgba(242, 242, 242, 1);
  2258. border:none;
  2259. border-radius:4px;
  2260. -moz-box-shadow:none;
  2261. -webkit-box-shadow:none;
  2262. box-shadow:none;
  2263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2264. font-style:normal;
  2265. text-align:left;
  2266. }
  2267. #u203606 {
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:55px;
  2271. top:553px;
  2272. width:60px;
  2273. height:52px;
  2274. display:flex;
  2275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2276. font-style:normal;
  2277. text-align:left;
  2278. }
  2279. #u203606 .text {
  2280. position:absolute;
  2281. align-self:center;
  2282. padding:5px 10px 5px 10px;
  2283. box-sizing:border-box;
  2284. width:100%;
  2285. }
  2286. #u203606_text {
  2287. border-width:0px;
  2288. word-wrap:break-word;
  2289. text-transform:none;
  2290. }
  2291. #u203607_div {
  2292. border-width:0px;
  2293. position:absolute;
  2294. left:0px;
  2295. top:0px;
  2296. width:60px;
  2297. height:52px;
  2298. background:inherit;
  2299. background-color:rgba(242, 242, 242, 1);
  2300. border:none;
  2301. border-radius:4px;
  2302. -moz-box-shadow:none;
  2303. -webkit-box-shadow:none;
  2304. box-shadow:none;
  2305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2306. font-style:normal;
  2307. text-align:left;
  2308. }
  2309. #u203607 {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:121px;
  2313. top:553px;
  2314. width:60px;
  2315. height:52px;
  2316. display:flex;
  2317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2318. font-style:normal;
  2319. text-align:left;
  2320. }
  2321. #u203607 .text {
  2322. position:absolute;
  2323. align-self:center;
  2324. padding:5px 10px 5px 10px;
  2325. box-sizing:border-box;
  2326. width:100%;
  2327. }
  2328. #u203607_text {
  2329. border-width:0px;
  2330. word-wrap:break-word;
  2331. text-transform:none;
  2332. }
  2333. #u203608_div {
  2334. border-width:0px;
  2335. position:absolute;
  2336. left:0px;
  2337. top:0px;
  2338. width:60px;
  2339. height:52px;
  2340. background:inherit;
  2341. background-color:rgba(242, 242, 242, 1);
  2342. border:none;
  2343. border-radius:4px;
  2344. -moz-box-shadow:none;
  2345. -webkit-box-shadow:none;
  2346. box-shadow:none;
  2347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2348. font-style:normal;
  2349. text-align:left;
  2350. }
  2351. #u203608 {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:187px;
  2355. top:553px;
  2356. width:60px;
  2357. height:52px;
  2358. display:flex;
  2359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2360. font-style:normal;
  2361. text-align:left;
  2362. }
  2363. #u203608 .text {
  2364. position:absolute;
  2365. align-self:center;
  2366. padding:5px 10px 5px 10px;
  2367. box-sizing:border-box;
  2368. width:100%;
  2369. }
  2370. #u203608_text {
  2371. border-width:0px;
  2372. word-wrap:break-word;
  2373. text-transform:none;
  2374. }
  2375. #u203609_div {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:0px;
  2379. top:0px;
  2380. width:60px;
  2381. height:52px;
  2382. background:inherit;
  2383. background-color:rgba(242, 242, 242, 1);
  2384. border:none;
  2385. border-radius:4px;
  2386. -moz-box-shadow:none;
  2387. -webkit-box-shadow:none;
  2388. box-shadow:none;
  2389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2390. font-style:normal;
  2391. text-align:left;
  2392. }
  2393. #u203609 {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:253px;
  2397. top:553px;
  2398. width:60px;
  2399. height:52px;
  2400. display:flex;
  2401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2402. font-style:normal;
  2403. text-align:left;
  2404. }
  2405. #u203609 .text {
  2406. position:absolute;
  2407. align-self:center;
  2408. padding:5px 10px 5px 10px;
  2409. box-sizing:border-box;
  2410. width:100%;
  2411. }
  2412. #u203609_text {
  2413. border-width:0px;
  2414. word-wrap:break-word;
  2415. text-transform:none;
  2416. }
  2417. #u203610_div {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:0px;
  2421. top:0px;
  2422. width:60px;
  2423. height:52px;
  2424. background:inherit;
  2425. background-color:rgba(242, 242, 242, 1);
  2426. border:none;
  2427. border-radius:4px;
  2428. -moz-box-shadow:none;
  2429. -webkit-box-shadow:none;
  2430. box-shadow:none;
  2431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2432. font-style:normal;
  2433. text-align:left;
  2434. }
  2435. #u203610 {
  2436. border-width:0px;
  2437. position:absolute;
  2438. left:319px;
  2439. top:553px;
  2440. width:60px;
  2441. height:52px;
  2442. display:flex;
  2443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2444. font-style:normal;
  2445. text-align:left;
  2446. }
  2447. #u203610 .text {
  2448. position:absolute;
  2449. align-self:center;
  2450. padding:5px 10px 5px 10px;
  2451. box-sizing:border-box;
  2452. width:100%;
  2453. }
  2454. #u203610_text {
  2455. border-width:0px;
  2456. word-wrap:break-word;
  2457. text-transform:none;
  2458. }
  2459. #u203611 {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:0px;
  2463. top:0px;
  2464. width:0px;
  2465. height:0px;
  2466. }
  2467. #u203612_div {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:0px;
  2471. top:0px;
  2472. width:375px;
  2473. height:60px;
  2474. background:inherit;
  2475. background-color:rgba(255, 255, 255, 1);
  2476. border:none;
  2477. border-top:0px;
  2478. border-radius:28px;
  2479. border-top-left-radius:0px;
  2480. border-top-right-radius:0px;
  2481. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2482. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2483. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2485. font-weight:400;
  2486. font-style:normal;
  2487. font-size:14px;
  2488. color:#FFFFFF;
  2489. }
  2490. #u203612 {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:29px;
  2494. top:779px;
  2495. width:375px;
  2496. height:60px;
  2497. display:flex;
  2498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2499. font-weight:400;
  2500. font-style:normal;
  2501. font-size:14px;
  2502. color:#FFFFFF;
  2503. }
  2504. #u203612 .text {
  2505. position:absolute;
  2506. align-self:center;
  2507. padding:2px 2px 2px 2px;
  2508. box-sizing:border-box;
  2509. width:100%;
  2510. }
  2511. #u203612_text {
  2512. border-width:0px;
  2513. word-wrap:break-word;
  2514. text-transform:none;
  2515. visibility:hidden;
  2516. }
  2517. #u203613_div {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:0px;
  2521. top:0px;
  2522. width:330px;
  2523. height:40px;
  2524. background:inherit;
  2525. background-color:rgba(24, 144, 255, 0);
  2526. box-sizing:border-box;
  2527. border-width:1px;
  2528. border-style:solid;
  2529. border-color:rgba(24, 144, 255, 1);
  2530. border-radius:81px;
  2531. -moz-box-shadow:none;
  2532. -webkit-box-shadow:none;
  2533. box-shadow:none;
  2534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2535. font-weight:400;
  2536. font-style:normal;
  2537. font-size:14px;
  2538. color:#1890FF;
  2539. }
  2540. #u203613 {
  2541. border-width:0px;
  2542. position:absolute;
  2543. left:49px;
  2544. top:788px;
  2545. width:330px;
  2546. height:40px;
  2547. display:flex;
  2548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2549. font-weight:400;
  2550. font-style:normal;
  2551. font-size:14px;
  2552. color:#1890FF;
  2553. }
  2554. #u203613 .text {
  2555. position:absolute;
  2556. align-self:center;
  2557. padding:2px 2px 2px 2px;
  2558. box-sizing:border-box;
  2559. width:100%;
  2560. }
  2561. #u203613_text {
  2562. border-width:0px;
  2563. word-wrap:break-word;
  2564. text-transform:none;
  2565. }