styles.css 41 KB

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