styles.css 43 KB

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