styles.css 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1363px;
  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. #u45581_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u45581 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u45581 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u45581_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u45582_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. #u45582 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u45582 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u45582_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u45583_img {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:375px;
  100. height:44px;
  101. }
  102. #u45583 {
  103. border-width:0px;
  104. position:absolute;
  105. left:29px;
  106. top:24px;
  107. width:375px;
  108. height:44px;
  109. display:flex;
  110. }
  111. #u45583 .text {
  112. position:absolute;
  113. align-self:center;
  114. padding:2px 2px 2px 2px;
  115. box-sizing:border-box;
  116. width:100%;
  117. }
  118. #u45583_text {
  119. border-width:0px;
  120. word-wrap:break-word;
  121. text-transform:none;
  122. visibility:hidden;
  123. }
  124. #u45584_div {
  125. border-width:0px;
  126. position:absolute;
  127. left:0px;
  128. top:0px;
  129. width:375px;
  130. height:681px;
  131. background:inherit;
  132. background-color:rgba(242, 242, 242, 0.462745098039216);
  133. border:none;
  134. border-radius:0px;
  135. -moz-box-shadow:none;
  136. -webkit-box-shadow:none;
  137. box-shadow:none;
  138. }
  139. #u45584 {
  140. border-width:0px;
  141. position:absolute;
  142. left:29px;
  143. top:107px;
  144. width:375px;
  145. height:681px;
  146. display:flex;
  147. }
  148. #u45584 .text {
  149. position:absolute;
  150. align-self:center;
  151. padding:2px 2px 2px 2px;
  152. box-sizing:border-box;
  153. width:100%;
  154. }
  155. #u45584_text {
  156. border-width:0px;
  157. word-wrap:break-word;
  158. text-transform:none;
  159. visibility:hidden;
  160. }
  161. #u45585_div {
  162. border-width:0px;
  163. position:absolute;
  164. left:0px;
  165. top:0px;
  166. width:375px;
  167. height:732px;
  168. background:inherit;
  169. background-color:rgba(255, 255, 255, 0.996078431372549);
  170. border:none;
  171. border-top:0px;
  172. border-radius:28px;
  173. border-top-left-radius:0px;
  174. border-top-right-radius:0px;
  175. -moz-box-shadow:none;
  176. -webkit-box-shadow:none;
  177. box-shadow:none;
  178. }
  179. #u45585 {
  180. border-width:0px;
  181. position:absolute;
  182. left:29px;
  183. top:107px;
  184. width:375px;
  185. height:732px;
  186. display:flex;
  187. }
  188. #u45585 .text {
  189. position:absolute;
  190. align-self:center;
  191. padding:2px 2px 2px 2px;
  192. box-sizing:border-box;
  193. width:100%;
  194. }
  195. #u45585_text {
  196. border-width:0px;
  197. word-wrap:break-word;
  198. text-transform:none;
  199. visibility:hidden;
  200. }
  201. #u45586_div {
  202. border-width:0px;
  203. position:absolute;
  204. left:0px;
  205. top:0px;
  206. width:73px;
  207. height:25px;
  208. background:inherit;
  209. background-color:rgba(255, 255, 255, 0);
  210. border:none;
  211. border-radius:0px;
  212. -moz-box-shadow:none;
  213. -webkit-box-shadow:none;
  214. box-shadow:none;
  215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  216. font-weight:400;
  217. font-style:normal;
  218. font-size:18px;
  219. color:#000000;
  220. text-align:center;
  221. }
  222. #u45586 {
  223. border-width:0px;
  224. position:absolute;
  225. left:180px;
  226. top:75px;
  227. width:73px;
  228. height:25px;
  229. display:flex;
  230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  231. font-weight:400;
  232. font-style:normal;
  233. font-size:18px;
  234. color:#000000;
  235. text-align:center;
  236. }
  237. #u45586 .text {
  238. position:absolute;
  239. align-self:flex-start;
  240. padding:0px 0px 0px 0px;
  241. box-sizing:border-box;
  242. width:100%;
  243. }
  244. #u45586_text {
  245. border-width:0px;
  246. white-space:nowrap;
  247. text-transform:none;
  248. }
  249. #u45587_img {
  250. border-width:0px;
  251. position:absolute;
  252. left:0px;
  253. top:0px;
  254. width:10px;
  255. height:18px;
  256. }
  257. #u45587 {
  258. border-width:0px;
  259. position:absolute;
  260. left:39px;
  261. top:77px;
  262. width:10px;
  263. height:18px;
  264. display:flex;
  265. }
  266. #u45587 .text {
  267. position:absolute;
  268. align-self:center;
  269. padding:2px 2px 2px 2px;
  270. box-sizing:border-box;
  271. width:100%;
  272. }
  273. #u45587_text {
  274. border-width:0px;
  275. word-wrap:break-word;
  276. text-transform:none;
  277. visibility:hidden;
  278. }
  279. #u45588_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:265px;
  285. height:265px;
  286. }
  287. #u45588 {
  288. border-width:0px;
  289. position:absolute;
  290. left:84px;
  291. top:263px;
  292. width:265px;
  293. height:265px;
  294. display:flex;
  295. font-size:58px;
  296. color:#FFFFFF;
  297. }
  298. #u45588 .text {
  299. position:absolute;
  300. align-self:center;
  301. padding:2px 2px 2px 2px;
  302. box-sizing:border-box;
  303. width:100%;
  304. }
  305. #u45588_text {
  306. border-width:0px;
  307. word-wrap:break-word;
  308. text-transform:none;
  309. }
  310. #u45589_div {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:160px;
  316. height:40px;
  317. background:inherit;
  318. background-color:rgba(242, 242, 242, 1);
  319. border:none;
  320. border-radius:81px;
  321. -moz-box-shadow:none;
  322. -webkit-box-shadow:none;
  323. box-shadow:none;
  324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  325. font-weight:400;
  326. font-style:normal;
  327. font-size:14px;
  328. color:#7F7F7F;
  329. }
  330. #u45589 {
  331. border-width:0px;
  332. position:absolute;
  333. left:47px;
  334. top:124px;
  335. width:160px;
  336. height:40px;
  337. display:flex;
  338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  339. font-weight:400;
  340. font-style:normal;
  341. font-size:14px;
  342. color:#7F7F7F;
  343. }
  344. #u45589 .text {
  345. position:absolute;
  346. align-self:center;
  347. padding:2px 2px 2px 2px;
  348. box-sizing:border-box;
  349. width:100%;
  350. }
  351. #u45589_text {
  352. border-width:0px;
  353. word-wrap:break-word;
  354. text-transform:none;
  355. }
  356. #u45590_div {
  357. border-width:0px;
  358. position:absolute;
  359. left:0px;
  360. top:0px;
  361. width:160px;
  362. height:40px;
  363. background:inherit;
  364. background-color:rgba(255, 255, 255, 1);
  365. box-sizing:border-box;
  366. border-width:1px;
  367. border-style:solid;
  368. border-color:rgba(24, 144, 255, 1);
  369. border-radius:81px;
  370. -moz-box-shadow:none;
  371. -webkit-box-shadow:none;
  372. box-shadow:none;
  373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  374. font-weight:400;
  375. font-style:normal;
  376. font-size:14px;
  377. color:#1890FF;
  378. }
  379. #u45590 {
  380. border-width:0px;
  381. position:absolute;
  382. left:227px;
  383. top:124px;
  384. width:160px;
  385. height:40px;
  386. display:flex;
  387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  388. font-weight:400;
  389. font-style:normal;
  390. font-size:14px;
  391. color:#1890FF;
  392. }
  393. #u45590 .text {
  394. position:absolute;
  395. align-self:center;
  396. padding:2px 2px 2px 2px;
  397. box-sizing:border-box;
  398. width:100%;
  399. }
  400. #u45590_text {
  401. border-width:0px;
  402. word-wrap:break-word;
  403. text-transform:none;
  404. }
  405. #u45591 {
  406. border-width:0px;
  407. position:absolute;
  408. left:0px;
  409. top:0px;
  410. width:0px;
  411. height:0px;
  412. }
  413. #u45592_div {
  414. border-width:0px;
  415. position:absolute;
  416. left:0px;
  417. top:0px;
  418. width:375px;
  419. height:60px;
  420. background:inherit;
  421. background-color:rgba(255, 255, 255, 1);
  422. border:none;
  423. border-top:0px;
  424. border-radius:28px;
  425. border-top-left-radius:0px;
  426. border-top-right-radius:0px;
  427. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  428. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  429. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  431. font-weight:400;
  432. font-style:normal;
  433. font-size:14px;
  434. color:#FFFFFF;
  435. }
  436. #u45592 {
  437. border-width:0px;
  438. position:absolute;
  439. left:29px;
  440. top:779px;
  441. width:375px;
  442. height:60px;
  443. display:flex;
  444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  445. font-weight:400;
  446. font-style:normal;
  447. font-size:14px;
  448. color:#FFFFFF;
  449. }
  450. #u45592 .text {
  451. position:absolute;
  452. align-self:center;
  453. padding:2px 2px 2px 2px;
  454. box-sizing:border-box;
  455. width:100%;
  456. }
  457. #u45592_text {
  458. border-width:0px;
  459. word-wrap:break-word;
  460. text-transform:none;
  461. visibility:hidden;
  462. }
  463. #u45593_div {
  464. border-width:0px;
  465. position:absolute;
  466. left:0px;
  467. top:0px;
  468. width:80px;
  469. height:40px;
  470. background:inherit;
  471. background-color:rgba(215, 215, 215, 1);
  472. border:none;
  473. border-radius:27px;
  474. -moz-box-shadow:none;
  475. -webkit-box-shadow:none;
  476. box-shadow:none;
  477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  478. font-weight:400;
  479. font-style:normal;
  480. color:#FFFFFF;
  481. text-align:center;
  482. }
  483. #u45593 {
  484. border-width:0px;
  485. position:absolute;
  486. left:309px;
  487. top:789px;
  488. width:80px;
  489. height:40px;
  490. display:flex;
  491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  492. font-weight:400;
  493. font-style:normal;
  494. color:#FFFFFF;
  495. text-align:center;
  496. }
  497. #u45593 .text {
  498. position:absolute;
  499. align-self:center;
  500. padding:2px 3px 2px 3px;
  501. box-sizing:border-box;
  502. width:100%;
  503. }
  504. #u45593_text {
  505. border-width:0px;
  506. word-wrap:break-word;
  507. text-transform:none;
  508. }
  509. #u45594 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u45595 {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:0px;
  523. height:0px;
  524. }
  525. #u45596_div {
  526. border-width:0px;
  527. position:absolute;
  528. left:0px;
  529. top:0px;
  530. width:93px;
  531. height:20px;
  532. background:inherit;
  533. background-color:rgba(255, 255, 255, 0);
  534. border:none;
  535. border-left:0px;
  536. border-top:0px;
  537. border-right:0px;
  538. border-radius:0px;
  539. border-bottom-right-radius:0px;
  540. border-bottom-left-radius:0px;
  541. -moz-box-shadow:none;
  542. -webkit-box-shadow:none;
  543. box-shadow:none;
  544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  545. font-weight:400;
  546. font-style:normal;
  547. font-size:14px;
  548. }
  549. #u45596 {
  550. border-width:0px;
  551. position:absolute;
  552. left:49px;
  553. top:799px;
  554. width:93px;
  555. height:20px;
  556. display:flex;
  557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  558. font-weight:400;
  559. font-style:normal;
  560. font-size:14px;
  561. }
  562. #u45596 .text {
  563. position:absolute;
  564. align-self:center;
  565. padding:0px 0px 0px 0px;
  566. box-sizing:border-box;
  567. width:100%;
  568. }
  569. #u45596_text {
  570. border-width:0px;
  571. white-space:nowrap;
  572. text-transform:none;
  573. }
  574. #u45597_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:6px;
  580. height:6px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. box-sizing:border-box;
  584. border-width:1px;
  585. border-style:solid;
  586. border-color:rgba(0, 191, 191, 1);
  587. border-right:0px;
  588. border-bottom:0px;
  589. border-radius:0px;
  590. border-top-right-radius:0px;
  591. border-bottom-left-radius:0px;
  592. -moz-box-shadow:none;
  593. -webkit-box-shadow:none;
  594. box-shadow:none;
  595. }
  596. #u45597 {
  597. border-width:0px;
  598. position:absolute;
  599. left:148px;
  600. top:808px;
  601. width:6px;
  602. height:6px;
  603. display:flex;
  604. -webkit-transform:rotate(45deg);
  605. -moz-transform:rotate(45deg);
  606. -ms-transform:rotate(45deg);
  607. transform:rotate(45deg);
  608. }
  609. #u45597 .text {
  610. position:absolute;
  611. align-self:center;
  612. padding:2px 2px 2px 2px;
  613. box-sizing:border-box;
  614. width:100%;
  615. }
  616. #u45597_text {
  617. border-width:0px;
  618. word-wrap:break-word;
  619. text-transform:none;
  620. visibility:hidden;
  621. }
  622. #u45598_div {
  623. border-width:0px;
  624. position:absolute;
  625. left:0px;
  626. top:0px;
  627. width:109px;
  628. height:25px;
  629. background:inherit;
  630. background-color:rgba(255, 255, 255, 0);
  631. border:none;
  632. border-radius:0px;
  633. -moz-box-shadow:none;
  634. -webkit-box-shadow:none;
  635. box-shadow:none;
  636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  637. font-weight:400;
  638. font-style:normal;
  639. font-size:18px;
  640. color:#AAAAAA;
  641. text-align:center;
  642. }
  643. #u45598 {
  644. border-width:0px;
  645. position:absolute;
  646. left:162px;
  647. top:547px;
  648. width:109px;
  649. height:25px;
  650. display:flex;
  651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  652. font-weight:400;
  653. font-style:normal;
  654. font-size:18px;
  655. color:#AAAAAA;
  656. text-align:center;
  657. }
  658. #u45598 .text {
  659. position:absolute;
  660. align-self:flex-start;
  661. padding:0px 0px 0px 0px;
  662. box-sizing:border-box;
  663. width:100%;
  664. }
  665. #u45598_text {
  666. border-width:0px;
  667. white-space:nowrap;
  668. text-transform:none;
  669. }
  670. #u45600_img {
  671. border-width:0px;
  672. position:absolute;
  673. left:0px;
  674. top:0px;
  675. width:433px;
  676. height:865px;
  677. }
  678. #u45600 {
  679. border-width:0px;
  680. position:absolute;
  681. left:465px;
  682. top:0px;
  683. width:433px;
  684. height:865px;
  685. display:flex;
  686. }
  687. #u45600 .text {
  688. position:absolute;
  689. align-self:center;
  690. padding:2px 2px 2px 2px;
  691. box-sizing:border-box;
  692. width:100%;
  693. }
  694. #u45600_text {
  695. border-width:0px;
  696. word-wrap:break-word;
  697. text-transform:none;
  698. visibility:hidden;
  699. }
  700. #u45601_div {
  701. border-width:0px;
  702. position:absolute;
  703. left:0px;
  704. top:0px;
  705. width:375px;
  706. height:40px;
  707. background:inherit;
  708. background-color:rgba(255, 255, 255, 1);
  709. box-sizing:border-box;
  710. border-width:1px;
  711. border-style:solid;
  712. border-color:rgba(215, 215, 215, 1);
  713. border-left:0px;
  714. border-top:0px;
  715. border-right:0px;
  716. border-radius:0px;
  717. border-bottom-right-radius:0px;
  718. border-bottom-left-radius:0px;
  719. -moz-box-shadow:none;
  720. -webkit-box-shadow:none;
  721. box-shadow:none;
  722. }
  723. #u45601 {
  724. border-width:0px;
  725. position:absolute;
  726. left:494px;
  727. top:67px;
  728. width:375px;
  729. height:40px;
  730. display:flex;
  731. }
  732. #u45601 .text {
  733. position:absolute;
  734. align-self:center;
  735. padding:2px 2px 2px 2px;
  736. box-sizing:border-box;
  737. width:100%;
  738. }
  739. #u45601_text {
  740. border-width:0px;
  741. word-wrap:break-word;
  742. text-transform:none;
  743. visibility:hidden;
  744. }
  745. #u45602_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:375px;
  751. height:44px;
  752. }
  753. #u45602 {
  754. border-width:0px;
  755. position:absolute;
  756. left:494px;
  757. top:24px;
  758. width:375px;
  759. height:44px;
  760. display:flex;
  761. }
  762. #u45602 .text {
  763. position:absolute;
  764. align-self:center;
  765. padding:2px 2px 2px 2px;
  766. box-sizing:border-box;
  767. width:100%;
  768. }
  769. #u45602_text {
  770. border-width:0px;
  771. word-wrap:break-word;
  772. text-transform:none;
  773. visibility:hidden;
  774. }
  775. #u45603_div {
  776. border-width:0px;
  777. position:absolute;
  778. left:0px;
  779. top:0px;
  780. width:375px;
  781. height:681px;
  782. background:inherit;
  783. background-color:rgba(242, 242, 242, 0.462745098039216);
  784. border:none;
  785. border-radius:0px;
  786. -moz-box-shadow:none;
  787. -webkit-box-shadow:none;
  788. box-shadow:none;
  789. }
  790. #u45603 {
  791. border-width:0px;
  792. position:absolute;
  793. left:494px;
  794. top:107px;
  795. width:375px;
  796. height:681px;
  797. display:flex;
  798. }
  799. #u45603 .text {
  800. position:absolute;
  801. align-self:center;
  802. padding:2px 2px 2px 2px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u45603_text {
  807. border-width:0px;
  808. word-wrap:break-word;
  809. text-transform:none;
  810. visibility:hidden;
  811. }
  812. #u45604_div {
  813. border-width:0px;
  814. position:absolute;
  815. left:0px;
  816. top:0px;
  817. width:375px;
  818. height:732px;
  819. background:inherit;
  820. background-color:rgba(255, 255, 255, 0.996078431372549);
  821. border:none;
  822. border-top:0px;
  823. border-radius:28px;
  824. border-top-left-radius:0px;
  825. border-top-right-radius:0px;
  826. -moz-box-shadow:none;
  827. -webkit-box-shadow:none;
  828. box-shadow:none;
  829. }
  830. #u45604 {
  831. border-width:0px;
  832. position:absolute;
  833. left:494px;
  834. top:107px;
  835. width:375px;
  836. height:732px;
  837. display:flex;
  838. }
  839. #u45604 .text {
  840. position:absolute;
  841. align-self:center;
  842. padding:2px 2px 2px 2px;
  843. box-sizing:border-box;
  844. width:100%;
  845. }
  846. #u45604_text {
  847. border-width:0px;
  848. word-wrap:break-word;
  849. text-transform:none;
  850. visibility:hidden;
  851. }
  852. #u45605_div {
  853. border-width:0px;
  854. position:absolute;
  855. left:0px;
  856. top:0px;
  857. width:73px;
  858. height:25px;
  859. background:inherit;
  860. background-color:rgba(255, 255, 255, 0);
  861. border:none;
  862. border-radius:0px;
  863. -moz-box-shadow:none;
  864. -webkit-box-shadow:none;
  865. box-shadow:none;
  866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  867. font-weight:400;
  868. font-style:normal;
  869. font-size:18px;
  870. color:#000000;
  871. text-align:center;
  872. }
  873. #u45605 {
  874. border-width:0px;
  875. position:absolute;
  876. left:645px;
  877. top:75px;
  878. width:73px;
  879. height:25px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:18px;
  885. color:#000000;
  886. text-align:center;
  887. }
  888. #u45605 .text {
  889. position:absolute;
  890. align-self:flex-start;
  891. padding:0px 0px 0px 0px;
  892. box-sizing:border-box;
  893. width:100%;
  894. }
  895. #u45605_text {
  896. border-width:0px;
  897. white-space:nowrap;
  898. text-transform:none;
  899. }
  900. #u45606_img {
  901. border-width:0px;
  902. position:absolute;
  903. left:0px;
  904. top:0px;
  905. width:10px;
  906. height:18px;
  907. }
  908. #u45606 {
  909. border-width:0px;
  910. position:absolute;
  911. left:504px;
  912. top:77px;
  913. width:10px;
  914. height:18px;
  915. display:flex;
  916. }
  917. #u45606 .text {
  918. position:absolute;
  919. align-self:center;
  920. padding:2px 2px 2px 2px;
  921. box-sizing:border-box;
  922. width:100%;
  923. }
  924. #u45606_text {
  925. border-width:0px;
  926. word-wrap:break-word;
  927. text-transform:none;
  928. visibility:hidden;
  929. }
  930. #u45607_img {
  931. border-width:0px;
  932. position:absolute;
  933. left:0px;
  934. top:0px;
  935. width:265px;
  936. height:265px;
  937. }
  938. #u45607 {
  939. border-width:0px;
  940. position:absolute;
  941. left:549px;
  942. top:263px;
  943. width:265px;
  944. height:265px;
  945. display:flex;
  946. font-size:58px;
  947. color:#FFFFFF;
  948. }
  949. #u45607 .text {
  950. position:absolute;
  951. align-self:center;
  952. padding:2px 2px 2px 2px;
  953. box-sizing:border-box;
  954. width:100%;
  955. }
  956. #u45607_text {
  957. border-width:0px;
  958. word-wrap:break-word;
  959. text-transform:none;
  960. }
  961. #u45608_div {
  962. border-width:0px;
  963. position:absolute;
  964. left:0px;
  965. top:0px;
  966. width:160px;
  967. height:40px;
  968. background:inherit;
  969. background-color:rgba(242, 242, 242, 1);
  970. border:none;
  971. border-radius:81px;
  972. -moz-box-shadow:none;
  973. -webkit-box-shadow:none;
  974. box-shadow:none;
  975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  976. font-weight:400;
  977. font-style:normal;
  978. font-size:14px;
  979. color:#7F7F7F;
  980. }
  981. #u45608 {
  982. border-width:0px;
  983. position:absolute;
  984. left:512px;
  985. top:124px;
  986. width:160px;
  987. height:40px;
  988. display:flex;
  989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  990. font-weight:400;
  991. font-style:normal;
  992. font-size:14px;
  993. color:#7F7F7F;
  994. }
  995. #u45608 .text {
  996. position:absolute;
  997. align-self:center;
  998. padding:2px 2px 2px 2px;
  999. box-sizing:border-box;
  1000. width:100%;
  1001. }
  1002. #u45608_text {
  1003. border-width:0px;
  1004. word-wrap:break-word;
  1005. text-transform:none;
  1006. }
  1007. #u45609_div {
  1008. border-width:0px;
  1009. position:absolute;
  1010. left:0px;
  1011. top:0px;
  1012. width:160px;
  1013. height:40px;
  1014. background:inherit;
  1015. background-color:rgba(255, 255, 255, 1);
  1016. box-sizing:border-box;
  1017. border-width:1px;
  1018. border-style:solid;
  1019. border-color:rgba(24, 144, 255, 1);
  1020. border-radius:81px;
  1021. -moz-box-shadow:none;
  1022. -webkit-box-shadow:none;
  1023. box-shadow:none;
  1024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1025. font-weight:400;
  1026. font-style:normal;
  1027. font-size:14px;
  1028. color:#1890FF;
  1029. }
  1030. #u45609 {
  1031. border-width:0px;
  1032. position:absolute;
  1033. left:692px;
  1034. top:124px;
  1035. width:160px;
  1036. height:40px;
  1037. display:flex;
  1038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1039. font-weight:400;
  1040. font-style:normal;
  1041. font-size:14px;
  1042. color:#1890FF;
  1043. }
  1044. #u45609 .text {
  1045. position:absolute;
  1046. align-self:center;
  1047. padding:2px 2px 2px 2px;
  1048. box-sizing:border-box;
  1049. width:100%;
  1050. }
  1051. #u45609_text {
  1052. border-width:0px;
  1053. word-wrap:break-word;
  1054. text-transform:none;
  1055. }
  1056. #u45610 {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:0px;
  1060. top:0px;
  1061. width:0px;
  1062. height:0px;
  1063. }
  1064. #u45611_div {
  1065. border-width:0px;
  1066. position:absolute;
  1067. left:0px;
  1068. top:0px;
  1069. width:375px;
  1070. height:60px;
  1071. background:inherit;
  1072. background-color:rgba(255, 255, 255, 1);
  1073. border:none;
  1074. border-top:0px;
  1075. border-radius:28px;
  1076. border-top-left-radius:0px;
  1077. border-top-right-radius:0px;
  1078. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1079. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1080. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1082. font-weight:400;
  1083. font-style:normal;
  1084. font-size:14px;
  1085. color:#FFFFFF;
  1086. }
  1087. #u45611 {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:494px;
  1091. top:779px;
  1092. width:375px;
  1093. height:60px;
  1094. display:flex;
  1095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1096. font-weight:400;
  1097. font-style:normal;
  1098. font-size:14px;
  1099. color:#FFFFFF;
  1100. }
  1101. #u45611 .text {
  1102. position:absolute;
  1103. align-self:center;
  1104. padding:2px 2px 2px 2px;
  1105. box-sizing:border-box;
  1106. width:100%;
  1107. }
  1108. #u45611_text {
  1109. border-width:0px;
  1110. word-wrap:break-word;
  1111. text-transform:none;
  1112. visibility:hidden;
  1113. }
  1114. #u45612_div {
  1115. border-width:0px;
  1116. position:absolute;
  1117. left:0px;
  1118. top:0px;
  1119. width:80px;
  1120. height:40px;
  1121. background:inherit;
  1122. background-color:rgba(215, 215, 215, 1);
  1123. border:none;
  1124. border-radius:27px;
  1125. -moz-box-shadow:none;
  1126. -webkit-box-shadow:none;
  1127. box-shadow:none;
  1128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1129. font-weight:400;
  1130. font-style:normal;
  1131. color:#FFFFFF;
  1132. text-align:center;
  1133. }
  1134. #u45612 {
  1135. border-width:0px;
  1136. position:absolute;
  1137. left:774px;
  1138. top:789px;
  1139. width:80px;
  1140. height:40px;
  1141. display:flex;
  1142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1143. font-weight:400;
  1144. font-style:normal;
  1145. color:#FFFFFF;
  1146. text-align:center;
  1147. }
  1148. #u45612 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 3px 2px 3px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u45612_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. }
  1160. #u45613 {
  1161. border-width:0px;
  1162. position:absolute;
  1163. left:0px;
  1164. top:0px;
  1165. width:0px;
  1166. height:0px;
  1167. }
  1168. #u45614 {
  1169. border-width:0px;
  1170. position:absolute;
  1171. left:0px;
  1172. top:0px;
  1173. width:0px;
  1174. height:0px;
  1175. }
  1176. #u45615_div {
  1177. border-width:0px;
  1178. position:absolute;
  1179. left:0px;
  1180. top:0px;
  1181. width:93px;
  1182. height:20px;
  1183. background:inherit;
  1184. background-color:rgba(255, 255, 255, 0);
  1185. border:none;
  1186. border-left:0px;
  1187. border-top:0px;
  1188. border-right:0px;
  1189. border-radius:0px;
  1190. border-bottom-right-radius:0px;
  1191. border-bottom-left-radius:0px;
  1192. -moz-box-shadow:none;
  1193. -webkit-box-shadow:none;
  1194. box-shadow:none;
  1195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1196. font-weight:400;
  1197. font-style:normal;
  1198. font-size:14px;
  1199. }
  1200. #u45615 {
  1201. border-width:0px;
  1202. position:absolute;
  1203. left:514px;
  1204. top:799px;
  1205. width:93px;
  1206. height:20px;
  1207. display:flex;
  1208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1209. font-weight:400;
  1210. font-style:normal;
  1211. font-size:14px;
  1212. }
  1213. #u45615 .text {
  1214. position:absolute;
  1215. align-self:center;
  1216. padding:0px 0px 0px 0px;
  1217. box-sizing:border-box;
  1218. width:100%;
  1219. }
  1220. #u45615_text {
  1221. border-width:0px;
  1222. white-space:nowrap;
  1223. text-transform:none;
  1224. }
  1225. #u45616_div {
  1226. border-width:0px;
  1227. position:absolute;
  1228. left:0px;
  1229. top:0px;
  1230. width:6px;
  1231. height:6px;
  1232. background:inherit;
  1233. background-color:rgba(255, 255, 255, 0);
  1234. box-sizing:border-box;
  1235. border-width:1px;
  1236. border-style:solid;
  1237. border-color:rgba(0, 191, 191, 1);
  1238. border-right:0px;
  1239. border-bottom:0px;
  1240. border-radius:0px;
  1241. border-top-right-radius:0px;
  1242. border-bottom-left-radius:0px;
  1243. -moz-box-shadow:none;
  1244. -webkit-box-shadow:none;
  1245. box-shadow:none;
  1246. }
  1247. #u45616 {
  1248. border-width:0px;
  1249. position:absolute;
  1250. left:613px;
  1251. top:808px;
  1252. width:6px;
  1253. height:6px;
  1254. display:flex;
  1255. -webkit-transform:rotate(45deg);
  1256. -moz-transform:rotate(45deg);
  1257. -ms-transform:rotate(45deg);
  1258. transform:rotate(45deg);
  1259. }
  1260. #u45616 .text {
  1261. position:absolute;
  1262. align-self:center;
  1263. padding:2px 2px 2px 2px;
  1264. box-sizing:border-box;
  1265. width:100%;
  1266. }
  1267. #u45616_text {
  1268. border-width:0px;
  1269. word-wrap:break-word;
  1270. text-transform:none;
  1271. visibility:hidden;
  1272. }
  1273. #u45617_div {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:0px;
  1277. top:0px;
  1278. width:109px;
  1279. height:25px;
  1280. background:inherit;
  1281. background-color:rgba(255, 255, 255, 0);
  1282. border:none;
  1283. border-radius:0px;
  1284. -moz-box-shadow:none;
  1285. -webkit-box-shadow:none;
  1286. box-shadow:none;
  1287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1288. font-weight:400;
  1289. font-style:normal;
  1290. font-size:18px;
  1291. color:#AAAAAA;
  1292. text-align:center;
  1293. }
  1294. #u45617 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:627px;
  1298. top:547px;
  1299. width:109px;
  1300. height:25px;
  1301. display:flex;
  1302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1303. font-weight:400;
  1304. font-style:normal;
  1305. font-size:18px;
  1306. color:#AAAAAA;
  1307. text-align:center;
  1308. }
  1309. #u45617 .text {
  1310. position:absolute;
  1311. align-self:flex-start;
  1312. padding:0px 0px 0px 0px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u45617_text {
  1317. border-width:0px;
  1318. white-space:nowrap;
  1319. text-transform:none;
  1320. }
  1321. #u45619_img {
  1322. border-width:0px;
  1323. position:absolute;
  1324. left:0px;
  1325. top:0px;
  1326. width:433px;
  1327. height:865px;
  1328. }
  1329. #u45619 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:930px;
  1333. top:0px;
  1334. width:433px;
  1335. height:865px;
  1336. display:flex;
  1337. }
  1338. #u45619 .text {
  1339. position:absolute;
  1340. align-self:center;
  1341. padding:2px 2px 2px 2px;
  1342. box-sizing:border-box;
  1343. width:100%;
  1344. }
  1345. #u45619_text {
  1346. border-width:0px;
  1347. word-wrap:break-word;
  1348. text-transform:none;
  1349. visibility:hidden;
  1350. }
  1351. #u45620_div {
  1352. border-width:0px;
  1353. position:absolute;
  1354. left:0px;
  1355. top:0px;
  1356. width:375px;
  1357. height:40px;
  1358. background:inherit;
  1359. background-color:rgba(255, 255, 255, 1);
  1360. box-sizing:border-box;
  1361. border-width:1px;
  1362. border-style:solid;
  1363. border-color:rgba(215, 215, 215, 1);
  1364. border-left:0px;
  1365. border-top:0px;
  1366. border-right:0px;
  1367. border-radius:0px;
  1368. border-bottom-right-radius:0px;
  1369. border-bottom-left-radius:0px;
  1370. -moz-box-shadow:none;
  1371. -webkit-box-shadow:none;
  1372. box-shadow:none;
  1373. }
  1374. #u45620 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:959px;
  1378. top:67px;
  1379. width:375px;
  1380. height:40px;
  1381. display:flex;
  1382. }
  1383. #u45620 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u45620_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u45621_img {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:375px;
  1402. height:44px;
  1403. }
  1404. #u45621 {
  1405. border-width:0px;
  1406. position:absolute;
  1407. left:959px;
  1408. top:24px;
  1409. width:375px;
  1410. height:44px;
  1411. display:flex;
  1412. }
  1413. #u45621 .text {
  1414. position:absolute;
  1415. align-self:center;
  1416. padding:2px 2px 2px 2px;
  1417. box-sizing:border-box;
  1418. width:100%;
  1419. }
  1420. #u45621_text {
  1421. border-width:0px;
  1422. word-wrap:break-word;
  1423. text-transform:none;
  1424. visibility:hidden;
  1425. }
  1426. #u45622_div {
  1427. border-width:0px;
  1428. position:absolute;
  1429. left:0px;
  1430. top:0px;
  1431. width:375px;
  1432. height:681px;
  1433. background:inherit;
  1434. background-color:rgba(242, 242, 242, 0.462745098039216);
  1435. border:none;
  1436. border-radius:0px;
  1437. -moz-box-shadow:none;
  1438. -webkit-box-shadow:none;
  1439. box-shadow:none;
  1440. }
  1441. #u45622 {
  1442. border-width:0px;
  1443. position:absolute;
  1444. left:959px;
  1445. top:107px;
  1446. width:375px;
  1447. height:681px;
  1448. display:flex;
  1449. }
  1450. #u45622 .text {
  1451. position:absolute;
  1452. align-self:center;
  1453. padding:2px 2px 2px 2px;
  1454. box-sizing:border-box;
  1455. width:100%;
  1456. }
  1457. #u45622_text {
  1458. border-width:0px;
  1459. word-wrap:break-word;
  1460. text-transform:none;
  1461. visibility:hidden;
  1462. }
  1463. #u45623_div {
  1464. border-width:0px;
  1465. position:absolute;
  1466. left:0px;
  1467. top:0px;
  1468. width:375px;
  1469. height:732px;
  1470. background:inherit;
  1471. background-color:rgba(255, 255, 255, 0.996078431372549);
  1472. border:none;
  1473. border-top:0px;
  1474. border-radius:28px;
  1475. border-top-left-radius:0px;
  1476. border-top-right-radius:0px;
  1477. -moz-box-shadow:none;
  1478. -webkit-box-shadow:none;
  1479. box-shadow:none;
  1480. }
  1481. #u45623 {
  1482. border-width:0px;
  1483. position:absolute;
  1484. left:959px;
  1485. top:107px;
  1486. width:375px;
  1487. height:732px;
  1488. display:flex;
  1489. }
  1490. #u45623 .text {
  1491. position:absolute;
  1492. align-self:center;
  1493. padding:2px 2px 2px 2px;
  1494. box-sizing:border-box;
  1495. width:100%;
  1496. }
  1497. #u45623_text {
  1498. border-width:0px;
  1499. word-wrap:break-word;
  1500. text-transform:none;
  1501. visibility:hidden;
  1502. }
  1503. #u45624_div {
  1504. border-width:0px;
  1505. position:absolute;
  1506. left:0px;
  1507. top:0px;
  1508. width:73px;
  1509. height:25px;
  1510. background:inherit;
  1511. background-color:rgba(255, 255, 255, 0);
  1512. border:none;
  1513. border-radius:0px;
  1514. -moz-box-shadow:none;
  1515. -webkit-box-shadow:none;
  1516. box-shadow:none;
  1517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1518. font-weight:400;
  1519. font-style:normal;
  1520. font-size:18px;
  1521. color:#000000;
  1522. text-align:center;
  1523. }
  1524. #u45624 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:1110px;
  1528. top:75px;
  1529. width:73px;
  1530. height:25px;
  1531. display:flex;
  1532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1533. font-weight:400;
  1534. font-style:normal;
  1535. font-size:18px;
  1536. color:#000000;
  1537. text-align:center;
  1538. }
  1539. #u45624 .text {
  1540. position:absolute;
  1541. align-self:flex-start;
  1542. padding:0px 0px 0px 0px;
  1543. box-sizing:border-box;
  1544. width:100%;
  1545. }
  1546. #u45624_text {
  1547. border-width:0px;
  1548. white-space:nowrap;
  1549. text-transform:none;
  1550. }
  1551. #u45625_img {
  1552. border-width:0px;
  1553. position:absolute;
  1554. left:0px;
  1555. top:0px;
  1556. width:10px;
  1557. height:18px;
  1558. }
  1559. #u45625 {
  1560. border-width:0px;
  1561. position:absolute;
  1562. left:969px;
  1563. top:77px;
  1564. width:10px;
  1565. height:18px;
  1566. display:flex;
  1567. }
  1568. #u45625 .text {
  1569. position:absolute;
  1570. align-self:center;
  1571. padding:2px 2px 2px 2px;
  1572. box-sizing:border-box;
  1573. width:100%;
  1574. }
  1575. #u45625_text {
  1576. border-width:0px;
  1577. word-wrap:break-word;
  1578. text-transform:none;
  1579. visibility:hidden;
  1580. }
  1581. #u45626_img {
  1582. border-width:0px;
  1583. position:absolute;
  1584. left:0px;
  1585. top:0px;
  1586. width:265px;
  1587. height:265px;
  1588. }
  1589. #u45626 {
  1590. border-width:0px;
  1591. position:absolute;
  1592. left:1014px;
  1593. top:263px;
  1594. width:265px;
  1595. height:265px;
  1596. display:flex;
  1597. font-size:58px;
  1598. color:#FFFFFF;
  1599. }
  1600. #u45626 .text {
  1601. position:absolute;
  1602. align-self:center;
  1603. padding:2px 2px 2px 2px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u45626_text {
  1608. border-width:0px;
  1609. word-wrap:break-word;
  1610. text-transform:none;
  1611. }
  1612. #u45627_div {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:160px;
  1618. height:40px;
  1619. background:inherit;
  1620. background-color:rgba(242, 242, 242, 1);
  1621. border:none;
  1622. border-radius:81px;
  1623. -moz-box-shadow:none;
  1624. -webkit-box-shadow:none;
  1625. box-shadow:none;
  1626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1627. font-weight:400;
  1628. font-style:normal;
  1629. font-size:14px;
  1630. color:#7F7F7F;
  1631. }
  1632. #u45627 {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:977px;
  1636. top:124px;
  1637. width:160px;
  1638. height:40px;
  1639. display:flex;
  1640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1641. font-weight:400;
  1642. font-style:normal;
  1643. font-size:14px;
  1644. color:#7F7F7F;
  1645. }
  1646. #u45627 .text {
  1647. position:absolute;
  1648. align-self:center;
  1649. padding:2px 2px 2px 2px;
  1650. box-sizing:border-box;
  1651. width:100%;
  1652. }
  1653. #u45627_text {
  1654. border-width:0px;
  1655. word-wrap:break-word;
  1656. text-transform:none;
  1657. }
  1658. #u45628_div {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:0px;
  1662. top:0px;
  1663. width:160px;
  1664. height:40px;
  1665. background:inherit;
  1666. background-color:rgba(255, 255, 255, 1);
  1667. box-sizing:border-box;
  1668. border-width:1px;
  1669. border-style:solid;
  1670. border-color:rgba(24, 144, 255, 1);
  1671. border-radius:81px;
  1672. -moz-box-shadow:none;
  1673. -webkit-box-shadow:none;
  1674. box-shadow:none;
  1675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1676. font-weight:400;
  1677. font-style:normal;
  1678. font-size:14px;
  1679. color:#1890FF;
  1680. }
  1681. #u45628 {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:1157px;
  1685. top:124px;
  1686. width:160px;
  1687. height:40px;
  1688. display:flex;
  1689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1690. font-weight:400;
  1691. font-style:normal;
  1692. font-size:14px;
  1693. color:#1890FF;
  1694. }
  1695. #u45628 .text {
  1696. position:absolute;
  1697. align-self:center;
  1698. padding:2px 2px 2px 2px;
  1699. box-sizing:border-box;
  1700. width:100%;
  1701. }
  1702. #u45628_text {
  1703. border-width:0px;
  1704. word-wrap:break-word;
  1705. text-transform:none;
  1706. }
  1707. #u45629 {
  1708. border-width:0px;
  1709. position:absolute;
  1710. left:0px;
  1711. top:0px;
  1712. width:0px;
  1713. height:0px;
  1714. }
  1715. #u45630_div {
  1716. border-width:0px;
  1717. position:absolute;
  1718. left:0px;
  1719. top:0px;
  1720. width:375px;
  1721. height:60px;
  1722. background:inherit;
  1723. background-color:rgba(255, 255, 255, 1);
  1724. border:none;
  1725. border-top:0px;
  1726. border-radius:28px;
  1727. border-top-left-radius:0px;
  1728. border-top-right-radius:0px;
  1729. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1730. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1731. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1733. font-weight:400;
  1734. font-style:normal;
  1735. font-size:14px;
  1736. color:#FFFFFF;
  1737. }
  1738. #u45630 {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:959px;
  1742. top:779px;
  1743. width:375px;
  1744. height:60px;
  1745. display:flex;
  1746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1747. font-weight:400;
  1748. font-style:normal;
  1749. font-size:14px;
  1750. color:#FFFFFF;
  1751. }
  1752. #u45630 .text {
  1753. position:absolute;
  1754. align-self:center;
  1755. padding:2px 2px 2px 2px;
  1756. box-sizing:border-box;
  1757. width:100%;
  1758. }
  1759. #u45630_text {
  1760. border-width:0px;
  1761. word-wrap:break-word;
  1762. text-transform:none;
  1763. visibility:hidden;
  1764. }
  1765. #u45631_div {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:0px;
  1769. top:0px;
  1770. width:80px;
  1771. height:40px;
  1772. background:inherit;
  1773. background-color:rgba(24, 144, 255, 1);
  1774. border:none;
  1775. border-radius:27px;
  1776. -moz-box-shadow:none;
  1777. -webkit-box-shadow:none;
  1778. box-shadow:none;
  1779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1780. font-weight:400;
  1781. font-style:normal;
  1782. color:#FFFFFF;
  1783. text-align:center;
  1784. }
  1785. #u45631 {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:1239px;
  1789. top:789px;
  1790. width:80px;
  1791. height:40px;
  1792. display:flex;
  1793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1794. font-weight:400;
  1795. font-style:normal;
  1796. color:#FFFFFF;
  1797. text-align:center;
  1798. }
  1799. #u45631 .text {
  1800. position:absolute;
  1801. align-self:center;
  1802. padding:2px 3px 2px 3px;
  1803. box-sizing:border-box;
  1804. width:100%;
  1805. }
  1806. #u45631_text {
  1807. border-width:0px;
  1808. word-wrap:break-word;
  1809. text-transform:none;
  1810. }
  1811. #u45632 {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:0px;
  1815. top:0px;
  1816. width:0px;
  1817. height:0px;
  1818. }
  1819. #u45633 {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:0px;
  1825. height:0px;
  1826. }
  1827. #u45634_div {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:0px;
  1831. top:0px;
  1832. width:102px;
  1833. height:20px;
  1834. background:inherit;
  1835. background-color:rgba(255, 255, 255, 0);
  1836. border:none;
  1837. border-left:0px;
  1838. border-top:0px;
  1839. border-right:0px;
  1840. border-radius:0px;
  1841. border-bottom-right-radius:0px;
  1842. border-bottom-left-radius:0px;
  1843. -moz-box-shadow:none;
  1844. -webkit-box-shadow:none;
  1845. box-shadow:none;
  1846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1847. font-weight:400;
  1848. font-style:normal;
  1849. font-size:14px;
  1850. }
  1851. #u45634 {
  1852. border-width:0px;
  1853. position:absolute;
  1854. left:979px;
  1855. top:799px;
  1856. width:102px;
  1857. height:20px;
  1858. display:flex;
  1859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1860. font-weight:400;
  1861. font-style:normal;
  1862. font-size:14px;
  1863. }
  1864. #u45634 .text {
  1865. position:absolute;
  1866. align-self:center;
  1867. padding:0px 0px 0px 0px;
  1868. box-sizing:border-box;
  1869. width:100%;
  1870. }
  1871. #u45634_text {
  1872. border-width:0px;
  1873. white-space:nowrap;
  1874. text-transform:none;
  1875. }
  1876. #u45635_div {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:0px;
  1880. top:0px;
  1881. width:6px;
  1882. height:6px;
  1883. background:inherit;
  1884. background-color:rgba(255, 255, 255, 0);
  1885. box-sizing:border-box;
  1886. border-width:1px;
  1887. border-style:solid;
  1888. border-color:rgba(0, 191, 191, 1);
  1889. border-right:0px;
  1890. border-bottom:0px;
  1891. border-radius:0px;
  1892. border-top-right-radius:0px;
  1893. border-bottom-left-radius:0px;
  1894. -moz-box-shadow:none;
  1895. -webkit-box-shadow:none;
  1896. box-shadow:none;
  1897. }
  1898. #u45635 {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:1088px;
  1902. top:808px;
  1903. width:6px;
  1904. height:6px;
  1905. display:flex;
  1906. -webkit-transform:rotate(45deg);
  1907. -moz-transform:rotate(45deg);
  1908. -ms-transform:rotate(45deg);
  1909. transform:rotate(45deg);
  1910. }
  1911. #u45635 .text {
  1912. position:absolute;
  1913. align-self:center;
  1914. padding:2px 2px 2px 2px;
  1915. box-sizing:border-box;
  1916. width:100%;
  1917. }
  1918. #u45635_text {
  1919. border-width:0px;
  1920. word-wrap:break-word;
  1921. text-transform:none;
  1922. visibility:hidden;
  1923. }
  1924. #u45636_div {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:0px;
  1928. top:0px;
  1929. width:109px;
  1930. height:25px;
  1931. background:inherit;
  1932. background-color:rgba(255, 255, 255, 0);
  1933. border:none;
  1934. border-radius:0px;
  1935. -moz-box-shadow:none;
  1936. -webkit-box-shadow:none;
  1937. box-shadow:none;
  1938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1939. font-weight:400;
  1940. font-style:normal;
  1941. font-size:18px;
  1942. color:#AAAAAA;
  1943. text-align:center;
  1944. }
  1945. #u45636 {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:1092px;
  1949. top:547px;
  1950. width:109px;
  1951. height:25px;
  1952. display:flex;
  1953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1954. font-weight:400;
  1955. font-style:normal;
  1956. font-size:18px;
  1957. color:#AAAAAA;
  1958. text-align:center;
  1959. }
  1960. #u45636 .text {
  1961. position:absolute;
  1962. align-self:flex-start;
  1963. padding:0px 0px 0px 0px;
  1964. box-sizing:border-box;
  1965. width:100%;
  1966. }
  1967. #u45636_text {
  1968. border-width:0px;
  1969. white-space:nowrap;
  1970. text-transform:none;
  1971. }