styles.css 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-144px;
  6. width:1381px;
  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. #u1813 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u1814_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1381px;
  33. height:1400px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(242, 242, 242, 1);
  40. border-radius:0px;
  41. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  42. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  43. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  44. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  45. font-weight:700;
  46. font-style:normal;
  47. }
  48. #u1814 {
  49. border-width:0px;
  50. position:absolute;
  51. left:144px;
  52. top:83px;
  53. width:1381px;
  54. height:1400px;
  55. display:flex;
  56. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  57. font-weight:700;
  58. font-style:normal;
  59. }
  60. #u1814 .text {
  61. position:absolute;
  62. align-self:center;
  63. padding:2px 2px 2px 2px;
  64. box-sizing:border-box;
  65. width:100%;
  66. }
  67. #u1814_text {
  68. border-width:0px;
  69. word-wrap:break-word;
  70. text-transform:none;
  71. visibility:hidden;
  72. }
  73. #u1815_img {
  74. border-width:0px;
  75. position:absolute;
  76. left:0px;
  77. top:0px;
  78. width:1380px;
  79. height:2px;
  80. }
  81. #u1815 {
  82. border-width:0px;
  83. position:absolute;
  84. left:144px;
  85. top:146px;
  86. width:1379px;
  87. height:1px;
  88. display:flex;
  89. }
  90. #u1815 .text {
  91. position:absolute;
  92. align-self:center;
  93. padding:2px 2px 2px 2px;
  94. box-sizing:border-box;
  95. width:100%;
  96. }
  97. #u1815_text {
  98. border-width:0px;
  99. word-wrap:break-word;
  100. text-transform:none;
  101. visibility:hidden;
  102. }
  103. #u1816_div {
  104. border-width:0px;
  105. position:absolute;
  106. left:0px;
  107. top:0px;
  108. width:73px;
  109. height:25px;
  110. background:inherit;
  111. background-color:rgba(255, 255, 255, 0);
  112. border:none;
  113. border-radius:0px;
  114. -moz-box-shadow:none;
  115. -webkit-box-shadow:none;
  116. box-shadow:none;
  117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  118. font-weight:400;
  119. font-style:normal;
  120. font-size:18px;
  121. }
  122. #u1816 {
  123. border-width:0px;
  124. position:absolute;
  125. left:195px;
  126. top:99px;
  127. width:73px;
  128. height:25px;
  129. display:flex;
  130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  131. font-weight:400;
  132. font-style:normal;
  133. font-size:18px;
  134. }
  135. #u1816 .text {
  136. position:absolute;
  137. align-self:flex-start;
  138. padding:0px 0px 0px 0px;
  139. box-sizing:border-box;
  140. width:100%;
  141. }
  142. #u1816_text {
  143. border-width:0px;
  144. white-space:nowrap;
  145. text-transform:none;
  146. }
  147. #u1817_img {
  148. border-width:0px;
  149. position:absolute;
  150. left:0px;
  151. top:0px;
  152. width:8px;
  153. height:14px;
  154. }
  155. #u1817 {
  156. border-width:0px;
  157. position:absolute;
  158. left:165px;
  159. top:104px;
  160. width:8px;
  161. height:14px;
  162. display:flex;
  163. }
  164. #u1817 .text {
  165. position:absolute;
  166. align-self:center;
  167. padding:2px 2px 2px 2px;
  168. box-sizing:border-box;
  169. width:100%;
  170. }
  171. #u1817_text {
  172. border-width:0px;
  173. word-wrap:break-word;
  174. text-transform:none;
  175. visibility:hidden;
  176. }
  177. #u1818_div {
  178. border-width:0px;
  179. position:absolute;
  180. left:0px;
  181. top:0px;
  182. width:280px;
  183. height:30px;
  184. background:inherit;
  185. background-color:rgba(255, 255, 255, 0);
  186. border:none;
  187. border-radius:0px;
  188. -moz-box-shadow:none;
  189. -webkit-box-shadow:none;
  190. box-shadow:none;
  191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  192. font-weight:400;
  193. font-style:normal;
  194. line-height:30px;
  195. }
  196. #u1818 {
  197. border-width:0px;
  198. position:absolute;
  199. left:195px;
  200. top:231px;
  201. width:280px;
  202. height:30px;
  203. display:flex;
  204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  205. font-weight:400;
  206. font-style:normal;
  207. line-height:30px;
  208. }
  209. #u1818 .text {
  210. position:absolute;
  211. align-self:flex-start;
  212. padding:0px 0px 0px 0px;
  213. box-sizing:border-box;
  214. width:100%;
  215. }
  216. #u1818_text {
  217. border-width:0px;
  218. word-wrap:break-word;
  219. text-transform:none;
  220. }
  221. #u1819_div {
  222. border-width:0px;
  223. position:absolute;
  224. left:0px;
  225. top:0px;
  226. width:280px;
  227. height:30px;
  228. background:inherit;
  229. background-color:rgba(255, 255, 255, 0);
  230. border:none;
  231. border-radius:0px;
  232. -moz-box-shadow:none;
  233. -webkit-box-shadow:none;
  234. box-shadow:none;
  235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  236. font-weight:400;
  237. font-style:normal;
  238. line-height:30px;
  239. }
  240. #u1819 {
  241. border-width:0px;
  242. position:absolute;
  243. left:850px;
  244. top:231px;
  245. width:280px;
  246. height:30px;
  247. display:flex;
  248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  249. font-weight:400;
  250. font-style:normal;
  251. line-height:30px;
  252. }
  253. #u1819 .text {
  254. position:absolute;
  255. align-self:flex-start;
  256. padding:0px 0px 0px 0px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u1819_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. }
  265. #u1820_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:280px;
  271. height:30px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. line-height:30px;
  283. }
  284. #u1820 {
  285. border-width:0px;
  286. position:absolute;
  287. left:522px;
  288. top:231px;
  289. width:280px;
  290. height:30px;
  291. display:flex;
  292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  293. font-weight:400;
  294. font-style:normal;
  295. line-height:30px;
  296. }
  297. #u1820 .text {
  298. position:absolute;
  299. align-self:flex-start;
  300. padding:0px 0px 0px 0px;
  301. box-sizing:border-box;
  302. width:100%;
  303. }
  304. #u1820_text {
  305. border-width:0px;
  306. word-wrap:break-word;
  307. text-transform:none;
  308. }
  309. #u1821_div {
  310. border-width:0px;
  311. position:absolute;
  312. left:0px;
  313. top:0px;
  314. width:280px;
  315. height:30px;
  316. background:inherit;
  317. background-color:rgba(255, 255, 255, 0);
  318. border:none;
  319. border-radius:0px;
  320. -moz-box-shadow:none;
  321. -webkit-box-shadow:none;
  322. box-shadow:none;
  323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  324. font-weight:400;
  325. font-style:normal;
  326. line-height:30px;
  327. }
  328. #u1821 {
  329. border-width:0px;
  330. position:absolute;
  331. left:1177px;
  332. top:231px;
  333. width:280px;
  334. height:30px;
  335. display:flex;
  336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  337. font-weight:400;
  338. font-style:normal;
  339. line-height:30px;
  340. }
  341. #u1821 .text {
  342. position:absolute;
  343. align-self:flex-start;
  344. padding:0px 0px 0px 0px;
  345. box-sizing:border-box;
  346. width:100%;
  347. }
  348. #u1821_text {
  349. border-width:0px;
  350. word-wrap:break-word;
  351. text-transform:none;
  352. }
  353. #u1822_div {
  354. border-width:0px;
  355. position:absolute;
  356. left:0px;
  357. top:0px;
  358. width:1243px;
  359. height:40px;
  360. background:inherit;
  361. background-color:rgba(242, 242, 242, 1);
  362. border:none;
  363. border-top:0px;
  364. border-right:0px;
  365. border-bottom:0px;
  366. border-radius:0px;
  367. border-top-left-radius:0px;
  368. border-bottom-left-radius:0px;
  369. -moz-box-shadow:none;
  370. -webkit-box-shadow:none;
  371. box-shadow:none;
  372. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  373. font-weight:500;
  374. font-style:normal;
  375. font-size:18px;
  376. color:#000000;
  377. }
  378. #u1822 {
  379. border-width:0px;
  380. position:absolute;
  381. left:195px;
  382. top:171px;
  383. width:1243px;
  384. height:40px;
  385. display:flex;
  386. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  387. font-weight:500;
  388. font-style:normal;
  389. font-size:18px;
  390. color:#000000;
  391. }
  392. #u1822 .text {
  393. position:absolute;
  394. align-self:center;
  395. padding:0px 0px 0px 10px;
  396. box-sizing:border-box;
  397. width:100%;
  398. }
  399. #u1822_text {
  400. border-width:0px;
  401. word-wrap:break-word;
  402. text-transform:none;
  403. }
  404. #u1823_div {
  405. border-width:0px;
  406. position:absolute;
  407. left:0px;
  408. top:0px;
  409. width:280px;
  410. height:30px;
  411. background:inherit;
  412. background-color:rgba(255, 255, 255, 0);
  413. border:none;
  414. border-radius:0px;
  415. -moz-box-shadow:none;
  416. -webkit-box-shadow:none;
  417. box-shadow:none;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. line-height:30px;
  422. }
  423. #u1823 {
  424. border-width:0px;
  425. position:absolute;
  426. left:864px;
  427. top:1173px;
  428. width:280px;
  429. height:30px;
  430. display:flex;
  431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  432. font-weight:400;
  433. font-style:normal;
  434. line-height:30px;
  435. }
  436. #u1823 .text {
  437. position:absolute;
  438. align-self:flex-start;
  439. padding:0px 0px 0px 0px;
  440. box-sizing:border-box;
  441. width:100%;
  442. }
  443. #u1823_text {
  444. border-width:0px;
  445. word-wrap:break-word;
  446. text-transform:none;
  447. }
  448. #u1824_div {
  449. border-width:0px;
  450. position:absolute;
  451. left:0px;
  452. top:0px;
  453. width:280px;
  454. height:30px;
  455. background:inherit;
  456. background-color:rgba(255, 255, 255, 0);
  457. border:none;
  458. border-radius:0px;
  459. -moz-box-shadow:none;
  460. -webkit-box-shadow:none;
  461. box-shadow:none;
  462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  463. font-weight:400;
  464. font-style:normal;
  465. line-height:30px;
  466. }
  467. #u1824 {
  468. border-width:0px;
  469. position:absolute;
  470. left:209px;
  471. top:1293px;
  472. width:280px;
  473. height:30px;
  474. display:flex;
  475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  476. font-weight:400;
  477. font-style:normal;
  478. line-height:30px;
  479. }
  480. #u1824 .text {
  481. position:absolute;
  482. align-self:flex-start;
  483. padding:0px 0px 0px 0px;
  484. box-sizing:border-box;
  485. width:100%;
  486. }
  487. #u1824_text {
  488. border-width:0px;
  489. word-wrap:break-word;
  490. text-transform:none;
  491. }
  492. #u1825_div {
  493. border-width:0px;
  494. position:absolute;
  495. left:0px;
  496. top:0px;
  497. width:280px;
  498. height:30px;
  499. background:inherit;
  500. background-color:rgba(255, 255, 255, 0);
  501. border:none;
  502. border-radius:0px;
  503. -moz-box-shadow:none;
  504. -webkit-box-shadow:none;
  505. box-shadow:none;
  506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  507. font-weight:400;
  508. font-style:normal;
  509. line-height:30px;
  510. }
  511. #u1825 {
  512. border-width:0px;
  513. position:absolute;
  514. left:536px;
  515. top:1173px;
  516. width:280px;
  517. height:30px;
  518. display:flex;
  519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  520. font-weight:400;
  521. font-style:normal;
  522. line-height:30px;
  523. }
  524. #u1825 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u1825_text {
  532. border-width:0px;
  533. word-wrap:break-word;
  534. text-transform:none;
  535. }
  536. #u1826_div {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:280px;
  542. height:30px;
  543. background:inherit;
  544. background-color:rgba(255, 255, 255, 0);
  545. border:none;
  546. border-radius:0px;
  547. -moz-box-shadow:none;
  548. -webkit-box-shadow:none;
  549. box-shadow:none;
  550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  551. font-weight:400;
  552. font-style:normal;
  553. line-height:30px;
  554. }
  555. #u1826 {
  556. border-width:0px;
  557. position:absolute;
  558. left:536px;
  559. top:1293px;
  560. width:280px;
  561. height:30px;
  562. display:flex;
  563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  564. font-weight:400;
  565. font-style:normal;
  566. line-height:30px;
  567. }
  568. #u1826 .text {
  569. position:absolute;
  570. align-self:flex-start;
  571. padding:0px 0px 0px 0px;
  572. box-sizing:border-box;
  573. width:100%;
  574. }
  575. #u1826_text {
  576. border-width:0px;
  577. word-wrap:break-word;
  578. text-transform:none;
  579. }
  580. #u1827_div {
  581. border-width:0px;
  582. position:absolute;
  583. left:0px;
  584. top:0px;
  585. width:1243px;
  586. height:40px;
  587. background:inherit;
  588. background-color:rgba(242, 242, 242, 1);
  589. border:none;
  590. border-top:0px;
  591. border-right:0px;
  592. border-bottom:0px;
  593. border-radius:0px;
  594. border-top-left-radius:0px;
  595. border-bottom-left-radius:0px;
  596. -moz-box-shadow:none;
  597. -webkit-box-shadow:none;
  598. box-shadow:none;
  599. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  600. font-weight:500;
  601. font-style:normal;
  602. font-size:18px;
  603. color:#000000;
  604. }
  605. #u1827 {
  606. border-width:0px;
  607. position:absolute;
  608. left:195px;
  609. top:1073px;
  610. width:1243px;
  611. height:40px;
  612. display:flex;
  613. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  614. font-weight:500;
  615. font-style:normal;
  616. font-size:18px;
  617. color:#000000;
  618. }
  619. #u1827 .text {
  620. position:absolute;
  621. align-self:center;
  622. padding:0px 0px 0px 10px;
  623. box-sizing:border-box;
  624. width:100%;
  625. }
  626. #u1827_text {
  627. border-width:0px;
  628. word-wrap:break-word;
  629. text-transform:none;
  630. }
  631. #u1828_div {
  632. border-width:0px;
  633. position:absolute;
  634. left:0px;
  635. top:0px;
  636. width:280px;
  637. height:30px;
  638. background:inherit;
  639. background-color:rgba(255, 255, 255, 0);
  640. border:none;
  641. border-radius:0px;
  642. -moz-box-shadow:none;
  643. -webkit-box-shadow:none;
  644. box-shadow:none;
  645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  646. font-weight:400;
  647. font-style:normal;
  648. line-height:30px;
  649. }
  650. #u1828 {
  651. border-width:0px;
  652. position:absolute;
  653. left:1191px;
  654. top:1133px;
  655. width:280px;
  656. height:30px;
  657. display:flex;
  658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  659. font-weight:400;
  660. font-style:normal;
  661. line-height:30px;
  662. }
  663. #u1828 .text {
  664. position:absolute;
  665. align-self:flex-start;
  666. padding:0px 0px 0px 0px;
  667. box-sizing:border-box;
  668. width:100%;
  669. }
  670. #u1828_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u1829_div {
  676. border-width:0px;
  677. position:absolute;
  678. left:0px;
  679. top:0px;
  680. width:280px;
  681. height:30px;
  682. background:inherit;
  683. background-color:rgba(255, 255, 255, 0);
  684. border:none;
  685. border-radius:0px;
  686. -moz-box-shadow:none;
  687. -webkit-box-shadow:none;
  688. box-shadow:none;
  689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  690. font-weight:400;
  691. font-style:normal;
  692. line-height:30px;
  693. }
  694. #u1829 {
  695. border-width:0px;
  696. position:absolute;
  697. left:209px;
  698. top:1133px;
  699. width:280px;
  700. height:30px;
  701. display:flex;
  702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  703. font-weight:400;
  704. font-style:normal;
  705. line-height:30px;
  706. }
  707. #u1829 .text {
  708. position:absolute;
  709. align-self:flex-start;
  710. padding:0px 0px 0px 0px;
  711. box-sizing:border-box;
  712. width:100%;
  713. }
  714. #u1829_text {
  715. border-width:0px;
  716. word-wrap:break-word;
  717. text-transform:none;
  718. }
  719. #u1830_div {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:280px;
  725. height:30px;
  726. background:inherit;
  727. background-color:rgba(255, 255, 255, 0);
  728. border:none;
  729. border-radius:0px;
  730. -moz-box-shadow:none;
  731. -webkit-box-shadow:none;
  732. box-shadow:none;
  733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  734. font-weight:400;
  735. font-style:normal;
  736. line-height:30px;
  737. }
  738. #u1830 {
  739. border-width:0px;
  740. position:absolute;
  741. left:536px;
  742. top:1133px;
  743. width:280px;
  744. height:30px;
  745. display:flex;
  746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  747. font-weight:400;
  748. font-style:normal;
  749. line-height:30px;
  750. }
  751. #u1830 .text {
  752. position:absolute;
  753. align-self:flex-start;
  754. padding:0px 0px 0px 0px;
  755. box-sizing:border-box;
  756. width:100%;
  757. }
  758. #u1830_text {
  759. border-width:0px;
  760. word-wrap:break-word;
  761. text-transform:none;
  762. }
  763. #u1831_div {
  764. border-width:0px;
  765. position:absolute;
  766. left:0px;
  767. top:0px;
  768. width:1243px;
  769. height:40px;
  770. background:inherit;
  771. background-color:rgba(242, 242, 242, 1);
  772. border:none;
  773. border-top:0px;
  774. border-right:0px;
  775. border-bottom:0px;
  776. border-radius:0px;
  777. border-top-left-radius:0px;
  778. border-bottom-left-radius:0px;
  779. -moz-box-shadow:none;
  780. -webkit-box-shadow:none;
  781. box-shadow:none;
  782. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  783. font-weight:500;
  784. font-style:normal;
  785. font-size:18px;
  786. color:#000000;
  787. }
  788. #u1831 {
  789. border-width:0px;
  790. position:absolute;
  791. left:195px;
  792. top:1233px;
  793. width:1243px;
  794. height:40px;
  795. display:flex;
  796. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  797. font-weight:500;
  798. font-style:normal;
  799. font-size:18px;
  800. color:#000000;
  801. }
  802. #u1831 .text {
  803. position:absolute;
  804. align-self:center;
  805. padding:0px 0px 0px 10px;
  806. box-sizing:border-box;
  807. width:100%;
  808. }
  809. #u1831_text {
  810. border-width:0px;
  811. word-wrap:break-word;
  812. text-transform:none;
  813. }
  814. #u1832_div {
  815. border-width:0px;
  816. position:absolute;
  817. left:0px;
  818. top:0px;
  819. width:280px;
  820. height:30px;
  821. background:inherit;
  822. background-color:rgba(255, 255, 255, 0);
  823. border:none;
  824. border-radius:0px;
  825. -moz-box-shadow:none;
  826. -webkit-box-shadow:none;
  827. box-shadow:none;
  828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  829. font-weight:400;
  830. font-style:normal;
  831. line-height:30px;
  832. }
  833. #u1832 {
  834. border-width:0px;
  835. position:absolute;
  836. left:209px;
  837. top:1413px;
  838. width:280px;
  839. height:30px;
  840. display:flex;
  841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  842. font-weight:400;
  843. font-style:normal;
  844. line-height:30px;
  845. }
  846. #u1832 .text {
  847. position:absolute;
  848. align-self:flex-start;
  849. padding:0px 0px 0px 0px;
  850. box-sizing:border-box;
  851. width:100%;
  852. }
  853. #u1832_text {
  854. border-width:0px;
  855. word-wrap:break-word;
  856. text-transform:none;
  857. }
  858. #u1833_div {
  859. border-width:0px;
  860. position:absolute;
  861. left:0px;
  862. top:0px;
  863. width:1243px;
  864. height:40px;
  865. background:inherit;
  866. background-color:rgba(242, 242, 242, 1);
  867. border:none;
  868. border-top:0px;
  869. border-right:0px;
  870. border-bottom:0px;
  871. border-radius:0px;
  872. border-top-left-radius:0px;
  873. border-bottom-left-radius:0px;
  874. -moz-box-shadow:none;
  875. -webkit-box-shadow:none;
  876. box-shadow:none;
  877. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  878. font-weight:500;
  879. font-style:normal;
  880. font-size:18px;
  881. color:#000000;
  882. }
  883. #u1833 {
  884. border-width:0px;
  885. position:absolute;
  886. left:195px;
  887. top:1353px;
  888. width:1243px;
  889. height:40px;
  890. display:flex;
  891. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  892. font-weight:500;
  893. font-style:normal;
  894. font-size:18px;
  895. color:#000000;
  896. }
  897. #u1833 .text {
  898. position:absolute;
  899. align-self:center;
  900. padding:0px 0px 0px 10px;
  901. box-sizing:border-box;
  902. width:100%;
  903. }
  904. #u1833_text {
  905. border-width:0px;
  906. word-wrap:break-word;
  907. text-transform:none;
  908. }
  909. #u1834_div {
  910. border-width:0px;
  911. position:absolute;
  912. left:0px;
  913. top:0px;
  914. width:280px;
  915. height:30px;
  916. background:inherit;
  917. background-color:rgba(255, 255, 255, 0);
  918. border:none;
  919. border-radius:0px;
  920. -moz-box-shadow:none;
  921. -webkit-box-shadow:none;
  922. box-shadow:none;
  923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  924. font-weight:400;
  925. font-style:normal;
  926. line-height:30px;
  927. }
  928. #u1834 {
  929. border-width:0px;
  930. position:absolute;
  931. left:864px;
  932. top:1133px;
  933. width:280px;
  934. height:30px;
  935. display:flex;
  936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  937. font-weight:400;
  938. font-style:normal;
  939. line-height:30px;
  940. }
  941. #u1834 .text {
  942. position:absolute;
  943. align-self:flex-start;
  944. padding:0px 0px 0px 0px;
  945. box-sizing:border-box;
  946. width:100%;
  947. }
  948. #u1834_text {
  949. border-width:0px;
  950. word-wrap:break-word;
  951. text-transform:none;
  952. }
  953. #u1835_div {
  954. border-width:0px;
  955. position:absolute;
  956. left:0px;
  957. top:0px;
  958. width:280px;
  959. height:30px;
  960. background:inherit;
  961. background-color:rgba(255, 255, 255, 0);
  962. border:none;
  963. border-radius:0px;
  964. -moz-box-shadow:none;
  965. -webkit-box-shadow:none;
  966. box-shadow:none;
  967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  968. font-weight:400;
  969. font-style:normal;
  970. line-height:30px;
  971. }
  972. #u1835 {
  973. border-width:0px;
  974. position:absolute;
  975. left:195px;
  976. top:271px;
  977. width:280px;
  978. height:30px;
  979. display:flex;
  980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  981. font-weight:400;
  982. font-style:normal;
  983. line-height:30px;
  984. }
  985. #u1835 .text {
  986. position:absolute;
  987. align-self:flex-start;
  988. padding:0px 0px 0px 0px;
  989. box-sizing:border-box;
  990. width:100%;
  991. }
  992. #u1835_text {
  993. border-width:0px;
  994. word-wrap:break-word;
  995. text-transform:none;
  996. }
  997. #u1836_div {
  998. border-width:0px;
  999. position:absolute;
  1000. left:0px;
  1001. top:0px;
  1002. width:280px;
  1003. height:30px;
  1004. background:inherit;
  1005. background-color:rgba(255, 255, 255, 0);
  1006. border:none;
  1007. border-radius:0px;
  1008. -moz-box-shadow:none;
  1009. -webkit-box-shadow:none;
  1010. box-shadow:none;
  1011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1012. font-weight:400;
  1013. font-style:normal;
  1014. line-height:30px;
  1015. }
  1016. #u1836 {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:522px;
  1020. top:271px;
  1021. width:280px;
  1022. height:30px;
  1023. display:flex;
  1024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1025. font-weight:400;
  1026. font-style:normal;
  1027. line-height:30px;
  1028. }
  1029. #u1836 .text {
  1030. position:absolute;
  1031. align-self:flex-start;
  1032. padding:0px 0px 0px 0px;
  1033. box-sizing:border-box;
  1034. width:100%;
  1035. }
  1036. #u1836_text {
  1037. border-width:0px;
  1038. word-wrap:break-word;
  1039. text-transform:none;
  1040. }
  1041. #u1837_div {
  1042. border-width:0px;
  1043. position:absolute;
  1044. left:0px;
  1045. top:0px;
  1046. width:1243px;
  1047. height:40px;
  1048. background:inherit;
  1049. background-color:rgba(242, 242, 242, 1);
  1050. border:none;
  1051. border-top:0px;
  1052. border-right:0px;
  1053. border-bottom:0px;
  1054. border-radius:0px;
  1055. border-top-left-radius:0px;
  1056. border-bottom-left-radius:0px;
  1057. -moz-box-shadow:none;
  1058. -webkit-box-shadow:none;
  1059. box-shadow:none;
  1060. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1061. font-weight:500;
  1062. font-style:normal;
  1063. font-size:18px;
  1064. color:#000000;
  1065. }
  1066. #u1837 {
  1067. border-width:0px;
  1068. position:absolute;
  1069. left:195px;
  1070. top:331px;
  1071. width:1243px;
  1072. height:40px;
  1073. display:flex;
  1074. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1075. font-weight:500;
  1076. font-style:normal;
  1077. font-size:18px;
  1078. color:#000000;
  1079. }
  1080. #u1837 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:0px 0px 0px 10px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u1837_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. }
  1092. #u1838_div {
  1093. border-width:0px;
  1094. position:absolute;
  1095. left:0px;
  1096. top:0px;
  1097. width:1243px;
  1098. height:408px;
  1099. background:inherit;
  1100. background-color:rgba(255, 255, 255, 0.450980392156863);
  1101. box-sizing:border-box;
  1102. border-width:1px;
  1103. border-style:solid;
  1104. border-color:rgba(242, 242, 242, 1);
  1105. border-radius:0px;
  1106. -moz-box-shadow:none;
  1107. -webkit-box-shadow:none;
  1108. box-shadow:none;
  1109. }
  1110. #u1838 {
  1111. border-width:0px;
  1112. position:absolute;
  1113. left:195px;
  1114. top:391px;
  1115. width:1243px;
  1116. height:408px;
  1117. display:flex;
  1118. }
  1119. #u1838 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:2px 2px 2px 2px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u1838_text {
  1127. border-width:0px;
  1128. word-wrap:break-word;
  1129. text-transform:none;
  1130. visibility:hidden;
  1131. }
  1132. #u1839_div {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:0px;
  1136. top:0px;
  1137. width:57px;
  1138. height:30px;
  1139. background:inherit;
  1140. background-color:rgba(255, 255, 255, 0);
  1141. border:none;
  1142. border-radius:0px;
  1143. -moz-box-shadow:none;
  1144. -webkit-box-shadow:none;
  1145. box-shadow:none;
  1146. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1147. font-weight:500;
  1148. font-style:normal;
  1149. line-height:30px;
  1150. }
  1151. #u1839 {
  1152. border-width:0px;
  1153. position:absolute;
  1154. left:209px;
  1155. top:406px;
  1156. width:57px;
  1157. height:30px;
  1158. display:flex;
  1159. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1160. font-weight:500;
  1161. font-style:normal;
  1162. line-height:30px;
  1163. }
  1164. #u1839 .text {
  1165. position:absolute;
  1166. align-self:flex-start;
  1167. padding:0px 0px 0px 0px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u1839_text {
  1172. border-width:0px;
  1173. white-space:nowrap;
  1174. text-transform:none;
  1175. }
  1176. #u1840_div {
  1177. border-width:0px;
  1178. position:absolute;
  1179. left:0px;
  1180. top:0px;
  1181. width:280px;
  1182. height:30px;
  1183. background:inherit;
  1184. background-color:rgba(255, 255, 255, 0);
  1185. border:none;
  1186. border-radius:0px;
  1187. -moz-box-shadow:none;
  1188. -webkit-box-shadow:none;
  1189. box-shadow:none;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. line-height:30px;
  1194. }
  1195. #u1840 {
  1196. border-width:0px;
  1197. position:absolute;
  1198. left:215px;
  1199. top:441px;
  1200. width:280px;
  1201. height:30px;
  1202. display:flex;
  1203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1204. font-weight:400;
  1205. font-style:normal;
  1206. line-height:30px;
  1207. }
  1208. #u1840 .text {
  1209. position:absolute;
  1210. align-self:flex-start;
  1211. padding:0px 0px 0px 0px;
  1212. box-sizing:border-box;
  1213. width:100%;
  1214. }
  1215. #u1840_text {
  1216. border-width:0px;
  1217. word-wrap:break-word;
  1218. text-transform:none;
  1219. }
  1220. #u1841_div {
  1221. border-width:0px;
  1222. position:absolute;
  1223. left:0px;
  1224. top:0px;
  1225. width:280px;
  1226. height:30px;
  1227. background:inherit;
  1228. background-color:rgba(255, 255, 255, 0);
  1229. border:none;
  1230. border-radius:0px;
  1231. -moz-box-shadow:none;
  1232. -webkit-box-shadow:none;
  1233. box-shadow:none;
  1234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1235. font-weight:400;
  1236. font-style:normal;
  1237. line-height:30px;
  1238. }
  1239. #u1841 {
  1240. border-width:0px;
  1241. position:absolute;
  1242. left:844px;
  1243. top:441px;
  1244. width:280px;
  1245. height:30px;
  1246. display:flex;
  1247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1248. font-weight:400;
  1249. font-style:normal;
  1250. line-height:30px;
  1251. }
  1252. #u1841 .text {
  1253. position:absolute;
  1254. align-self:flex-start;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u1841_text {
  1260. border-width:0px;
  1261. word-wrap:break-word;
  1262. text-transform:none;
  1263. }
  1264. #u1842_div {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:280px;
  1270. height:30px;
  1271. background:inherit;
  1272. background-color:rgba(255, 255, 255, 0);
  1273. border:none;
  1274. border-radius:0px;
  1275. -moz-box-shadow:none;
  1276. -webkit-box-shadow:none;
  1277. box-shadow:none;
  1278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1279. font-weight:400;
  1280. font-style:normal;
  1281. line-height:30px;
  1282. }
  1283. #u1842 {
  1284. border-width:0px;
  1285. position:absolute;
  1286. left:1158px;
  1287. top:441px;
  1288. width:280px;
  1289. height:30px;
  1290. display:flex;
  1291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1292. font-weight:400;
  1293. font-style:normal;
  1294. line-height:30px;
  1295. }
  1296. #u1842 .text {
  1297. position:absolute;
  1298. align-self:flex-start;
  1299. padding:0px 0px 0px 0px;
  1300. box-sizing:border-box;
  1301. width:100%;
  1302. }
  1303. #u1842_text {
  1304. border-width:0px;
  1305. word-wrap:break-word;
  1306. text-transform:none;
  1307. }
  1308. #u1843_div {
  1309. border-width:0px;
  1310. position:absolute;
  1311. left:0px;
  1312. top:0px;
  1313. width:280px;
  1314. height:30px;
  1315. background:inherit;
  1316. background-color:rgba(255, 255, 255, 0);
  1317. border:none;
  1318. border-radius:0px;
  1319. -moz-box-shadow:none;
  1320. -webkit-box-shadow:none;
  1321. box-shadow:none;
  1322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1323. font-weight:400;
  1324. font-style:normal;
  1325. line-height:30px;
  1326. }
  1327. #u1843 {
  1328. border-width:0px;
  1329. position:absolute;
  1330. left:529px;
  1331. top:441px;
  1332. width:280px;
  1333. height:30px;
  1334. display:flex;
  1335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1336. font-weight:400;
  1337. font-style:normal;
  1338. line-height:30px;
  1339. }
  1340. #u1843 .text {
  1341. position:absolute;
  1342. align-self:flex-start;
  1343. padding:0px 0px 0px 0px;
  1344. box-sizing:border-box;
  1345. width:100%;
  1346. }
  1347. #u1843_text {
  1348. border-width:0px;
  1349. word-wrap:break-word;
  1350. text-transform:none;
  1351. }
  1352. #u1844_div {
  1353. border-width:0px;
  1354. position:absolute;
  1355. left:0px;
  1356. top:0px;
  1357. width:280px;
  1358. height:30px;
  1359. background:inherit;
  1360. background-color:rgba(255, 255, 255, 0);
  1361. border:none;
  1362. border-radius:0px;
  1363. -moz-box-shadow:none;
  1364. -webkit-box-shadow:none;
  1365. box-shadow:none;
  1366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1367. font-weight:400;
  1368. font-style:normal;
  1369. line-height:30px;
  1370. }
  1371. #u1844 {
  1372. border-width:0px;
  1373. position:absolute;
  1374. left:529px;
  1375. top:481px;
  1376. width:280px;
  1377. height:30px;
  1378. display:flex;
  1379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1380. font-weight:400;
  1381. font-style:normal;
  1382. line-height:30px;
  1383. }
  1384. #u1844 .text {
  1385. position:absolute;
  1386. align-self:flex-start;
  1387. padding:0px 0px 0px 0px;
  1388. box-sizing:border-box;
  1389. width:100%;
  1390. }
  1391. #u1844_text {
  1392. border-width:0px;
  1393. word-wrap:break-word;
  1394. text-transform:none;
  1395. }
  1396. #u1845_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:280px;
  1402. height:30px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:0px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. line-height:30px;
  1414. }
  1415. #u1845 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:843px;
  1419. top:481px;
  1420. width:280px;
  1421. height:30px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. line-height:30px;
  1427. }
  1428. #u1845 .text {
  1429. position:absolute;
  1430. align-self:flex-start;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u1845_text {
  1436. border-width:0px;
  1437. word-wrap:break-word;
  1438. text-transform:none;
  1439. }
  1440. #u1846_div {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:280px;
  1446. height:30px;
  1447. background:inherit;
  1448. background-color:rgba(255, 255, 255, 0);
  1449. border:none;
  1450. border-radius:0px;
  1451. -moz-box-shadow:none;
  1452. -webkit-box-shadow:none;
  1453. box-shadow:none;
  1454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1455. font-weight:400;
  1456. font-style:normal;
  1457. line-height:30px;
  1458. }
  1459. #u1846 {
  1460. border-width:0px;
  1461. position:absolute;
  1462. left:529px;
  1463. top:521px;
  1464. width:280px;
  1465. height:30px;
  1466. display:flex;
  1467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1468. font-weight:400;
  1469. font-style:normal;
  1470. line-height:30px;
  1471. }
  1472. #u1846 .text {
  1473. position:absolute;
  1474. align-self:flex-start;
  1475. padding:0px 0px 0px 0px;
  1476. box-sizing:border-box;
  1477. width:100%;
  1478. }
  1479. #u1846_text {
  1480. border-width:0px;
  1481. word-wrap:break-word;
  1482. text-transform:none;
  1483. }
  1484. #u1847_div {
  1485. border-width:0px;
  1486. position:absolute;
  1487. left:0px;
  1488. top:0px;
  1489. width:280px;
  1490. height:30px;
  1491. background:inherit;
  1492. background-color:rgba(255, 255, 255, 0);
  1493. border:none;
  1494. border-radius:0px;
  1495. -moz-box-shadow:none;
  1496. -webkit-box-shadow:none;
  1497. box-shadow:none;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. line-height:30px;
  1502. }
  1503. #u1847 {
  1504. border-width:0px;
  1505. position:absolute;
  1506. left:843px;
  1507. top:521px;
  1508. width:280px;
  1509. height:30px;
  1510. display:flex;
  1511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1512. font-weight:400;
  1513. font-style:normal;
  1514. line-height:30px;
  1515. }
  1516. #u1847 .text {
  1517. position:absolute;
  1518. align-self:flex-start;
  1519. padding:0px 0px 0px 0px;
  1520. box-sizing:border-box;
  1521. width:100%;
  1522. }
  1523. #u1847_text {
  1524. border-width:0px;
  1525. word-wrap:break-word;
  1526. text-transform:none;
  1527. }
  1528. #u1848_div {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:280px;
  1534. height:30px;
  1535. background:inherit;
  1536. background-color:rgba(255, 255, 255, 0);
  1537. border:none;
  1538. border-radius:0px;
  1539. -moz-box-shadow:none;
  1540. -webkit-box-shadow:none;
  1541. box-shadow:none;
  1542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1543. font-weight:400;
  1544. font-style:normal;
  1545. line-height:30px;
  1546. }
  1547. #u1848 {
  1548. border-width:0px;
  1549. position:absolute;
  1550. left:1158px;
  1551. top:481px;
  1552. width:280px;
  1553. height:30px;
  1554. display:flex;
  1555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1556. font-weight:400;
  1557. font-style:normal;
  1558. line-height:30px;
  1559. }
  1560. #u1848 .text {
  1561. position:absolute;
  1562. align-self:flex-start;
  1563. padding:0px 0px 0px 0px;
  1564. box-sizing:border-box;
  1565. width:100%;
  1566. }
  1567. #u1848_text {
  1568. border-width:0px;
  1569. word-wrap:break-word;
  1570. text-transform:none;
  1571. }
  1572. #u1849_div {
  1573. border-width:0px;
  1574. position:absolute;
  1575. left:0px;
  1576. top:0px;
  1577. width:280px;
  1578. height:30px;
  1579. background:inherit;
  1580. background-color:rgba(255, 255, 255, 0);
  1581. border:none;
  1582. border-radius:0px;
  1583. -moz-box-shadow:none;
  1584. -webkit-box-shadow:none;
  1585. box-shadow:none;
  1586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1587. font-weight:400;
  1588. font-style:normal;
  1589. line-height:30px;
  1590. }
  1591. #u1849 {
  1592. border-width:0px;
  1593. position:absolute;
  1594. left:215px;
  1595. top:521px;
  1596. width:280px;
  1597. height:30px;
  1598. display:flex;
  1599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1600. font-weight:400;
  1601. font-style:normal;
  1602. line-height:30px;
  1603. }
  1604. #u1849 .text {
  1605. position:absolute;
  1606. align-self:flex-start;
  1607. padding:0px 0px 0px 0px;
  1608. box-sizing:border-box;
  1609. width:100%;
  1610. }
  1611. #u1849_text {
  1612. border-width:0px;
  1613. word-wrap:break-word;
  1614. text-transform:none;
  1615. }
  1616. #u1850_div {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:0px;
  1620. top:0px;
  1621. width:280px;
  1622. height:30px;
  1623. background:inherit;
  1624. background-color:rgba(255, 255, 255, 0);
  1625. border:none;
  1626. border-radius:0px;
  1627. -moz-box-shadow:none;
  1628. -webkit-box-shadow:none;
  1629. box-shadow:none;
  1630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1631. font-weight:400;
  1632. font-style:normal;
  1633. line-height:30px;
  1634. }
  1635. #u1850 {
  1636. border-width:0px;
  1637. position:absolute;
  1638. left:215px;
  1639. top:481px;
  1640. width:280px;
  1641. height:30px;
  1642. display:flex;
  1643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1644. font-weight:400;
  1645. font-style:normal;
  1646. line-height:30px;
  1647. }
  1648. #u1850 .text {
  1649. position:absolute;
  1650. align-self:flex-start;
  1651. padding:0px 0px 0px 0px;
  1652. box-sizing:border-box;
  1653. width:100%;
  1654. }
  1655. #u1850_text {
  1656. border-width:0px;
  1657. word-wrap:break-word;
  1658. text-transform:none;
  1659. }
  1660. #u1851_div {
  1661. border-width:0px;
  1662. position:absolute;
  1663. left:0px;
  1664. top:0px;
  1665. width:57px;
  1666. height:30px;
  1667. background:inherit;
  1668. background-color:rgba(255, 255, 255, 0);
  1669. border:none;
  1670. border-radius:0px;
  1671. -moz-box-shadow:none;
  1672. -webkit-box-shadow:none;
  1673. box-shadow:none;
  1674. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1675. font-weight:500;
  1676. font-style:normal;
  1677. line-height:30px;
  1678. }
  1679. #u1851 {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:214px;
  1683. top:573px;
  1684. width:57px;
  1685. height:30px;
  1686. display:flex;
  1687. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1688. font-weight:500;
  1689. font-style:normal;
  1690. line-height:30px;
  1691. }
  1692. #u1851 .text {
  1693. position:absolute;
  1694. align-self:flex-start;
  1695. padding:0px 0px 0px 0px;
  1696. box-sizing:border-box;
  1697. width:100%;
  1698. }
  1699. #u1851_text {
  1700. border-width:0px;
  1701. white-space:nowrap;
  1702. text-transform:none;
  1703. }
  1704. #u1852 {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:214px;
  1708. top:611px;
  1709. width:1194px;
  1710. height:115px;
  1711. }
  1712. #u1853_img {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:0px;
  1716. top:0px;
  1717. width:240px;
  1718. height:40px;
  1719. }
  1720. #u1853 {
  1721. border-width:0px;
  1722. position:absolute;
  1723. left:0px;
  1724. top:0px;
  1725. width:240px;
  1726. height:40px;
  1727. display:flex;
  1728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1729. font-weight:400;
  1730. font-style:normal;
  1731. font-size:14px;
  1732. color:#FFFFFF;
  1733. }
  1734. #u1853 .text {
  1735. position:absolute;
  1736. align-self:center;
  1737. padding:2px 2px 2px 2px;
  1738. box-sizing:border-box;
  1739. width:100%;
  1740. }
  1741. #u1853_text {
  1742. border-width:0px;
  1743. word-wrap:break-word;
  1744. text-transform:none;
  1745. }
  1746. #u1854_img {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:0px;
  1750. top:0px;
  1751. width:240px;
  1752. height:40px;
  1753. }
  1754. #u1854 {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:240px;
  1758. top:0px;
  1759. width:240px;
  1760. height:40px;
  1761. display:flex;
  1762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1763. font-weight:400;
  1764. font-style:normal;
  1765. font-size:14px;
  1766. color:#FFFFFF;
  1767. }
  1768. #u1854 .text {
  1769. position:absolute;
  1770. align-self:center;
  1771. padding:2px 2px 2px 2px;
  1772. box-sizing:border-box;
  1773. width:100%;
  1774. }
  1775. #u1854_text {
  1776. border-width:0px;
  1777. word-wrap:break-word;
  1778. text-transform:none;
  1779. }
  1780. #u1855_img {
  1781. border-width:0px;
  1782. position:absolute;
  1783. left:0px;
  1784. top:0px;
  1785. width:240px;
  1786. height:40px;
  1787. }
  1788. #u1855 {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:480px;
  1792. top:0px;
  1793. width:240px;
  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:14px;
  1800. color:#FFFFFF;
  1801. }
  1802. #u1855 .text {
  1803. position:absolute;
  1804. align-self:center;
  1805. padding:2px 2px 2px 2px;
  1806. box-sizing:border-box;
  1807. width:100%;
  1808. }
  1809. #u1855_text {
  1810. border-width:0px;
  1811. word-wrap:break-word;
  1812. text-transform:none;
  1813. }
  1814. #u1856_img {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:0px;
  1818. top:0px;
  1819. width:240px;
  1820. height:40px;
  1821. }
  1822. #u1856 {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:720px;
  1826. top:0px;
  1827. width:240px;
  1828. height:40px;
  1829. display:flex;
  1830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1831. font-weight:400;
  1832. font-style:normal;
  1833. font-size:14px;
  1834. color:#FFFFFF;
  1835. }
  1836. #u1856 .text {
  1837. position:absolute;
  1838. align-self:center;
  1839. padding:2px 2px 2px 2px;
  1840. box-sizing:border-box;
  1841. width:100%;
  1842. }
  1843. #u1856_text {
  1844. border-width:0px;
  1845. word-wrap:break-word;
  1846. text-transform:none;
  1847. }
  1848. #u1857_img {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:0px;
  1852. top:0px;
  1853. width:234px;
  1854. height:40px;
  1855. }
  1856. #u1857 {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:960px;
  1860. top:0px;
  1861. width:234px;
  1862. height:40px;
  1863. display:flex;
  1864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1865. font-weight:400;
  1866. font-style:normal;
  1867. font-size:14px;
  1868. color:#FFFFFF;
  1869. }
  1870. #u1857 .text {
  1871. position:absolute;
  1872. align-self:center;
  1873. padding:2px 2px 2px 2px;
  1874. box-sizing:border-box;
  1875. width:100%;
  1876. }
  1877. #u1857_text {
  1878. border-width:0px;
  1879. word-wrap:break-word;
  1880. text-transform:none;
  1881. }
  1882. #u1858_img {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:0px;
  1886. top:0px;
  1887. width:240px;
  1888. height:37px;
  1889. }
  1890. #u1858 {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:0px;
  1894. top:40px;
  1895. width:240px;
  1896. height:37px;
  1897. display:flex;
  1898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1899. font-weight:400;
  1900. font-style:normal;
  1901. font-size:14px;
  1902. }
  1903. #u1858 .text {
  1904. position:absolute;
  1905. align-self:center;
  1906. padding:2px 2px 2px 2px;
  1907. box-sizing:border-box;
  1908. width:100%;
  1909. }
  1910. #u1858_text {
  1911. border-width:0px;
  1912. word-wrap:break-word;
  1913. text-transform:none;
  1914. }
  1915. #u1859_img {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:0px;
  1919. top:0px;
  1920. width:240px;
  1921. height:37px;
  1922. }
  1923. #u1859 {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:240px;
  1927. top:40px;
  1928. width:240px;
  1929. height:37px;
  1930. display:flex;
  1931. font-size:14px;
  1932. }
  1933. #u1859 .text {
  1934. position:absolute;
  1935. align-self:center;
  1936. padding:2px 2px 2px 2px;
  1937. box-sizing:border-box;
  1938. width:100%;
  1939. }
  1940. #u1859_text {
  1941. border-width:0px;
  1942. word-wrap:break-word;
  1943. text-transform:none;
  1944. }
  1945. #u1860_img {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:0px;
  1949. top:0px;
  1950. width:240px;
  1951. height:37px;
  1952. }
  1953. #u1860 {
  1954. border-width:0px;
  1955. position:absolute;
  1956. left:480px;
  1957. top:40px;
  1958. width:240px;
  1959. height:37px;
  1960. display:flex;
  1961. font-size:14px;
  1962. }
  1963. #u1860 .text {
  1964. position:absolute;
  1965. align-self:center;
  1966. padding:2px 2px 2px 2px;
  1967. box-sizing:border-box;
  1968. width:100%;
  1969. }
  1970. #u1860_text {
  1971. border-width:0px;
  1972. word-wrap:break-word;
  1973. text-transform:none;
  1974. }
  1975. #u1861_img {
  1976. border-width:0px;
  1977. position:absolute;
  1978. left:0px;
  1979. top:0px;
  1980. width:240px;
  1981. height:37px;
  1982. }
  1983. #u1861 {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:720px;
  1987. top:40px;
  1988. width:240px;
  1989. height:37px;
  1990. display:flex;
  1991. font-size:14px;
  1992. }
  1993. #u1861 .text {
  1994. position:absolute;
  1995. align-self:center;
  1996. padding:2px 2px 2px 2px;
  1997. box-sizing:border-box;
  1998. width:100%;
  1999. }
  2000. #u1861_text {
  2001. border-width:0px;
  2002. word-wrap:break-word;
  2003. text-transform:none;
  2004. }
  2005. #u1862_img {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:0px;
  2009. top:0px;
  2010. width:234px;
  2011. height:37px;
  2012. }
  2013. #u1862 {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:960px;
  2017. top:40px;
  2018. width:234px;
  2019. height:37px;
  2020. display:flex;
  2021. font-size:14px;
  2022. }
  2023. #u1862 .text {
  2024. position:absolute;
  2025. align-self:center;
  2026. padding:2px 2px 2px 2px;
  2027. box-sizing:border-box;
  2028. width:100%;
  2029. }
  2030. #u1862_text {
  2031. border-width:0px;
  2032. word-wrap:break-word;
  2033. text-transform:none;
  2034. }
  2035. #u1863_img {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:0px;
  2039. top:0px;
  2040. width:240px;
  2041. height:38px;
  2042. }
  2043. #u1863 {
  2044. border-width:0px;
  2045. position:absolute;
  2046. left:0px;
  2047. top:77px;
  2048. width:240px;
  2049. height:38px;
  2050. display:flex;
  2051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2052. font-weight:400;
  2053. font-style:normal;
  2054. font-size:14px;
  2055. color:#0099FF;
  2056. }
  2057. #u1863 .text {
  2058. position:absolute;
  2059. align-self:center;
  2060. padding:2px 2px 2px 2px;
  2061. box-sizing:border-box;
  2062. width:100%;
  2063. }
  2064. #u1863_text {
  2065. border-width:0px;
  2066. word-wrap:break-word;
  2067. text-transform:none;
  2068. visibility:hidden;
  2069. }
  2070. #u1864_img {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:0px;
  2074. top:0px;
  2075. width:240px;
  2076. height:38px;
  2077. }
  2078. #u1864 {
  2079. border-width:0px;
  2080. position:absolute;
  2081. left:240px;
  2082. top:77px;
  2083. width:240px;
  2084. height:38px;
  2085. display:flex;
  2086. font-size:14px;
  2087. color:#0099FF;
  2088. }
  2089. #u1864 .text {
  2090. position:absolute;
  2091. align-self:center;
  2092. padding:2px 2px 2px 2px;
  2093. box-sizing:border-box;
  2094. width:100%;
  2095. }
  2096. #u1864_text {
  2097. border-width:0px;
  2098. word-wrap:break-word;
  2099. text-transform:none;
  2100. visibility:hidden;
  2101. }
  2102. #u1865_img {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:0px;
  2106. top:0px;
  2107. width:240px;
  2108. height:38px;
  2109. }
  2110. #u1865 {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:480px;
  2114. top:77px;
  2115. width:240px;
  2116. height:38px;
  2117. display:flex;
  2118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2119. font-weight:400;
  2120. font-style:normal;
  2121. font-size:14px;
  2122. color:#0099FF;
  2123. }
  2124. #u1865 .text {
  2125. position:absolute;
  2126. align-self:center;
  2127. padding:2px 2px 2px 2px;
  2128. box-sizing:border-box;
  2129. width:100%;
  2130. }
  2131. #u1865_text {
  2132. border-width:0px;
  2133. word-wrap:break-word;
  2134. text-transform:none;
  2135. visibility:hidden;
  2136. }
  2137. #u1866_img {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:0px;
  2141. top:0px;
  2142. width:240px;
  2143. height:38px;
  2144. }
  2145. #u1866 {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:720px;
  2149. top:77px;
  2150. width:240px;
  2151. height:38px;
  2152. display:flex;
  2153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2154. font-weight:400;
  2155. font-style:normal;
  2156. font-size:14px;
  2157. color:#0099FF;
  2158. }
  2159. #u1866 .text {
  2160. position:absolute;
  2161. align-self:center;
  2162. padding:2px 2px 2px 2px;
  2163. box-sizing:border-box;
  2164. width:100%;
  2165. }
  2166. #u1866_text {
  2167. border-width:0px;
  2168. word-wrap:break-word;
  2169. text-transform:none;
  2170. visibility:hidden;
  2171. }
  2172. #u1867_img {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:0px;
  2176. top:0px;
  2177. width:234px;
  2178. height:38px;
  2179. }
  2180. #u1867 {
  2181. border-width:0px;
  2182. position:absolute;
  2183. left:960px;
  2184. top:77px;
  2185. width:234px;
  2186. height:38px;
  2187. display:flex;
  2188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2189. font-weight:400;
  2190. font-style:normal;
  2191. font-size:14px;
  2192. color:#0099FF;
  2193. }
  2194. #u1867 .text {
  2195. position:absolute;
  2196. align-self:center;
  2197. padding:2px 2px 2px 2px;
  2198. box-sizing:border-box;
  2199. width:100%;
  2200. }
  2201. #u1867_text {
  2202. border-width:0px;
  2203. word-wrap:break-word;
  2204. text-transform:none;
  2205. }
  2206. #u1868_div {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:0px;
  2210. top:0px;
  2211. width:280px;
  2212. height:30px;
  2213. background:inherit;
  2214. background-color:rgba(255, 255, 255, 0);
  2215. border:none;
  2216. border-radius:0px;
  2217. -moz-box-shadow:none;
  2218. -webkit-box-shadow:none;
  2219. box-shadow:none;
  2220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2221. font-weight:400;
  2222. font-style:normal;
  2223. line-height:30px;
  2224. }
  2225. #u1868 {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:209px;
  2229. top:1173px;
  2230. width:280px;
  2231. height:30px;
  2232. display:flex;
  2233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2234. font-weight:400;
  2235. font-style:normal;
  2236. line-height:30px;
  2237. }
  2238. #u1868 .text {
  2239. position:absolute;
  2240. align-self:flex-start;
  2241. padding:0px 0px 0px 0px;
  2242. box-sizing:border-box;
  2243. width:100%;
  2244. }
  2245. #u1868_text {
  2246. border-width:0px;
  2247. word-wrap:break-word;
  2248. text-transform:none;
  2249. }
  2250. #u1869_div {
  2251. border-width:0px;
  2252. position:absolute;
  2253. left:0px;
  2254. top:0px;
  2255. width:1243px;
  2256. height:40px;
  2257. background:inherit;
  2258. background-color:rgba(242, 242, 242, 1);
  2259. border:none;
  2260. border-top:0px;
  2261. border-right:0px;
  2262. border-bottom:0px;
  2263. border-radius:0px;
  2264. border-top-left-radius:0px;
  2265. border-bottom-left-radius:0px;
  2266. -moz-box-shadow:none;
  2267. -webkit-box-shadow:none;
  2268. box-shadow:none;
  2269. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2270. font-weight:500;
  2271. font-style:normal;
  2272. font-size:18px;
  2273. color:#000000;
  2274. }
  2275. #u1869 {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:195px;
  2279. top:829px;
  2280. width:1243px;
  2281. height:40px;
  2282. display:flex;
  2283. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2284. font-weight:500;
  2285. font-style:normal;
  2286. font-size:18px;
  2287. color:#000000;
  2288. }
  2289. #u1869 .text {
  2290. position:absolute;
  2291. align-self:center;
  2292. padding:0px 0px 0px 10px;
  2293. box-sizing:border-box;
  2294. width:100%;
  2295. }
  2296. #u1869_text {
  2297. border-width:0px;
  2298. word-wrap:break-word;
  2299. text-transform:none;
  2300. }
  2301. #u1870 {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:0px;
  2305. top:0px;
  2306. width:0px;
  2307. height:0px;
  2308. }
  2309. #u1871 {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:195px;
  2313. top:889px;
  2314. width:1243px;
  2315. height:153px;
  2316. }
  2317. #u1872_img {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:0px;
  2321. top:0px;
  2322. width:829px;
  2323. height:49px;
  2324. }
  2325. #u1872 {
  2326. border-width:0px;
  2327. position:absolute;
  2328. left:0px;
  2329. top:0px;
  2330. width:829px;
  2331. height:49px;
  2332. display:flex;
  2333. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2334. font-weight:500;
  2335. font-style:normal;
  2336. font-size:14px;
  2337. text-align:left;
  2338. }
  2339. #u1872 .text {
  2340. position:absolute;
  2341. align-self:center;
  2342. padding:2px 2px 2px 20px;
  2343. box-sizing:border-box;
  2344. width:100%;
  2345. }
  2346. #u1872_text {
  2347. border-width:0px;
  2348. word-wrap:break-word;
  2349. text-transform:none;
  2350. }
  2351. #u1873_img {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:0px;
  2355. top:0px;
  2356. width:414px;
  2357. height:49px;
  2358. }
  2359. #u1873 {
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:829px;
  2363. top:0px;
  2364. width:414px;
  2365. height:49px;
  2366. display:flex;
  2367. font-size:14px;
  2368. text-align:right;
  2369. }
  2370. #u1873 .text {
  2371. position:absolute;
  2372. align-self:center;
  2373. padding:2px 20px 2px 20px;
  2374. box-sizing:border-box;
  2375. width:100%;
  2376. }
  2377. #u1873_text {
  2378. border-width:0px;
  2379. word-wrap:break-word;
  2380. text-transform:none;
  2381. }
  2382. #u1874_img {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:0px;
  2386. top:0px;
  2387. width:829px;
  2388. height:50px;
  2389. }
  2390. #u1874 {
  2391. border-width:0px;
  2392. position:absolute;
  2393. left:0px;
  2394. top:49px;
  2395. width:829px;
  2396. height:50px;
  2397. display:flex;
  2398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2399. font-weight:400;
  2400. font-style:normal;
  2401. font-size:12px;
  2402. text-align:left;
  2403. }
  2404. #u1874 .text {
  2405. position:absolute;
  2406. align-self:center;
  2407. padding:2px 2px 2px 20px;
  2408. box-sizing:border-box;
  2409. width:100%;
  2410. }
  2411. #u1874_text {
  2412. border-width:0px;
  2413. word-wrap:break-word;
  2414. text-transform:none;
  2415. }
  2416. #u1875_img {
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:0px;
  2420. top:0px;
  2421. width:414px;
  2422. height:50px;
  2423. }
  2424. #u1875 {
  2425. border-width:0px;
  2426. position:absolute;
  2427. left:829px;
  2428. top:49px;
  2429. width:414px;
  2430. height:50px;
  2431. display:flex;
  2432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2433. font-weight:400;
  2434. font-style:normal;
  2435. font-size:14px;
  2436. text-align:right;
  2437. }
  2438. #u1875 .text {
  2439. position:absolute;
  2440. align-self:center;
  2441. padding:2px 20px 2px 20px;
  2442. box-sizing:border-box;
  2443. width:100%;
  2444. }
  2445. #u1875_text {
  2446. border-width:0px;
  2447. word-wrap:break-word;
  2448. text-transform:none;
  2449. }
  2450. #u1876_img {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:0px;
  2454. top:0px;
  2455. width:829px;
  2456. height:54px;
  2457. }
  2458. #u1876 {
  2459. border-width:0px;
  2460. position:absolute;
  2461. left:0px;
  2462. top:99px;
  2463. width:829px;
  2464. height:54px;
  2465. display:flex;
  2466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2467. font-weight:400;
  2468. font-style:normal;
  2469. font-size:18px;
  2470. color:#0099FF;
  2471. text-align:left;
  2472. }
  2473. #u1876 .text {
  2474. position:absolute;
  2475. align-self:center;
  2476. padding:2px 2px 2px 20px;
  2477. box-sizing:border-box;
  2478. width:100%;
  2479. }
  2480. #u1876_text {
  2481. border-width:0px;
  2482. word-wrap:break-word;
  2483. text-transform:none;
  2484. visibility:hidden;
  2485. }
  2486. #u1877_img {
  2487. border-width:0px;
  2488. position:absolute;
  2489. left:0px;
  2490. top:0px;
  2491. width:414px;
  2492. height:54px;
  2493. }
  2494. #u1877 {
  2495. border-width:0px;
  2496. position:absolute;
  2497. left:829px;
  2498. top:99px;
  2499. width:414px;
  2500. height:54px;
  2501. display:flex;
  2502. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2503. font-weight:500;
  2504. font-style:normal;
  2505. font-size:18px;
  2506. color:#0099FF;
  2507. text-align:right;
  2508. }
  2509. #u1877 .text {
  2510. position:absolute;
  2511. align-self:center;
  2512. padding:2px 20px 2px 20px;
  2513. box-sizing:border-box;
  2514. width:100%;
  2515. }
  2516. #u1877_text {
  2517. border-width:0px;
  2518. word-wrap:break-word;
  2519. text-transform:none;
  2520. }
  2521. #u1878_img {
  2522. border-width:0px;
  2523. position:absolute;
  2524. left:0px;
  2525. top:0px;
  2526. width:1233px;
  2527. height:2px;
  2528. }
  2529. #u1878 {
  2530. border-width:0px;
  2531. position:absolute;
  2532. left:195px;
  2533. top:936px;
  2534. width:1232px;
  2535. height:1px;
  2536. display:flex;
  2537. }
  2538. #u1878 .text {
  2539. position:absolute;
  2540. align-self:center;
  2541. padding:2px 2px 2px 2px;
  2542. box-sizing:border-box;
  2543. width:100%;
  2544. }
  2545. #u1878_text {
  2546. border-width:0px;
  2547. word-wrap:break-word;
  2548. text-transform:none;
  2549. visibility:hidden;
  2550. }
  2551. #u1879_img {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:0px;
  2555. top:0px;
  2556. width:1233px;
  2557. height:2px;
  2558. }
  2559. #u1879 {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:195px;
  2563. top:986px;
  2564. width:1232px;
  2565. height:1px;
  2566. display:flex;
  2567. }
  2568. #u1879 .text {
  2569. position:absolute;
  2570. align-self:center;
  2571. padding:2px 2px 2px 2px;
  2572. box-sizing:border-box;
  2573. width:100%;
  2574. }
  2575. #u1879_text {
  2576. border-width:0px;
  2577. word-wrap:break-word;
  2578. text-transform:none;
  2579. visibility:hidden;
  2580. }
  2581. #u1880_img {
  2582. border-width:0px;
  2583. position:absolute;
  2584. left:0px;
  2585. top:0px;
  2586. width:1233px;
  2587. height:2px;
  2588. }
  2589. #u1880 {
  2590. border-width:0px;
  2591. position:absolute;
  2592. left:195px;
  2593. top:1041px;
  2594. width:1232px;
  2595. height:1px;
  2596. display:flex;
  2597. }
  2598. #u1880 .text {
  2599. position:absolute;
  2600. align-self:center;
  2601. padding:2px 2px 2px 2px;
  2602. box-sizing:border-box;
  2603. width:100%;
  2604. }
  2605. #u1880_text {
  2606. border-width:0px;
  2607. word-wrap:break-word;
  2608. text-transform:none;
  2609. visibility:hidden;
  2610. }
  2611. #u1881_div {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:0px;
  2615. top:0px;
  2616. width:270px;
  2617. height:120px;
  2618. background:inherit;
  2619. background-color:rgba(255, 255, 255, 0);
  2620. border:none;
  2621. border-radius:0px;
  2622. -moz-box-shadow:none;
  2623. -webkit-box-shadow:none;
  2624. box-shadow:none;
  2625. font-size:14px;
  2626. color:#D9001B;
  2627. line-height:30px;
  2628. }
  2629. #u1881 {
  2630. border-width:0px;
  2631. position:absolute;
  2632. left:478px;
  2633. top:709px;
  2634. width:270px;
  2635. height:120px;
  2636. display:flex;
  2637. font-size:14px;
  2638. color:#D9001B;
  2639. line-height:30px;
  2640. }
  2641. #u1881 .text {
  2642. position:absolute;
  2643. align-self:flex-start;
  2644. padding:0px 0px 0px 0px;
  2645. box-sizing:border-box;
  2646. width:100%;
  2647. }
  2648. #u1881_text {
  2649. border-width:0px;
  2650. white-space:nowrap;
  2651. text-transform:none;
  2652. }