styles.css 49 KB

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