styles.css 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:433px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u143_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u143 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u143 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u143_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u144_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. #u144 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u144 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u144_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u145_img {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:375px;
  100. height:44px;
  101. }
  102. #u145 {
  103. border-width:0px;
  104. position:absolute;
  105. left:29px;
  106. top:24px;
  107. width:375px;
  108. height:44px;
  109. display:flex;
  110. }
  111. #u145 .text {
  112. position:absolute;
  113. align-self:center;
  114. padding:2px 2px 2px 2px;
  115. box-sizing:border-box;
  116. width:100%;
  117. }
  118. #u145_text {
  119. border-width:0px;
  120. word-wrap:break-word;
  121. text-transform:none;
  122. visibility:hidden;
  123. }
  124. #u146_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. #u146 {
  140. border-width:0px;
  141. position:absolute;
  142. left:29px;
  143. top:107px;
  144. width:375px;
  145. height:681px;
  146. display:flex;
  147. }
  148. #u146 .text {
  149. position:absolute;
  150. align-self:center;
  151. padding:2px 2px 2px 2px;
  152. box-sizing:border-box;
  153. width:100%;
  154. }
  155. #u146_text {
  156. border-width:0px;
  157. word-wrap:break-word;
  158. text-transform:none;
  159. visibility:hidden;
  160. }
  161. #u147_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. #u147 {
  180. border-width:0px;
  181. position:absolute;
  182. left:29px;
  183. top:107px;
  184. width:375px;
  185. height:732px;
  186. display:flex;
  187. }
  188. #u147 .text {
  189. position:absolute;
  190. align-self:center;
  191. padding:2px 2px 2px 2px;
  192. box-sizing:border-box;
  193. width:100%;
  194. }
  195. #u147_text {
  196. border-width:0px;
  197. word-wrap:break-word;
  198. text-transform:none;
  199. visibility:hidden;
  200. }
  201. #u148_div {
  202. border-width:0px;
  203. position:absolute;
  204. left:0px;
  205. top:0px;
  206. width:8px;
  207. height:197px;
  208. background:inherit;
  209. background-color:rgba(51, 51, 51, 0.8);
  210. border:none;
  211. border-radius:63px;
  212. -moz-box-shadow:none;
  213. -webkit-box-shadow:none;
  214. box-shadow:none;
  215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  216. font-weight:400;
  217. font-style:normal;
  218. font-size:14px;
  219. color:#FFFFFF;
  220. }
  221. #u148 {
  222. border-width:0px;
  223. position:absolute;
  224. left:393px;
  225. top:316px;
  226. width:8px;
  227. height:197px;
  228. display:flex;
  229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  230. font-weight:400;
  231. font-style:normal;
  232. font-size:14px;
  233. color:#FFFFFF;
  234. }
  235. #u148 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u148_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u149 {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:0px;
  254. height:0px;
  255. }
  256. #u150_div {
  257. border-width:0px;
  258. position:absolute;
  259. left:0px;
  260. top:0px;
  261. width:91px;
  262. height:25px;
  263. background:inherit;
  264. background-color:rgba(255, 255, 255, 0);
  265. border:none;
  266. border-radius:0px;
  267. -moz-box-shadow:none;
  268. -webkit-box-shadow:none;
  269. box-shadow:none;
  270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  271. font-weight:400;
  272. font-style:normal;
  273. font-size:18px;
  274. color:#000000;
  275. }
  276. #u150 {
  277. border-width:0px;
  278. position:absolute;
  279. left:60px;
  280. top:75px;
  281. width:91px;
  282. height:25px;
  283. display:flex;
  284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  285. font-weight:400;
  286. font-style:normal;
  287. font-size:18px;
  288. color:#000000;
  289. }
  290. #u150 .text {
  291. position:absolute;
  292. align-self:flex-start;
  293. padding:0px 0px 0px 0px;
  294. box-sizing:border-box;
  295. width:100%;
  296. }
  297. #u150_text {
  298. border-width:0px;
  299. white-space:nowrap;
  300. text-transform:none;
  301. }
  302. #u151_img {
  303. border-width:0px;
  304. position:absolute;
  305. left:0px;
  306. top:0px;
  307. width:10px;
  308. height:18px;
  309. }
  310. #u151 {
  311. border-width:0px;
  312. position:absolute;
  313. left:39px;
  314. top:79px;
  315. width:10px;
  316. height:18px;
  317. display:flex;
  318. }
  319. #u151 .text {
  320. position:absolute;
  321. align-self:center;
  322. padding:2px 2px 2px 2px;
  323. box-sizing:border-box;
  324. width:100%;
  325. }
  326. #u151_text {
  327. border-width:0px;
  328. word-wrap:break-word;
  329. text-transform:none;
  330. visibility:hidden;
  331. }
  332. #u152 {
  333. border-width:0px;
  334. position:absolute;
  335. left:0px;
  336. top:0px;
  337. width:0px;
  338. height:0px;
  339. }
  340. #u153_div {
  341. border-width:0px;
  342. position:absolute;
  343. left:0px;
  344. top:0px;
  345. width:355px;
  346. height:50px;
  347. background:inherit;
  348. background-color:rgba(255, 255, 255, 1);
  349. border:none;
  350. border-left:0px;
  351. border-top:0px;
  352. border-right:0px;
  353. border-radius:0px;
  354. border-bottom-right-radius:0px;
  355. border-bottom-left-radius:0px;
  356. -moz-box-shadow:none;
  357. -webkit-box-shadow:none;
  358. box-shadow:none;
  359. }
  360. #u153 {
  361. border-width:0px;
  362. position:absolute;
  363. left:39px;
  364. top:657px;
  365. width:355px;
  366. height:50px;
  367. display:flex;
  368. }
  369. #u153 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u153_text {
  377. border-width:0px;
  378. word-wrap:break-word;
  379. text-transform:none;
  380. visibility:hidden;
  381. }
  382. #u154_div {
  383. border-width:0px;
  384. position:absolute;
  385. left:0px;
  386. top:0px;
  387. width:57px;
  388. height:30px;
  389. background:inherit;
  390. background-color:rgba(255, 255, 255, 0);
  391. border:none;
  392. border-left:0px;
  393. border-top:0px;
  394. border-right:0px;
  395. border-radius:0px;
  396. border-bottom-right-radius:0px;
  397. border-bottom-left-radius:0px;
  398. -moz-box-shadow:none;
  399. -webkit-box-shadow:none;
  400. box-shadow:none;
  401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  402. font-weight:400;
  403. font-style:normal;
  404. font-size:14px;
  405. line-height:30px;
  406. }
  407. #u154 {
  408. border-width:0px;
  409. position:absolute;
  410. left:92px;
  411. top:667px;
  412. width:57px;
  413. height:30px;
  414. display:flex;
  415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  416. font-weight:400;
  417. font-style:normal;
  418. font-size:14px;
  419. line-height:30px;
  420. }
  421. #u154 .text {
  422. position:absolute;
  423. align-self:flex-start;
  424. padding:0px 0px 0px 0px;
  425. box-sizing:border-box;
  426. width:100%;
  427. }
  428. #u154_text {
  429. border-width:0px;
  430. white-space:nowrap;
  431. text-transform:none;
  432. }
  433. #u155_img {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:20px;
  439. height:20px;
  440. }
  441. #u155 {
  442. border-width:0px;
  443. position:absolute;
  444. left:60px;
  445. top:672px;
  446. width:20px;
  447. height:20px;
  448. display:flex;
  449. }
  450. #u155 .text {
  451. position:absolute;
  452. align-self:center;
  453. padding:2px 2px 2px 2px;
  454. box-sizing:border-box;
  455. width:100%;
  456. }
  457. #u155_text {
  458. border-width:0px;
  459. word-wrap:break-word;
  460. text-transform:none;
  461. visibility:hidden;
  462. }
  463. #u156 {
  464. border-width:0px;
  465. position:absolute;
  466. left:0px;
  467. top:0px;
  468. width:0px;
  469. height:0px;
  470. }
  471. #u157_div {
  472. border-width:0px;
  473. position:absolute;
  474. left:0px;
  475. top:0px;
  476. width:355px;
  477. height:80px;
  478. background:inherit;
  479. background-color:rgba(255, 255, 255, 1);
  480. border:none;
  481. border-radius:4px;
  482. -moz-box-shadow:none;
  483. -webkit-box-shadow:none;
  484. box-shadow:none;
  485. }
  486. #u157 {
  487. border-width:0px;
  488. position:absolute;
  489. left:39px;
  490. top:117px;
  491. width:355px;
  492. height:80px;
  493. display:flex;
  494. }
  495. #u157 .text {
  496. position:absolute;
  497. align-self:center;
  498. padding:2px 2px 2px 2px;
  499. box-sizing:border-box;
  500. width:100%;
  501. }
  502. #u157_text {
  503. border-width:0px;
  504. word-wrap:break-word;
  505. text-transform:none;
  506. visibility:hidden;
  507. }
  508. #u158_div {
  509. border-width:0px;
  510. position:absolute;
  511. left:0px;
  512. top:0px;
  513. width:43px;
  514. height:30px;
  515. background:inherit;
  516. background-color:rgba(255, 255, 255, 0);
  517. border:none;
  518. border-left:0px;
  519. border-top:0px;
  520. border-right:0px;
  521. border-radius:0px;
  522. border-bottom-right-radius:0px;
  523. border-bottom-left-radius:0px;
  524. -moz-box-shadow:none;
  525. -webkit-box-shadow:none;
  526. box-shadow:none;
  527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  528. font-weight:400;
  529. font-style:normal;
  530. font-size:14px;
  531. line-height:30px;
  532. }
  533. #u158 {
  534. border-width:0px;
  535. position:absolute;
  536. left:98px;
  537. top:132px;
  538. width:43px;
  539. height:30px;
  540. display:flex;
  541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  542. font-weight:400;
  543. font-style:normal;
  544. font-size:14px;
  545. line-height:30px;
  546. }
  547. #u158 .text {
  548. position:absolute;
  549. align-self:flex-start;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u158_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u159_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:29px;
  565. height:29px;
  566. }
  567. #u159 {
  568. border-width:0px;
  569. position:absolute;
  570. left:59px;
  571. top:132px;
  572. width:29px;
  573. height:29px;
  574. display:flex;
  575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  576. font-weight:400;
  577. font-style:normal;
  578. font-size:10px;
  579. color:#FFFFFF;
  580. }
  581. #u159 .text {
  582. position:absolute;
  583. align-self:center;
  584. padding:2px 2px 2px 2px;
  585. box-sizing:border-box;
  586. width:100%;
  587. }
  588. #u159_text {
  589. border-width:0px;
  590. word-wrap:break-word;
  591. text-transform:none;
  592. }
  593. #u160_div {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:78px;
  599. height:30px;
  600. background:inherit;
  601. background-color:rgba(255, 255, 255, 0);
  602. border:none;
  603. border-left:0px;
  604. border-top:0px;
  605. border-right:0px;
  606. border-radius:0px;
  607. border-bottom-right-radius:0px;
  608. border-bottom-left-radius:0px;
  609. -moz-box-shadow:none;
  610. -webkit-box-shadow:none;
  611. box-shadow:none;
  612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  613. font-weight:400;
  614. font-style:normal;
  615. font-size:12px;
  616. color:#7F7F7F;
  617. line-height:30px;
  618. }
  619. #u160 {
  620. border-width:0px;
  621. position:absolute;
  622. left:141px;
  623. top:157px;
  624. width:78px;
  625. height:30px;
  626. display:flex;
  627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  628. font-weight:400;
  629. font-style:normal;
  630. font-size:12px;
  631. color:#7F7F7F;
  632. line-height:30px;
  633. }
  634. #u160 .text {
  635. position:absolute;
  636. align-self:flex-start;
  637. padding:0px 0px 0px 0px;
  638. box-sizing:border-box;
  639. width:100%;
  640. }
  641. #u160_text {
  642. border-width:0px;
  643. white-space:nowrap;
  644. text-transform:none;
  645. }
  646. #u161_div {
  647. border-width:0px;
  648. position:absolute;
  649. left:0px;
  650. top:0px;
  651. width:25px;
  652. height:30px;
  653. background:inherit;
  654. background-color:rgba(255, 255, 255, 0);
  655. border:none;
  656. border-left:0px;
  657. border-top:0px;
  658. border-right:0px;
  659. border-radius:0px;
  660. border-bottom-right-radius:0px;
  661. border-bottom-left-radius:0px;
  662. -moz-box-shadow:none;
  663. -webkit-box-shadow:none;
  664. box-shadow:none;
  665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  666. font-weight:400;
  667. font-style:normal;
  668. font-size:12px;
  669. color:#7F7F7F;
  670. line-height:30px;
  671. }
  672. #u161 {
  673. border-width:0px;
  674. position:absolute;
  675. left:239px;
  676. top:157px;
  677. width:25px;
  678. height:30px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. color:#7F7F7F;
  685. line-height:30px;
  686. }
  687. #u161 .text {
  688. position:absolute;
  689. align-self:flex-start;
  690. padding:0px 0px 0px 0px;
  691. box-sizing:border-box;
  692. width:100%;
  693. }
  694. #u161_text {
  695. border-width:0px;
  696. white-space:nowrap;
  697. text-transform:none;
  698. }
  699. #u162_div {
  700. border-width:0px;
  701. position:absolute;
  702. left:0px;
  703. top:0px;
  704. width:25px;
  705. height:30px;
  706. background:inherit;
  707. background-color:rgba(255, 255, 255, 0);
  708. border:none;
  709. border-left:0px;
  710. border-top:0px;
  711. border-right:0px;
  712. border-radius:0px;
  713. border-bottom-right-radius:0px;
  714. border-bottom-left-radius:0px;
  715. -moz-box-shadow:none;
  716. -webkit-box-shadow:none;
  717. box-shadow:none;
  718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  719. font-weight:400;
  720. font-style:normal;
  721. font-size:12px;
  722. color:#7F7F7F;
  723. line-height:30px;
  724. }
  725. #u162 {
  726. border-width:0px;
  727. position:absolute;
  728. left:98px;
  729. top:157px;
  730. width:25px;
  731. height:30px;
  732. display:flex;
  733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  734. font-weight:400;
  735. font-style:normal;
  736. font-size:12px;
  737. color:#7F7F7F;
  738. line-height:30px;
  739. }
  740. #u162 .text {
  741. position:absolute;
  742. align-self:flex-start;
  743. padding:0px 0px 0px 0px;
  744. box-sizing:border-box;
  745. width:100%;
  746. }
  747. #u162_text {
  748. border-width:0px;
  749. white-space:nowrap;
  750. text-transform:none;
  751. }
  752. #u163_div {
  753. border-width:0px;
  754. position:absolute;
  755. left:0px;
  756. top:0px;
  757. width:48px;
  758. height:25px;
  759. background:inherit;
  760. background-color:rgba(255, 255, 255, 1);
  761. box-sizing:border-box;
  762. border-width:1px;
  763. border-style:solid;
  764. border-color:rgba(215, 215, 215, 1);
  765. border-radius:63px;
  766. -moz-box-shadow:none;
  767. -webkit-box-shadow:none;
  768. box-shadow:none;
  769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  770. font-weight:400;
  771. font-style:normal;
  772. font-size:11px;
  773. }
  774. #u163 {
  775. border-width:0px;
  776. position:absolute;
  777. left:336px;
  778. top:134px;
  779. width:48px;
  780. height:25px;
  781. display:flex;
  782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  783. font-weight:400;
  784. font-style:normal;
  785. font-size:11px;
  786. }
  787. #u163 .text {
  788. position:absolute;
  789. align-self:center;
  790. padding:2px 2px 2px 2px;
  791. box-sizing:border-box;
  792. width:100%;
  793. }
  794. #u163_text {
  795. border-width:0px;
  796. word-wrap:break-word;
  797. text-transform:none;
  798. }
  799. #u164 {
  800. border-width:0px;
  801. position:absolute;
  802. left:0px;
  803. top:0px;
  804. width:0px;
  805. height:0px;
  806. }
  807. #u165_div {
  808. border-width:0px;
  809. position:absolute;
  810. left:0px;
  811. top:0px;
  812. width:355px;
  813. height:80px;
  814. background:inherit;
  815. background-color:rgba(255, 255, 255, 1);
  816. border:none;
  817. border-radius:4px;
  818. -moz-box-shadow:none;
  819. -webkit-box-shadow:none;
  820. box-shadow:none;
  821. }
  822. #u165 {
  823. border-width:0px;
  824. position:absolute;
  825. left:39px;
  826. top:207px;
  827. width:355px;
  828. height:80px;
  829. display:flex;
  830. }
  831. #u165 .text {
  832. position:absolute;
  833. align-self:center;
  834. padding:2px 2px 2px 2px;
  835. box-sizing:border-box;
  836. width:100%;
  837. }
  838. #u165_text {
  839. border-width:0px;
  840. word-wrap:break-word;
  841. text-transform:none;
  842. visibility:hidden;
  843. }
  844. #u166_div {
  845. border-width:0px;
  846. position:absolute;
  847. left:0px;
  848. top:0px;
  849. width:43px;
  850. height:30px;
  851. background:inherit;
  852. background-color:rgba(255, 255, 255, 0);
  853. border:none;
  854. border-left:0px;
  855. border-top:0px;
  856. border-right:0px;
  857. border-radius:0px;
  858. border-bottom-right-radius:0px;
  859. border-bottom-left-radius:0px;
  860. -moz-box-shadow:none;
  861. -webkit-box-shadow:none;
  862. box-shadow:none;
  863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  864. font-weight:400;
  865. font-style:normal;
  866. font-size:14px;
  867. line-height:30px;
  868. }
  869. #u166 {
  870. border-width:0px;
  871. position:absolute;
  872. left:98px;
  873. top:222px;
  874. width:43px;
  875. height:30px;
  876. display:flex;
  877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:14px;
  881. line-height:30px;
  882. }
  883. #u166 .text {
  884. position:absolute;
  885. align-self:flex-start;
  886. padding:0px 0px 0px 0px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u166_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u167_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:29px;
  901. height:29px;
  902. }
  903. #u167 {
  904. border-width:0px;
  905. position:absolute;
  906. left:59px;
  907. top:222px;
  908. width:29px;
  909. height:29px;
  910. display:flex;
  911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  912. font-weight:400;
  913. font-style:normal;
  914. font-size:10px;
  915. color:#FFFFFF;
  916. }
  917. #u167 .text {
  918. position:absolute;
  919. align-self:center;
  920. padding:2px 2px 2px 2px;
  921. box-sizing:border-box;
  922. width:100%;
  923. }
  924. #u167_text {
  925. border-width:0px;
  926. word-wrap:break-word;
  927. text-transform:none;
  928. }
  929. #u168_div {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:78px;
  935. height:30px;
  936. background:inherit;
  937. background-color:rgba(255, 255, 255, 0);
  938. border:none;
  939. border-left:0px;
  940. border-top:0px;
  941. border-right:0px;
  942. border-radius:0px;
  943. border-bottom-right-radius:0px;
  944. border-bottom-left-radius:0px;
  945. -moz-box-shadow:none;
  946. -webkit-box-shadow:none;
  947. box-shadow:none;
  948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  949. font-weight:400;
  950. font-style:normal;
  951. font-size:12px;
  952. color:#7F7F7F;
  953. line-height:30px;
  954. }
  955. #u168 {
  956. border-width:0px;
  957. position:absolute;
  958. left:141px;
  959. top:247px;
  960. width:78px;
  961. height:30px;
  962. display:flex;
  963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  964. font-weight:400;
  965. font-style:normal;
  966. font-size:12px;
  967. color:#7F7F7F;
  968. line-height:30px;
  969. }
  970. #u168 .text {
  971. position:absolute;
  972. align-self:flex-start;
  973. padding:0px 0px 0px 0px;
  974. box-sizing:border-box;
  975. width:100%;
  976. }
  977. #u168_text {
  978. border-width:0px;
  979. white-space:nowrap;
  980. text-transform:none;
  981. }
  982. #u169_div {
  983. border-width:0px;
  984. position:absolute;
  985. left:0px;
  986. top:0px;
  987. width:25px;
  988. height:30px;
  989. background:inherit;
  990. background-color:rgba(255, 255, 255, 0);
  991. border:none;
  992. border-left:0px;
  993. border-top:0px;
  994. border-right:0px;
  995. border-radius:0px;
  996. border-bottom-right-radius:0px;
  997. border-bottom-left-radius:0px;
  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:12px;
  1005. color:#7F7F7F;
  1006. line-height:30px;
  1007. }
  1008. #u169 {
  1009. border-width:0px;
  1010. position:absolute;
  1011. left:239px;
  1012. top:247px;
  1013. width:25px;
  1014. height:30px;
  1015. display:flex;
  1016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1017. font-weight:400;
  1018. font-style:normal;
  1019. font-size:12px;
  1020. color:#7F7F7F;
  1021. line-height:30px;
  1022. }
  1023. #u169 .text {
  1024. position:absolute;
  1025. align-self:flex-start;
  1026. padding:0px 0px 0px 0px;
  1027. box-sizing:border-box;
  1028. width:100%;
  1029. }
  1030. #u169_text {
  1031. border-width:0px;
  1032. white-space:nowrap;
  1033. text-transform:none;
  1034. }
  1035. #u170_div {
  1036. border-width:0px;
  1037. position:absolute;
  1038. left:0px;
  1039. top:0px;
  1040. width:25px;
  1041. height:30px;
  1042. background:inherit;
  1043. background-color:rgba(255, 255, 255, 0);
  1044. border:none;
  1045. border-left:0px;
  1046. border-top:0px;
  1047. border-right:0px;
  1048. border-radius:0px;
  1049. border-bottom-right-radius:0px;
  1050. border-bottom-left-radius:0px;
  1051. -moz-box-shadow:none;
  1052. -webkit-box-shadow:none;
  1053. box-shadow:none;
  1054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1055. font-weight:400;
  1056. font-style:normal;
  1057. font-size:12px;
  1058. color:#7F7F7F;
  1059. line-height:30px;
  1060. }
  1061. #u170 {
  1062. border-width:0px;
  1063. position:absolute;
  1064. left:98px;
  1065. top:247px;
  1066. width:25px;
  1067. height:30px;
  1068. display:flex;
  1069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1070. font-weight:400;
  1071. font-style:normal;
  1072. font-size:12px;
  1073. color:#7F7F7F;
  1074. line-height:30px;
  1075. }
  1076. #u170 .text {
  1077. position:absolute;
  1078. align-self:flex-start;
  1079. padding:0px 0px 0px 0px;
  1080. box-sizing:border-box;
  1081. width:100%;
  1082. }
  1083. #u170_text {
  1084. border-width:0px;
  1085. white-space:nowrap;
  1086. text-transform:none;
  1087. }
  1088. #u171_div {
  1089. border-width:0px;
  1090. position:absolute;
  1091. left:0px;
  1092. top:0px;
  1093. width:48px;
  1094. height:25px;
  1095. background:inherit;
  1096. background-color:rgba(255, 255, 255, 1);
  1097. box-sizing:border-box;
  1098. border-width:1px;
  1099. border-style:solid;
  1100. border-color:rgba(215, 215, 215, 1);
  1101. border-radius:63px;
  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:11px;
  1109. }
  1110. #u171 {
  1111. border-width:0px;
  1112. position:absolute;
  1113. left:336px;
  1114. top:224px;
  1115. width:48px;
  1116. height:25px;
  1117. display:flex;
  1118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1119. font-weight:400;
  1120. font-style:normal;
  1121. font-size:11px;
  1122. }
  1123. #u171 .text {
  1124. position:absolute;
  1125. align-self:center;
  1126. padding:2px 2px 2px 2px;
  1127. box-sizing:border-box;
  1128. width:100%;
  1129. }
  1130. #u171_text {
  1131. border-width:0px;
  1132. word-wrap:break-word;
  1133. text-transform:none;
  1134. }
  1135. #u172 {
  1136. border-width:0px;
  1137. position:absolute;
  1138. left:0px;
  1139. top:0px;
  1140. width:0px;
  1141. height:0px;
  1142. }
  1143. #u173_div {
  1144. border-width:0px;
  1145. position:absolute;
  1146. left:0px;
  1147. top:0px;
  1148. width:355px;
  1149. height:80px;
  1150. background:inherit;
  1151. background-color:rgba(255, 255, 255, 1);
  1152. border:none;
  1153. border-radius:4px;
  1154. -moz-box-shadow:none;
  1155. -webkit-box-shadow:none;
  1156. box-shadow:none;
  1157. }
  1158. #u173 {
  1159. border-width:0px;
  1160. position:absolute;
  1161. left:39px;
  1162. top:297px;
  1163. width:355px;
  1164. height:80px;
  1165. display:flex;
  1166. }
  1167. #u173 .text {
  1168. position:absolute;
  1169. align-self:center;
  1170. padding:2px 2px 2px 2px;
  1171. box-sizing:border-box;
  1172. width:100%;
  1173. }
  1174. #u173_text {
  1175. border-width:0px;
  1176. word-wrap:break-word;
  1177. text-transform:none;
  1178. visibility:hidden;
  1179. }
  1180. #u174_div {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:43px;
  1186. height:30px;
  1187. background:inherit;
  1188. background-color:rgba(255, 255, 255, 0);
  1189. border:none;
  1190. border-left:0px;
  1191. border-top:0px;
  1192. border-right:0px;
  1193. border-radius:0px;
  1194. border-bottom-right-radius:0px;
  1195. border-bottom-left-radius:0px;
  1196. -moz-box-shadow:none;
  1197. -webkit-box-shadow:none;
  1198. box-shadow:none;
  1199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1200. font-weight:400;
  1201. font-style:normal;
  1202. font-size:14px;
  1203. line-height:30px;
  1204. }
  1205. #u174 {
  1206. border-width:0px;
  1207. position:absolute;
  1208. left:98px;
  1209. top:312px;
  1210. width:43px;
  1211. height:30px;
  1212. display:flex;
  1213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1214. font-weight:400;
  1215. font-style:normal;
  1216. font-size:14px;
  1217. line-height:30px;
  1218. }
  1219. #u174 .text {
  1220. position:absolute;
  1221. align-self:flex-start;
  1222. padding:0px 0px 0px 0px;
  1223. box-sizing:border-box;
  1224. width:100%;
  1225. }
  1226. #u174_text {
  1227. border-width:0px;
  1228. white-space:nowrap;
  1229. text-transform:none;
  1230. }
  1231. #u175_img {
  1232. border-width:0px;
  1233. position:absolute;
  1234. left:0px;
  1235. top:0px;
  1236. width:29px;
  1237. height:29px;
  1238. }
  1239. #u175 {
  1240. border-width:0px;
  1241. position:absolute;
  1242. left:59px;
  1243. top:312px;
  1244. width:29px;
  1245. height:29px;
  1246. display:flex;
  1247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1248. font-weight:400;
  1249. font-style:normal;
  1250. font-size:10px;
  1251. color:#FFFFFF;
  1252. }
  1253. #u175 .text {
  1254. position:absolute;
  1255. align-self:center;
  1256. padding:2px 2px 2px 2px;
  1257. box-sizing:border-box;
  1258. width:100%;
  1259. }
  1260. #u175_text {
  1261. border-width:0px;
  1262. word-wrap:break-word;
  1263. text-transform:none;
  1264. }
  1265. #u176_div {
  1266. border-width:0px;
  1267. position:absolute;
  1268. left:0px;
  1269. top:0px;
  1270. width:78px;
  1271. height:30px;
  1272. background:inherit;
  1273. background-color:rgba(255, 255, 255, 0);
  1274. border:none;
  1275. border-left:0px;
  1276. border-top:0px;
  1277. border-right:0px;
  1278. border-radius:0px;
  1279. border-bottom-right-radius:0px;
  1280. border-bottom-left-radius:0px;
  1281. -moz-box-shadow:none;
  1282. -webkit-box-shadow:none;
  1283. box-shadow:none;
  1284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1285. font-weight:400;
  1286. font-style:normal;
  1287. font-size:12px;
  1288. color:#7F7F7F;
  1289. line-height:30px;
  1290. }
  1291. #u176 {
  1292. border-width:0px;
  1293. position:absolute;
  1294. left:141px;
  1295. top:337px;
  1296. width:78px;
  1297. height:30px;
  1298. display:flex;
  1299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1300. font-weight:400;
  1301. font-style:normal;
  1302. font-size:12px;
  1303. color:#7F7F7F;
  1304. line-height:30px;
  1305. }
  1306. #u176 .text {
  1307. position:absolute;
  1308. align-self:flex-start;
  1309. padding:0px 0px 0px 0px;
  1310. box-sizing:border-box;
  1311. width:100%;
  1312. }
  1313. #u176_text {
  1314. border-width:0px;
  1315. white-space:nowrap;
  1316. text-transform:none;
  1317. }
  1318. #u177_div {
  1319. border-width:0px;
  1320. position:absolute;
  1321. left:0px;
  1322. top:0px;
  1323. width:25px;
  1324. height:30px;
  1325. background:inherit;
  1326. background-color:rgba(255, 255, 255, 0);
  1327. border:none;
  1328. border-left:0px;
  1329. border-top:0px;
  1330. border-right:0px;
  1331. border-radius:0px;
  1332. border-bottom-right-radius:0px;
  1333. border-bottom-left-radius:0px;
  1334. -moz-box-shadow:none;
  1335. -webkit-box-shadow:none;
  1336. box-shadow:none;
  1337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1338. font-weight:400;
  1339. font-style:normal;
  1340. font-size:12px;
  1341. color:#7F7F7F;
  1342. line-height:30px;
  1343. }
  1344. #u177 {
  1345. border-width:0px;
  1346. position:absolute;
  1347. left:239px;
  1348. top:337px;
  1349. width:25px;
  1350. height:30px;
  1351. display:flex;
  1352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1353. font-weight:400;
  1354. font-style:normal;
  1355. font-size:12px;
  1356. color:#7F7F7F;
  1357. line-height:30px;
  1358. }
  1359. #u177 .text {
  1360. position:absolute;
  1361. align-self:flex-start;
  1362. padding:0px 0px 0px 0px;
  1363. box-sizing:border-box;
  1364. width:100%;
  1365. }
  1366. #u177_text {
  1367. border-width:0px;
  1368. white-space:nowrap;
  1369. text-transform:none;
  1370. }
  1371. #u178_div {
  1372. border-width:0px;
  1373. position:absolute;
  1374. left:0px;
  1375. top:0px;
  1376. width:25px;
  1377. height:30px;
  1378. background:inherit;
  1379. background-color:rgba(255, 255, 255, 0);
  1380. border:none;
  1381. border-left:0px;
  1382. border-top:0px;
  1383. border-right:0px;
  1384. border-radius:0px;
  1385. border-bottom-right-radius:0px;
  1386. border-bottom-left-radius:0px;
  1387. -moz-box-shadow:none;
  1388. -webkit-box-shadow:none;
  1389. box-shadow:none;
  1390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1391. font-weight:400;
  1392. font-style:normal;
  1393. font-size:12px;
  1394. color:#7F7F7F;
  1395. line-height:30px;
  1396. }
  1397. #u178 {
  1398. border-width:0px;
  1399. position:absolute;
  1400. left:98px;
  1401. top:337px;
  1402. width:25px;
  1403. height:30px;
  1404. display:flex;
  1405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1406. font-weight:400;
  1407. font-style:normal;
  1408. font-size:12px;
  1409. color:#7F7F7F;
  1410. line-height:30px;
  1411. }
  1412. #u178 .text {
  1413. position:absolute;
  1414. align-self:flex-start;
  1415. padding:0px 0px 0px 0px;
  1416. box-sizing:border-box;
  1417. width:100%;
  1418. }
  1419. #u178_text {
  1420. border-width:0px;
  1421. white-space:nowrap;
  1422. text-transform:none;
  1423. }
  1424. #u179_div {
  1425. border-width:0px;
  1426. position:absolute;
  1427. left:0px;
  1428. top:0px;
  1429. width:48px;
  1430. height:25px;
  1431. background:inherit;
  1432. background-color:rgba(255, 255, 255, 1);
  1433. box-sizing:border-box;
  1434. border-width:1px;
  1435. border-style:solid;
  1436. border-color:rgba(215, 215, 215, 1);
  1437. border-radius:63px;
  1438. -moz-box-shadow:none;
  1439. -webkit-box-shadow:none;
  1440. box-shadow:none;
  1441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1442. font-weight:400;
  1443. font-style:normal;
  1444. font-size:11px;
  1445. }
  1446. #u179 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:336px;
  1450. top:314px;
  1451. width:48px;
  1452. height:25px;
  1453. display:flex;
  1454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1455. font-weight:400;
  1456. font-style:normal;
  1457. font-size:11px;
  1458. }
  1459. #u179 .text {
  1460. position:absolute;
  1461. align-self:center;
  1462. padding:2px 2px 2px 2px;
  1463. box-sizing:border-box;
  1464. width:100%;
  1465. }
  1466. #u179_text {
  1467. border-width:0px;
  1468. word-wrap:break-word;
  1469. text-transform:none;
  1470. }
  1471. #u180 {
  1472. border-width:0px;
  1473. position:absolute;
  1474. left:0px;
  1475. top:0px;
  1476. width:0px;
  1477. height:0px;
  1478. }
  1479. #u181_div {
  1480. border-width:0px;
  1481. position:absolute;
  1482. left:0px;
  1483. top:0px;
  1484. width:355px;
  1485. height:80px;
  1486. background:inherit;
  1487. background-color:rgba(255, 255, 255, 1);
  1488. border:none;
  1489. border-radius:4px;
  1490. -moz-box-shadow:none;
  1491. -webkit-box-shadow:none;
  1492. box-shadow:none;
  1493. }
  1494. #u181 {
  1495. border-width:0px;
  1496. position:absolute;
  1497. left:39px;
  1498. top:387px;
  1499. width:355px;
  1500. height:80px;
  1501. display:flex;
  1502. }
  1503. #u181 .text {
  1504. position:absolute;
  1505. align-self:center;
  1506. padding:2px 2px 2px 2px;
  1507. box-sizing:border-box;
  1508. width:100%;
  1509. }
  1510. #u181_text {
  1511. border-width:0px;
  1512. word-wrap:break-word;
  1513. text-transform:none;
  1514. visibility:hidden;
  1515. }
  1516. #u182_div {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:43px;
  1522. height:30px;
  1523. background:inherit;
  1524. background-color:rgba(255, 255, 255, 0);
  1525. border:none;
  1526. border-left:0px;
  1527. border-top:0px;
  1528. border-right:0px;
  1529. border-radius:0px;
  1530. border-bottom-right-radius:0px;
  1531. border-bottom-left-radius:0px;
  1532. -moz-box-shadow:none;
  1533. -webkit-box-shadow:none;
  1534. box-shadow:none;
  1535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1536. font-weight:400;
  1537. font-style:normal;
  1538. font-size:14px;
  1539. line-height:30px;
  1540. }
  1541. #u182 {
  1542. border-width:0px;
  1543. position:absolute;
  1544. left:98px;
  1545. top:402px;
  1546. width:43px;
  1547. height:30px;
  1548. display:flex;
  1549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1550. font-weight:400;
  1551. font-style:normal;
  1552. font-size:14px;
  1553. line-height:30px;
  1554. }
  1555. #u182 .text {
  1556. position:absolute;
  1557. align-self:flex-start;
  1558. padding:0px 0px 0px 0px;
  1559. box-sizing:border-box;
  1560. width:100%;
  1561. }
  1562. #u182_text {
  1563. border-width:0px;
  1564. white-space:nowrap;
  1565. text-transform:none;
  1566. }
  1567. #u183_img {
  1568. border-width:0px;
  1569. position:absolute;
  1570. left:0px;
  1571. top:0px;
  1572. width:29px;
  1573. height:29px;
  1574. }
  1575. #u183 {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:59px;
  1579. top:402px;
  1580. width:29px;
  1581. height:29px;
  1582. display:flex;
  1583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1584. font-weight:400;
  1585. font-style:normal;
  1586. font-size:10px;
  1587. color:#FFFFFF;
  1588. }
  1589. #u183 .text {
  1590. position:absolute;
  1591. align-self:center;
  1592. padding:2px 2px 2px 2px;
  1593. box-sizing:border-box;
  1594. width:100%;
  1595. }
  1596. #u183_text {
  1597. border-width:0px;
  1598. word-wrap:break-word;
  1599. text-transform:none;
  1600. }
  1601. #u184_div {
  1602. border-width:0px;
  1603. position:absolute;
  1604. left:0px;
  1605. top:0px;
  1606. width:78px;
  1607. height:30px;
  1608. background:inherit;
  1609. background-color:rgba(255, 255, 255, 0);
  1610. border:none;
  1611. border-left:0px;
  1612. border-top:0px;
  1613. border-right:0px;
  1614. border-radius:0px;
  1615. border-bottom-right-radius:0px;
  1616. border-bottom-left-radius:0px;
  1617. -moz-box-shadow:none;
  1618. -webkit-box-shadow:none;
  1619. box-shadow:none;
  1620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1621. font-weight:400;
  1622. font-style:normal;
  1623. font-size:12px;
  1624. color:#7F7F7F;
  1625. line-height:30px;
  1626. }
  1627. #u184 {
  1628. border-width:0px;
  1629. position:absolute;
  1630. left:141px;
  1631. top:427px;
  1632. width:78px;
  1633. height:30px;
  1634. display:flex;
  1635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1636. font-weight:400;
  1637. font-style:normal;
  1638. font-size:12px;
  1639. color:#7F7F7F;
  1640. line-height:30px;
  1641. }
  1642. #u184 .text {
  1643. position:absolute;
  1644. align-self:flex-start;
  1645. padding:0px 0px 0px 0px;
  1646. box-sizing:border-box;
  1647. width:100%;
  1648. }
  1649. #u184_text {
  1650. border-width:0px;
  1651. white-space:nowrap;
  1652. text-transform:none;
  1653. }
  1654. #u185_div {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:0px;
  1658. top:0px;
  1659. width:25px;
  1660. height:30px;
  1661. background:inherit;
  1662. background-color:rgba(255, 255, 255, 0);
  1663. border:none;
  1664. border-left:0px;
  1665. border-top:0px;
  1666. border-right:0px;
  1667. border-radius:0px;
  1668. border-bottom-right-radius:0px;
  1669. border-bottom-left-radius:0px;
  1670. -moz-box-shadow:none;
  1671. -webkit-box-shadow:none;
  1672. box-shadow:none;
  1673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1674. font-weight:400;
  1675. font-style:normal;
  1676. font-size:12px;
  1677. color:#7F7F7F;
  1678. line-height:30px;
  1679. }
  1680. #u185 {
  1681. border-width:0px;
  1682. position:absolute;
  1683. left:239px;
  1684. top:427px;
  1685. width:25px;
  1686. height:30px;
  1687. display:flex;
  1688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1689. font-weight:400;
  1690. font-style:normal;
  1691. font-size:12px;
  1692. color:#7F7F7F;
  1693. line-height:30px;
  1694. }
  1695. #u185 .text {
  1696. position:absolute;
  1697. align-self:flex-start;
  1698. padding:0px 0px 0px 0px;
  1699. box-sizing:border-box;
  1700. width:100%;
  1701. }
  1702. #u185_text {
  1703. border-width:0px;
  1704. white-space:nowrap;
  1705. text-transform:none;
  1706. }
  1707. #u186_div {
  1708. border-width:0px;
  1709. position:absolute;
  1710. left:0px;
  1711. top:0px;
  1712. width:25px;
  1713. height:30px;
  1714. background:inherit;
  1715. background-color:rgba(255, 255, 255, 0);
  1716. border:none;
  1717. border-left:0px;
  1718. border-top:0px;
  1719. border-right:0px;
  1720. border-radius:0px;
  1721. border-bottom-right-radius:0px;
  1722. border-bottom-left-radius:0px;
  1723. -moz-box-shadow:none;
  1724. -webkit-box-shadow:none;
  1725. box-shadow:none;
  1726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1727. font-weight:400;
  1728. font-style:normal;
  1729. font-size:12px;
  1730. color:#7F7F7F;
  1731. line-height:30px;
  1732. }
  1733. #u186 {
  1734. border-width:0px;
  1735. position:absolute;
  1736. left:98px;
  1737. top:427px;
  1738. width:25px;
  1739. height:30px;
  1740. display:flex;
  1741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1742. font-weight:400;
  1743. font-style:normal;
  1744. font-size:12px;
  1745. color:#7F7F7F;
  1746. line-height:30px;
  1747. }
  1748. #u186 .text {
  1749. position:absolute;
  1750. align-self:flex-start;
  1751. padding:0px 0px 0px 0px;
  1752. box-sizing:border-box;
  1753. width:100%;
  1754. }
  1755. #u186_text {
  1756. border-width:0px;
  1757. white-space:nowrap;
  1758. text-transform:none;
  1759. }
  1760. #u187_div {
  1761. border-width:0px;
  1762. position:absolute;
  1763. left:0px;
  1764. top:0px;
  1765. width:48px;
  1766. height:25px;
  1767. background:inherit;
  1768. background-color:rgba(255, 255, 255, 1);
  1769. box-sizing:border-box;
  1770. border-width:1px;
  1771. border-style:solid;
  1772. border-color:rgba(215, 215, 215, 1);
  1773. border-radius:63px;
  1774. -moz-box-shadow:none;
  1775. -webkit-box-shadow:none;
  1776. box-shadow:none;
  1777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1778. font-weight:400;
  1779. font-style:normal;
  1780. font-size:11px;
  1781. }
  1782. #u187 {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:336px;
  1786. top:404px;
  1787. width:48px;
  1788. height:25px;
  1789. display:flex;
  1790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1791. font-weight:400;
  1792. font-style:normal;
  1793. font-size:11px;
  1794. }
  1795. #u187 .text {
  1796. position:absolute;
  1797. align-self:center;
  1798. padding:2px 2px 2px 2px;
  1799. box-sizing:border-box;
  1800. width:100%;
  1801. }
  1802. #u187_text {
  1803. border-width:0px;
  1804. word-wrap:break-word;
  1805. text-transform:none;
  1806. }
  1807. #u188 {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:0px;
  1811. top:0px;
  1812. width:0px;
  1813. height:0px;
  1814. }
  1815. #u189_div {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:0px;
  1819. top:0px;
  1820. width:355px;
  1821. height:80px;
  1822. background:inherit;
  1823. background-color:rgba(255, 255, 255, 1);
  1824. border:none;
  1825. border-radius:4px;
  1826. -moz-box-shadow:none;
  1827. -webkit-box-shadow:none;
  1828. box-shadow:none;
  1829. }
  1830. #u189 {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:39px;
  1834. top:477px;
  1835. width:355px;
  1836. height:80px;
  1837. display:flex;
  1838. }
  1839. #u189 .text {
  1840. position:absolute;
  1841. align-self:center;
  1842. padding:2px 2px 2px 2px;
  1843. box-sizing:border-box;
  1844. width:100%;
  1845. }
  1846. #u189_text {
  1847. border-width:0px;
  1848. word-wrap:break-word;
  1849. text-transform:none;
  1850. visibility:hidden;
  1851. }
  1852. #u190_div {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:0px;
  1856. top:0px;
  1857. width:43px;
  1858. height:30px;
  1859. background:inherit;
  1860. background-color:rgba(255, 255, 255, 0);
  1861. border:none;
  1862. border-left:0px;
  1863. border-top:0px;
  1864. border-right:0px;
  1865. border-radius:0px;
  1866. border-bottom-right-radius:0px;
  1867. border-bottom-left-radius:0px;
  1868. -moz-box-shadow:none;
  1869. -webkit-box-shadow:none;
  1870. box-shadow:none;
  1871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1872. font-weight:400;
  1873. font-style:normal;
  1874. font-size:14px;
  1875. line-height:30px;
  1876. }
  1877. #u190 {
  1878. border-width:0px;
  1879. position:absolute;
  1880. left:98px;
  1881. top:492px;
  1882. width:43px;
  1883. height:30px;
  1884. display:flex;
  1885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1886. font-weight:400;
  1887. font-style:normal;
  1888. font-size:14px;
  1889. line-height:30px;
  1890. }
  1891. #u190 .text {
  1892. position:absolute;
  1893. align-self:flex-start;
  1894. padding:0px 0px 0px 0px;
  1895. box-sizing:border-box;
  1896. width:100%;
  1897. }
  1898. #u190_text {
  1899. border-width:0px;
  1900. white-space:nowrap;
  1901. text-transform:none;
  1902. }
  1903. #u191_img {
  1904. border-width:0px;
  1905. position:absolute;
  1906. left:0px;
  1907. top:0px;
  1908. width:29px;
  1909. height:29px;
  1910. }
  1911. #u191 {
  1912. border-width:0px;
  1913. position:absolute;
  1914. left:59px;
  1915. top:492px;
  1916. width:29px;
  1917. height:29px;
  1918. display:flex;
  1919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1920. font-weight:400;
  1921. font-style:normal;
  1922. font-size:10px;
  1923. color:#FFFFFF;
  1924. }
  1925. #u191 .text {
  1926. position:absolute;
  1927. align-self:center;
  1928. padding:2px 2px 2px 2px;
  1929. box-sizing:border-box;
  1930. width:100%;
  1931. }
  1932. #u191_text {
  1933. border-width:0px;
  1934. word-wrap:break-word;
  1935. text-transform:none;
  1936. }
  1937. #u192_div {
  1938. border-width:0px;
  1939. position:absolute;
  1940. left:0px;
  1941. top:0px;
  1942. width:78px;
  1943. height:30px;
  1944. background:inherit;
  1945. background-color:rgba(255, 255, 255, 0);
  1946. border:none;
  1947. border-left:0px;
  1948. border-top:0px;
  1949. border-right:0px;
  1950. border-radius:0px;
  1951. border-bottom-right-radius:0px;
  1952. border-bottom-left-radius:0px;
  1953. -moz-box-shadow:none;
  1954. -webkit-box-shadow:none;
  1955. box-shadow:none;
  1956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1957. font-weight:400;
  1958. font-style:normal;
  1959. font-size:12px;
  1960. color:#7F7F7F;
  1961. line-height:30px;
  1962. }
  1963. #u192 {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:141px;
  1967. top:517px;
  1968. width:78px;
  1969. height:30px;
  1970. display:flex;
  1971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1972. font-weight:400;
  1973. font-style:normal;
  1974. font-size:12px;
  1975. color:#7F7F7F;
  1976. line-height:30px;
  1977. }
  1978. #u192 .text {
  1979. position:absolute;
  1980. align-self:flex-start;
  1981. padding:0px 0px 0px 0px;
  1982. box-sizing:border-box;
  1983. width:100%;
  1984. }
  1985. #u192_text {
  1986. border-width:0px;
  1987. white-space:nowrap;
  1988. text-transform:none;
  1989. }
  1990. #u193_div {
  1991. border-width:0px;
  1992. position:absolute;
  1993. left:0px;
  1994. top:0px;
  1995. width:25px;
  1996. height:30px;
  1997. background:inherit;
  1998. background-color:rgba(255, 255, 255, 0);
  1999. border:none;
  2000. border-left:0px;
  2001. border-top:0px;
  2002. border-right:0px;
  2003. border-radius:0px;
  2004. border-bottom-right-radius:0px;
  2005. border-bottom-left-radius:0px;
  2006. -moz-box-shadow:none;
  2007. -webkit-box-shadow:none;
  2008. box-shadow:none;
  2009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2010. font-weight:400;
  2011. font-style:normal;
  2012. font-size:12px;
  2013. color:#7F7F7F;
  2014. line-height:30px;
  2015. }
  2016. #u193 {
  2017. border-width:0px;
  2018. position:absolute;
  2019. left:239px;
  2020. top:517px;
  2021. width:25px;
  2022. height:30px;
  2023. display:flex;
  2024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2025. font-weight:400;
  2026. font-style:normal;
  2027. font-size:12px;
  2028. color:#7F7F7F;
  2029. line-height:30px;
  2030. }
  2031. #u193 .text {
  2032. position:absolute;
  2033. align-self:flex-start;
  2034. padding:0px 0px 0px 0px;
  2035. box-sizing:border-box;
  2036. width:100%;
  2037. }
  2038. #u193_text {
  2039. border-width:0px;
  2040. white-space:nowrap;
  2041. text-transform:none;
  2042. }
  2043. #u194_div {
  2044. border-width:0px;
  2045. position:absolute;
  2046. left:0px;
  2047. top:0px;
  2048. width:25px;
  2049. height:30px;
  2050. background:inherit;
  2051. background-color:rgba(255, 255, 255, 0);
  2052. border:none;
  2053. border-left:0px;
  2054. border-top:0px;
  2055. border-right:0px;
  2056. border-radius:0px;
  2057. border-bottom-right-radius:0px;
  2058. border-bottom-left-radius:0px;
  2059. -moz-box-shadow:none;
  2060. -webkit-box-shadow:none;
  2061. box-shadow:none;
  2062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2063. font-weight:400;
  2064. font-style:normal;
  2065. font-size:12px;
  2066. color:#7F7F7F;
  2067. line-height:30px;
  2068. }
  2069. #u194 {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:98px;
  2073. top:517px;
  2074. width:25px;
  2075. height:30px;
  2076. display:flex;
  2077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2078. font-weight:400;
  2079. font-style:normal;
  2080. font-size:12px;
  2081. color:#7F7F7F;
  2082. line-height:30px;
  2083. }
  2084. #u194 .text {
  2085. position:absolute;
  2086. align-self:flex-start;
  2087. padding:0px 0px 0px 0px;
  2088. box-sizing:border-box;
  2089. width:100%;
  2090. }
  2091. #u194_text {
  2092. border-width:0px;
  2093. white-space:nowrap;
  2094. text-transform:none;
  2095. }
  2096. #u195_div {
  2097. border-width:0px;
  2098. position:absolute;
  2099. left:0px;
  2100. top:0px;
  2101. width:48px;
  2102. height:25px;
  2103. background:inherit;
  2104. background-color:rgba(255, 255, 255, 1);
  2105. box-sizing:border-box;
  2106. border-width:1px;
  2107. border-style:solid;
  2108. border-color:rgba(215, 215, 215, 1);
  2109. border-radius:63px;
  2110. -moz-box-shadow:none;
  2111. -webkit-box-shadow:none;
  2112. box-shadow:none;
  2113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2114. font-weight:400;
  2115. font-style:normal;
  2116. font-size:11px;
  2117. }
  2118. #u195 {
  2119. border-width:0px;
  2120. position:absolute;
  2121. left:336px;
  2122. top:494px;
  2123. width:48px;
  2124. height:25px;
  2125. display:flex;
  2126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2127. font-weight:400;
  2128. font-style:normal;
  2129. font-size:11px;
  2130. }
  2131. #u195 .text {
  2132. position:absolute;
  2133. align-self:center;
  2134. padding:2px 2px 2px 2px;
  2135. box-sizing:border-box;
  2136. width:100%;
  2137. }
  2138. #u195_text {
  2139. border-width:0px;
  2140. word-wrap:break-word;
  2141. text-transform:none;
  2142. }
  2143. #u196 {
  2144. border-width:0px;
  2145. position:absolute;
  2146. left:0px;
  2147. top:0px;
  2148. width:0px;
  2149. height:0px;
  2150. }
  2151. #u197_div {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:0px;
  2155. top:0px;
  2156. width:355px;
  2157. height:80px;
  2158. background:inherit;
  2159. background-color:rgba(255, 255, 255, 1);
  2160. border:none;
  2161. border-radius:4px;
  2162. -moz-box-shadow:none;
  2163. -webkit-box-shadow:none;
  2164. box-shadow:none;
  2165. }
  2166. #u197 {
  2167. border-width:0px;
  2168. position:absolute;
  2169. left:39px;
  2170. top:567px;
  2171. width:355px;
  2172. height:80px;
  2173. display:flex;
  2174. }
  2175. #u197 .text {
  2176. position:absolute;
  2177. align-self:center;
  2178. padding:2px 2px 2px 2px;
  2179. box-sizing:border-box;
  2180. width:100%;
  2181. }
  2182. #u197_text {
  2183. border-width:0px;
  2184. word-wrap:break-word;
  2185. text-transform:none;
  2186. visibility:hidden;
  2187. }
  2188. #u198_div {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:0px;
  2192. top:0px;
  2193. width:43px;
  2194. height:30px;
  2195. background:inherit;
  2196. background-color:rgba(255, 255, 255, 0);
  2197. border:none;
  2198. border-left:0px;
  2199. border-top:0px;
  2200. border-right:0px;
  2201. border-radius:0px;
  2202. border-bottom-right-radius:0px;
  2203. border-bottom-left-radius:0px;
  2204. -moz-box-shadow:none;
  2205. -webkit-box-shadow:none;
  2206. box-shadow:none;
  2207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2208. font-weight:400;
  2209. font-style:normal;
  2210. font-size:14px;
  2211. line-height:30px;
  2212. }
  2213. #u198 {
  2214. border-width:0px;
  2215. position:absolute;
  2216. left:98px;
  2217. top:582px;
  2218. width:43px;
  2219. height:30px;
  2220. display:flex;
  2221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2222. font-weight:400;
  2223. font-style:normal;
  2224. font-size:14px;
  2225. line-height:30px;
  2226. }
  2227. #u198 .text {
  2228. position:absolute;
  2229. align-self:flex-start;
  2230. padding:0px 0px 0px 0px;
  2231. box-sizing:border-box;
  2232. width:100%;
  2233. }
  2234. #u198_text {
  2235. border-width:0px;
  2236. white-space:nowrap;
  2237. text-transform:none;
  2238. }
  2239. #u199_img {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:0px;
  2243. top:0px;
  2244. width:29px;
  2245. height:29px;
  2246. }
  2247. #u199 {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:59px;
  2251. top:582px;
  2252. width:29px;
  2253. height:29px;
  2254. display:flex;
  2255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2256. font-weight:400;
  2257. font-style:normal;
  2258. font-size:10px;
  2259. color:#FFFFFF;
  2260. }
  2261. #u199 .text {
  2262. position:absolute;
  2263. align-self:center;
  2264. padding:2px 2px 2px 2px;
  2265. box-sizing:border-box;
  2266. width:100%;
  2267. }
  2268. #u199_text {
  2269. border-width:0px;
  2270. word-wrap:break-word;
  2271. text-transform:none;
  2272. }
  2273. #u200_div {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:0px;
  2277. top:0px;
  2278. width:78px;
  2279. height:30px;
  2280. background:inherit;
  2281. background-color:rgba(255, 255, 255, 0);
  2282. border:none;
  2283. border-left:0px;
  2284. border-top:0px;
  2285. border-right:0px;
  2286. border-radius:0px;
  2287. border-bottom-right-radius:0px;
  2288. border-bottom-left-radius:0px;
  2289. -moz-box-shadow:none;
  2290. -webkit-box-shadow:none;
  2291. box-shadow:none;
  2292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2293. font-weight:400;
  2294. font-style:normal;
  2295. font-size:12px;
  2296. color:#7F7F7F;
  2297. line-height:30px;
  2298. }
  2299. #u200 {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:141px;
  2303. top:607px;
  2304. width:78px;
  2305. height:30px;
  2306. display:flex;
  2307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2308. font-weight:400;
  2309. font-style:normal;
  2310. font-size:12px;
  2311. color:#7F7F7F;
  2312. line-height:30px;
  2313. }
  2314. #u200 .text {
  2315. position:absolute;
  2316. align-self:flex-start;
  2317. padding:0px 0px 0px 0px;
  2318. box-sizing:border-box;
  2319. width:100%;
  2320. }
  2321. #u200_text {
  2322. border-width:0px;
  2323. white-space:nowrap;
  2324. text-transform:none;
  2325. }
  2326. #u201_div {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:0px;
  2330. top:0px;
  2331. width:25px;
  2332. height:30px;
  2333. background:inherit;
  2334. background-color:rgba(255, 255, 255, 0);
  2335. border:none;
  2336. border-left:0px;
  2337. border-top:0px;
  2338. border-right:0px;
  2339. border-radius:0px;
  2340. border-bottom-right-radius:0px;
  2341. border-bottom-left-radius:0px;
  2342. -moz-box-shadow:none;
  2343. -webkit-box-shadow:none;
  2344. box-shadow:none;
  2345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2346. font-weight:400;
  2347. font-style:normal;
  2348. font-size:12px;
  2349. color:#7F7F7F;
  2350. line-height:30px;
  2351. }
  2352. #u201 {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:239px;
  2356. top:607px;
  2357. width:25px;
  2358. height:30px;
  2359. display:flex;
  2360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2361. font-weight:400;
  2362. font-style:normal;
  2363. font-size:12px;
  2364. color:#7F7F7F;
  2365. line-height:30px;
  2366. }
  2367. #u201 .text {
  2368. position:absolute;
  2369. align-self:flex-start;
  2370. padding:0px 0px 0px 0px;
  2371. box-sizing:border-box;
  2372. width:100%;
  2373. }
  2374. #u201_text {
  2375. border-width:0px;
  2376. white-space:nowrap;
  2377. text-transform:none;
  2378. }
  2379. #u202_div {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:0px;
  2383. top:0px;
  2384. width:25px;
  2385. height:30px;
  2386. background:inherit;
  2387. background-color:rgba(255, 255, 255, 0);
  2388. border:none;
  2389. border-left:0px;
  2390. border-top:0px;
  2391. border-right:0px;
  2392. border-radius:0px;
  2393. border-bottom-right-radius:0px;
  2394. border-bottom-left-radius:0px;
  2395. -moz-box-shadow:none;
  2396. -webkit-box-shadow:none;
  2397. box-shadow:none;
  2398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2399. font-weight:400;
  2400. font-style:normal;
  2401. font-size:12px;
  2402. color:#7F7F7F;
  2403. line-height:30px;
  2404. }
  2405. #u202 {
  2406. border-width:0px;
  2407. position:absolute;
  2408. left:98px;
  2409. top:607px;
  2410. width:25px;
  2411. height:30px;
  2412. display:flex;
  2413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2414. font-weight:400;
  2415. font-style:normal;
  2416. font-size:12px;
  2417. color:#7F7F7F;
  2418. line-height:30px;
  2419. }
  2420. #u202 .text {
  2421. position:absolute;
  2422. align-self:flex-start;
  2423. padding:0px 0px 0px 0px;
  2424. box-sizing:border-box;
  2425. width:100%;
  2426. }
  2427. #u202_text {
  2428. border-width:0px;
  2429. white-space:nowrap;
  2430. text-transform:none;
  2431. }
  2432. #u203_div {
  2433. border-width:0px;
  2434. position:absolute;
  2435. left:0px;
  2436. top:0px;
  2437. width:48px;
  2438. height:25px;
  2439. background:inherit;
  2440. background-color:rgba(255, 255, 255, 1);
  2441. box-sizing:border-box;
  2442. border-width:1px;
  2443. border-style:solid;
  2444. border-color:rgba(215, 215, 215, 1);
  2445. border-radius:63px;
  2446. -moz-box-shadow:none;
  2447. -webkit-box-shadow:none;
  2448. box-shadow:none;
  2449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2450. font-weight:400;
  2451. font-style:normal;
  2452. font-size:11px;
  2453. }
  2454. #u203 {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:336px;
  2458. top:584px;
  2459. width:48px;
  2460. height:25px;
  2461. display:flex;
  2462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2463. font-weight:400;
  2464. font-style:normal;
  2465. font-size:11px;
  2466. }
  2467. #u203 .text {
  2468. position:absolute;
  2469. align-self:center;
  2470. padding:2px 2px 2px 2px;
  2471. box-sizing:border-box;
  2472. width:100%;
  2473. }
  2474. #u203_text {
  2475. border-width:0px;
  2476. word-wrap:break-word;
  2477. text-transform:none;
  2478. }