styles.css 43 KB

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