styles.css 52 KB

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