styles.css 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024
  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. #u147931 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u147932_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. #u147932 {
  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. #u147932 .text {
  61. position:absolute;
  62. align-self:center;
  63. padding:2px 2px 2px 2px;
  64. box-sizing:border-box;
  65. width:100%;
  66. }
  67. #u147932_text {
  68. border-width:0px;
  69. word-wrap:break-word;
  70. text-transform:none;
  71. visibility:hidden;
  72. }
  73. #u147933_img {
  74. border-width:0px;
  75. position:absolute;
  76. left:0px;
  77. top:0px;
  78. width:1380px;
  79. height:2px;
  80. }
  81. #u147933 {
  82. border-width:0px;
  83. position:absolute;
  84. left:144px;
  85. top:146px;
  86. width:1379px;
  87. height:1px;
  88. display:flex;
  89. }
  90. #u147933 .text {
  91. position:absolute;
  92. align-self:center;
  93. padding:2px 2px 2px 2px;
  94. box-sizing:border-box;
  95. width:100%;
  96. }
  97. #u147933_text {
  98. border-width:0px;
  99. word-wrap:break-word;
  100. text-transform:none;
  101. visibility:hidden;
  102. }
  103. #u147934_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. #u147934 {
  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. #u147934 .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. #u147934_text {
  143. border-width:0px;
  144. white-space:nowrap;
  145. text-transform:none;
  146. }
  147. #u147935_img {
  148. border-width:0px;
  149. position:absolute;
  150. left:0px;
  151. top:0px;
  152. width:8px;
  153. height:14px;
  154. }
  155. #u147935 {
  156. border-width:0px;
  157. position:absolute;
  158. left:165px;
  159. top:104px;
  160. width:8px;
  161. height:14px;
  162. display:flex;
  163. }
  164. #u147935 .text {
  165. position:absolute;
  166. align-self:center;
  167. padding:2px 2px 2px 2px;
  168. box-sizing:border-box;
  169. width:100%;
  170. }
  171. #u147935_text {
  172. border-width:0px;
  173. word-wrap:break-word;
  174. text-transform:none;
  175. visibility:hidden;
  176. }
  177. #u147936_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. #u147936 {
  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. #u147936 .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. #u147936_text {
  217. border-width:0px;
  218. word-wrap:break-word;
  219. text-transform:none;
  220. }
  221. #u147937_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. #u147937 {
  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. #u147937 .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. #u147937_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. }
  265. #u147938_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. #u147938 {
  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. #u147938 .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. #u147938_text {
  305. border-width:0px;
  306. word-wrap:break-word;
  307. text-transform:none;
  308. }
  309. #u147939_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. #u147939 {
  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. #u147939 .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. #u147939_text {
  349. border-width:0px;
  350. word-wrap:break-word;
  351. text-transform:none;
  352. }
  353. #u147940_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. #u147940 {
  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. #u147940 .text {
  393. position:absolute;
  394. align-self:center;
  395. padding:0px 0px 0px 10px;
  396. box-sizing:border-box;
  397. width:100%;
  398. }
  399. #u147940_text {
  400. border-width:0px;
  401. word-wrap:break-word;
  402. text-transform:none;
  403. }
  404. #u147941_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. #u147941 {
  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. #u147941 .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. #u147941_text {
  444. border-width:0px;
  445. word-wrap:break-word;
  446. text-transform:none;
  447. }
  448. #u147942_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. #u147942 {
  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. #u147942 .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. #u147942_text {
  488. border-width:0px;
  489. word-wrap:break-word;
  490. text-transform:none;
  491. }
  492. #u147943_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. #u147943 {
  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. #u147943 .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. #u147943_text {
  532. border-width:0px;
  533. word-wrap:break-word;
  534. text-transform:none;
  535. }
  536. #u147944_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. #u147944 {
  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. #u147944 .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. #u147944_text {
  576. border-width:0px;
  577. word-wrap:break-word;
  578. text-transform:none;
  579. }
  580. #u147945_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. #u147945 {
  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. #u147945 .text {
  620. position:absolute;
  621. align-self:center;
  622. padding:0px 0px 0px 10px;
  623. box-sizing:border-box;
  624. width:100%;
  625. }
  626. #u147945_text {
  627. border-width:0px;
  628. word-wrap:break-word;
  629. text-transform:none;
  630. }
  631. #u147946_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. #u147946 {
  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. #u147946 .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. #u147946_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u147947_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. #u147947 {
  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. #u147947 .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. #u147947_text {
  715. border-width:0px;
  716. word-wrap:break-word;
  717. text-transform:none;
  718. }
  719. #u147948_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. #u147948 {
  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. #u147948 .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. #u147948_text {
  759. border-width:0px;
  760. word-wrap:break-word;
  761. text-transform:none;
  762. }
  763. #u147949_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. #u147949 {
  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. #u147949 .text {
  803. position:absolute;
  804. align-self:center;
  805. padding:0px 0px 0px 10px;
  806. box-sizing:border-box;
  807. width:100%;
  808. }
  809. #u147949_text {
  810. border-width:0px;
  811. word-wrap:break-word;
  812. text-transform:none;
  813. }
  814. #u147950_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. #u147950 {
  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. #u147950 .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. #u147950_text {
  854. border-width:0px;
  855. word-wrap:break-word;
  856. text-transform:none;
  857. }
  858. #u147951_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. #u147951 {
  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. #u147951 .text {
  898. position:absolute;
  899. align-self:center;
  900. padding:0px 0px 0px 10px;
  901. box-sizing:border-box;
  902. width:100%;
  903. }
  904. #u147951_text {
  905. border-width:0px;
  906. word-wrap:break-word;
  907. text-transform:none;
  908. }
  909. #u147952_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. #u147952 {
  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. #u147952 .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. #u147952_text {
  949. border-width:0px;
  950. word-wrap:break-word;
  951. text-transform:none;
  952. }
  953. #u147953_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. #u147953 {
  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. #u147953 .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. #u147953_text {
  993. border-width:0px;
  994. word-wrap:break-word;
  995. text-transform:none;
  996. }
  997. #u147954_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. #u147954 {
  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. #u147954 .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. #u147954_text {
  1037. border-width:0px;
  1038. word-wrap:break-word;
  1039. text-transform:none;
  1040. }
  1041. #u147955_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. #u147955 {
  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. #u147955 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:0px 0px 0px 10px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u147955_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. }
  1092. #u147956_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. #u147956 {
  1111. border-width:0px;
  1112. position:absolute;
  1113. left:195px;
  1114. top:391px;
  1115. width:1243px;
  1116. height:408px;
  1117. display:flex;
  1118. }
  1119. #u147956 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:2px 2px 2px 2px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u147956_text {
  1127. border-width:0px;
  1128. word-wrap:break-word;
  1129. text-transform:none;
  1130. visibility:hidden;
  1131. }
  1132. #u147957_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. #u147957 {
  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. #u147957 .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. #u147957_text {
  1172. border-width:0px;
  1173. white-space:nowrap;
  1174. text-transform:none;
  1175. }
  1176. #u147958_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. #u147958 {
  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. #u147958 .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. #u147958_text {
  1216. border-width:0px;
  1217. word-wrap:break-word;
  1218. text-transform:none;
  1219. }
  1220. #u147959_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. #u147959 {
  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. #u147959 .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. #u147959_text {
  1260. border-width:0px;
  1261. word-wrap:break-word;
  1262. text-transform:none;
  1263. }
  1264. #u147960_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. #u147960 {
  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. #u147960 .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. #u147960_text {
  1304. border-width:0px;
  1305. word-wrap:break-word;
  1306. text-transform:none;
  1307. }
  1308. #u147961_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. #u147961 {
  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. #u147961 .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. #u147961_text {
  1348. border-width:0px;
  1349. word-wrap:break-word;
  1350. text-transform:none;
  1351. }
  1352. #u147962_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. #u147962 {
  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. #u147962 .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. #u147962_text {
  1392. border-width:0px;
  1393. word-wrap:break-word;
  1394. text-transform:none;
  1395. }
  1396. #u147963_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. #u147963 {
  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. #u147963 .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. #u147963_text {
  1436. border-width:0px;
  1437. word-wrap:break-word;
  1438. text-transform:none;
  1439. }
  1440. #u147964_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. #u147964 {
  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. #u147964 .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. #u147964_text {
  1480. border-width:0px;
  1481. word-wrap:break-word;
  1482. text-transform:none;
  1483. }
  1484. #u147965_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. #u147965 {
  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. #u147965 .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. #u147965_text {
  1524. border-width:0px;
  1525. word-wrap:break-word;
  1526. text-transform:none;
  1527. }
  1528. #u147966_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. #u147966 {
  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. #u147966 .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. #u147966_text {
  1568. border-width:0px;
  1569. word-wrap:break-word;
  1570. text-transform:none;
  1571. }
  1572. #u147967_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. #u147967 {
  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. #u147967 .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. #u147967_text {
  1612. border-width:0px;
  1613. word-wrap:break-word;
  1614. text-transform:none;
  1615. }
  1616. #u147968_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. #u147968 {
  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. #u147968 .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. #u147968_text {
  1656. border-width:0px;
  1657. word-wrap:break-word;
  1658. text-transform:none;
  1659. }
  1660. #u147969_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. #u147969 {
  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. #u147969 .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. #u147969_text {
  1700. border-width:0px;
  1701. white-space:nowrap;
  1702. text-transform:none;
  1703. }
  1704. #u147970 {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:214px;
  1708. top:613px;
  1709. width:1194px;
  1710. height:158px;
  1711. }
  1712. #u147971_img {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:0px;
  1716. top:0px;
  1717. width:171px;
  1718. height:40px;
  1719. }
  1720. #u147971 {
  1721. border-width:0px;
  1722. position:absolute;
  1723. left:0px;
  1724. top:0px;
  1725. width:171px;
  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. #u147971 .text {
  1735. position:absolute;
  1736. align-self:center;
  1737. padding:2px 2px 2px 2px;
  1738. box-sizing:border-box;
  1739. width:100%;
  1740. }
  1741. #u147971_text {
  1742. border-width:0px;
  1743. word-wrap:break-word;
  1744. text-transform:none;
  1745. }
  1746. #u147972_img {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:0px;
  1750. top:0px;
  1751. width:171px;
  1752. height:40px;
  1753. }
  1754. #u147972 {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:171px;
  1758. top:0px;
  1759. width:171px;
  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. #u147972 .text {
  1769. position:absolute;
  1770. align-self:center;
  1771. padding:2px 2px 2px 2px;
  1772. box-sizing:border-box;
  1773. width:100%;
  1774. }
  1775. #u147972_text {
  1776. border-width:0px;
  1777. word-wrap:break-word;
  1778. text-transform:none;
  1779. }
  1780. #u147973_img {
  1781. border-width:0px;
  1782. position:absolute;
  1783. left:0px;
  1784. top:0px;
  1785. width:171px;
  1786. height:40px;
  1787. }
  1788. #u147973 {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:342px;
  1792. top:0px;
  1793. width:171px;
  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. #u147973 .text {
  1803. position:absolute;
  1804. align-self:center;
  1805. padding:2px 2px 2px 2px;
  1806. box-sizing:border-box;
  1807. width:100%;
  1808. }
  1809. #u147973_text {
  1810. border-width:0px;
  1811. word-wrap:break-word;
  1812. text-transform:none;
  1813. }
  1814. #u147974_img {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:0px;
  1818. top:0px;
  1819. width:171px;
  1820. height:40px;
  1821. }
  1822. #u147974 {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:513px;
  1826. top:0px;
  1827. width:171px;
  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. #u147974 .text {
  1837. position:absolute;
  1838. align-self:center;
  1839. padding:2px 2px 2px 2px;
  1840. box-sizing:border-box;
  1841. width:100%;
  1842. }
  1843. #u147974_text {
  1844. border-width:0px;
  1845. word-wrap:break-word;
  1846. text-transform:none;
  1847. }
  1848. #u147975_img {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:0px;
  1852. top:0px;
  1853. width:171px;
  1854. height:40px;
  1855. }
  1856. #u147975 {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:684px;
  1860. top:0px;
  1861. width:171px;
  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. #u147975 .text {
  1871. position:absolute;
  1872. align-self:center;
  1873. padding:2px 2px 2px 2px;
  1874. box-sizing:border-box;
  1875. width:100%;
  1876. }
  1877. #u147975_text {
  1878. border-width:0px;
  1879. word-wrap:break-word;
  1880. text-transform:none;
  1881. }
  1882. #u147976_img {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:0px;
  1886. top:0px;
  1887. width:171px;
  1888. height:40px;
  1889. }
  1890. #u147976 {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:855px;
  1894. top:0px;
  1895. width:171px;
  1896. height:40px;
  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. color:#FFFFFF;
  1903. }
  1904. #u147976 .text {
  1905. position:absolute;
  1906. align-self:center;
  1907. padding:2px 2px 2px 2px;
  1908. box-sizing:border-box;
  1909. width:100%;
  1910. }
  1911. #u147976_text {
  1912. border-width:0px;
  1913. word-wrap:break-word;
  1914. text-transform:none;
  1915. }
  1916. #u147977_img {
  1917. border-width:0px;
  1918. position:absolute;
  1919. left:0px;
  1920. top:0px;
  1921. width:168px;
  1922. height:40px;
  1923. }
  1924. #u147977 {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:1026px;
  1928. top:0px;
  1929. width:168px;
  1930. height:40px;
  1931. display:flex;
  1932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1933. font-weight:400;
  1934. font-style:normal;
  1935. font-size:14px;
  1936. color:#FFFFFF;
  1937. }
  1938. #u147977 .text {
  1939. position:absolute;
  1940. align-self:center;
  1941. padding:2px 2px 2px 2px;
  1942. box-sizing:border-box;
  1943. width:100%;
  1944. }
  1945. #u147977_text {
  1946. border-width:0px;
  1947. word-wrap:break-word;
  1948. text-transform:none;
  1949. }
  1950. #u147978_img {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:0px;
  1954. top:0px;
  1955. width:171px;
  1956. height:40px;
  1957. }
  1958. #u147978 {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:0px;
  1962. top:40px;
  1963. width:171px;
  1964. height:40px;
  1965. display:flex;
  1966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1967. font-weight:400;
  1968. font-style:normal;
  1969. font-size:14px;
  1970. }
  1971. #u147978 .text {
  1972. position:absolute;
  1973. align-self:center;
  1974. padding:2px 2px 2px 2px;
  1975. box-sizing:border-box;
  1976. width:100%;
  1977. }
  1978. #u147978_text {
  1979. border-width:0px;
  1980. word-wrap:break-word;
  1981. text-transform:none;
  1982. }
  1983. #u147979_img {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:0px;
  1987. top:0px;
  1988. width:171px;
  1989. height:40px;
  1990. }
  1991. #u147979 {
  1992. border-width:0px;
  1993. position:absolute;
  1994. left:171px;
  1995. top:40px;
  1996. width:171px;
  1997. height:40px;
  1998. display:flex;
  1999. font-size:14px;
  2000. }
  2001. #u147979 .text {
  2002. position:absolute;
  2003. align-self:center;
  2004. padding:2px 2px 2px 2px;
  2005. box-sizing:border-box;
  2006. width:100%;
  2007. }
  2008. #u147979_text {
  2009. border-width:0px;
  2010. word-wrap:break-word;
  2011. text-transform:none;
  2012. }
  2013. #u147980_img {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:0px;
  2017. top:0px;
  2018. width:171px;
  2019. height:40px;
  2020. }
  2021. #u147980 {
  2022. border-width:0px;
  2023. position:absolute;
  2024. left:342px;
  2025. top:40px;
  2026. width:171px;
  2027. height:40px;
  2028. display:flex;
  2029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2030. font-weight:400;
  2031. font-style:normal;
  2032. font-size:14px;
  2033. }
  2034. #u147980 .text {
  2035. position:absolute;
  2036. align-self:center;
  2037. padding:2px 2px 2px 2px;
  2038. box-sizing:border-box;
  2039. width:100%;
  2040. }
  2041. #u147980_text {
  2042. border-width:0px;
  2043. word-wrap:break-word;
  2044. text-transform:none;
  2045. }
  2046. #u147981_img {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:0px;
  2050. top:0px;
  2051. width:171px;
  2052. height:40px;
  2053. }
  2054. #u147981 {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:513px;
  2058. top:40px;
  2059. width:171px;
  2060. height:40px;
  2061. display:flex;
  2062. font-size:14px;
  2063. }
  2064. #u147981 .text {
  2065. position:absolute;
  2066. align-self:center;
  2067. padding:2px 2px 2px 2px;
  2068. box-sizing:border-box;
  2069. width:100%;
  2070. }
  2071. #u147981_text {
  2072. border-width:0px;
  2073. word-wrap:break-word;
  2074. text-transform:none;
  2075. }
  2076. #u147982_img {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:0px;
  2080. top:0px;
  2081. width:171px;
  2082. height:40px;
  2083. }
  2084. #u147982 {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:684px;
  2088. top:40px;
  2089. width:171px;
  2090. height:40px;
  2091. display:flex;
  2092. font-size:14px;
  2093. }
  2094. #u147982 .text {
  2095. position:absolute;
  2096. align-self:center;
  2097. padding:2px 2px 2px 2px;
  2098. box-sizing:border-box;
  2099. width:100%;
  2100. }
  2101. #u147982_text {
  2102. border-width:0px;
  2103. word-wrap:break-word;
  2104. text-transform:none;
  2105. }
  2106. #u147983_img {
  2107. border-width:0px;
  2108. position:absolute;
  2109. left:0px;
  2110. top:0px;
  2111. width:171px;
  2112. height:40px;
  2113. }
  2114. #u147983 {
  2115. border-width:0px;
  2116. position:absolute;
  2117. left:855px;
  2118. top:40px;
  2119. width:171px;
  2120. height:40px;
  2121. display:flex;
  2122. font-size:14px;
  2123. }
  2124. #u147983 .text {
  2125. position:absolute;
  2126. align-self:center;
  2127. padding:2px 2px 2px 2px;
  2128. box-sizing:border-box;
  2129. width:100%;
  2130. }
  2131. #u147983_text {
  2132. border-width:0px;
  2133. word-wrap:break-word;
  2134. text-transform:none;
  2135. }
  2136. #u147984_img {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:0px;
  2140. top:0px;
  2141. width:168px;
  2142. height:40px;
  2143. }
  2144. #u147984 {
  2145. border-width:0px;
  2146. position:absolute;
  2147. left:1026px;
  2148. top:40px;
  2149. width:168px;
  2150. height:40px;
  2151. display:flex;
  2152. font-size:14px;
  2153. }
  2154. #u147984 .text {
  2155. position:absolute;
  2156. align-self:center;
  2157. padding:2px 2px 2px 2px;
  2158. box-sizing:border-box;
  2159. width:100%;
  2160. }
  2161. #u147984_text {
  2162. border-width:0px;
  2163. word-wrap:break-word;
  2164. text-transform:none;
  2165. }
  2166. #u147985_img {
  2167. border-width:0px;
  2168. position:absolute;
  2169. left:0px;
  2170. top:0px;
  2171. width:171px;
  2172. height:40px;
  2173. }
  2174. #u147985 {
  2175. border-width:0px;
  2176. position:absolute;
  2177. left:0px;
  2178. top:80px;
  2179. width:171px;
  2180. height:40px;
  2181. display:flex;
  2182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2183. font-weight:400;
  2184. font-style:normal;
  2185. font-size:14px;
  2186. }
  2187. #u147985 .text {
  2188. position:absolute;
  2189. align-self:center;
  2190. padding:2px 2px 2px 2px;
  2191. box-sizing:border-box;
  2192. width:100%;
  2193. }
  2194. #u147985_text {
  2195. border-width:0px;
  2196. word-wrap:break-word;
  2197. text-transform:none;
  2198. }
  2199. #u147986_img {
  2200. border-width:0px;
  2201. position:absolute;
  2202. left:0px;
  2203. top:0px;
  2204. width:171px;
  2205. height:40px;
  2206. }
  2207. #u147986 {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:171px;
  2211. top:80px;
  2212. width:171px;
  2213. height:40px;
  2214. display:flex;
  2215. font-size:14px;
  2216. }
  2217. #u147986 .text {
  2218. position:absolute;
  2219. align-self:center;
  2220. padding:2px 2px 2px 2px;
  2221. box-sizing:border-box;
  2222. width:100%;
  2223. }
  2224. #u147986_text {
  2225. border-width:0px;
  2226. word-wrap:break-word;
  2227. text-transform:none;
  2228. }
  2229. #u147987_img {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:0px;
  2233. top:0px;
  2234. width:171px;
  2235. height:40px;
  2236. }
  2237. #u147987 {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:342px;
  2241. top:80px;
  2242. width:171px;
  2243. height:40px;
  2244. display:flex;
  2245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2246. font-weight:400;
  2247. font-style:normal;
  2248. font-size:14px;
  2249. }
  2250. #u147987 .text {
  2251. position:absolute;
  2252. align-self:center;
  2253. padding:2px 2px 2px 2px;
  2254. box-sizing:border-box;
  2255. width:100%;
  2256. }
  2257. #u147987_text {
  2258. border-width:0px;
  2259. word-wrap:break-word;
  2260. text-transform:none;
  2261. }
  2262. #u147988_img {
  2263. border-width:0px;
  2264. position:absolute;
  2265. left:0px;
  2266. top:0px;
  2267. width:171px;
  2268. height:40px;
  2269. }
  2270. #u147988 {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:513px;
  2274. top:80px;
  2275. width:171px;
  2276. height:40px;
  2277. display:flex;
  2278. font-size:14px;
  2279. }
  2280. #u147988 .text {
  2281. position:absolute;
  2282. align-self:center;
  2283. padding:2px 2px 2px 2px;
  2284. box-sizing:border-box;
  2285. width:100%;
  2286. }
  2287. #u147988_text {
  2288. border-width:0px;
  2289. word-wrap:break-word;
  2290. text-transform:none;
  2291. }
  2292. #u147989_img {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:0px;
  2296. top:0px;
  2297. width:171px;
  2298. height:40px;
  2299. }
  2300. #u147989 {
  2301. border-width:0px;
  2302. position:absolute;
  2303. left:684px;
  2304. top:80px;
  2305. width:171px;
  2306. height:40px;
  2307. display:flex;
  2308. font-size:14px;
  2309. }
  2310. #u147989 .text {
  2311. position:absolute;
  2312. align-self:center;
  2313. padding:2px 2px 2px 2px;
  2314. box-sizing:border-box;
  2315. width:100%;
  2316. }
  2317. #u147989_text {
  2318. border-width:0px;
  2319. word-wrap:break-word;
  2320. text-transform:none;
  2321. }
  2322. #u147990_img {
  2323. border-width:0px;
  2324. position:absolute;
  2325. left:0px;
  2326. top:0px;
  2327. width:171px;
  2328. height:40px;
  2329. }
  2330. #u147990 {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:855px;
  2334. top:80px;
  2335. width:171px;
  2336. height:40px;
  2337. display:flex;
  2338. font-size:14px;
  2339. }
  2340. #u147990 .text {
  2341. position:absolute;
  2342. align-self:center;
  2343. padding:2px 2px 2px 2px;
  2344. box-sizing:border-box;
  2345. width:100%;
  2346. }
  2347. #u147990_text {
  2348. border-width:0px;
  2349. word-wrap:break-word;
  2350. text-transform:none;
  2351. }
  2352. #u147991_img {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:0px;
  2356. top:0px;
  2357. width:168px;
  2358. height:40px;
  2359. }
  2360. #u147991 {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:1026px;
  2364. top:80px;
  2365. width:168px;
  2366. height:40px;
  2367. display:flex;
  2368. font-size:14px;
  2369. }
  2370. #u147991 .text {
  2371. position:absolute;
  2372. align-self:center;
  2373. padding:2px 2px 2px 2px;
  2374. box-sizing:border-box;
  2375. width:100%;
  2376. }
  2377. #u147991_text {
  2378. border-width:0px;
  2379. word-wrap:break-word;
  2380. text-transform:none;
  2381. }
  2382. #u147992_img {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:0px;
  2386. top:0px;
  2387. width:171px;
  2388. height:38px;
  2389. }
  2390. #u147992 {
  2391. border-width:0px;
  2392. position:absolute;
  2393. left:0px;
  2394. top:120px;
  2395. width:171px;
  2396. height:38px;
  2397. display:flex;
  2398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2399. font-weight:400;
  2400. font-style:normal;
  2401. font-size:14px;
  2402. color:#0099FF;
  2403. }
  2404. #u147992 .text {
  2405. position:absolute;
  2406. align-self:center;
  2407. padding:2px 2px 2px 2px;
  2408. box-sizing:border-box;
  2409. width:100%;
  2410. }
  2411. #u147992_text {
  2412. border-width:0px;
  2413. word-wrap:break-word;
  2414. text-transform:none;
  2415. visibility:hidden;
  2416. }
  2417. #u147993_img {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:0px;
  2421. top:0px;
  2422. width:171px;
  2423. height:38px;
  2424. }
  2425. #u147993 {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:171px;
  2429. top:120px;
  2430. width:171px;
  2431. height:38px;
  2432. display:flex;
  2433. font-size:14px;
  2434. color:#0099FF;
  2435. }
  2436. #u147993 .text {
  2437. position:absolute;
  2438. align-self:center;
  2439. padding:2px 2px 2px 2px;
  2440. box-sizing:border-box;
  2441. width:100%;
  2442. }
  2443. #u147993_text {
  2444. border-width:0px;
  2445. word-wrap:break-word;
  2446. text-transform:none;
  2447. visibility:hidden;
  2448. }
  2449. #u147994_img {
  2450. border-width:0px;
  2451. position:absolute;
  2452. left:0px;
  2453. top:0px;
  2454. width:171px;
  2455. height:38px;
  2456. }
  2457. #u147994 {
  2458. border-width:0px;
  2459. position:absolute;
  2460. left:342px;
  2461. top:120px;
  2462. width:171px;
  2463. height:38px;
  2464. display:flex;
  2465. font-size:14px;
  2466. color:#0099FF;
  2467. }
  2468. #u147994 .text {
  2469. position:absolute;
  2470. align-self:center;
  2471. padding:2px 2px 2px 2px;
  2472. box-sizing:border-box;
  2473. width:100%;
  2474. }
  2475. #u147994_text {
  2476. border-width:0px;
  2477. word-wrap:break-word;
  2478. text-transform:none;
  2479. visibility:hidden;
  2480. }
  2481. #u147995_img {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:0px;
  2485. top:0px;
  2486. width:171px;
  2487. height:38px;
  2488. }
  2489. #u147995 {
  2490. border-width:0px;
  2491. position:absolute;
  2492. left:513px;
  2493. top:120px;
  2494. width:171px;
  2495. height:38px;
  2496. display:flex;
  2497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2498. font-weight:400;
  2499. font-style:normal;
  2500. font-size:14px;
  2501. color:#0099FF;
  2502. }
  2503. #u147995 .text {
  2504. position:absolute;
  2505. align-self:center;
  2506. padding:2px 2px 2px 2px;
  2507. box-sizing:border-box;
  2508. width:100%;
  2509. }
  2510. #u147995_text {
  2511. border-width:0px;
  2512. word-wrap:break-word;
  2513. text-transform:none;
  2514. visibility:hidden;
  2515. }
  2516. #u147996_img {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:0px;
  2520. top:0px;
  2521. width:171px;
  2522. height:38px;
  2523. }
  2524. #u147996 {
  2525. border-width:0px;
  2526. position:absolute;
  2527. left:684px;
  2528. top:120px;
  2529. width:171px;
  2530. height:38px;
  2531. display:flex;
  2532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2533. font-weight:400;
  2534. font-style:normal;
  2535. font-size:14px;
  2536. color:#0099FF;
  2537. }
  2538. #u147996 .text {
  2539. position:absolute;
  2540. align-self:center;
  2541. padding:2px 2px 2px 2px;
  2542. box-sizing:border-box;
  2543. width:100%;
  2544. }
  2545. #u147996_text {
  2546. border-width:0px;
  2547. word-wrap:break-word;
  2548. text-transform:none;
  2549. visibility:hidden;
  2550. }
  2551. #u147997_img {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:0px;
  2555. top:0px;
  2556. width:171px;
  2557. height:38px;
  2558. }
  2559. #u147997 {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:855px;
  2563. top:120px;
  2564. width:171px;
  2565. height:38px;
  2566. display:flex;
  2567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2568. font-weight:400;
  2569. font-style:normal;
  2570. font-size:14px;
  2571. color:#0099FF;
  2572. }
  2573. #u147997 .text {
  2574. position:absolute;
  2575. align-self:center;
  2576. padding:2px 2px 2px 2px;
  2577. box-sizing:border-box;
  2578. width:100%;
  2579. }
  2580. #u147997_text {
  2581. border-width:0px;
  2582. word-wrap:break-word;
  2583. text-transform:none;
  2584. visibility:hidden;
  2585. }
  2586. #u147998_img {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:0px;
  2590. top:0px;
  2591. width:168px;
  2592. height:38px;
  2593. }
  2594. #u147998 {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:1026px;
  2598. top:120px;
  2599. width:168px;
  2600. height:38px;
  2601. display:flex;
  2602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2603. font-weight:400;
  2604. font-style:normal;
  2605. font-size:14px;
  2606. color:#0099FF;
  2607. }
  2608. #u147998 .text {
  2609. position:absolute;
  2610. align-self:center;
  2611. padding:2px 2px 2px 2px;
  2612. box-sizing:border-box;
  2613. width:100%;
  2614. }
  2615. #u147998_text {
  2616. border-width:0px;
  2617. word-wrap:break-word;
  2618. text-transform:none;
  2619. }
  2620. #u147999_div {
  2621. border-width:0px;
  2622. position:absolute;
  2623. left:0px;
  2624. top:0px;
  2625. width:280px;
  2626. height:30px;
  2627. background:inherit;
  2628. background-color:rgba(255, 255, 255, 0);
  2629. border:none;
  2630. border-radius:0px;
  2631. -moz-box-shadow:none;
  2632. -webkit-box-shadow:none;
  2633. box-shadow:none;
  2634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2635. font-weight:400;
  2636. font-style:normal;
  2637. line-height:30px;
  2638. }
  2639. #u147999 {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:209px;
  2643. top:1173px;
  2644. width:280px;
  2645. height:30px;
  2646. display:flex;
  2647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2648. font-weight:400;
  2649. font-style:normal;
  2650. line-height:30px;
  2651. }
  2652. #u147999 .text {
  2653. position:absolute;
  2654. align-self:flex-start;
  2655. padding:0px 0px 0px 0px;
  2656. box-sizing:border-box;
  2657. width:100%;
  2658. }
  2659. #u147999_text {
  2660. border-width:0px;
  2661. word-wrap:break-word;
  2662. text-transform:none;
  2663. }
  2664. #u148000_div {
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:0px;
  2668. top:0px;
  2669. width:1243px;
  2670. height:40px;
  2671. background:inherit;
  2672. background-color:rgba(242, 242, 242, 1);
  2673. border:none;
  2674. border-top:0px;
  2675. border-right:0px;
  2676. border-bottom:0px;
  2677. border-radius:0px;
  2678. border-top-left-radius:0px;
  2679. border-bottom-left-radius:0px;
  2680. -moz-box-shadow:none;
  2681. -webkit-box-shadow:none;
  2682. box-shadow:none;
  2683. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2684. font-weight:500;
  2685. font-style:normal;
  2686. font-size:18px;
  2687. color:#000000;
  2688. }
  2689. #u148000 {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:195px;
  2693. top:829px;
  2694. width:1243px;
  2695. height:40px;
  2696. display:flex;
  2697. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2698. font-weight:500;
  2699. font-style:normal;
  2700. font-size:18px;
  2701. color:#000000;
  2702. }
  2703. #u148000 .text {
  2704. position:absolute;
  2705. align-self:center;
  2706. padding:0px 0px 0px 10px;
  2707. box-sizing:border-box;
  2708. width:100%;
  2709. }
  2710. #u148000_text {
  2711. border-width:0px;
  2712. word-wrap:break-word;
  2713. text-transform:none;
  2714. }
  2715. #u148001 {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:0px;
  2719. top:0px;
  2720. width:0px;
  2721. height:0px;
  2722. }
  2723. #u148002 {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:195px;
  2727. top:889px;
  2728. width:1243px;
  2729. height:153px;
  2730. }
  2731. #u148003_img {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:829px;
  2737. height:49px;
  2738. }
  2739. #u148003 {
  2740. border-width:0px;
  2741. position:absolute;
  2742. left:0px;
  2743. top:0px;
  2744. width:829px;
  2745. height:49px;
  2746. display:flex;
  2747. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2748. font-weight:500;
  2749. font-style:normal;
  2750. font-size:14px;
  2751. text-align:left;
  2752. }
  2753. #u148003 .text {
  2754. position:absolute;
  2755. align-self:center;
  2756. padding:2px 2px 2px 20px;
  2757. box-sizing:border-box;
  2758. width:100%;
  2759. }
  2760. #u148003_text {
  2761. border-width:0px;
  2762. word-wrap:break-word;
  2763. text-transform:none;
  2764. }
  2765. #u148004_img {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:0px;
  2769. top:0px;
  2770. width:414px;
  2771. height:49px;
  2772. }
  2773. #u148004 {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:829px;
  2777. top:0px;
  2778. width:414px;
  2779. height:49px;
  2780. display:flex;
  2781. font-size:14px;
  2782. text-align:right;
  2783. }
  2784. #u148004 .text {
  2785. position:absolute;
  2786. align-self:center;
  2787. padding:2px 20px 2px 20px;
  2788. box-sizing:border-box;
  2789. width:100%;
  2790. }
  2791. #u148004_text {
  2792. border-width:0px;
  2793. word-wrap:break-word;
  2794. text-transform:none;
  2795. }
  2796. #u148005_img {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:0px;
  2800. top:0px;
  2801. width:829px;
  2802. height:50px;
  2803. }
  2804. #u148005 {
  2805. border-width:0px;
  2806. position:absolute;
  2807. left:0px;
  2808. top:49px;
  2809. width:829px;
  2810. height:50px;
  2811. display:flex;
  2812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2813. font-weight:400;
  2814. font-style:normal;
  2815. font-size:12px;
  2816. text-align:left;
  2817. }
  2818. #u148005 .text {
  2819. position:absolute;
  2820. align-self:center;
  2821. padding:2px 2px 2px 20px;
  2822. box-sizing:border-box;
  2823. width:100%;
  2824. }
  2825. #u148005_text {
  2826. border-width:0px;
  2827. word-wrap:break-word;
  2828. text-transform:none;
  2829. }
  2830. #u148006_img {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:0px;
  2834. top:0px;
  2835. width:414px;
  2836. height:50px;
  2837. }
  2838. #u148006 {
  2839. border-width:0px;
  2840. position:absolute;
  2841. left:829px;
  2842. top:49px;
  2843. width:414px;
  2844. height:50px;
  2845. display:flex;
  2846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2847. font-weight:400;
  2848. font-style:normal;
  2849. font-size:14px;
  2850. text-align:right;
  2851. }
  2852. #u148006 .text {
  2853. position:absolute;
  2854. align-self:center;
  2855. padding:2px 20px 2px 20px;
  2856. box-sizing:border-box;
  2857. width:100%;
  2858. }
  2859. #u148006_text {
  2860. border-width:0px;
  2861. word-wrap:break-word;
  2862. text-transform:none;
  2863. }
  2864. #u148007_img {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:0px;
  2868. top:0px;
  2869. width:829px;
  2870. height:54px;
  2871. }
  2872. #u148007 {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:0px;
  2876. top:99px;
  2877. width:829px;
  2878. height:54px;
  2879. display:flex;
  2880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2881. font-weight:400;
  2882. font-style:normal;
  2883. font-size:18px;
  2884. color:#0099FF;
  2885. text-align:left;
  2886. }
  2887. #u148007 .text {
  2888. position:absolute;
  2889. align-self:center;
  2890. padding:2px 2px 2px 20px;
  2891. box-sizing:border-box;
  2892. width:100%;
  2893. }
  2894. #u148007_text {
  2895. border-width:0px;
  2896. word-wrap:break-word;
  2897. text-transform:none;
  2898. visibility:hidden;
  2899. }
  2900. #u148008_img {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:0px;
  2904. top:0px;
  2905. width:414px;
  2906. height:54px;
  2907. }
  2908. #u148008 {
  2909. border-width:0px;
  2910. position:absolute;
  2911. left:829px;
  2912. top:99px;
  2913. width:414px;
  2914. height:54px;
  2915. display:flex;
  2916. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2917. font-weight:500;
  2918. font-style:normal;
  2919. font-size:18px;
  2920. color:#0099FF;
  2921. text-align:right;
  2922. }
  2923. #u148008 .text {
  2924. position:absolute;
  2925. align-self:center;
  2926. padding:2px 20px 2px 20px;
  2927. box-sizing:border-box;
  2928. width:100%;
  2929. }
  2930. #u148008_text {
  2931. border-width:0px;
  2932. word-wrap:break-word;
  2933. text-transform:none;
  2934. }
  2935. #u148009_img {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:0px;
  2939. top:0px;
  2940. width:1233px;
  2941. height:2px;
  2942. }
  2943. #u148009 {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:195px;
  2947. top:936px;
  2948. width:1232px;
  2949. height:1px;
  2950. display:flex;
  2951. }
  2952. #u148009 .text {
  2953. position:absolute;
  2954. align-self:center;
  2955. padding:2px 2px 2px 2px;
  2956. box-sizing:border-box;
  2957. width:100%;
  2958. }
  2959. #u148009_text {
  2960. border-width:0px;
  2961. word-wrap:break-word;
  2962. text-transform:none;
  2963. visibility:hidden;
  2964. }
  2965. #u148010_img {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:0px;
  2969. top:0px;
  2970. width:1233px;
  2971. height:2px;
  2972. }
  2973. #u148010 {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:195px;
  2977. top:986px;
  2978. width:1232px;
  2979. height:1px;
  2980. display:flex;
  2981. }
  2982. #u148010 .text {
  2983. position:absolute;
  2984. align-self:center;
  2985. padding:2px 2px 2px 2px;
  2986. box-sizing:border-box;
  2987. width:100%;
  2988. }
  2989. #u148010_text {
  2990. border-width:0px;
  2991. word-wrap:break-word;
  2992. text-transform:none;
  2993. visibility:hidden;
  2994. }
  2995. #u148011_img {
  2996. border-width:0px;
  2997. position:absolute;
  2998. left:0px;
  2999. top:0px;
  3000. width:1233px;
  3001. height:2px;
  3002. }
  3003. #u148011 {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:195px;
  3007. top:1041px;
  3008. width:1232px;
  3009. height:1px;
  3010. display:flex;
  3011. }
  3012. #u148011 .text {
  3013. position:absolute;
  3014. align-self:center;
  3015. padding:2px 2px 2px 2px;
  3016. box-sizing:border-box;
  3017. width:100%;
  3018. }
  3019. #u148011_text {
  3020. border-width:0px;
  3021. word-wrap:break-word;
  3022. text-transform:none;
  3023. visibility:hidden;
  3024. }