styles.css 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403
  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. #u116234 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u116235_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. #u116235 {
  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. #u116235 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u116235_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u116236_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. #u116236 {
  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. #u116236 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:5px 10px 5px 10px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u116236_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u116237_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. #u116237 {
  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. #u116237 .text {
  173. position:absolute;
  174. align-self:center;
  175. padding:5px 10px 5px 0px;
  176. box-sizing:border-box;
  177. width:100%;
  178. }
  179. #u116237_text {
  180. border-width:0px;
  181. white-space:nowrap;
  182. text-transform:none;
  183. }
  184. #u116238 {
  185. border-width:0px;
  186. position:absolute;
  187. left:0px;
  188. top:0px;
  189. width:0px;
  190. height:0px;
  191. }
  192. #u116239_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. #u116239 {
  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. #u116239 .text {
  232. position:absolute;
  233. align-self:center;
  234. padding:5px 10px 5px 0px;
  235. box-sizing:border-box;
  236. width:100%;
  237. }
  238. #u116239_text {
  239. border-width:0px;
  240. word-wrap:break-word;
  241. text-transform:none;
  242. }
  243. #u116240_img {
  244. border-width:0px;
  245. position:absolute;
  246. left:0px;
  247. top:0px;
  248. width:13px;
  249. height:13px;
  250. }
  251. #u116240 {
  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. #u116240 .text {
  262. position:absolute;
  263. align-self:center;
  264. padding:2px 2px 2px 2px;
  265. box-sizing:border-box;
  266. width:100%;
  267. }
  268. #u116240_text {
  269. border-width:0px;
  270. word-wrap:break-word;
  271. text-transform:none;
  272. visibility:hidden;
  273. }
  274. #u116241_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. #u116241 {
  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. #u116241 .text {
  312. position:absolute;
  313. align-self:center;
  314. padding:5px 10px 5px 0px;
  315. box-sizing:border-box;
  316. width:100%;
  317. }
  318. #u116241_text {
  319. border-width:0px;
  320. white-space:nowrap;
  321. text-transform:none;
  322. }
  323. #u116242_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. #u116242 {
  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. #u116242 .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. #u116242_text {
  370. border-width:0px;
  371. word-wrap:break-word;
  372. text-transform:none;
  373. }
  374. #u116243_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. #u116243 {
  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. #u116243 .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. #u116243_text {
  418. border-width:0px;
  419. white-space:nowrap;
  420. text-transform:none;
  421. }
  422. #u116244_div {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:1000px;
  428. height:530px;
  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. #u116244 {
  448. border-width:0px;
  449. position:absolute;
  450. left:84px;
  451. top:276px;
  452. width:1000px;
  453. height:530px;
  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. #u116244 .text {
  464. position:absolute;
  465. align-self:center;
  466. padding:5px 10px 5px 10px;
  467. box-sizing:border-box;
  468. width:100%;
  469. }
  470. #u116244_text {
  471. border-width:0px;
  472. word-wrap:break-word;
  473. text-transform:none;
  474. visibility:hidden;
  475. }
  476. #u116245 {
  477. border-width:0px;
  478. position:absolute;
  479. left:0px;
  480. top:0px;
  481. width:0px;
  482. height:0px;
  483. }
  484. #u116246_div {
  485. border-width:0px;
  486. position:absolute;
  487. left:0px;
  488. top:0px;
  489. width:1000px;
  490. height:391px;
  491. background:inherit;
  492. background-color:rgba(255, 255, 255, 1);
  493. box-sizing:border-box;
  494. border-width:1px;
  495. border-style:solid;
  496. border-color:rgba(215, 215, 215, 1);
  497. border-radius:0px;
  498. -moz-box-shadow:none;
  499. -webkit-box-shadow:none;
  500. box-shadow:none;
  501. }
  502. #u116246 {
  503. border-width:0px;
  504. position:absolute;
  505. left:84px;
  506. top:816px;
  507. width:1000px;
  508. height:391px;
  509. display:flex;
  510. }
  511. #u116246 .text {
  512. position:absolute;
  513. align-self:center;
  514. padding:2px 2px 2px 2px;
  515. box-sizing:border-box;
  516. width:100%;
  517. }
  518. #u116246_text {
  519. border-width:0px;
  520. word-wrap:break-word;
  521. text-transform:none;
  522. visibility:hidden;
  523. }
  524. #u116247_div {
  525. border-width:0px;
  526. position:absolute;
  527. left:0px;
  528. top:0px;
  529. width:103px;
  530. height:24px;
  531. background:inherit;
  532. background-color:rgba(255, 255, 255, 0);
  533. border:none;
  534. border-top:0px;
  535. border-right:0px;
  536. border-bottom:0px;
  537. border-radius:0px;
  538. border-top-left-radius:0px;
  539. border-bottom-left-radius:0px;
  540. -moz-box-shadow:none;
  541. -webkit-box-shadow:none;
  542. box-shadow:none;
  543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  544. font-weight:400;
  545. font-style:normal;
  546. font-size:10px;
  547. color:#AAAAAA;
  548. }
  549. #u116247 {
  550. border-width:0px;
  551. position:absolute;
  552. left:339px;
  553. top:889px;
  554. width:103px;
  555. height:24px;
  556. display:flex;
  557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  558. font-weight:400;
  559. font-style:normal;
  560. font-size:10px;
  561. color:#AAAAAA;
  562. }
  563. #u116247 .text {
  564. position:absolute;
  565. align-self:flex-start;
  566. padding:5px 0px 5px 0px;
  567. box-sizing:border-box;
  568. width:100%;
  569. }
  570. #u116247_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u116248 {
  576. border-width:0px;
  577. position:absolute;
  578. left:0px;
  579. top:0px;
  580. width:0px;
  581. height:0px;
  582. }
  583. #u116249_div {
  584. border-width:0px;
  585. position:absolute;
  586. left:0px;
  587. top:0px;
  588. width:43px;
  589. height:30px;
  590. background:inherit;
  591. background-color:rgba(255, 255, 255, 0);
  592. border:none;
  593. border-top:0px;
  594. border-right:0px;
  595. border-bottom:0px;
  596. border-radius:0px;
  597. border-top-left-radius:0px;
  598. border-bottom-left-radius:0px;
  599. -moz-box-shadow:none;
  600. -webkit-box-shadow:none;
  601. box-shadow:none;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:14px;
  606. }
  607. #u116249 {
  608. border-width:0px;
  609. position:absolute;
  610. left:172px;
  611. top:891px;
  612. width:43px;
  613. height:30px;
  614. display:flex;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:14px;
  619. }
  620. #u116249 .text {
  621. position:absolute;
  622. align-self:flex-start;
  623. padding:0px 0px 0px 0px;
  624. box-sizing:border-box;
  625. width:100%;
  626. }
  627. #u116249_text {
  628. border-width:0px;
  629. white-space:nowrap;
  630. text-transform:none;
  631. }
  632. #u116250_div {
  633. border-width:0px;
  634. position:absolute;
  635. left:0px;
  636. top:0px;
  637. width:12px;
  638. height:16px;
  639. background:inherit;
  640. background-color:rgba(255, 255, 255, 0);
  641. border:none;
  642. border-top:0px;
  643. border-right:0px;
  644. border-bottom:0px;
  645. border-radius:0px;
  646. border-top-left-radius:0px;
  647. border-bottom-left-radius:0px;
  648. -moz-box-shadow:none;
  649. -webkit-box-shadow:none;
  650. box-shadow:none;
  651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  652. font-weight:400;
  653. font-style:normal;
  654. font-size:11px;
  655. color:#AAAAAA;
  656. }
  657. #u116250 {
  658. border-width:0px;
  659. position:absolute;
  660. left:172px;
  661. top:919px;
  662. width:12px;
  663. height:16px;
  664. display:flex;
  665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  666. font-weight:400;
  667. font-style:normal;
  668. font-size:11px;
  669. color:#AAAAAA;
  670. }
  671. #u116250 .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. #u116250_text {
  679. border-width:0px;
  680. white-space:nowrap;
  681. text-transform:none;
  682. }
  683. #u116251_div {
  684. border-width:0px;
  685. position:absolute;
  686. left:0px;
  687. top:0px;
  688. width:43px;
  689. height:20px;
  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:14px;
  706. }
  707. #u116251 {
  708. border-width:0px;
  709. position:absolute;
  710. left:172px;
  711. top:961px;
  712. width:43px;
  713. height:20px;
  714. display:flex;
  715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  716. font-weight:400;
  717. font-style:normal;
  718. font-size:14px;
  719. }
  720. #u116251 .text {
  721. position:absolute;
  722. align-self:flex-start;
  723. padding:0px 0px 0px 0px;
  724. box-sizing:border-box;
  725. width:100%;
  726. }
  727. #u116251_text {
  728. border-width:0px;
  729. white-space:nowrap;
  730. text-transform:none;
  731. }
  732. #u116252_div {
  733. border-width:0px;
  734. position:absolute;
  735. left:0px;
  736. top:0px;
  737. width:91px;
  738. height:16px;
  739. background:inherit;
  740. background-color:rgba(255, 255, 255, 0);
  741. border:none;
  742. border-top:0px;
  743. border-right:0px;
  744. border-bottom:0px;
  745. border-radius:0px;
  746. border-top-left-radius:0px;
  747. border-bottom-left-radius:0px;
  748. -moz-box-shadow:none;
  749. -webkit-box-shadow:none;
  750. box-shadow:none;
  751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  752. font-weight:400;
  753. font-style:normal;
  754. font-size:11px;
  755. color:#AAAAAA;
  756. }
  757. #u116252 {
  758. border-width:0px;
  759. position:absolute;
  760. left:172px;
  761. top:989px;
  762. width:91px;
  763. height:16px;
  764. display:flex;
  765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  766. font-weight:400;
  767. font-style:normal;
  768. font-size:11px;
  769. color:#AAAAAA;
  770. }
  771. #u116252 .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. #u116252_text {
  779. border-width:0px;
  780. white-space:nowrap;
  781. text-transform:none;
  782. }
  783. #u116253_div {
  784. border-width:0px;
  785. position:absolute;
  786. left:0px;
  787. top:0px;
  788. width:37px;
  789. height:35px;
  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-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  803. font-weight:500;
  804. font-style:normal;
  805. font-size:18px;
  806. }
  807. #u116253 {
  808. border-width:0px;
  809. position:absolute;
  810. left:110px;
  811. top:834px;
  812. width:37px;
  813. height:35px;
  814. display:flex;
  815. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  816. font-weight:500;
  817. font-style:normal;
  818. font-size:18px;
  819. }
  820. #u116253 .text {
  821. position:absolute;
  822. align-self:flex-start;
  823. padding:5px 0px 5px 0px;
  824. box-sizing:border-box;
  825. width:100%;
  826. }
  827. #u116253_text {
  828. border-width:0px;
  829. white-space:nowrap;
  830. text-transform:none;
  831. }
  832. #u116254 {
  833. border-width:0px;
  834. position:absolute;
  835. left:0px;
  836. top:0px;
  837. width:0px;
  838. height:0px;
  839. }
  840. #u116255_img {
  841. border-width:0px;
  842. position:absolute;
  843. left:0px;
  844. top:0px;
  845. width:2px;
  846. height:32px;
  847. }
  848. #u116255 {
  849. border-width:0px;
  850. position:absolute;
  851. left:149px;
  852. top:925px;
  853. width:1px;
  854. height:31px;
  855. display:flex;
  856. }
  857. #u116255 .text {
  858. position:absolute;
  859. align-self:center;
  860. padding:2px 2px 2px 2px;
  861. box-sizing:border-box;
  862. width:100%;
  863. }
  864. #u116255_text {
  865. border-width:0px;
  866. word-wrap:break-word;
  867. text-transform:none;
  868. visibility:hidden;
  869. }
  870. #u116256 {
  871. border-width:0px;
  872. position:absolute;
  873. left:0px;
  874. top:0px;
  875. width:0px;
  876. height:0px;
  877. }
  878. #u116257_div {
  879. border-width:0px;
  880. position:absolute;
  881. left:0px;
  882. top:0px;
  883. width:30px;
  884. height:30px;
  885. background:inherit;
  886. background-color:rgba(24, 144, 255, 1);
  887. border:none;
  888. border-radius:4px;
  889. -moz-box-shadow:none;
  890. -webkit-box-shadow:none;
  891. box-shadow:none;
  892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  893. font-weight:400;
  894. font-style:normal;
  895. font-size:10px;
  896. color:#FFFFFF;
  897. }
  898. #u116257 {
  899. border-width:0px;
  900. position:absolute;
  901. left:134px;
  902. top:961px;
  903. width:30px;
  904. height:30px;
  905. display:flex;
  906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  907. font-weight:400;
  908. font-style:normal;
  909. font-size:10px;
  910. color:#FFFFFF;
  911. }
  912. #u116257 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u116257_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. }
  924. #u116258 {
  925. border-width:0px;
  926. position:absolute;
  927. left:0px;
  928. top:0px;
  929. width:0px;
  930. height:0px;
  931. }
  932. #u116259_img {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:9px;
  938. height:9px;
  939. }
  940. #u116259 {
  941. border-width:0px;
  942. position:absolute;
  943. left:156px;
  944. top:983px;
  945. width:9px;
  946. height:9px;
  947. display:flex;
  948. }
  949. #u116259 .text {
  950. position:absolute;
  951. align-self:center;
  952. padding:2px 2px 2px 2px;
  953. box-sizing:border-box;
  954. width:100%;
  955. }
  956. #u116259_text {
  957. border-width:0px;
  958. word-wrap:break-word;
  959. text-transform:none;
  960. visibility:hidden;
  961. }
  962. #u116260_img {
  963. border-width:0px;
  964. position:absolute;
  965. left:0px;
  966. top:0px;
  967. width:5px;
  968. height:1px;
  969. }
  970. #u116260 {
  971. border-width:0px;
  972. position:absolute;
  973. left:158px;
  974. top:987px;
  975. width:5px;
  976. height:1px;
  977. display:flex;
  978. }
  979. #u116260 .text {
  980. position:absolute;
  981. align-self:center;
  982. padding:2px 2px 2px 2px;
  983. box-sizing:border-box;
  984. width:100%;
  985. }
  986. #u116260_text {
  987. border-width:0px;
  988. word-wrap:break-word;
  989. text-transform:none;
  990. visibility:hidden;
  991. }
  992. #u116261 {
  993. border-width:0px;
  994. position:absolute;
  995. left:0px;
  996. top:0px;
  997. width:0px;
  998. height:0px;
  999. }
  1000. #u116262_div {
  1001. border-width:0px;
  1002. position:absolute;
  1003. left:0px;
  1004. top:0px;
  1005. width:30px;
  1006. height:30px;
  1007. background:inherit;
  1008. background-color:rgba(24, 144, 255, 1);
  1009. border:none;
  1010. border-radius:4px;
  1011. -moz-box-shadow:none;
  1012. -webkit-box-shadow:none;
  1013. box-shadow:none;
  1014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1015. font-weight:400;
  1016. font-style:normal;
  1017. font-size:12px;
  1018. color:#FFFFFF;
  1019. }
  1020. #u116262 {
  1021. border-width:0px;
  1022. position:absolute;
  1023. left:134px;
  1024. top:891px;
  1025. width:30px;
  1026. height:30px;
  1027. display:flex;
  1028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1029. font-weight:400;
  1030. font-style:normal;
  1031. font-size:12px;
  1032. color:#FFFFFF;
  1033. }
  1034. #u116262 .text {
  1035. position:absolute;
  1036. align-self:center;
  1037. padding:2px 2px 2px 2px;
  1038. box-sizing:border-box;
  1039. width:100%;
  1040. }
  1041. #u116262_text {
  1042. border-width:0px;
  1043. word-wrap:break-word;
  1044. text-transform:none;
  1045. }
  1046. #u116263 {
  1047. border-width:0px;
  1048. position:absolute;
  1049. left:0px;
  1050. top:0px;
  1051. width:0px;
  1052. height:0px;
  1053. }
  1054. #u116264_img {
  1055. border-width:0px;
  1056. position:absolute;
  1057. left:0px;
  1058. top:0px;
  1059. width:9px;
  1060. height:9px;
  1061. }
  1062. #u116264 {
  1063. border-width:0px;
  1064. position:absolute;
  1065. left:156px;
  1066. top:913px;
  1067. width:9px;
  1068. height:9px;
  1069. display:flex;
  1070. }
  1071. #u116264 .text {
  1072. position:absolute;
  1073. align-self:center;
  1074. padding:2px 2px 2px 2px;
  1075. box-sizing:border-box;
  1076. width:100%;
  1077. }
  1078. #u116264_text {
  1079. border-width:0px;
  1080. word-wrap:break-word;
  1081. text-transform:none;
  1082. visibility:hidden;
  1083. }
  1084. #u116265_img {
  1085. border-width:0px;
  1086. position:absolute;
  1087. left:0px;
  1088. top:0px;
  1089. width:5px;
  1090. height:4px;
  1091. }
  1092. #u116265 {
  1093. border-width:0px;
  1094. position:absolute;
  1095. left:158px;
  1096. top:916px;
  1097. width:5px;
  1098. height:4px;
  1099. display:flex;
  1100. }
  1101. #u116265 .text {
  1102. position:absolute;
  1103. align-self:center;
  1104. padding:2px 2px 2px 2px;
  1105. box-sizing:border-box;
  1106. width:100%;
  1107. }
  1108. #u116265_text {
  1109. border-width:0px;
  1110. word-wrap:break-word;
  1111. text-transform:none;
  1112. visibility:hidden;
  1113. }
  1114. #u116266_div {
  1115. border-width:0px;
  1116. position:absolute;
  1117. left:0px;
  1118. top:0px;
  1119. width:320px;
  1120. height:60px;
  1121. background:inherit;
  1122. background-color:rgba(255, 255, 255, 0);
  1123. border:none;
  1124. border-left:0px;
  1125. border-top:0px;
  1126. border-right:0px;
  1127. border-radius:0px;
  1128. border-bottom-right-radius:0px;
  1129. border-bottom-left-radius:0px;
  1130. -moz-box-shadow:none;
  1131. -webkit-box-shadow:none;
  1132. box-shadow:none;
  1133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1134. font-weight:400;
  1135. font-style:normal;
  1136. font-size:14px;
  1137. line-height:30px;
  1138. }
  1139. #u116266 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:434px;
  1143. top:339px;
  1144. width:320px;
  1145. height:60px;
  1146. display:flex;
  1147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1148. font-weight:400;
  1149. font-style:normal;
  1150. font-size:14px;
  1151. line-height:30px;
  1152. }
  1153. #u116266 .text {
  1154. position:absolute;
  1155. align-self:flex-start;
  1156. padding:0px 0px 0px 0px;
  1157. box-sizing:border-box;
  1158. width:100%;
  1159. }
  1160. #u116266_text {
  1161. border-width:0px;
  1162. word-wrap:break-word;
  1163. text-transform:none;
  1164. }
  1165. #u116267_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. #u116267 {
  1191. border-width:0px;
  1192. position:absolute;
  1193. left:754px;
  1194. top:339px;
  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. #u116267 .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. #u116267_text {
  1212. border-width:0px;
  1213. word-wrap:break-word;
  1214. text-transform:none;
  1215. }
  1216. #u116268_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-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1236. font-weight:500;
  1237. font-style:normal;
  1238. font-size:18px;
  1239. line-height:30px;
  1240. }
  1241. #u116268 {
  1242. border-width:0px;
  1243. position:absolute;
  1244. left:114px;
  1245. top:449px;
  1246. width:320px;
  1247. height:30px;
  1248. display:flex;
  1249. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1250. font-weight:500;
  1251. font-style:normal;
  1252. font-size:18px;
  1253. line-height:30px;
  1254. }
  1255. #u116268 .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. #u116268_text {
  1263. border-width:0px;
  1264. word-wrap:break-word;
  1265. text-transform:none;
  1266. }
  1267. #u116269_img {
  1268. border-width:0px;
  1269. position:absolute;
  1270. left:0px;
  1271. top:0px;
  1272. width:108px;
  1273. height:108px;
  1274. }
  1275. #u116269 {
  1276. border-width:0px;
  1277. position:absolute;
  1278. left:934px;
  1279. top:136px;
  1280. width:108px;
  1281. height:108px;
  1282. display:flex;
  1283. -webkit-transform:rotate(315deg);
  1284. -moz-transform:rotate(315deg);
  1285. -ms-transform:rotate(315deg);
  1286. transform:rotate(315deg);
  1287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1288. font-weight:400;
  1289. font-style:normal;
  1290. font-size:28px;
  1291. color:#F59A23;
  1292. }
  1293. #u116269 .text {
  1294. position:absolute;
  1295. align-self:center;
  1296. padding:2px 2px 2px 2px;
  1297. box-sizing:border-box;
  1298. width:100%;
  1299. }
  1300. #u116269_text {
  1301. border-width:0px;
  1302. word-wrap:break-word;
  1303. text-transform:none;
  1304. }
  1305. #u116270 {
  1306. border-width:0px;
  1307. position:absolute;
  1308. left:114px;
  1309. top:489px;
  1310. width:931px;
  1311. height:118px;
  1312. }
  1313. #u116271_img {
  1314. border-width:0px;
  1315. position:absolute;
  1316. left:0px;
  1317. top:0px;
  1318. width:186px;
  1319. height:38px;
  1320. }
  1321. #u116271 {
  1322. border-width:0px;
  1323. position:absolute;
  1324. left:0px;
  1325. top:0px;
  1326. width:186px;
  1327. height:38px;
  1328. display:flex;
  1329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1330. font-weight:400;
  1331. font-style:normal;
  1332. font-size:12px;
  1333. color:#FFFFFF;
  1334. }
  1335. #u116271 .text {
  1336. position:absolute;
  1337. align-self:center;
  1338. padding:2px 2px 2px 0px;
  1339. box-sizing:border-box;
  1340. width:100%;
  1341. }
  1342. #u116271_text {
  1343. border-width:0px;
  1344. word-wrap:break-word;
  1345. text-transform:none;
  1346. }
  1347. #u116272_img {
  1348. border-width:0px;
  1349. position:absolute;
  1350. left:0px;
  1351. top:0px;
  1352. width:186px;
  1353. height:38px;
  1354. }
  1355. #u116272 {
  1356. border-width:0px;
  1357. position:absolute;
  1358. left:186px;
  1359. top:0px;
  1360. width:186px;
  1361. height:38px;
  1362. display:flex;
  1363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:12px;
  1367. color:#FFFFFF;
  1368. }
  1369. #u116272 .text {
  1370. position:absolute;
  1371. align-self:center;
  1372. padding:2px 2px 2px 0px;
  1373. box-sizing:border-box;
  1374. width:100%;
  1375. }
  1376. #u116272_text {
  1377. border-width:0px;
  1378. word-wrap:break-word;
  1379. text-transform:none;
  1380. }
  1381. #u116273_img {
  1382. border-width:0px;
  1383. position:absolute;
  1384. left:0px;
  1385. top:0px;
  1386. width:186px;
  1387. height:38px;
  1388. }
  1389. #u116273 {
  1390. border-width:0px;
  1391. position:absolute;
  1392. left:372px;
  1393. top:0px;
  1394. width:186px;
  1395. height:38px;
  1396. display:flex;
  1397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1398. font-weight:400;
  1399. font-style:normal;
  1400. font-size:12px;
  1401. color:#FFFFFF;
  1402. }
  1403. #u116273 .text {
  1404. position:absolute;
  1405. align-self:center;
  1406. padding:2px 2px 2px 0px;
  1407. box-sizing:border-box;
  1408. width:100%;
  1409. }
  1410. #u116273_text {
  1411. border-width:0px;
  1412. word-wrap:break-word;
  1413. text-transform:none;
  1414. }
  1415. #u116274_img {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:0px;
  1419. top:0px;
  1420. width:186px;
  1421. height:38px;
  1422. }
  1423. #u116274 {
  1424. border-width:0px;
  1425. position:absolute;
  1426. left:558px;
  1427. top:0px;
  1428. width:186px;
  1429. height:38px;
  1430. display:flex;
  1431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1432. font-weight:400;
  1433. font-style:normal;
  1434. font-size:12px;
  1435. color:#FFFFFF;
  1436. }
  1437. #u116274 .text {
  1438. position:absolute;
  1439. align-self:center;
  1440. padding:2px 2px 2px 0px;
  1441. box-sizing:border-box;
  1442. width:100%;
  1443. }
  1444. #u116274_text {
  1445. border-width:0px;
  1446. word-wrap:break-word;
  1447. text-transform:none;
  1448. }
  1449. #u116275_img {
  1450. border-width:0px;
  1451. position:absolute;
  1452. left:0px;
  1453. top:0px;
  1454. width:187px;
  1455. height:38px;
  1456. }
  1457. #u116275 {
  1458. border-width:0px;
  1459. position:absolute;
  1460. left:744px;
  1461. top:0px;
  1462. width:187px;
  1463. height:38px;
  1464. display:flex;
  1465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1466. font-weight:400;
  1467. font-style:normal;
  1468. font-size:12px;
  1469. color:#FFFFFF;
  1470. }
  1471. #u116275 .text {
  1472. position:absolute;
  1473. align-self:center;
  1474. padding:2px 2px 2px 0px;
  1475. box-sizing:border-box;
  1476. width:100%;
  1477. }
  1478. #u116275_text {
  1479. border-width:0px;
  1480. word-wrap:break-word;
  1481. text-transform:none;
  1482. }
  1483. #u116276_img {
  1484. border-width:0px;
  1485. position:absolute;
  1486. left:0px;
  1487. top:0px;
  1488. width:186px;
  1489. height:40px;
  1490. }
  1491. #u116276 {
  1492. border-width:0px;
  1493. position:absolute;
  1494. left:0px;
  1495. top:38px;
  1496. width:186px;
  1497. height:40px;
  1498. display:flex;
  1499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1500. font-weight:400;
  1501. font-style:normal;
  1502. font-size:12px;
  1503. color:#333333;
  1504. }
  1505. #u116276 .text {
  1506. position:absolute;
  1507. align-self:center;
  1508. padding:2px 2px 2px 0px;
  1509. box-sizing:border-box;
  1510. width:100%;
  1511. }
  1512. #u116276_text {
  1513. border-width:0px;
  1514. word-wrap:break-word;
  1515. text-transform:none;
  1516. visibility:hidden;
  1517. }
  1518. #u116277_img {
  1519. border-width:0px;
  1520. position:absolute;
  1521. left:0px;
  1522. top:0px;
  1523. width:186px;
  1524. height:40px;
  1525. }
  1526. #u116277 {
  1527. border-width:0px;
  1528. position:absolute;
  1529. left:186px;
  1530. top:38px;
  1531. width:186px;
  1532. height:40px;
  1533. display:flex;
  1534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1535. font-weight:400;
  1536. font-style:normal;
  1537. font-size:12px;
  1538. color:#333333;
  1539. }
  1540. #u116277 .text {
  1541. position:absolute;
  1542. align-self:center;
  1543. padding:2px 2px 2px 0px;
  1544. box-sizing:border-box;
  1545. width:100%;
  1546. }
  1547. #u116277_text {
  1548. border-width:0px;
  1549. word-wrap:break-word;
  1550. text-transform:none;
  1551. visibility:hidden;
  1552. }
  1553. #u116278_img {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:0px;
  1557. top:0px;
  1558. width:186px;
  1559. height:40px;
  1560. }
  1561. #u116278 {
  1562. border-width:0px;
  1563. position:absolute;
  1564. left:372px;
  1565. top:38px;
  1566. width:186px;
  1567. height:40px;
  1568. display:flex;
  1569. font-family:'ArialMT', 'Arial', sans-serif;
  1570. font-weight:400;
  1571. font-style:normal;
  1572. font-size:12px;
  1573. color:#AAAAAA;
  1574. text-align:left;
  1575. }
  1576. #u116278 .text {
  1577. position:absolute;
  1578. align-self:center;
  1579. padding:2px 2px 2px 0px;
  1580. box-sizing:border-box;
  1581. width:100%;
  1582. }
  1583. #u116278_text {
  1584. border-width:0px;
  1585. word-wrap:break-word;
  1586. text-transform:none;
  1587. visibility:hidden;
  1588. }
  1589. #u116279_img {
  1590. border-width:0px;
  1591. position:absolute;
  1592. left:0px;
  1593. top:0px;
  1594. width:186px;
  1595. height:40px;
  1596. }
  1597. #u116279 {
  1598. border-width:0px;
  1599. position:absolute;
  1600. left:558px;
  1601. top:38px;
  1602. width:186px;
  1603. height:40px;
  1604. display:flex;
  1605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1606. font-weight:400;
  1607. font-style:normal;
  1608. font-size:12px;
  1609. color:#333333;
  1610. }
  1611. #u116279 .text {
  1612. position:absolute;
  1613. align-self:center;
  1614. padding:2px 2px 2px 0px;
  1615. box-sizing:border-box;
  1616. width:100%;
  1617. }
  1618. #u116279_text {
  1619. border-width:0px;
  1620. word-wrap:break-word;
  1621. text-transform:none;
  1622. visibility:hidden;
  1623. }
  1624. #u116280_img {
  1625. border-width:0px;
  1626. position:absolute;
  1627. left:0px;
  1628. top:0px;
  1629. width:187px;
  1630. height:40px;
  1631. }
  1632. #u116280 {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:744px;
  1636. top:38px;
  1637. width:187px;
  1638. height:40px;
  1639. display:flex;
  1640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1641. font-weight:400;
  1642. font-style:normal;
  1643. font-size:12px;
  1644. color:#333333;
  1645. }
  1646. #u116280 .text {
  1647. position:absolute;
  1648. align-self:center;
  1649. padding:2px 2px 2px 0px;
  1650. box-sizing:border-box;
  1651. width:100%;
  1652. }
  1653. #u116280_text {
  1654. border-width:0px;
  1655. word-wrap:break-word;
  1656. text-transform:none;
  1657. visibility:hidden;
  1658. }
  1659. #u116281_img {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:0px;
  1663. top:0px;
  1664. width:186px;
  1665. height:40px;
  1666. }
  1667. #u116281 {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:78px;
  1672. width:186px;
  1673. height:40px;
  1674. display:flex;
  1675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1676. font-weight:400;
  1677. font-style:normal;
  1678. font-size:12px;
  1679. color:#333333;
  1680. }
  1681. #u116281 .text {
  1682. position:absolute;
  1683. align-self:center;
  1684. padding:2px 2px 2px 0px;
  1685. box-sizing:border-box;
  1686. width:100%;
  1687. }
  1688. #u116281_text {
  1689. border-width:0px;
  1690. word-wrap:break-word;
  1691. text-transform:none;
  1692. visibility:hidden;
  1693. }
  1694. #u116282_img {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:0px;
  1698. top:0px;
  1699. width:186px;
  1700. height:40px;
  1701. }
  1702. #u116282 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:186px;
  1706. top:78px;
  1707. width:186px;
  1708. height:40px;
  1709. display:flex;
  1710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1711. font-weight:400;
  1712. font-style:normal;
  1713. font-size:12px;
  1714. color:#333333;
  1715. }
  1716. #u116282 .text {
  1717. position:absolute;
  1718. align-self:center;
  1719. padding:2px 2px 2px 0px;
  1720. box-sizing:border-box;
  1721. width:100%;
  1722. }
  1723. #u116282_text {
  1724. border-width:0px;
  1725. word-wrap:break-word;
  1726. text-transform:none;
  1727. visibility:hidden;
  1728. }
  1729. #u116283_img {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:0px;
  1733. top:0px;
  1734. width:186px;
  1735. height:40px;
  1736. }
  1737. #u116283 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:372px;
  1741. top:78px;
  1742. width:186px;
  1743. height:40px;
  1744. display:flex;
  1745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1746. font-weight:400;
  1747. font-style:normal;
  1748. font-size:12px;
  1749. color:#333333;
  1750. }
  1751. #u116283 .text {
  1752. position:absolute;
  1753. align-self:center;
  1754. padding:2px 2px 2px 0px;
  1755. box-sizing:border-box;
  1756. width:100%;
  1757. }
  1758. #u116283_text {
  1759. border-width:0px;
  1760. word-wrap:break-word;
  1761. text-transform:none;
  1762. visibility:hidden;
  1763. }
  1764. #u116284_img {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:0px;
  1768. top:0px;
  1769. width:186px;
  1770. height:40px;
  1771. }
  1772. #u116284 {
  1773. border-width:0px;
  1774. position:absolute;
  1775. left:558px;
  1776. top:78px;
  1777. width:186px;
  1778. height:40px;
  1779. display:flex;
  1780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1781. font-weight:400;
  1782. font-style:normal;
  1783. font-size:12px;
  1784. color:#333333;
  1785. }
  1786. #u116284 .text {
  1787. position:absolute;
  1788. align-self:center;
  1789. padding:2px 2px 2px 0px;
  1790. box-sizing:border-box;
  1791. width:100%;
  1792. }
  1793. #u116284_text {
  1794. border-width:0px;
  1795. word-wrap:break-word;
  1796. text-transform:none;
  1797. visibility:hidden;
  1798. }
  1799. #u116285_img {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:0px;
  1803. top:0px;
  1804. width:187px;
  1805. height:40px;
  1806. }
  1807. #u116285 {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:744px;
  1811. top:78px;
  1812. width:187px;
  1813. height:40px;
  1814. display:flex;
  1815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1816. font-weight:400;
  1817. font-style:normal;
  1818. font-size:12px;
  1819. color:#333333;
  1820. }
  1821. #u116285 .text {
  1822. position:absolute;
  1823. align-self:center;
  1824. padding:2px 2px 2px 0px;
  1825. box-sizing:border-box;
  1826. width:100%;
  1827. }
  1828. #u116285_text {
  1829. border-width:0px;
  1830. word-wrap:break-word;
  1831. text-transform:none;
  1832. visibility:hidden;
  1833. }
  1834. #u116286 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:0px;
  1838. top:0px;
  1839. width:0px;
  1840. height:0px;
  1841. }
  1842. #u116287_div {
  1843. border-width:0px;
  1844. position:absolute;
  1845. left:0px;
  1846. top:0px;
  1847. width:1000px;
  1848. height:60px;
  1849. background:inherit;
  1850. background-color:rgba(255, 255, 255, 1);
  1851. box-sizing:border-box;
  1852. border-width:1px;
  1853. border-style:solid;
  1854. border-color:rgba(215, 215, 215, 1);
  1855. border-radius:0px;
  1856. -moz-box-shadow:none;
  1857. -webkit-box-shadow:none;
  1858. box-shadow:none;
  1859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1860. font-weight:400;
  1861. font-style:normal;
  1862. font-size:14px;
  1863. color:#AAAAAA;
  1864. text-align:center;
  1865. line-height:30px;
  1866. }
  1867. #u116287 {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:84px;
  1871. top:1207px;
  1872. width:1000px;
  1873. height:60px;
  1874. display:flex;
  1875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1876. font-weight:400;
  1877. font-style:normal;
  1878. font-size:14px;
  1879. color:#AAAAAA;
  1880. text-align:center;
  1881. line-height:30px;
  1882. }
  1883. #u116287 .text {
  1884. position:absolute;
  1885. align-self:center;
  1886. padding:5px 10px 5px 10px;
  1887. box-sizing:border-box;
  1888. width:100%;
  1889. }
  1890. #u116287_text {
  1891. border-width:0px;
  1892. word-wrap:break-word;
  1893. text-transform:none;
  1894. visibility:hidden;
  1895. }
  1896. #u116288_div {
  1897. border-width:0px;
  1898. position:absolute;
  1899. left:0px;
  1900. top:0px;
  1901. width:80px;
  1902. height:30px;
  1903. background:inherit;
  1904. background-color:rgba(24, 144, 255, 1);
  1905. border:none;
  1906. border-radius:4px;
  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:#FFFFFF;
  1915. }
  1916. #u116288 {
  1917. border-width:0px;
  1918. position:absolute;
  1919. left:978px;
  1920. top:1222px;
  1921. width:80px;
  1922. height:30px;
  1923. display:flex;
  1924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1925. font-weight:400;
  1926. font-style:normal;
  1927. font-size:14px;
  1928. color:#FFFFFF;
  1929. }
  1930. #u116288 .text {
  1931. position:absolute;
  1932. align-self:center;
  1933. padding:2px 2px 2px 2px;
  1934. box-sizing:border-box;
  1935. width:100%;
  1936. }
  1937. #u116288_text {
  1938. border-width:0px;
  1939. word-wrap:break-word;
  1940. text-transform:none;
  1941. }
  1942. #u116289_div {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:0px;
  1946. top:0px;
  1947. width:80px;
  1948. height:30px;
  1949. background:inherit;
  1950. background-color:rgba(245, 154, 35, 1);
  1951. border:none;
  1952. border-radius:4px;
  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:14px;
  1960. color:#FFFFFF;
  1961. }
  1962. #u116289 {
  1963. border-width:0px;
  1964. position:absolute;
  1965. left:888px;
  1966. top:1222px;
  1967. width:80px;
  1968. height:30px;
  1969. display:flex;
  1970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1971. font-weight:400;
  1972. font-style:normal;
  1973. font-size:14px;
  1974. color:#FFFFFF;
  1975. }
  1976. #u116289 .text {
  1977. position:absolute;
  1978. align-self:center;
  1979. padding:2px 2px 2px 2px;
  1980. box-sizing:border-box;
  1981. width:100%;
  1982. }
  1983. #u116289_text {
  1984. border-width:0px;
  1985. word-wrap:break-word;
  1986. text-transform:none;
  1987. }
  1988. #u116290_div {
  1989. border-width:0px;
  1990. position:absolute;
  1991. left:0px;
  1992. top:0px;
  1993. width:80px;
  1994. height:30px;
  1995. background:inherit;
  1996. background-color:rgba(255, 255, 255, 1);
  1997. box-sizing:border-box;
  1998. border-width:1px;
  1999. border-style:solid;
  2000. border-color:rgba(170, 170, 170, 1);
  2001. border-radius:4px;
  2002. -moz-box-shadow:none;
  2003. -webkit-box-shadow:none;
  2004. box-shadow:none;
  2005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2006. font-weight:400;
  2007. font-style:normal;
  2008. font-size:14px;
  2009. }
  2010. #u116290 {
  2011. border-width:0px;
  2012. position:absolute;
  2013. left:798px;
  2014. top:1222px;
  2015. width:80px;
  2016. height:30px;
  2017. display:flex;
  2018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2019. font-weight:400;
  2020. font-style:normal;
  2021. font-size:14px;
  2022. }
  2023. #u116290 .text {
  2024. position:absolute;
  2025. align-self:center;
  2026. padding:2px 2px 2px 2px;
  2027. box-sizing:border-box;
  2028. width:100%;
  2029. }
  2030. #u116290_text {
  2031. border-width:0px;
  2032. word-wrap:break-word;
  2033. text-transform:none;
  2034. }
  2035. #u116291_div {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:0px;
  2039. top:0px;
  2040. width:320px;
  2041. height:30px;
  2042. background:inherit;
  2043. background-color:rgba(255, 255, 255, 0);
  2044. border:none;
  2045. border-left:0px;
  2046. border-top:0px;
  2047. border-right:0px;
  2048. border-radius:0px;
  2049. border-bottom-right-radius:0px;
  2050. border-bottom-left-radius:0px;
  2051. -moz-box-shadow:none;
  2052. -webkit-box-shadow:none;
  2053. box-shadow:none;
  2054. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2055. font-weight:500;
  2056. font-style:normal;
  2057. font-size:18px;
  2058. line-height:30px;
  2059. }
  2060. #u116291 {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:114px;
  2064. top:627px;
  2065. width:320px;
  2066. height:30px;
  2067. display:flex;
  2068. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2069. font-weight:500;
  2070. font-style:normal;
  2071. font-size:18px;
  2072. line-height:30px;
  2073. }
  2074. #u116291 .text {
  2075. position:absolute;
  2076. align-self:flex-start;
  2077. padding:0px 0px 0px 0px;
  2078. box-sizing:border-box;
  2079. width:100%;
  2080. }
  2081. #u116291_text {
  2082. border-width:0px;
  2083. word-wrap:break-word;
  2084. text-transform:none;
  2085. }
  2086. #u116292 {
  2087. border-width:0px;
  2088. position:absolute;
  2089. left:114px;
  2090. top:663px;
  2091. width:931px;
  2092. height:118px;
  2093. }
  2094. #u116293_img {
  2095. border-width:0px;
  2096. position:absolute;
  2097. left:0px;
  2098. top:0px;
  2099. width:356px;
  2100. height:38px;
  2101. }
  2102. #u116293 {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:0px;
  2106. top:0px;
  2107. width:356px;
  2108. height:38px;
  2109. display:flex;
  2110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2111. font-weight:400;
  2112. font-style:normal;
  2113. font-size:12px;
  2114. color:#FFFFFF;
  2115. }
  2116. #u116293 .text {
  2117. position:absolute;
  2118. align-self:center;
  2119. padding:2px 2px 2px 0px;
  2120. box-sizing:border-box;
  2121. width:100%;
  2122. }
  2123. #u116293_text {
  2124. border-width:0px;
  2125. word-wrap:break-word;
  2126. text-transform:none;
  2127. }
  2128. #u116294_img {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:0px;
  2132. top:0px;
  2133. width:575px;
  2134. height:38px;
  2135. }
  2136. #u116294 {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:356px;
  2140. top:0px;
  2141. width:575px;
  2142. height:38px;
  2143. display:flex;
  2144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2145. font-weight:400;
  2146. font-style:normal;
  2147. font-size:12px;
  2148. color:#FFFFFF;
  2149. }
  2150. #u116294 .text {
  2151. position:absolute;
  2152. align-self:center;
  2153. padding:2px 2px 2px 0px;
  2154. box-sizing:border-box;
  2155. width:100%;
  2156. }
  2157. #u116294_text {
  2158. border-width:0px;
  2159. word-wrap:break-word;
  2160. text-transform:none;
  2161. }
  2162. #u116295_img {
  2163. border-width:0px;
  2164. position:absolute;
  2165. left:0px;
  2166. top:0px;
  2167. width:356px;
  2168. height:40px;
  2169. }
  2170. #u116295 {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:0px;
  2174. top:38px;
  2175. width:356px;
  2176. height:40px;
  2177. display:flex;
  2178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2179. font-weight:400;
  2180. font-style:normal;
  2181. font-size:12px;
  2182. color:#333333;
  2183. }
  2184. #u116295 .text {
  2185. position:absolute;
  2186. align-self:center;
  2187. padding:2px 2px 2px 0px;
  2188. box-sizing:border-box;
  2189. width:100%;
  2190. }
  2191. #u116295_text {
  2192. border-width:0px;
  2193. word-wrap:break-word;
  2194. text-transform:none;
  2195. visibility:hidden;
  2196. }
  2197. #u116296_img {
  2198. border-width:0px;
  2199. position:absolute;
  2200. left:0px;
  2201. top:0px;
  2202. width:575px;
  2203. height:40px;
  2204. }
  2205. #u116296 {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:356px;
  2209. top:38px;
  2210. width:575px;
  2211. height:40px;
  2212. display:flex;
  2213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2214. font-weight:400;
  2215. font-style:normal;
  2216. font-size:12px;
  2217. color:#333333;
  2218. }
  2219. #u116296 .text {
  2220. position:absolute;
  2221. align-self:center;
  2222. padding:2px 2px 2px 0px;
  2223. box-sizing:border-box;
  2224. width:100%;
  2225. }
  2226. #u116296_text {
  2227. border-width:0px;
  2228. word-wrap:break-word;
  2229. text-transform:none;
  2230. visibility:hidden;
  2231. }
  2232. #u116297_img {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:0px;
  2236. top:0px;
  2237. width:356px;
  2238. height:40px;
  2239. }
  2240. #u116297 {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:0px;
  2244. top:78px;
  2245. width:356px;
  2246. height:40px;
  2247. display:flex;
  2248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2249. font-weight:400;
  2250. font-style:normal;
  2251. font-size:12px;
  2252. color:#333333;
  2253. }
  2254. #u116297 .text {
  2255. position:absolute;
  2256. align-self:center;
  2257. padding:2px 2px 2px 0px;
  2258. box-sizing:border-box;
  2259. width:100%;
  2260. }
  2261. #u116297_text {
  2262. border-width:0px;
  2263. word-wrap:break-word;
  2264. text-transform:none;
  2265. visibility:hidden;
  2266. }
  2267. #u116298_img {
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:0px;
  2271. top:0px;
  2272. width:575px;
  2273. height:40px;
  2274. }
  2275. #u116298 {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:356px;
  2279. top:78px;
  2280. width:575px;
  2281. height:40px;
  2282. display:flex;
  2283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2284. font-weight:400;
  2285. font-style:normal;
  2286. font-size:12px;
  2287. color:#333333;
  2288. }
  2289. #u116298 .text {
  2290. position:absolute;
  2291. align-self:center;
  2292. padding:2px 2px 2px 0px;
  2293. box-sizing:border-box;
  2294. width:100%;
  2295. }
  2296. #u116298_text {
  2297. border-width:0px;
  2298. word-wrap:break-word;
  2299. text-transform:none;
  2300. visibility:hidden;
  2301. }
  2302. #u116299_div {
  2303. border-width:0px;
  2304. position:absolute;
  2305. left:0px;
  2306. top:0px;
  2307. width:320px;
  2308. height:30px;
  2309. background:inherit;
  2310. background-color:rgba(255, 255, 255, 0);
  2311. border:none;
  2312. border-left:0px;
  2313. border-top:0px;
  2314. border-right:0px;
  2315. border-radius:0px;
  2316. border-bottom-right-radius:0px;
  2317. border-bottom-left-radius:0px;
  2318. -moz-box-shadow:none;
  2319. -webkit-box-shadow:none;
  2320. box-shadow:none;
  2321. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2322. font-weight:500;
  2323. font-style:normal;
  2324. font-size:18px;
  2325. line-height:30px;
  2326. }
  2327. #u116299 {
  2328. border-width:0px;
  2329. position:absolute;
  2330. left:114px;
  2331. top:300px;
  2332. width:320px;
  2333. height:30px;
  2334. display:flex;
  2335. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2336. font-weight:500;
  2337. font-style:normal;
  2338. font-size:18px;
  2339. line-height:30px;
  2340. }
  2341. #u116299 .text {
  2342. position:absolute;
  2343. align-self:flex-start;
  2344. padding:0px 0px 0px 0px;
  2345. box-sizing:border-box;
  2346. width:100%;
  2347. }
  2348. #u116299_text {
  2349. border-width:0px;
  2350. word-wrap:break-word;
  2351. text-transform:none;
  2352. }
  2353. #u116300_div {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:0px;
  2357. top:0px;
  2358. width:320px;
  2359. height:90px;
  2360. background:inherit;
  2361. background-color:rgba(255, 255, 255, 0);
  2362. border:none;
  2363. border-left:0px;
  2364. border-top:0px;
  2365. border-right:0px;
  2366. border-radius:0px;
  2367. border-bottom-right-radius:0px;
  2368. border-bottom-left-radius:0px;
  2369. -moz-box-shadow:none;
  2370. -webkit-box-shadow:none;
  2371. box-shadow:none;
  2372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2373. font-weight:400;
  2374. font-style:normal;
  2375. font-size:14px;
  2376. line-height:30px;
  2377. }
  2378. #u116300 {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:114px;
  2382. top:339px;
  2383. width:320px;
  2384. height:90px;
  2385. display:flex;
  2386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2387. font-weight:400;
  2388. font-style:normal;
  2389. font-size:14px;
  2390. line-height:30px;
  2391. }
  2392. #u116300 .text {
  2393. position:absolute;
  2394. align-self:flex-start;
  2395. padding:0px 0px 0px 0px;
  2396. box-sizing:border-box;
  2397. width:100%;
  2398. }
  2399. #u116300_text {
  2400. border-width:0px;
  2401. word-wrap:break-word;
  2402. text-transform:none;
  2403. }