styles.css 46 KB

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