styles.css 54 KB

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