styles.css 33 KB

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