styles.css 46 KB

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