styles.css 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:886px;
  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. #u128409_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u128409 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u128409 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u128409_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u128410_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. #u128410 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u128410 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u128410_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u128411 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u128412_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. #u128412 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u128412 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u128412_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u128413 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u128414_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u128414 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u128414 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u128414_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u128415_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u128415 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u128415 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u128415_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u128416 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u128417_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u128417 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u128417 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u128417_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u128418_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u128418 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u128418 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u128418_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u128419_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u128419 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u128419 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u128419_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u128420_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u128420 {
  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. #u128420 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u128420_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u128421_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u128421 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u128421 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u128421_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u128422_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. #u128422 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u128422 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u128422_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u128423 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u128424_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u128424 {
  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. #u128424 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u128424_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u128425_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. #u128425 {
  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. #u128425 .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. #u128425_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u128426 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u128427_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u128427 {
  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. #u128427 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u128427_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u128428_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. #u128428 {
  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. #u128428 .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. #u128428_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u128429_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. #u128429 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u128429 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u128429_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u128430 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u128431_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u128431 {
  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. #u128431 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u128431_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u128432_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. #u128432 {
  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. #u128432 .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. #u128432_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u128433 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u128434_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u128434 {
  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. #u128434 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u128434_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u128435_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. #u128435 {
  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. #u128435 .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. #u128435_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u128436_img {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:732px;
  786. }
  787. #u128436 {
  788. border-width:0px;
  789. position:absolute;
  790. left:30px;
  791. top:106px;
  792. width:375px;
  793. height:732px;
  794. display:flex;
  795. }
  796. #u128436 .text {
  797. position:absolute;
  798. align-self:center;
  799. padding:2px 2px 2px 2px;
  800. box-sizing:border-box;
  801. width:100%;
  802. }
  803. #u128436_text {
  804. border-width:0px;
  805. word-wrap:break-word;
  806. text-transform:none;
  807. visibility:hidden;
  808. }
  809. #u128437 {
  810. border-width:0px;
  811. position:absolute;
  812. left:0px;
  813. top:0px;
  814. width:0px;
  815. height:0px;
  816. }
  817. #u128438_div {
  818. border-width:0px;
  819. position:absolute;
  820. left:0px;
  821. top:0px;
  822. width:211px;
  823. height:35px;
  824. background:inherit;
  825. background-color:rgba(255, 255, 255, 1);
  826. border:none;
  827. border-radius:0px;
  828. -moz-box-shadow:none;
  829. -webkit-box-shadow:none;
  830. box-shadow:none;
  831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  832. font-weight:400;
  833. font-style:normal;
  834. font-size:14px;
  835. text-align:left;
  836. }
  837. #u128438 {
  838. border-width:0px;
  839. position:absolute;
  840. left:29px;
  841. top:70px;
  842. width:211px;
  843. height:35px;
  844. display:flex;
  845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  846. font-weight:400;
  847. font-style:normal;
  848. font-size:14px;
  849. text-align:left;
  850. }
  851. #u128438 .text {
  852. position:absolute;
  853. align-self:center;
  854. padding:2px 2px 2px 40px;
  855. box-sizing:border-box;
  856. width:100%;
  857. }
  858. #u128438_text {
  859. border-width:0px;
  860. word-wrap:break-word;
  861. text-transform:none;
  862. }
  863. #u128439_img {
  864. border-width:0px;
  865. position:absolute;
  866. left:0px;
  867. top:0px;
  868. width:11px;
  869. height:18px;
  870. }
  871. #u128439 {
  872. border-width:0px;
  873. position:absolute;
  874. left:40px;
  875. top:79px;
  876. width:11px;
  877. height:18px;
  878. display:flex;
  879. }
  880. #u128439 .text {
  881. position:absolute;
  882. align-self:center;
  883. padding:2px 2px 2px 2px;
  884. box-sizing:border-box;
  885. width:100%;
  886. }
  887. #u128439_text {
  888. border-width:0px;
  889. word-wrap:break-word;
  890. text-transform:none;
  891. visibility:hidden;
  892. }
  893. #u128440_div {
  894. border-width:0px;
  895. position:absolute;
  896. left:0px;
  897. top:0px;
  898. width:350px;
  899. height:340px;
  900. background:inherit;
  901. background-color:rgba(255, 255, 255, 1);
  902. border:none;
  903. border-radius:6px;
  904. -moz-box-shadow:none;
  905. -webkit-box-shadow:none;
  906. box-shadow:none;
  907. }
  908. #u128440 {
  909. border-width:0px;
  910. position:absolute;
  911. left:42px;
  912. top:116px;
  913. width:350px;
  914. height:340px;
  915. display:flex;
  916. }
  917. #u128440 .text {
  918. position:absolute;
  919. align-self:center;
  920. padding:2px 2px 2px 2px;
  921. box-sizing:border-box;
  922. width:100%;
  923. }
  924. #u128440_text {
  925. border-width:0px;
  926. word-wrap:break-word;
  927. text-transform:none;
  928. visibility:hidden;
  929. }
  930. #u128441 {
  931. border-width:0px;
  932. position:absolute;
  933. left:0px;
  934. top:0px;
  935. width:0px;
  936. height:0px;
  937. }
  938. #u128442_div {
  939. border-width:0px;
  940. position:absolute;
  941. left:0px;
  942. top:0px;
  943. width:311px;
  944. height:90px;
  945. background:inherit;
  946. background-color:rgba(255, 255, 255, 1);
  947. box-sizing:border-box;
  948. border-width:1px;
  949. border-style:solid;
  950. border-color:rgba(215, 215, 215, 1);
  951. border-left:0px;
  952. border-top:0px;
  953. border-right:0px;
  954. border-radius:0px;
  955. border-bottom-right-radius:0px;
  956. border-bottom-left-radius:0px;
  957. -moz-box-shadow:none;
  958. -webkit-box-shadow:none;
  959. box-shadow:none;
  960. }
  961. #u128442 {
  962. border-width:0px;
  963. position:absolute;
  964. left:62px;
  965. top:196px;
  966. width:311px;
  967. height:90px;
  968. display:flex;
  969. }
  970. #u128442 .text {
  971. position:absolute;
  972. align-self:center;
  973. padding:2px 2px 2px 2px;
  974. box-sizing:border-box;
  975. width:100%;
  976. }
  977. #u128442_text {
  978. border-width:0px;
  979. word-wrap:break-word;
  980. text-transform:none;
  981. visibility:hidden;
  982. }
  983. #u128443_div {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:64px;
  989. height:30px;
  990. background:inherit;
  991. background-color:rgba(255, 255, 255, 0);
  992. border:none;
  993. border-left:0px;
  994. border-top:0px;
  995. border-right:0px;
  996. border-radius:0px;
  997. border-bottom-right-radius:0px;
  998. border-bottom-left-radius:0px;
  999. -moz-box-shadow:none;
  1000. -webkit-box-shadow:none;
  1001. box-shadow:none;
  1002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1003. font-weight:400;
  1004. font-style:normal;
  1005. font-size:14px;
  1006. color:#AAAAAA;
  1007. line-height:30px;
  1008. }
  1009. #u128443 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:62px;
  1013. top:206px;
  1014. width:64px;
  1015. height:30px;
  1016. display:flex;
  1017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1018. font-weight:400;
  1019. font-style:normal;
  1020. font-size:14px;
  1021. color:#AAAAAA;
  1022. line-height:30px;
  1023. }
  1024. #u128443 .text {
  1025. position:absolute;
  1026. align-self:flex-start;
  1027. padding:0px 0px 0px 0px;
  1028. box-sizing:border-box;
  1029. width:100%;
  1030. }
  1031. #u128443_text {
  1032. border-width:0px;
  1033. white-space:nowrap;
  1034. text-transform:none;
  1035. }
  1036. #u128444_input {
  1037. position:absolute;
  1038. left:0px;
  1039. top:0px;
  1040. width:185px;
  1041. height:25px;
  1042. padding:2px 2px 2px 0px;
  1043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1044. font-weight:400;
  1045. font-style:normal;
  1046. font-size:18px;
  1047. letter-spacing:normal;
  1048. color:#555555;
  1049. vertical-align:none;
  1050. text-align:left;
  1051. text-transform:none;
  1052. background-color:transparent;
  1053. border-color:transparent;
  1054. }
  1055. #u128444_input.disabled {
  1056. position:absolute;
  1057. left:0px;
  1058. top:0px;
  1059. width:185px;
  1060. height:25px;
  1061. padding:2px 2px 2px 0px;
  1062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1063. font-weight:400;
  1064. font-style:normal;
  1065. font-size:18px;
  1066. letter-spacing:normal;
  1067. color:#555555;
  1068. vertical-align:none;
  1069. text-align:left;
  1070. text-transform:none;
  1071. background-color:transparent;
  1072. border-color:transparent;
  1073. }
  1074. #u128444_div {
  1075. border-width:0px;
  1076. position:absolute;
  1077. left:0px;
  1078. top:0px;
  1079. width:185px;
  1080. height:25px;
  1081. background:inherit;
  1082. background-color:rgba(255, 255, 255, 1);
  1083. border:none;
  1084. border-radius:0px;
  1085. -moz-box-shadow:none;
  1086. -webkit-box-shadow:none;
  1087. box-shadow:none;
  1088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1089. font-weight:400;
  1090. font-style:normal;
  1091. font-size:18px;
  1092. color:#555555;
  1093. }
  1094. #u128444 {
  1095. border-width:0px;
  1096. position:absolute;
  1097. left:62px;
  1098. top:246px;
  1099. width:185px;
  1100. height:25px;
  1101. display:flex;
  1102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1103. font-weight:400;
  1104. font-style:normal;
  1105. font-size:18px;
  1106. color:#555555;
  1107. }
  1108. #u128444 .text {
  1109. position:absolute;
  1110. align-self:center;
  1111. padding:2px 2px 2px 0px;
  1112. box-sizing:border-box;
  1113. width:100%;
  1114. }
  1115. #u128444_div.disabled {
  1116. border-width:0px;
  1117. position:absolute;
  1118. left:0px;
  1119. top:0px;
  1120. width:185px;
  1121. height:25px;
  1122. background:inherit;
  1123. background-color:rgba(240, 240, 240, 1);
  1124. border:none;
  1125. border-radius:0px;
  1126. -moz-box-shadow:none;
  1127. -webkit-box-shadow:none;
  1128. box-shadow:none;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:18px;
  1133. color:#555555;
  1134. }
  1135. #u128444.disabled {
  1136. }
  1137. #u128445_div {
  1138. border-width:0px;
  1139. position:absolute;
  1140. left:0px;
  1141. top:0px;
  1142. width:235px;
  1143. height:30px;
  1144. background:inherit;
  1145. background-color:rgba(255, 255, 255, 0);
  1146. border:none;
  1147. border-left:0px;
  1148. border-top:0px;
  1149. border-right:0px;
  1150. border-radius:0px;
  1151. border-bottom-right-radius:0px;
  1152. border-bottom-left-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. line-height:30px;
  1161. }
  1162. #u128445 {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:99px;
  1166. top:136px;
  1167. width:235px;
  1168. height:30px;
  1169. display:flex;
  1170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1171. font-weight:400;
  1172. font-style:normal;
  1173. font-size:18px;
  1174. line-height:30px;
  1175. }
  1176. #u128445 .text {
  1177. position:absolute;
  1178. align-self:flex-start;
  1179. padding:0px 0px 0px 0px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u128445_text {
  1184. border-width:0px;
  1185. white-space:nowrap;
  1186. text-transform:none;
  1187. }
  1188. #u128446_div {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:229px;
  1194. height:30px;
  1195. background:inherit;
  1196. background-color:rgba(255, 255, 255, 0);
  1197. border:none;
  1198. border-left:0px;
  1199. border-top:0px;
  1200. border-right:0px;
  1201. border-radius:0px;
  1202. border-bottom-right-radius:0px;
  1203. border-bottom-left-radius:0px;
  1204. -moz-box-shadow:none;
  1205. -webkit-box-shadow:none;
  1206. box-shadow:none;
  1207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1208. font-weight:400;
  1209. font-style:normal;
  1210. font-size:12px;
  1211. line-height:30px;
  1212. }
  1213. #u128446 {
  1214. border-width:0px;
  1215. position:absolute;
  1216. left:96px;
  1217. top:166px;
  1218. width:229px;
  1219. height:30px;
  1220. display:flex;
  1221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1222. font-weight:400;
  1223. font-style:normal;
  1224. font-size:12px;
  1225. line-height:30px;
  1226. }
  1227. #u128446 .text {
  1228. position:absolute;
  1229. align-self:flex-start;
  1230. padding:0px 0px 0px 0px;
  1231. box-sizing:border-box;
  1232. width:100%;
  1233. }
  1234. #u128446_text {
  1235. border-width:0px;
  1236. white-space:nowrap;
  1237. text-transform:none;
  1238. }
  1239. #u128447 {
  1240. border-width:0px;
  1241. position:absolute;
  1242. left:0px;
  1243. top:0px;
  1244. width:0px;
  1245. height:0px;
  1246. }
  1247. #u128448_div {
  1248. border-width:0px;
  1249. position:absolute;
  1250. left:0px;
  1251. top:0px;
  1252. width:313px;
  1253. height:90px;
  1254. background:inherit;
  1255. background-color:rgba(255, 255, 255, 1);
  1256. box-sizing:border-box;
  1257. border-width:1px;
  1258. border-style:solid;
  1259. border-color:rgba(215, 215, 215, 1);
  1260. border-left:0px;
  1261. border-top:0px;
  1262. border-right:0px;
  1263. border-radius:0px;
  1264. border-bottom-right-radius:0px;
  1265. border-bottom-left-radius:0px;
  1266. -moz-box-shadow:none;
  1267. -webkit-box-shadow:none;
  1268. box-shadow:none;
  1269. }
  1270. #u128448 {
  1271. border-width:0px;
  1272. position:absolute;
  1273. left:60px;
  1274. top:286px;
  1275. width:313px;
  1276. height:90px;
  1277. display:flex;
  1278. }
  1279. #u128448 .text {
  1280. position:absolute;
  1281. align-self:center;
  1282. padding:2px 2px 2px 2px;
  1283. box-sizing:border-box;
  1284. width:100%;
  1285. }
  1286. #u128448_text {
  1287. border-width:0px;
  1288. word-wrap:break-word;
  1289. text-transform:none;
  1290. visibility:hidden;
  1291. }
  1292. #u128449_div {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:94px;
  1298. height:30px;
  1299. background:inherit;
  1300. background-color:rgba(255, 255, 255, 0);
  1301. border:none;
  1302. border-left:0px;
  1303. border-top:0px;
  1304. border-right:0px;
  1305. border-radius:0px;
  1306. border-bottom-right-radius:0px;
  1307. border-bottom-left-radius:0px;
  1308. -moz-box-shadow:none;
  1309. -webkit-box-shadow:none;
  1310. box-shadow:none;
  1311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1312. font-weight:400;
  1313. font-style:normal;
  1314. font-size:14px;
  1315. line-height:30px;
  1316. }
  1317. #u128449 {
  1318. border-width:0px;
  1319. position:absolute;
  1320. left:62px;
  1321. top:296px;
  1322. width:94px;
  1323. height:30px;
  1324. display:flex;
  1325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1326. font-weight:400;
  1327. font-style:normal;
  1328. font-size:14px;
  1329. line-height:30px;
  1330. }
  1331. #u128449 .text {
  1332. position:absolute;
  1333. align-self:flex-start;
  1334. padding:0px 0px 0px 0px;
  1335. box-sizing:border-box;
  1336. width:100%;
  1337. }
  1338. #u128449_text {
  1339. border-width:0px;
  1340. white-space:nowrap;
  1341. text-transform:none;
  1342. }
  1343. #u128450_input {
  1344. position:absolute;
  1345. left:0px;
  1346. top:0px;
  1347. width:185px;
  1348. height:25px;
  1349. padding:2px 2px 2px 0px;
  1350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1351. font-weight:400;
  1352. font-style:normal;
  1353. font-size:18px;
  1354. letter-spacing:normal;
  1355. color:#D7D7D7;
  1356. vertical-align:none;
  1357. text-align:left;
  1358. text-transform:none;
  1359. background-color:transparent;
  1360. border-color:transparent;
  1361. }
  1362. #u128450_input.disabled {
  1363. position:absolute;
  1364. left:0px;
  1365. top:0px;
  1366. width:185px;
  1367. height:25px;
  1368. padding:2px 2px 2px 0px;
  1369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1370. font-weight:400;
  1371. font-style:normal;
  1372. font-size:18px;
  1373. letter-spacing:normal;
  1374. color:#D7D7D7;
  1375. vertical-align:none;
  1376. text-align:left;
  1377. text-transform:none;
  1378. background-color:transparent;
  1379. border-color:transparent;
  1380. }
  1381. #u128450_div {
  1382. border-width:0px;
  1383. position:absolute;
  1384. left:0px;
  1385. top:0px;
  1386. width:185px;
  1387. height:25px;
  1388. background:inherit;
  1389. background-color:rgba(255, 255, 255, 1);
  1390. border:none;
  1391. border-radius:0px;
  1392. -moz-box-shadow:none;
  1393. -webkit-box-shadow:none;
  1394. box-shadow:none;
  1395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1396. font-weight:400;
  1397. font-style:normal;
  1398. font-size:18px;
  1399. color:#D7D7D7;
  1400. }
  1401. #u128450 {
  1402. border-width:0px;
  1403. position:absolute;
  1404. left:62px;
  1405. top:336px;
  1406. width:185px;
  1407. height:25px;
  1408. display:flex;
  1409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1410. font-weight:400;
  1411. font-style:normal;
  1412. font-size:18px;
  1413. color:#D7D7D7;
  1414. }
  1415. #u128450 .text {
  1416. position:absolute;
  1417. align-self:center;
  1418. padding:2px 2px 2px 0px;
  1419. box-sizing:border-box;
  1420. width:100%;
  1421. }
  1422. #u128450_div.disabled {
  1423. border-width:0px;
  1424. position:absolute;
  1425. left:0px;
  1426. top:0px;
  1427. width:185px;
  1428. height:25px;
  1429. background:inherit;
  1430. background-color:rgba(240, 240, 240, 1);
  1431. border:none;
  1432. border-radius:0px;
  1433. -moz-box-shadow:none;
  1434. -webkit-box-shadow:none;
  1435. box-shadow:none;
  1436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1437. font-weight:400;
  1438. font-style:normal;
  1439. font-size:18px;
  1440. color:#D7D7D7;
  1441. }
  1442. #u128450.disabled {
  1443. }
  1444. #u128451_div {
  1445. border-width:0px;
  1446. position:absolute;
  1447. left:0px;
  1448. top:0px;
  1449. width:289px;
  1450. height:40px;
  1451. background:inherit;
  1452. background-color:rgba(24, 144, 255, 1);
  1453. border:none;
  1454. border-radius:4px;
  1455. -moz-box-shadow:none;
  1456. -webkit-box-shadow:none;
  1457. box-shadow:none;
  1458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1459. font-weight:400;
  1460. font-style:normal;
  1461. font-size:14px;
  1462. color:#FFFFFF;
  1463. }
  1464. #u128451 {
  1465. border-width:0px;
  1466. position:absolute;
  1467. left:72px;
  1468. top:396px;
  1469. width:289px;
  1470. height:40px;
  1471. display:flex;
  1472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1473. font-weight:400;
  1474. font-style:normal;
  1475. font-size:14px;
  1476. color:#FFFFFF;
  1477. }
  1478. #u128451 .text {
  1479. position:absolute;
  1480. align-self:center;
  1481. padding:2px 2px 2px 2px;
  1482. box-sizing:border-box;
  1483. width:100%;
  1484. }
  1485. #u128451_text {
  1486. border-width:0px;
  1487. word-wrap:break-word;
  1488. text-transform:none;
  1489. }
  1490. #u128453_img {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:0px;
  1494. top:0px;
  1495. width:433px;
  1496. height:865px;
  1497. }
  1498. #u128453 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:453px;
  1502. top:0px;
  1503. width:433px;
  1504. height:865px;
  1505. display:flex;
  1506. }
  1507. #u128453 .text {
  1508. position:absolute;
  1509. align-self:center;
  1510. padding:2px 2px 2px 2px;
  1511. box-sizing:border-box;
  1512. width:100%;
  1513. }
  1514. #u128453_text {
  1515. border-width:0px;
  1516. word-wrap:break-word;
  1517. text-transform:none;
  1518. visibility:hidden;
  1519. }
  1520. #u128454_div {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:0px;
  1524. top:0px;
  1525. width:375px;
  1526. height:40px;
  1527. background:inherit;
  1528. background-color:rgba(255, 255, 255, 1);
  1529. box-sizing:border-box;
  1530. border-width:1px;
  1531. border-style:solid;
  1532. border-color:rgba(215, 215, 215, 1);
  1533. border-left:0px;
  1534. border-top:0px;
  1535. border-right:0px;
  1536. border-radius:0px;
  1537. border-bottom-right-radius:0px;
  1538. border-bottom-left-radius:0px;
  1539. -moz-box-shadow:none;
  1540. -webkit-box-shadow:none;
  1541. box-shadow:none;
  1542. }
  1543. #u128454 {
  1544. border-width:0px;
  1545. position:absolute;
  1546. left:482px;
  1547. top:67px;
  1548. width:375px;
  1549. height:40px;
  1550. display:flex;
  1551. }
  1552. #u128454 .text {
  1553. position:absolute;
  1554. align-self:center;
  1555. padding:2px 2px 2px 2px;
  1556. box-sizing:border-box;
  1557. width:100%;
  1558. }
  1559. #u128454_text {
  1560. border-width:0px;
  1561. word-wrap:break-word;
  1562. text-transform:none;
  1563. visibility:hidden;
  1564. }
  1565. #u128455 {
  1566. border-width:0px;
  1567. position:absolute;
  1568. left:0px;
  1569. top:0px;
  1570. width:0px;
  1571. height:0px;
  1572. }
  1573. #u128456_div {
  1574. border-width:0px;
  1575. position:absolute;
  1576. left:0px;
  1577. top:0px;
  1578. width:88px;
  1579. height:32px;
  1580. background:inherit;
  1581. background-color:rgba(255, 255, 255, 1);
  1582. box-sizing:border-box;
  1583. border-width:1px;
  1584. border-style:solid;
  1585. border-color:rgba(242, 242, 242, 1);
  1586. border-radius:33px;
  1587. -moz-box-shadow:none;
  1588. -webkit-box-shadow:none;
  1589. box-shadow:none;
  1590. }
  1591. #u128456 {
  1592. border-width:0px;
  1593. position:absolute;
  1594. left:762px;
  1595. top:71px;
  1596. width:88px;
  1597. height:32px;
  1598. display:flex;
  1599. }
  1600. #u128456 .text {
  1601. position:absolute;
  1602. align-self:center;
  1603. padding:2px 2px 2px 2px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u128456_text {
  1608. border-width:0px;
  1609. word-wrap:break-word;
  1610. text-transform:none;
  1611. visibility:hidden;
  1612. }
  1613. #u128457 {
  1614. border-width:0px;
  1615. position:absolute;
  1616. left:0px;
  1617. top:0px;
  1618. width:0px;
  1619. height:0px;
  1620. }
  1621. #u128458_img {
  1622. border-width:0px;
  1623. position:absolute;
  1624. left:0px;
  1625. top:0px;
  1626. width:18px;
  1627. height:18px;
  1628. }
  1629. #u128458 {
  1630. border-width:0px;
  1631. position:absolute;
  1632. left:825px;
  1633. top:78px;
  1634. width:18px;
  1635. height:18px;
  1636. display:flex;
  1637. }
  1638. #u128458 .text {
  1639. position:absolute;
  1640. align-self:center;
  1641. padding:2px 2px 2px 2px;
  1642. box-sizing:border-box;
  1643. width:100%;
  1644. }
  1645. #u128458_text {
  1646. border-width:0px;
  1647. word-wrap:break-word;
  1648. text-transform:none;
  1649. visibility:hidden;
  1650. }
  1651. #u128459_img {
  1652. border-width:0px;
  1653. position:absolute;
  1654. left:0px;
  1655. top:0px;
  1656. width:6px;
  1657. height:6px;
  1658. }
  1659. #u128459 {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:831px;
  1663. top:84px;
  1664. width:6px;
  1665. height:6px;
  1666. display:flex;
  1667. }
  1668. #u128459 .text {
  1669. position:absolute;
  1670. align-self:center;
  1671. padding:2px 2px 2px 2px;
  1672. box-sizing:border-box;
  1673. width:100%;
  1674. }
  1675. #u128459_text {
  1676. border-width:0px;
  1677. word-wrap:break-word;
  1678. text-transform:none;
  1679. visibility:hidden;
  1680. }
  1681. #u128460 {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:0px;
  1685. top:0px;
  1686. width:0px;
  1687. height:0px;
  1688. }
  1689. #u128461_img {
  1690. border-width:0px;
  1691. position:absolute;
  1692. left:0px;
  1693. top:0px;
  1694. width:5px;
  1695. height:5px;
  1696. }
  1697. #u128461 {
  1698. border-width:0px;
  1699. position:absolute;
  1700. left:776px;
  1701. top:85px;
  1702. width:5px;
  1703. height:5px;
  1704. display:flex;
  1705. }
  1706. #u128461 .text {
  1707. position:absolute;
  1708. align-self:center;
  1709. padding:2px 2px 2px 2px;
  1710. box-sizing:border-box;
  1711. width:100%;
  1712. }
  1713. #u128461_text {
  1714. border-width:0px;
  1715. word-wrap:break-word;
  1716. text-transform:none;
  1717. visibility:hidden;
  1718. }
  1719. #u128462_img {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:5px;
  1725. height:5px;
  1726. }
  1727. #u128462 {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:792px;
  1731. top:85px;
  1732. width:5px;
  1733. height:5px;
  1734. display:flex;
  1735. }
  1736. #u128462 .text {
  1737. position:absolute;
  1738. align-self:center;
  1739. padding:2px 2px 2px 2px;
  1740. box-sizing:border-box;
  1741. width:100%;
  1742. }
  1743. #u128462_text {
  1744. border-width:0px;
  1745. word-wrap:break-word;
  1746. text-transform:none;
  1747. visibility:hidden;
  1748. }
  1749. #u128463_img {
  1750. border-width:0px;
  1751. position:absolute;
  1752. left:0px;
  1753. top:0px;
  1754. width:7px;
  1755. height:7px;
  1756. }
  1757. #u128463 {
  1758. border-width:0px;
  1759. position:absolute;
  1760. left:783px;
  1761. top:84px;
  1762. width:7px;
  1763. height:7px;
  1764. display:flex;
  1765. }
  1766. #u128463 .text {
  1767. position:absolute;
  1768. align-self:center;
  1769. padding:2px 2px 2px 2px;
  1770. box-sizing:border-box;
  1771. width:100%;
  1772. }
  1773. #u128463_text {
  1774. border-width:0px;
  1775. word-wrap:break-word;
  1776. text-transform:none;
  1777. visibility:hidden;
  1778. }
  1779. #u128464_img {
  1780. border-width:0px;
  1781. position:absolute;
  1782. left:0px;
  1783. top:0px;
  1784. width:19px;
  1785. height:2px;
  1786. }
  1787. #u128464 {
  1788. border-width:0px;
  1789. position:absolute;
  1790. left:800px;
  1791. top:87px;
  1792. width:18px;
  1793. height:1px;
  1794. display:flex;
  1795. -webkit-transform:rotate(90deg);
  1796. -moz-transform:rotate(90deg);
  1797. -ms-transform:rotate(90deg);
  1798. transform:rotate(90deg);
  1799. }
  1800. #u128464 .text {
  1801. position:absolute;
  1802. align-self:center;
  1803. padding:2px 2px 2px 2px;
  1804. box-sizing:border-box;
  1805. width:100%;
  1806. }
  1807. #u128464_text {
  1808. border-width:0px;
  1809. word-wrap:break-word;
  1810. text-transform:none;
  1811. visibility:hidden;
  1812. }
  1813. #u128465_img {
  1814. border-width:0px;
  1815. position:absolute;
  1816. left:0px;
  1817. top:0px;
  1818. width:375px;
  1819. height:44px;
  1820. }
  1821. #u128465 {
  1822. border-width:0px;
  1823. position:absolute;
  1824. left:482px;
  1825. top:24px;
  1826. width:375px;
  1827. height:44px;
  1828. display:flex;
  1829. }
  1830. #u128465 .text {
  1831. position:absolute;
  1832. align-self:center;
  1833. padding:2px 2px 2px 2px;
  1834. box-sizing:border-box;
  1835. width:100%;
  1836. }
  1837. #u128465_text {
  1838. border-width:0px;
  1839. word-wrap:break-word;
  1840. text-transform:none;
  1841. visibility:hidden;
  1842. }
  1843. #u128466_div {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:0px;
  1847. top:0px;
  1848. width:375px;
  1849. height:50px;
  1850. background:inherit;
  1851. background-color:rgba(255, 255, 255, 1);
  1852. box-sizing:border-box;
  1853. border-width:1px;
  1854. border-style:solid;
  1855. border-color:rgba(242, 242, 242, 1);
  1856. border-radius:26px;
  1857. border-top-left-radius:0px;
  1858. border-top-right-radius:0px;
  1859. -moz-box-shadow:none;
  1860. -webkit-box-shadow:none;
  1861. box-shadow:none;
  1862. }
  1863. #u128466 {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:482px;
  1867. top:788px;
  1868. width:375px;
  1869. height:50px;
  1870. display:flex;
  1871. }
  1872. #u128466 .text {
  1873. position:absolute;
  1874. align-self:center;
  1875. padding:2px 2px 2px 2px;
  1876. box-sizing:border-box;
  1877. width:100%;
  1878. }
  1879. #u128466_text {
  1880. border-width:0px;
  1881. word-wrap:break-word;
  1882. text-transform:none;
  1883. visibility:hidden;
  1884. }
  1885. #u128467 {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:0px;
  1889. top:0px;
  1890. width:0px;
  1891. height:0px;
  1892. }
  1893. #u128468_img {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:0px;
  1897. top:0px;
  1898. width:24px;
  1899. height:24px;
  1900. }
  1901. #u128468 {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:522px;
  1905. top:792px;
  1906. width:24px;
  1907. height:24px;
  1908. display:flex;
  1909. font-size:8px;
  1910. }
  1911. #u128468 .text {
  1912. position:absolute;
  1913. align-self:center;
  1914. padding:2px 2px 2px 2px;
  1915. box-sizing:border-box;
  1916. width:100%;
  1917. }
  1918. #u128468_text {
  1919. border-width:0px;
  1920. word-wrap:break-word;
  1921. text-transform:none;
  1922. }
  1923. #u128469_div {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:0px;
  1927. top:0px;
  1928. width:25px;
  1929. height:17px;
  1930. background:inherit;
  1931. background-color:rgba(255, 255, 255, 0);
  1932. border:none;
  1933. border-radius:0px;
  1934. -moz-box-shadow:none;
  1935. -webkit-box-shadow:none;
  1936. box-shadow:none;
  1937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1938. font-weight:400;
  1939. font-style:normal;
  1940. font-size:12px;
  1941. }
  1942. #u128469 {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:522px;
  1946. top:817px;
  1947. width:25px;
  1948. height:17px;
  1949. display:flex;
  1950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1951. font-weight:400;
  1952. font-style:normal;
  1953. font-size:12px;
  1954. }
  1955. #u128469 .text {
  1956. position:absolute;
  1957. align-self:flex-start;
  1958. padding:0px 0px 0px 0px;
  1959. box-sizing:border-box;
  1960. width:100%;
  1961. }
  1962. #u128469_text {
  1963. border-width:0px;
  1964. white-space:nowrap;
  1965. text-transform:none;
  1966. }
  1967. #u128470 {
  1968. border-width:0px;
  1969. position:absolute;
  1970. left:0px;
  1971. top:0px;
  1972. width:0px;
  1973. height:0px;
  1974. }
  1975. #u128471_img {
  1976. border-width:0px;
  1977. position:absolute;
  1978. left:0px;
  1979. top:0px;
  1980. width:24px;
  1981. height:24px;
  1982. }
  1983. #u128471 {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:792px;
  1987. top:794px;
  1988. width:24px;
  1989. height:24px;
  1990. display:flex;
  1991. font-size:8px;
  1992. }
  1993. #u128471 .text {
  1994. position:absolute;
  1995. align-self:center;
  1996. padding:2px 2px 2px 2px;
  1997. box-sizing:border-box;
  1998. width:100%;
  1999. }
  2000. #u128471_text {
  2001. border-width:0px;
  2002. word-wrap:break-word;
  2003. text-transform:none;
  2004. }
  2005. #u128472_div {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:0px;
  2009. top:0px;
  2010. width:25px;
  2011. height:17px;
  2012. background:inherit;
  2013. background-color:rgba(255, 255, 255, 0);
  2014. border:none;
  2015. border-radius:0px;
  2016. -moz-box-shadow:none;
  2017. -webkit-box-shadow:none;
  2018. box-shadow:none;
  2019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2020. font-weight:400;
  2021. font-style:normal;
  2022. font-size:12px;
  2023. }
  2024. #u128472 {
  2025. border-width:0px;
  2026. position:absolute;
  2027. left:792px;
  2028. top:819px;
  2029. width:25px;
  2030. height:17px;
  2031. display:flex;
  2032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2033. font-weight:400;
  2034. font-style:normal;
  2035. font-size:12px;
  2036. }
  2037. #u128472 .text {
  2038. position:absolute;
  2039. align-self:flex-start;
  2040. padding:0px 0px 0px 0px;
  2041. box-sizing:border-box;
  2042. width:100%;
  2043. }
  2044. #u128472_text {
  2045. border-width:0px;
  2046. white-space:nowrap;
  2047. text-transform:none;
  2048. }
  2049. #u128473_div {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:375px;
  2055. height:681px;
  2056. background:inherit;
  2057. background-color:rgba(242, 242, 242, 0.462745098039216);
  2058. border:none;
  2059. border-radius:0px;
  2060. -moz-box-shadow:none;
  2061. -webkit-box-shadow:none;
  2062. box-shadow:none;
  2063. }
  2064. #u128473 {
  2065. border-width:0px;
  2066. position:absolute;
  2067. left:482px;
  2068. top:107px;
  2069. width:375px;
  2070. height:681px;
  2071. display:flex;
  2072. }
  2073. #u128473 .text {
  2074. position:absolute;
  2075. align-self:center;
  2076. padding:2px 2px 2px 2px;
  2077. box-sizing:border-box;
  2078. width:100%;
  2079. }
  2080. #u128473_text {
  2081. border-width:0px;
  2082. word-wrap:break-word;
  2083. text-transform:none;
  2084. visibility:hidden;
  2085. }
  2086. #u128474 {
  2087. border-width:0px;
  2088. position:absolute;
  2089. left:0px;
  2090. top:0px;
  2091. width:0px;
  2092. height:0px;
  2093. }
  2094. #u128475_img {
  2095. border-width:0px;
  2096. position:absolute;
  2097. left:0px;
  2098. top:0px;
  2099. width:24px;
  2100. height:24px;
  2101. }
  2102. #u128475 {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:704px;
  2106. top:792px;
  2107. width:24px;
  2108. height:24px;
  2109. display:flex;
  2110. font-size:8px;
  2111. }
  2112. #u128475 .text {
  2113. position:absolute;
  2114. align-self:center;
  2115. padding:2px 2px 2px 2px;
  2116. box-sizing:border-box;
  2117. width:100%;
  2118. }
  2119. #u128475_text {
  2120. border-width:0px;
  2121. word-wrap:break-word;
  2122. text-transform:none;
  2123. }
  2124. #u128476_div {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:0px;
  2128. top:0px;
  2129. width:37px;
  2130. height:17px;
  2131. background:inherit;
  2132. background-color:rgba(255, 255, 255, 0);
  2133. border:none;
  2134. border-radius:0px;
  2135. -moz-box-shadow:none;
  2136. -webkit-box-shadow:none;
  2137. box-shadow:none;
  2138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2139. font-weight:400;
  2140. font-style:normal;
  2141. font-size:12px;
  2142. }
  2143. #u128476 {
  2144. border-width:0px;
  2145. position:absolute;
  2146. left:698px;
  2147. top:817px;
  2148. width:37px;
  2149. height:17px;
  2150. display:flex;
  2151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2152. font-weight:400;
  2153. font-style:normal;
  2154. font-size:12px;
  2155. }
  2156. #u128476 .text {
  2157. position:absolute;
  2158. align-self:flex-start;
  2159. padding:0px 0px 0px 0px;
  2160. box-sizing:border-box;
  2161. width:100%;
  2162. }
  2163. #u128476_text {
  2164. border-width:0px;
  2165. white-space:nowrap;
  2166. text-transform:none;
  2167. }
  2168. #u128477 {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:0px;
  2172. top:0px;
  2173. width:0px;
  2174. height:0px;
  2175. }
  2176. #u128478_img {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:0px;
  2180. top:0px;
  2181. width:24px;
  2182. height:24px;
  2183. }
  2184. #u128478 {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:610px;
  2188. top:792px;
  2189. width:24px;
  2190. height:24px;
  2191. display:flex;
  2192. font-size:8px;
  2193. }
  2194. #u128478 .text {
  2195. position:absolute;
  2196. align-self:center;
  2197. padding:2px 2px 2px 2px;
  2198. box-sizing:border-box;
  2199. width:100%;
  2200. }
  2201. #u128478_text {
  2202. border-width:0px;
  2203. word-wrap:break-word;
  2204. text-transform:none;
  2205. }
  2206. #u128479_div {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:0px;
  2210. top:0px;
  2211. width:37px;
  2212. height:17px;
  2213. background:inherit;
  2214. background-color:rgba(255, 255, 255, 0);
  2215. border:none;
  2216. border-radius:0px;
  2217. -moz-box-shadow:none;
  2218. -webkit-box-shadow:none;
  2219. box-shadow:none;
  2220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2221. font-weight:400;
  2222. font-style:normal;
  2223. font-size:12px;
  2224. }
  2225. #u128479 {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:604px;
  2229. top:817px;
  2230. width:37px;
  2231. height:17px;
  2232. display:flex;
  2233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2234. font-weight:400;
  2235. font-style:normal;
  2236. font-size:12px;
  2237. }
  2238. #u128479 .text {
  2239. position:absolute;
  2240. align-self:flex-start;
  2241. padding:0px 0px 0px 0px;
  2242. box-sizing:border-box;
  2243. width:100%;
  2244. }
  2245. #u128479_text {
  2246. border-width:0px;
  2247. white-space:nowrap;
  2248. text-transform:none;
  2249. }
  2250. #u128480_div {
  2251. border-width:0px;
  2252. position:absolute;
  2253. left:0px;
  2254. top:0px;
  2255. width:375px;
  2256. height:734px;
  2257. background:inherit;
  2258. background-color:rgba(255, 255, 255, 1);
  2259. border:none;
  2260. border-radius:21px;
  2261. border-top-left-radius:0px;
  2262. border-top-right-radius:0px;
  2263. -moz-box-shadow:none;
  2264. -webkit-box-shadow:none;
  2265. box-shadow:none;
  2266. }
  2267. #u128480 {
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:482px;
  2271. top:107px;
  2272. width:375px;
  2273. height:734px;
  2274. display:flex;
  2275. }
  2276. #u128480 .text {
  2277. position:absolute;
  2278. align-self:center;
  2279. padding:2px 2px 2px 2px;
  2280. box-sizing:border-box;
  2281. width:100%;
  2282. }
  2283. #u128480_text {
  2284. border-width:0px;
  2285. word-wrap:break-word;
  2286. text-transform:none;
  2287. visibility:hidden;
  2288. }
  2289. #u128481 {
  2290. border-width:0px;
  2291. position:absolute;
  2292. left:0px;
  2293. top:0px;
  2294. width:0px;
  2295. height:0px;
  2296. }
  2297. #u128482_div {
  2298. border-width:0px;
  2299. position:absolute;
  2300. left:0px;
  2301. top:0px;
  2302. width:375px;
  2303. height:40px;
  2304. background:inherit;
  2305. background-color:rgba(255, 255, 255, 1);
  2306. box-sizing:border-box;
  2307. border-width:1px;
  2308. border-style:solid;
  2309. border-color:rgba(215, 215, 215, 1);
  2310. border-left:0px;
  2311. border-top:0px;
  2312. border-right:0px;
  2313. border-radius:0px;
  2314. border-bottom-right-radius:0px;
  2315. border-bottom-left-radius:0px;
  2316. -moz-box-shadow:none;
  2317. -webkit-box-shadow:none;
  2318. box-shadow:none;
  2319. }
  2320. #u128482 {
  2321. border-width:0px;
  2322. position:absolute;
  2323. left:482px;
  2324. top:67px;
  2325. width:375px;
  2326. height:40px;
  2327. display:flex;
  2328. }
  2329. #u128482 .text {
  2330. position:absolute;
  2331. align-self:center;
  2332. padding:2px 2px 2px 2px;
  2333. box-sizing:border-box;
  2334. width:100%;
  2335. }
  2336. #u128482_text {
  2337. border-width:0px;
  2338. word-wrap:break-word;
  2339. text-transform:none;
  2340. visibility:hidden;
  2341. }
  2342. #u128483_img {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:0px;
  2346. top:0px;
  2347. width:14px;
  2348. height:14px;
  2349. }
  2350. #u128483 {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:529px;
  2354. top:81px;
  2355. width:14px;
  2356. height:14px;
  2357. display:flex;
  2358. }
  2359. #u128483 .text {
  2360. position:absolute;
  2361. align-self:center;
  2362. padding:2px 2px 2px 2px;
  2363. box-sizing:border-box;
  2364. width:100%;
  2365. }
  2366. #u128483_text {
  2367. border-width:0px;
  2368. word-wrap:break-word;
  2369. text-transform:none;
  2370. visibility:hidden;
  2371. }
  2372. #u128484_div {
  2373. border-width:0px;
  2374. position:absolute;
  2375. left:0px;
  2376. top:0px;
  2377. width:97px;
  2378. height:22px;
  2379. background:inherit;
  2380. background-color:rgba(255, 255, 255, 0);
  2381. border:none;
  2382. border-radius:0px;
  2383. -moz-box-shadow:none;
  2384. -webkit-box-shadow:none;
  2385. box-shadow:none;
  2386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2387. font-weight:400;
  2388. font-style:normal;
  2389. font-size:16px;
  2390. color:#000000;
  2391. }
  2392. #u128484 {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:621px;
  2396. top:76px;
  2397. width:97px;
  2398. height:22px;
  2399. display:flex;
  2400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2401. font-weight:400;
  2402. font-style:normal;
  2403. font-size:16px;
  2404. color:#000000;
  2405. }
  2406. #u128484 .text {
  2407. position:absolute;
  2408. align-self:flex-start;
  2409. padding:0px 0px 0px 0px;
  2410. box-sizing:border-box;
  2411. width:100%;
  2412. }
  2413. #u128484_text {
  2414. border-width:0px;
  2415. white-space:nowrap;
  2416. text-transform:none;
  2417. }
  2418. #u128485 {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:0px;
  2422. top:0px;
  2423. width:0px;
  2424. height:0px;
  2425. }
  2426. #u128486_img {
  2427. border-width:0px;
  2428. position:absolute;
  2429. left:0px;
  2430. top:0px;
  2431. width:11px;
  2432. height:18px;
  2433. }
  2434. #u128486 {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:495px;
  2438. top:79px;
  2439. width:11px;
  2440. height:18px;
  2441. display:flex;
  2442. }
  2443. #u128486 .text {
  2444. position:absolute;
  2445. align-self:center;
  2446. padding:2px 2px 2px 2px;
  2447. box-sizing:border-box;
  2448. width:100%;
  2449. }
  2450. #u128486_text {
  2451. border-width:0px;
  2452. word-wrap:break-word;
  2453. text-transform:none;
  2454. visibility:hidden;
  2455. }
  2456. #u128487_div {
  2457. border-width:0px;
  2458. position:absolute;
  2459. left:0px;
  2460. top:0px;
  2461. width:40px;
  2462. height:40px;
  2463. background:inherit;
  2464. background-color:rgba(24, 144, 255, 1);
  2465. border:none;
  2466. border-radius:20px;
  2467. -moz-box-shadow:none;
  2468. -webkit-box-shadow:none;
  2469. box-shadow:none;
  2470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2471. font-weight:400;
  2472. font-style:normal;
  2473. color:#FFFFFF;
  2474. }
  2475. #u128487 {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:582px;
  2479. top:147px;
  2480. width:40px;
  2481. height:40px;
  2482. display:flex;
  2483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2484. font-weight:400;
  2485. font-style:normal;
  2486. color:#FFFFFF;
  2487. }
  2488. #u128487 .text {
  2489. position:absolute;
  2490. align-self:center;
  2491. padding:2px 2px 2px 2px;
  2492. box-sizing:border-box;
  2493. width:100%;
  2494. }
  2495. #u128487_text {
  2496. border-width:0px;
  2497. word-wrap:break-word;
  2498. text-transform:none;
  2499. }
  2500. #u128488_div {
  2501. border-width:0px;
  2502. position:absolute;
  2503. left:0px;
  2504. top:0px;
  2505. width:73px;
  2506. height:30px;
  2507. background:inherit;
  2508. background-color:rgba(255, 255, 255, 0);
  2509. border:none;
  2510. border-left:0px;
  2511. border-top:0px;
  2512. border-right:0px;
  2513. border-radius:0px;
  2514. border-bottom-right-radius:0px;
  2515. border-bottom-left-radius:0px;
  2516. -moz-box-shadow:none;
  2517. -webkit-box-shadow:none;
  2518. box-shadow:none;
  2519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2520. font-weight:400;
  2521. font-style:normal;
  2522. line-height:30px;
  2523. }
  2524. #u128488 {
  2525. border-width:0px;
  2526. position:absolute;
  2527. left:636px;
  2528. top:152px;
  2529. width:73px;
  2530. height:30px;
  2531. display:flex;
  2532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2533. font-weight:400;
  2534. font-style:normal;
  2535. line-height:30px;
  2536. }
  2537. #u128488 .text {
  2538. position:absolute;
  2539. align-self:flex-start;
  2540. padding:0px 0px 0px 0px;
  2541. box-sizing:border-box;
  2542. width:100%;
  2543. }
  2544. #u128488_text {
  2545. border-width:0px;
  2546. white-space:nowrap;
  2547. text-transform:none;
  2548. }
  2549. #u128489_div {
  2550. border-width:0px;
  2551. position:absolute;
  2552. left:0px;
  2553. top:0px;
  2554. width:293px;
  2555. height:60px;
  2556. background:inherit;
  2557. background-color:rgba(255, 255, 255, 0);
  2558. border:none;
  2559. border-left:0px;
  2560. border-top:0px;
  2561. border-right:0px;
  2562. border-radius:0px;
  2563. border-bottom-right-radius:0px;
  2564. border-bottom-left-radius:0px;
  2565. -moz-box-shadow:none;
  2566. -webkit-box-shadow:none;
  2567. box-shadow:none;
  2568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2569. font-weight:400;
  2570. font-style:normal;
  2571. font-size:14px;
  2572. color:#AAAAAA;
  2573. text-align:center;
  2574. line-height:30px;
  2575. }
  2576. #u128489 {
  2577. border-width:0px;
  2578. position:absolute;
  2579. left:524px;
  2580. top:214px;
  2581. width:293px;
  2582. height:60px;
  2583. display:flex;
  2584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2585. font-weight:400;
  2586. font-style:normal;
  2587. font-size:14px;
  2588. color:#AAAAAA;
  2589. text-align:center;
  2590. line-height:30px;
  2591. }
  2592. #u128489 .text {
  2593. position:absolute;
  2594. align-self:flex-start;
  2595. padding:0px 0px 0px 0px;
  2596. box-sizing:border-box;
  2597. width:100%;
  2598. }
  2599. #u128489_text {
  2600. border-width:0px;
  2601. word-wrap:break-word;
  2602. text-transform:none;
  2603. }
  2604. #u128490_div {
  2605. border-width:0px;
  2606. position:absolute;
  2607. left:0px;
  2608. top:0px;
  2609. width:341px;
  2610. height:40px;
  2611. background:inherit;
  2612. background-color:rgba(24, 144, 255, 1);
  2613. border:none;
  2614. border-radius:45px;
  2615. -moz-box-shadow:none;
  2616. -webkit-box-shadow:none;
  2617. box-shadow:none;
  2618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2619. font-weight:400;
  2620. font-style:normal;
  2621. font-size:14px;
  2622. color:#FFFFFF;
  2623. }
  2624. #u128490 {
  2625. border-width:0px;
  2626. position:absolute;
  2627. left:502px;
  2628. top:774px;
  2629. width:341px;
  2630. height:40px;
  2631. display:flex;
  2632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2633. font-weight:400;
  2634. font-style:normal;
  2635. font-size:14px;
  2636. color:#FFFFFF;
  2637. }
  2638. #u128490 .text {
  2639. position:absolute;
  2640. align-self:center;
  2641. padding:2px 2px 2px 2px;
  2642. box-sizing:border-box;
  2643. width:100%;
  2644. }
  2645. #u128490_text {
  2646. border-width:0px;
  2647. word-wrap:break-word;
  2648. text-transform:none;
  2649. }