styles.css 36 KB

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