styles.css 50 KB

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