styles.css 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538
  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. #u135340_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u135340 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u135340 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u135340_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u135341_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. #u135341 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u135341 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u135341_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u135342 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u135343_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. #u135343 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u135343 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u135343_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u135344 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u135345_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u135345 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u135345 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u135345_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u135346_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u135346 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u135346 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u135346_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u135347 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u135348_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u135348 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u135348 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u135348_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u135349_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u135349 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u135349 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u135349_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u135350_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u135350 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u135350 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u135350_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u135351_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u135351 {
  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. #u135351 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u135351_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u135352_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u135352 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u135352 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u135352_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u135353_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. #u135353 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u135353 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u135353_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u135354 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u135355_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u135355 {
  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. #u135355 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u135355_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u135356_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. #u135356 {
  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. #u135356 .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. #u135356_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u135357 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u135358_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u135358 {
  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. #u135358 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u135358_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u135359_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. #u135359 {
  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. #u135359 .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. #u135359_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u135360_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. #u135360 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u135360 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u135360_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u135361 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u135362_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u135362 {
  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. #u135362 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u135362_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u135363_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. #u135363 {
  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. #u135363 .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. #u135363_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u135364 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u135365_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u135365 {
  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. #u135365 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u135365_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u135366_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. #u135366 {
  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. #u135366 .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. #u135366_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u135367_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. }
  797. #u135367 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:105px;
  802. width:375px;
  803. height:735px;
  804. display:flex;
  805. }
  806. #u135367 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u135367_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u135368_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:57px;
  825. height:30px;
  826. background:inherit;
  827. background-color:rgba(255, 255, 255, 0);
  828. border:none;
  829. border-left:0px;
  830. border-top:0px;
  831. border-right:0px;
  832. border-radius:0px;
  833. border-bottom-right-radius:0px;
  834. border-bottom-left-radius:0px;
  835. -moz-box-shadow:none;
  836. -webkit-box-shadow:none;
  837. box-shadow:none;
  838. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  839. font-weight:500;
  840. font-style:normal;
  841. font-size:14px;
  842. line-height:30px;
  843. }
  844. #u135368 {
  845. border-width:0px;
  846. position:absolute;
  847. left:182px;
  848. top:73px;
  849. width:57px;
  850. height:30px;
  851. display:flex;
  852. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  853. font-weight:500;
  854. font-style:normal;
  855. font-size:14px;
  856. line-height:30px;
  857. }
  858. #u135368 .text {
  859. position:absolute;
  860. align-self:flex-start;
  861. padding:0px 0px 0px 0px;
  862. box-sizing:border-box;
  863. width:100%;
  864. }
  865. #u135368_text {
  866. border-width:0px;
  867. white-space:nowrap;
  868. text-transform:none;
  869. }
  870. #u135369 {
  871. border-width:0px;
  872. position:absolute;
  873. left:0px;
  874. top:0px;
  875. width:0px;
  876. height:0px;
  877. }
  878. #u135370_img {
  879. border-width:0px;
  880. position:absolute;
  881. left:0px;
  882. top:0px;
  883. width:11px;
  884. height:18px;
  885. }
  886. #u135370 {
  887. border-width:0px;
  888. position:absolute;
  889. left:42px;
  890. top:79px;
  891. width:11px;
  892. height:18px;
  893. display:flex;
  894. }
  895. #u135370 .text {
  896. position:absolute;
  897. align-self:center;
  898. padding:2px 2px 2px 2px;
  899. box-sizing:border-box;
  900. width:100%;
  901. }
  902. #u135370_text {
  903. border-width:0px;
  904. word-wrap:break-word;
  905. text-transform:none;
  906. visibility:hidden;
  907. }
  908. #u135371 {
  909. border-width:0px;
  910. position:absolute;
  911. left:0px;
  912. top:0px;
  913. width:0px;
  914. height:0px;
  915. }
  916. #u135372_div {
  917. border-width:0px;
  918. position:absolute;
  919. left:0px;
  920. top:0px;
  921. width:376px;
  922. height:50px;
  923. background:inherit;
  924. background-color:rgba(255, 255, 255, 1);
  925. border:none;
  926. border-left:0px;
  927. border-top:0px;
  928. border-right:0px;
  929. border-radius:0px;
  930. border-bottom-right-radius:0px;
  931. border-bottom-left-radius:0px;
  932. -moz-box-shadow:none;
  933. -webkit-box-shadow:none;
  934. box-shadow:none;
  935. }
  936. #u135372 {
  937. border-width:0px;
  938. position:absolute;
  939. left:29px;
  940. top:115px;
  941. width:376px;
  942. height:50px;
  943. display:flex;
  944. }
  945. #u135372 .text {
  946. position:absolute;
  947. align-self:center;
  948. padding:2px 2px 2px 2px;
  949. box-sizing:border-box;
  950. width:100%;
  951. }
  952. #u135372_text {
  953. border-width:0px;
  954. word-wrap:break-word;
  955. text-transform:none;
  956. visibility:hidden;
  957. }
  958. #u135373_div {
  959. border-width:0px;
  960. position:absolute;
  961. left:0px;
  962. top:0px;
  963. width:64px;
  964. height:30px;
  965. background:inherit;
  966. background-color:rgba(255, 255, 255, 0);
  967. border:none;
  968. border-left:0px;
  969. border-top:0px;
  970. border-right:0px;
  971. border-radius:0px;
  972. border-bottom-right-radius:0px;
  973. border-bottom-left-radius:0px;
  974. -moz-box-shadow:none;
  975. -webkit-box-shadow:none;
  976. box-shadow:none;
  977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  978. font-weight:400;
  979. font-style:normal;
  980. font-size:14px;
  981. line-height:30px;
  982. }
  983. #u135373 {
  984. border-width:0px;
  985. position:absolute;
  986. left:50px;
  987. top:125px;
  988. width:64px;
  989. height:30px;
  990. display:flex;
  991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  992. font-weight:400;
  993. font-style:normal;
  994. font-size:14px;
  995. line-height:30px;
  996. }
  997. #u135373 .text {
  998. position:absolute;
  999. align-self:flex-start;
  1000. padding:0px 0px 0px 0px;
  1001. box-sizing:border-box;
  1002. width:100%;
  1003. }
  1004. #u135373_text {
  1005. border-width:0px;
  1006. white-space:nowrap;
  1007. text-transform:none;
  1008. }
  1009. #u135374_input {
  1010. position:absolute;
  1011. left:0px;
  1012. top:0px;
  1013. width:185px;
  1014. height:25px;
  1015. padding:2px 2px 2px 2px;
  1016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1017. font-weight:400;
  1018. font-style:normal;
  1019. font-size:14px;
  1020. letter-spacing:normal;
  1021. color:#333333;
  1022. vertical-align:none;
  1023. text-align:left;
  1024. text-transform:none;
  1025. background-color:transparent;
  1026. border-color:transparent;
  1027. }
  1028. #u135374_input.disabled {
  1029. position:absolute;
  1030. left:0px;
  1031. top:0px;
  1032. width:185px;
  1033. height:25px;
  1034. padding:2px 2px 2px 2px;
  1035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1036. font-weight:400;
  1037. font-style:normal;
  1038. font-size:14px;
  1039. letter-spacing:normal;
  1040. color:#333333;
  1041. vertical-align:none;
  1042. text-align:left;
  1043. text-transform:none;
  1044. background-color:transparent;
  1045. border-color:transparent;
  1046. }
  1047. #u135374_div {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:0px;
  1051. top:0px;
  1052. width:185px;
  1053. height:25px;
  1054. background:inherit;
  1055. background-color:rgba(255, 255, 255, 1);
  1056. border:none;
  1057. border-radius:0px;
  1058. -moz-box-shadow:none;
  1059. -webkit-box-shadow:none;
  1060. box-shadow:none;
  1061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1062. font-weight:400;
  1063. font-style:normal;
  1064. font-size:14px;
  1065. color:#333333;
  1066. }
  1067. #u135374 {
  1068. border-width:0px;
  1069. position:absolute;
  1070. left:124px;
  1071. top:128px;
  1072. width:185px;
  1073. height:25px;
  1074. display:flex;
  1075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1076. font-weight:400;
  1077. font-style:normal;
  1078. font-size:14px;
  1079. color:#333333;
  1080. }
  1081. #u135374 .text {
  1082. position:absolute;
  1083. align-self:center;
  1084. padding:2px 2px 2px 2px;
  1085. box-sizing:border-box;
  1086. width:100%;
  1087. }
  1088. #u135374_div.disabled {
  1089. border-width:0px;
  1090. position:absolute;
  1091. left:0px;
  1092. top:0px;
  1093. width:185px;
  1094. height:25px;
  1095. background:inherit;
  1096. background-color:rgba(240, 240, 240, 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:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1103. font-weight:400;
  1104. font-style:normal;
  1105. font-size:14px;
  1106. color:#333333;
  1107. }
  1108. #u135374.disabled {
  1109. }
  1110. #u135375_input {
  1111. position:absolute;
  1112. left:0px;
  1113. top:0px;
  1114. width:185px;
  1115. height:25px;
  1116. padding:2px 2px 2px 2px;
  1117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1118. font-weight:400;
  1119. font-style:normal;
  1120. font-size:14px;
  1121. letter-spacing:normal;
  1122. color:#333333;
  1123. vertical-align:none;
  1124. text-align:left;
  1125. text-transform:none;
  1126. background-color:transparent;
  1127. border-color:transparent;
  1128. }
  1129. #u135375_input.disabled {
  1130. position:absolute;
  1131. left:0px;
  1132. top:0px;
  1133. width:185px;
  1134. height:25px;
  1135. padding:2px 2px 2px 2px;
  1136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1137. font-weight:400;
  1138. font-style:normal;
  1139. font-size:14px;
  1140. letter-spacing:normal;
  1141. color:#333333;
  1142. vertical-align:none;
  1143. text-align:left;
  1144. text-transform:none;
  1145. background-color:transparent;
  1146. border-color:transparent;
  1147. }
  1148. #u135375_div {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:0px;
  1152. top:0px;
  1153. width:185px;
  1154. height:25px;
  1155. background:inherit;
  1156. background-color:rgba(255, 255, 255, 1);
  1157. border:none;
  1158. border-radius:0px;
  1159. -moz-box-shadow:none;
  1160. -webkit-box-shadow:none;
  1161. box-shadow:none;
  1162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1163. font-weight:400;
  1164. font-style:normal;
  1165. font-size:14px;
  1166. color:#333333;
  1167. }
  1168. #u135375 {
  1169. border-width:0px;
  1170. position:absolute;
  1171. left:124px;
  1172. top:179px;
  1173. width:185px;
  1174. height:25px;
  1175. display:flex;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:14px;
  1180. color:#333333;
  1181. }
  1182. #u135375 .text {
  1183. position:absolute;
  1184. align-self:center;
  1185. padding:2px 2px 2px 2px;
  1186. box-sizing:border-box;
  1187. width:100%;
  1188. }
  1189. #u135375_div.disabled {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:0px;
  1193. top:0px;
  1194. width:185px;
  1195. height:25px;
  1196. background:inherit;
  1197. background-color:rgba(240, 240, 240, 1);
  1198. border:none;
  1199. border-radius:0px;
  1200. -moz-box-shadow:none;
  1201. -webkit-box-shadow:none;
  1202. box-shadow:none;
  1203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1204. font-weight:400;
  1205. font-style:normal;
  1206. font-size:14px;
  1207. color:#333333;
  1208. }
  1209. #u135375.disabled {
  1210. }
  1211. #u135376 {
  1212. border-width:0px;
  1213. position:absolute;
  1214. left:0px;
  1215. top:0px;
  1216. width:0px;
  1217. height:0px;
  1218. }
  1219. #u135377_div {
  1220. border-width:0px;
  1221. position:absolute;
  1222. left:0px;
  1223. top:0px;
  1224. width:376px;
  1225. height:50px;
  1226. background:inherit;
  1227. background-color:rgba(255, 255, 255, 1);
  1228. border:none;
  1229. border-left:0px;
  1230. border-top:0px;
  1231. border-right:0px;
  1232. border-radius:0px;
  1233. border-bottom-right-radius:0px;
  1234. border-bottom-left-radius:0px;
  1235. -moz-box-shadow:none;
  1236. -webkit-box-shadow:none;
  1237. box-shadow:none;
  1238. }
  1239. #u135377 {
  1240. border-width:0px;
  1241. position:absolute;
  1242. left:29px;
  1243. top:166px;
  1244. width:376px;
  1245. height:50px;
  1246. display:flex;
  1247. }
  1248. #u135377 .text {
  1249. position:absolute;
  1250. align-self:center;
  1251. padding:2px 2px 2px 2px;
  1252. box-sizing:border-box;
  1253. width:100%;
  1254. }
  1255. #u135377_text {
  1256. border-width:0px;
  1257. word-wrap:break-word;
  1258. text-transform:none;
  1259. visibility:hidden;
  1260. }
  1261. #u135378_div {
  1262. border-width:0px;
  1263. position:absolute;
  1264. left:0px;
  1265. top:0px;
  1266. width:57px;
  1267. height:30px;
  1268. background:inherit;
  1269. background-color:rgba(255, 255, 255, 0);
  1270. border:none;
  1271. border-left:0px;
  1272. border-top:0px;
  1273. border-right:0px;
  1274. border-radius:0px;
  1275. border-bottom-right-radius:0px;
  1276. border-bottom-left-radius:0px;
  1277. -moz-box-shadow:none;
  1278. -webkit-box-shadow:none;
  1279. box-shadow:none;
  1280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1281. font-weight:400;
  1282. font-style:normal;
  1283. font-size:14px;
  1284. line-height:30px;
  1285. }
  1286. #u135378 {
  1287. border-width:0px;
  1288. position:absolute;
  1289. left:50px;
  1290. top:176px;
  1291. width:57px;
  1292. height:30px;
  1293. display:flex;
  1294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1295. font-weight:400;
  1296. font-style:normal;
  1297. font-size:14px;
  1298. line-height:30px;
  1299. }
  1300. #u135378 .text {
  1301. position:absolute;
  1302. align-self:flex-start;
  1303. padding:0px 0px 0px 0px;
  1304. box-sizing:border-box;
  1305. width:100%;
  1306. }
  1307. #u135378_text {
  1308. border-width:0px;
  1309. white-space:nowrap;
  1310. text-transform:none;
  1311. }
  1312. #u135379 {
  1313. border-width:0px;
  1314. position:absolute;
  1315. left:0px;
  1316. top:0px;
  1317. width:0px;
  1318. height:0px;
  1319. }
  1320. #u135380_img {
  1321. border-width:0px;
  1322. position:absolute;
  1323. left:0px;
  1324. top:0px;
  1325. width:8px;
  1326. height:12px;
  1327. }
  1328. #u135380 {
  1329. border-width:0px;
  1330. position:absolute;
  1331. left:377px;
  1332. top:187px;
  1333. width:8px;
  1334. height:12px;
  1335. display:flex;
  1336. -webkit-transform:rotate(180deg);
  1337. -moz-transform:rotate(180deg);
  1338. -ms-transform:rotate(180deg);
  1339. transform:rotate(180deg);
  1340. }
  1341. #u135380 .text {
  1342. position:absolute;
  1343. align-self:center;
  1344. padding:2px 2px 2px 2px;
  1345. box-sizing:border-box;
  1346. width:100%;
  1347. }
  1348. #u135380_text {
  1349. border-width:0px;
  1350. word-wrap:break-word;
  1351. text-transform:none;
  1352. visibility:hidden;
  1353. }
  1354. #u135381_div {
  1355. border-width:0px;
  1356. position:absolute;
  1357. left:0px;
  1358. top:0px;
  1359. width:29px;
  1360. height:30px;
  1361. background:inherit;
  1362. background-color:rgba(255, 255, 255, 0);
  1363. border:none;
  1364. border-left:0px;
  1365. border-top:0px;
  1366. border-right:0px;
  1367. border-radius:0px;
  1368. border-bottom-right-radius:0px;
  1369. border-bottom-left-radius:0px;
  1370. -moz-box-shadow:none;
  1371. -webkit-box-shadow:none;
  1372. box-shadow:none;
  1373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1374. font-weight:400;
  1375. font-style:normal;
  1376. font-size:14px;
  1377. line-height:30px;
  1378. }
  1379. #u135381 {
  1380. border-width:0px;
  1381. position:absolute;
  1382. left:129px;
  1383. top:176px;
  1384. width:29px;
  1385. height:30px;
  1386. display:flex;
  1387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1388. font-weight:400;
  1389. font-style:normal;
  1390. font-size:14px;
  1391. line-height:30px;
  1392. }
  1393. #u135381 .text {
  1394. position:absolute;
  1395. align-self:flex-start;
  1396. padding:0px 0px 0px 0px;
  1397. box-sizing:border-box;
  1398. width:100%;
  1399. }
  1400. #u135381_text {
  1401. border-width:0px;
  1402. white-space:nowrap;
  1403. text-transform:none;
  1404. }
  1405. #u135382 {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:0px;
  1409. top:0px;
  1410. width:0px;
  1411. height:0px;
  1412. }
  1413. #u135383_div {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:0px;
  1417. top:0px;
  1418. width:376px;
  1419. height:50px;
  1420. background:inherit;
  1421. background-color:rgba(255, 255, 255, 1);
  1422. border:none;
  1423. border-left:0px;
  1424. border-top:0px;
  1425. border-right:0px;
  1426. border-radius:0px;
  1427. border-bottom-right-radius:0px;
  1428. border-bottom-left-radius:0px;
  1429. -moz-box-shadow:none;
  1430. -webkit-box-shadow:none;
  1431. box-shadow:none;
  1432. }
  1433. #u135383 {
  1434. border-width:0px;
  1435. position:absolute;
  1436. left:29px;
  1437. top:217px;
  1438. width:376px;
  1439. height:50px;
  1440. display:flex;
  1441. }
  1442. #u135383 .text {
  1443. position:absolute;
  1444. align-self:center;
  1445. padding:2px 2px 2px 2px;
  1446. box-sizing:border-box;
  1447. width:100%;
  1448. }
  1449. #u135383_text {
  1450. border-width:0px;
  1451. word-wrap:break-word;
  1452. text-transform:none;
  1453. visibility:hidden;
  1454. }
  1455. #u135384_div {
  1456. border-width:0px;
  1457. position:absolute;
  1458. left:0px;
  1459. top:0px;
  1460. width:29px;
  1461. height:30px;
  1462. background:inherit;
  1463. background-color:rgba(255, 255, 255, 0);
  1464. border:none;
  1465. border-left:0px;
  1466. border-top:0px;
  1467. border-right:0px;
  1468. border-radius:0px;
  1469. border-bottom-right-radius:0px;
  1470. border-bottom-left-radius:0px;
  1471. -moz-box-shadow:none;
  1472. -webkit-box-shadow:none;
  1473. box-shadow:none;
  1474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1475. font-weight:400;
  1476. font-style:normal;
  1477. font-size:14px;
  1478. line-height:30px;
  1479. }
  1480. #u135384 {
  1481. border-width:0px;
  1482. position:absolute;
  1483. left:50px;
  1484. top:227px;
  1485. width:29px;
  1486. height:30px;
  1487. display:flex;
  1488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1489. font-weight:400;
  1490. font-style:normal;
  1491. font-size:14px;
  1492. line-height:30px;
  1493. }
  1494. #u135384 .text {
  1495. position:absolute;
  1496. align-self:flex-start;
  1497. padding:0px 0px 0px 0px;
  1498. box-sizing:border-box;
  1499. width:100%;
  1500. }
  1501. #u135384_text {
  1502. border-width:0px;
  1503. white-space:nowrap;
  1504. text-transform:none;
  1505. }
  1506. #u135385 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:0px;
  1512. height:0px;
  1513. }
  1514. #u135386_div {
  1515. border-width:0px;
  1516. position:absolute;
  1517. left:0px;
  1518. top:0px;
  1519. width:376px;
  1520. height:50px;
  1521. background:inherit;
  1522. background-color:rgba(255, 255, 255, 1);
  1523. border:none;
  1524. border-left:0px;
  1525. border-top:0px;
  1526. border-right:0px;
  1527. border-radius:0px;
  1528. border-bottom-right-radius:0px;
  1529. border-bottom-left-radius:0px;
  1530. -moz-box-shadow:none;
  1531. -webkit-box-shadow:none;
  1532. box-shadow:none;
  1533. }
  1534. #u135386 {
  1535. border-width:0px;
  1536. position:absolute;
  1537. left:29px;
  1538. top:268px;
  1539. width:376px;
  1540. height:50px;
  1541. display:flex;
  1542. }
  1543. #u135386 .text {
  1544. position:absolute;
  1545. align-self:center;
  1546. padding:2px 2px 2px 2px;
  1547. box-sizing:border-box;
  1548. width:100%;
  1549. }
  1550. #u135386_text {
  1551. border-width:0px;
  1552. word-wrap:break-word;
  1553. text-transform:none;
  1554. visibility:hidden;
  1555. }
  1556. #u135387_div {
  1557. border-width:0px;
  1558. position:absolute;
  1559. left:0px;
  1560. top:0px;
  1561. width:57px;
  1562. height:30px;
  1563. background:inherit;
  1564. background-color:rgba(255, 255, 255, 0);
  1565. border:none;
  1566. border-left:0px;
  1567. border-top:0px;
  1568. border-right:0px;
  1569. border-radius:0px;
  1570. border-bottom-right-radius:0px;
  1571. border-bottom-left-radius:0px;
  1572. -moz-box-shadow:none;
  1573. -webkit-box-shadow:none;
  1574. box-shadow:none;
  1575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1576. font-weight:400;
  1577. font-style:normal;
  1578. font-size:14px;
  1579. line-height:30px;
  1580. }
  1581. #u135387 {
  1582. border-width:0px;
  1583. position:absolute;
  1584. left:50px;
  1585. top:278px;
  1586. width:57px;
  1587. height:30px;
  1588. display:flex;
  1589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1590. font-weight:400;
  1591. font-style:normal;
  1592. font-size:14px;
  1593. line-height:30px;
  1594. }
  1595. #u135387 .text {
  1596. position:absolute;
  1597. align-self:flex-start;
  1598. padding:0px 0px 0px 0px;
  1599. box-sizing:border-box;
  1600. width:100%;
  1601. }
  1602. #u135387_text {
  1603. border-width:0px;
  1604. white-space:nowrap;
  1605. text-transform:none;
  1606. }
  1607. #u135388 {
  1608. border-width:0px;
  1609. position:absolute;
  1610. left:0px;
  1611. top:0px;
  1612. width:0px;
  1613. height:0px;
  1614. }
  1615. #u135389_div {
  1616. border-width:0px;
  1617. position:absolute;
  1618. left:0px;
  1619. top:0px;
  1620. width:376px;
  1621. height:50px;
  1622. background:inherit;
  1623. background-color:rgba(255, 255, 255, 1);
  1624. border:none;
  1625. border-left:0px;
  1626. border-top:0px;
  1627. border-right:0px;
  1628. border-radius:0px;
  1629. border-bottom-right-radius:0px;
  1630. border-bottom-left-radius:0px;
  1631. -moz-box-shadow:none;
  1632. -webkit-box-shadow:none;
  1633. box-shadow:none;
  1634. }
  1635. #u135389 {
  1636. border-width:0px;
  1637. position:absolute;
  1638. left:29px;
  1639. top:319px;
  1640. width:376px;
  1641. height:50px;
  1642. display:flex;
  1643. }
  1644. #u135389 .text {
  1645. position:absolute;
  1646. align-self:center;
  1647. padding:2px 2px 2px 2px;
  1648. box-sizing:border-box;
  1649. width:100%;
  1650. }
  1651. #u135389_text {
  1652. border-width:0px;
  1653. word-wrap:break-word;
  1654. text-transform:none;
  1655. visibility:hidden;
  1656. }
  1657. #u135390_div {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:0px;
  1661. top:0px;
  1662. width:57px;
  1663. height:30px;
  1664. background:inherit;
  1665. background-color:rgba(255, 255, 255, 0);
  1666. border:none;
  1667. border-left:0px;
  1668. border-top:0px;
  1669. border-right:0px;
  1670. border-radius:0px;
  1671. border-bottom-right-radius:0px;
  1672. border-bottom-left-radius:0px;
  1673. -moz-box-shadow:none;
  1674. -webkit-box-shadow:none;
  1675. box-shadow:none;
  1676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1677. font-weight:400;
  1678. font-style:normal;
  1679. font-size:14px;
  1680. line-height:30px;
  1681. }
  1682. #u135390 {
  1683. border-width:0px;
  1684. position:absolute;
  1685. left:50px;
  1686. top:329px;
  1687. width:57px;
  1688. height:30px;
  1689. display:flex;
  1690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1691. font-weight:400;
  1692. font-style:normal;
  1693. font-size:14px;
  1694. line-height:30px;
  1695. }
  1696. #u135390 .text {
  1697. position:absolute;
  1698. align-self:flex-start;
  1699. padding:0px 0px 0px 0px;
  1700. box-sizing:border-box;
  1701. width:100%;
  1702. }
  1703. #u135390_text {
  1704. border-width:0px;
  1705. white-space:nowrap;
  1706. text-transform:none;
  1707. }
  1708. #u135391_div {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:0px;
  1712. top:0px;
  1713. width:183px;
  1714. height:30px;
  1715. background:inherit;
  1716. background-color:rgba(255, 255, 255, 0);
  1717. border:none;
  1718. border-left:0px;
  1719. border-top:0px;
  1720. border-right:0px;
  1721. border-radius:0px;
  1722. border-bottom-right-radius:0px;
  1723. border-bottom-left-radius:0px;
  1724. -moz-box-shadow:none;
  1725. -webkit-box-shadow:none;
  1726. box-shadow:none;
  1727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1728. font-weight:400;
  1729. font-style:normal;
  1730. font-size:14px;
  1731. text-align:right;
  1732. line-height:30px;
  1733. }
  1734. #u135391 {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:129px;
  1738. top:329px;
  1739. width:183px;
  1740. height:30px;
  1741. display:flex;
  1742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1743. font-weight:400;
  1744. font-style:normal;
  1745. font-size:14px;
  1746. text-align:right;
  1747. line-height:30px;
  1748. }
  1749. #u135391 .text {
  1750. position:absolute;
  1751. align-self:flex-start;
  1752. padding:0px 0px 0px 0px;
  1753. box-sizing:border-box;
  1754. width:100%;
  1755. }
  1756. #u135391_text {
  1757. border-width:0px;
  1758. white-space:nowrap;
  1759. text-transform:none;
  1760. }
  1761. #u135392_img {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:0px;
  1765. top:0px;
  1766. width:8px;
  1767. height:12px;
  1768. }
  1769. #u135392 {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:377px;
  1773. top:338px;
  1774. width:8px;
  1775. height:12px;
  1776. display:flex;
  1777. -webkit-transform:rotate(180deg);
  1778. -moz-transform:rotate(180deg);
  1779. -ms-transform:rotate(180deg);
  1780. transform:rotate(180deg);
  1781. }
  1782. #u135392 .text {
  1783. position:absolute;
  1784. align-self:center;
  1785. padding:2px 2px 2px 2px;
  1786. box-sizing:border-box;
  1787. width:100%;
  1788. }
  1789. #u135392_text {
  1790. border-width:0px;
  1791. word-wrap:break-word;
  1792. text-transform:none;
  1793. visibility:hidden;
  1794. }
  1795. #u135393_div {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:0px;
  1799. top:0px;
  1800. width:375px;
  1801. height:50px;
  1802. background:inherit;
  1803. background-color:rgba(255, 255, 255, 1);
  1804. border:none;
  1805. border-left:0px;
  1806. border-top:0px;
  1807. border-right:0px;
  1808. border-radius:0px;
  1809. border-bottom-right-radius:0px;
  1810. border-bottom-left-radius:0px;
  1811. -moz-box-shadow:none;
  1812. -webkit-box-shadow:none;
  1813. box-shadow:none;
  1814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1815. font-weight:400;
  1816. font-style:normal;
  1817. font-size:14px;
  1818. line-height:30px;
  1819. }
  1820. #u135393 {
  1821. border-width:0px;
  1822. position:absolute;
  1823. left:29px;
  1824. top:389px;
  1825. width:375px;
  1826. height:50px;
  1827. display:flex;
  1828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1829. font-weight:400;
  1830. font-style:normal;
  1831. font-size:14px;
  1832. line-height:30px;
  1833. }
  1834. #u135393 .text {
  1835. position:absolute;
  1836. align-self:center;
  1837. padding:2px 2px 2px 2px;
  1838. box-sizing:border-box;
  1839. width:100%;
  1840. }
  1841. #u135393_text {
  1842. border-width:0px;
  1843. word-wrap:break-word;
  1844. text-transform:none;
  1845. }
  1846. #u135394_div {
  1847. border-width:0px;
  1848. position:absolute;
  1849. left:0px;
  1850. top:0px;
  1851. width:375px;
  1852. height:50px;
  1853. background:inherit;
  1854. background-color:rgba(255, 255, 255, 1);
  1855. border:none;
  1856. border-left:0px;
  1857. border-top:0px;
  1858. border-right:0px;
  1859. border-radius:0px;
  1860. border-bottom-right-radius:0px;
  1861. border-bottom-left-radius:0px;
  1862. -moz-box-shadow:none;
  1863. -webkit-box-shadow:none;
  1864. box-shadow:none;
  1865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1866. font-weight:400;
  1867. font-style:normal;
  1868. font-size:14px;
  1869. line-height:30px;
  1870. }
  1871. #u135394 {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:29px;
  1875. top:440px;
  1876. width:375px;
  1877. height:50px;
  1878. display:flex;
  1879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1880. font-weight:400;
  1881. font-style:normal;
  1882. font-size:14px;
  1883. line-height:30px;
  1884. }
  1885. #u135394 .text {
  1886. position:absolute;
  1887. align-self:center;
  1888. padding:2px 2px 2px 2px;
  1889. box-sizing:border-box;
  1890. width:100%;
  1891. }
  1892. #u135394_text {
  1893. border-width:0px;
  1894. word-wrap:break-word;
  1895. text-transform:none;
  1896. }
  1897. #u135395 {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:0px;
  1901. top:0px;
  1902. width:0px;
  1903. height:0px;
  1904. }
  1905. #u135396_div {
  1906. border-width:0px;
  1907. position:absolute;
  1908. left:0px;
  1909. top:0px;
  1910. width:300px;
  1911. height:179px;
  1912. background:inherit;
  1913. background-color:rgba(255, 255, 255, 1);
  1914. border:none;
  1915. border-radius:10px;
  1916. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1917. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1918. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1919. }
  1920. #u135396 {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:79px;
  1924. top:530px;
  1925. width:300px;
  1926. height:179px;
  1927. display:flex;
  1928. }
  1929. #u135396 .text {
  1930. position:absolute;
  1931. align-self:center;
  1932. padding:2px 2px 2px 2px;
  1933. box-sizing:border-box;
  1934. width:100%;
  1935. }
  1936. #u135396_text {
  1937. border-width:0px;
  1938. word-wrap:break-word;
  1939. text-transform:none;
  1940. visibility:hidden;
  1941. }
  1942. #u135397_div {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:0px;
  1946. top:0px;
  1947. width:145px;
  1948. height:30px;
  1949. background:inherit;
  1950. background-color:rgba(255, 255, 255, 0);
  1951. border:none;
  1952. border-left:0px;
  1953. border-top:0px;
  1954. border-right:0px;
  1955. border-radius:0px;
  1956. border-bottom-right-radius:0px;
  1957. border-bottom-left-radius:0px;
  1958. -moz-box-shadow:none;
  1959. -webkit-box-shadow:none;
  1960. box-shadow:none;
  1961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1962. font-weight:400;
  1963. font-style:normal;
  1964. font-size:18px;
  1965. text-align:center;
  1966. line-height:30px;
  1967. }
  1968. #u135397 {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:157px;
  1972. top:548px;
  1973. width:145px;
  1974. height:30px;
  1975. display:flex;
  1976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1977. font-weight:400;
  1978. font-style:normal;
  1979. font-size:18px;
  1980. text-align:center;
  1981. line-height:30px;
  1982. }
  1983. #u135397 .text {
  1984. position:absolute;
  1985. align-self:flex-start;
  1986. padding:0px 0px 0px 0px;
  1987. box-sizing:border-box;
  1988. width:100%;
  1989. }
  1990. #u135397_text {
  1991. border-width:0px;
  1992. white-space:nowrap;
  1993. text-transform:none;
  1994. }
  1995. #u135398_div {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:0px;
  1999. top:0px;
  2000. width:260px;
  2001. height:52px;
  2002. background:inherit;
  2003. background-color:rgba(255, 255, 255, 0);
  2004. border:none;
  2005. border-left:0px;
  2006. border-top:0px;
  2007. border-right:0px;
  2008. border-radius:0px;
  2009. border-bottom-right-radius:0px;
  2010. border-bottom-left-radius:0px;
  2011. -moz-box-shadow:none;
  2012. -webkit-box-shadow:none;
  2013. box-shadow:none;
  2014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2015. font-weight:400;
  2016. font-style:normal;
  2017. font-size:14px;
  2018. color:#7F7F7F;
  2019. line-height:26px;
  2020. }
  2021. #u135398 {
  2022. border-width:0px;
  2023. position:absolute;
  2024. left:102px;
  2025. top:588px;
  2026. width:260px;
  2027. height:52px;
  2028. display:flex;
  2029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2030. font-weight:400;
  2031. font-style:normal;
  2032. font-size:14px;
  2033. color:#7F7F7F;
  2034. line-height:26px;
  2035. }
  2036. #u135398 .text {
  2037. position:absolute;
  2038. align-self:flex-start;
  2039. padding:0px 0px 0px 0px;
  2040. box-sizing:border-box;
  2041. width:100%;
  2042. }
  2043. #u135398_text {
  2044. border-width:0px;
  2045. word-wrap:break-word;
  2046. text-transform:none;
  2047. }
  2048. #u135399_img {
  2049. border-width:0px;
  2050. position:absolute;
  2051. left:0px;
  2052. top:0px;
  2053. width:301px;
  2054. height:2px;
  2055. }
  2056. #u135399 {
  2057. border-width:0px;
  2058. position:absolute;
  2059. left:79px;
  2060. top:660px;
  2061. width:300px;
  2062. height:1px;
  2063. display:flex;
  2064. }
  2065. #u135399 .text {
  2066. position:absolute;
  2067. align-self:center;
  2068. padding:2px 2px 2px 2px;
  2069. box-sizing:border-box;
  2070. width:100%;
  2071. }
  2072. #u135399_text {
  2073. border-width:0px;
  2074. word-wrap:break-word;
  2075. text-transform:none;
  2076. visibility:hidden;
  2077. }
  2078. #u135400_div {
  2079. border-width:0px;
  2080. position:absolute;
  2081. left:0px;
  2082. top:0px;
  2083. width:41px;
  2084. height:30px;
  2085. background:inherit;
  2086. background-color:rgba(255, 255, 255, 0);
  2087. border:none;
  2088. border-left:0px;
  2089. border-top:0px;
  2090. border-right:0px;
  2091. border-radius:0px;
  2092. border-bottom-right-radius:0px;
  2093. border-bottom-left-radius:0px;
  2094. -moz-box-shadow:none;
  2095. -webkit-box-shadow:none;
  2096. box-shadow:none;
  2097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2098. font-weight:400;
  2099. font-style:normal;
  2100. font-size:18px;
  2101. color:#1890FF;
  2102. text-align:center;
  2103. line-height:30px;
  2104. }
  2105. #u135400 {
  2106. border-width:0px;
  2107. position:absolute;
  2108. left:295px;
  2109. top:670px;
  2110. width:41px;
  2111. height:30px;
  2112. display:flex;
  2113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2114. font-weight:400;
  2115. font-style:normal;
  2116. font-size:18px;
  2117. color:#1890FF;
  2118. text-align:center;
  2119. line-height:30px;
  2120. }
  2121. #u135400 .text {
  2122. position:absolute;
  2123. align-self:flex-start;
  2124. padding:0px 0px 0px 0px;
  2125. box-sizing:border-box;
  2126. width:100%;
  2127. }
  2128. #u135400_text {
  2129. border-width:0px;
  2130. word-wrap:break-word;
  2131. text-transform:none;
  2132. }
  2133. #u135401_div {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:0px;
  2137. top:0px;
  2138. width:41px;
  2139. height:30px;
  2140. background:inherit;
  2141. background-color:rgba(255, 255, 255, 0);
  2142. border:none;
  2143. border-left:0px;
  2144. border-top:0px;
  2145. border-right:0px;
  2146. border-radius:0px;
  2147. border-bottom-right-radius:0px;
  2148. border-bottom-left-radius:0px;
  2149. -moz-box-shadow:none;
  2150. -webkit-box-shadow:none;
  2151. box-shadow:none;
  2152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2153. font-weight:400;
  2154. font-style:normal;
  2155. font-size:18px;
  2156. color:#1890FF;
  2157. text-align:center;
  2158. line-height:30px;
  2159. }
  2160. #u135401 {
  2161. border-width:0px;
  2162. position:absolute;
  2163. left:125px;
  2164. top:670px;
  2165. width:41px;
  2166. height:30px;
  2167. display:flex;
  2168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2169. font-weight:400;
  2170. font-style:normal;
  2171. font-size:18px;
  2172. color:#1890FF;
  2173. text-align:center;
  2174. line-height:30px;
  2175. }
  2176. #u135401 .text {
  2177. position:absolute;
  2178. align-self:flex-start;
  2179. padding:0px 0px 0px 0px;
  2180. box-sizing:border-box;
  2181. width:100%;
  2182. }
  2183. #u135401_text {
  2184. border-width:0px;
  2185. word-wrap:break-word;
  2186. text-transform:none;
  2187. }
  2188. #u135402_img {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:0px;
  2192. top:0px;
  2193. width:2px;
  2194. height:49px;
  2195. }
  2196. #u135402 {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:228px;
  2200. top:661px;
  2201. width:1px;
  2202. height:48px;
  2203. display:flex;
  2204. }
  2205. #u135402 .text {
  2206. position:absolute;
  2207. align-self:center;
  2208. padding:2px 2px 2px 2px;
  2209. box-sizing:border-box;
  2210. width:100%;
  2211. }
  2212. #u135402_text {
  2213. border-width:0px;
  2214. word-wrap:break-word;
  2215. text-transform:none;
  2216. visibility:hidden;
  2217. }
  2218. #u135403 {
  2219. border-width:0px;
  2220. position:absolute;
  2221. left:0px;
  2222. top:0px;
  2223. width:0px;
  2224. height:0px;
  2225. }
  2226. #u135404_div {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:0px;
  2230. top:0px;
  2231. width:300px;
  2232. height:179px;
  2233. background:inherit;
  2234. background-color:rgba(255, 255, 255, 1);
  2235. border:none;
  2236. border-radius:10px;
  2237. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2238. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2239. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2240. }
  2241. #u135404 {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:79px;
  2245. top:727px;
  2246. width:300px;
  2247. height:179px;
  2248. display:flex;
  2249. }
  2250. #u135404 .text {
  2251. position:absolute;
  2252. align-self:center;
  2253. padding:2px 2px 2px 2px;
  2254. box-sizing:border-box;
  2255. width:100%;
  2256. }
  2257. #u135404_text {
  2258. border-width:0px;
  2259. word-wrap:break-word;
  2260. text-transform:none;
  2261. visibility:hidden;
  2262. }
  2263. #u135405_div {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:0px;
  2267. top:0px;
  2268. width:199px;
  2269. height:30px;
  2270. background:inherit;
  2271. background-color:rgba(255, 255, 255, 0);
  2272. border:none;
  2273. border-left:0px;
  2274. border-top:0px;
  2275. border-right:0px;
  2276. border-radius:0px;
  2277. border-bottom-right-radius:0px;
  2278. border-bottom-left-radius:0px;
  2279. -moz-box-shadow:none;
  2280. -webkit-box-shadow:none;
  2281. box-shadow:none;
  2282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2283. font-weight:400;
  2284. font-style:normal;
  2285. font-size:18px;
  2286. text-align:center;
  2287. line-height:30px;
  2288. }
  2289. #u135405 {
  2290. border-width:0px;
  2291. position:absolute;
  2292. left:130px;
  2293. top:745px;
  2294. width:199px;
  2295. height:30px;
  2296. display:flex;
  2297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2298. font-weight:400;
  2299. font-style:normal;
  2300. font-size:18px;
  2301. text-align:center;
  2302. line-height:30px;
  2303. }
  2304. #u135405 .text {
  2305. position:absolute;
  2306. align-self:flex-start;
  2307. padding:0px 0px 0px 0px;
  2308. box-sizing:border-box;
  2309. width:100%;
  2310. }
  2311. #u135405_text {
  2312. border-width:0px;
  2313. white-space:nowrap;
  2314. text-transform:none;
  2315. }
  2316. #u135406_div {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:0px;
  2320. top:0px;
  2321. width:260px;
  2322. height:52px;
  2323. background:inherit;
  2324. background-color:rgba(255, 255, 255, 0);
  2325. border:none;
  2326. border-left:0px;
  2327. border-top:0px;
  2328. border-right:0px;
  2329. border-radius:0px;
  2330. border-bottom-right-radius:0px;
  2331. border-bottom-left-radius:0px;
  2332. -moz-box-shadow:none;
  2333. -webkit-box-shadow:none;
  2334. box-shadow:none;
  2335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2336. font-weight:400;
  2337. font-style:normal;
  2338. font-size:14px;
  2339. color:#7F7F7F;
  2340. line-height:26px;
  2341. }
  2342. #u135406 {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:102px;
  2346. top:785px;
  2347. width:260px;
  2348. height:52px;
  2349. display:flex;
  2350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2351. font-weight:400;
  2352. font-style:normal;
  2353. font-size:14px;
  2354. color:#7F7F7F;
  2355. line-height:26px;
  2356. }
  2357. #u135406 .text {
  2358. position:absolute;
  2359. align-self:flex-start;
  2360. padding:0px 0px 0px 0px;
  2361. box-sizing:border-box;
  2362. width:100%;
  2363. }
  2364. #u135406_text {
  2365. border-width:0px;
  2366. word-wrap:break-word;
  2367. text-transform:none;
  2368. }
  2369. #u135407_img {
  2370. border-width:0px;
  2371. position:absolute;
  2372. left:0px;
  2373. top:0px;
  2374. width:301px;
  2375. height:2px;
  2376. }
  2377. #u135407 {
  2378. border-width:0px;
  2379. position:absolute;
  2380. left:79px;
  2381. top:857px;
  2382. width:300px;
  2383. height:1px;
  2384. display:flex;
  2385. }
  2386. #u135407 .text {
  2387. position:absolute;
  2388. align-self:center;
  2389. padding:2px 2px 2px 2px;
  2390. box-sizing:border-box;
  2391. width:100%;
  2392. }
  2393. #u135407_text {
  2394. border-width:0px;
  2395. word-wrap:break-word;
  2396. text-transform:none;
  2397. visibility:hidden;
  2398. }
  2399. #u135408_div {
  2400. border-width:0px;
  2401. position:absolute;
  2402. left:0px;
  2403. top:0px;
  2404. width:41px;
  2405. height:30px;
  2406. background:inherit;
  2407. background-color:rgba(255, 255, 255, 0);
  2408. border:none;
  2409. border-left:0px;
  2410. border-top:0px;
  2411. border-right:0px;
  2412. border-radius:0px;
  2413. border-bottom-right-radius:0px;
  2414. border-bottom-left-radius:0px;
  2415. -moz-box-shadow:none;
  2416. -webkit-box-shadow:none;
  2417. box-shadow:none;
  2418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2419. font-weight:400;
  2420. font-style:normal;
  2421. font-size:18px;
  2422. color:#1890FF;
  2423. text-align:center;
  2424. line-height:30px;
  2425. }
  2426. #u135408 {
  2427. border-width:0px;
  2428. position:absolute;
  2429. left:295px;
  2430. top:867px;
  2431. width:41px;
  2432. height:30px;
  2433. display:flex;
  2434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2435. font-weight:400;
  2436. font-style:normal;
  2437. font-size:18px;
  2438. color:#1890FF;
  2439. text-align:center;
  2440. line-height:30px;
  2441. }
  2442. #u135408 .text {
  2443. position:absolute;
  2444. align-self:flex-start;
  2445. padding:0px 0px 0px 0px;
  2446. box-sizing:border-box;
  2447. width:100%;
  2448. }
  2449. #u135408_text {
  2450. border-width:0px;
  2451. word-wrap:break-word;
  2452. text-transform:none;
  2453. }
  2454. #u135409_div {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:0px;
  2458. top:0px;
  2459. width:41px;
  2460. height:30px;
  2461. background:inherit;
  2462. background-color:rgba(255, 255, 255, 0);
  2463. border:none;
  2464. border-left:0px;
  2465. border-top:0px;
  2466. border-right:0px;
  2467. border-radius:0px;
  2468. border-bottom-right-radius:0px;
  2469. border-bottom-left-radius:0px;
  2470. -moz-box-shadow:none;
  2471. -webkit-box-shadow:none;
  2472. box-shadow:none;
  2473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2474. font-weight:400;
  2475. font-style:normal;
  2476. font-size:18px;
  2477. color:#1890FF;
  2478. text-align:center;
  2479. line-height:30px;
  2480. }
  2481. #u135409 {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:125px;
  2485. top:867px;
  2486. width:41px;
  2487. height:30px;
  2488. display:flex;
  2489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2490. font-weight:400;
  2491. font-style:normal;
  2492. font-size:18px;
  2493. color:#1890FF;
  2494. text-align:center;
  2495. line-height:30px;
  2496. }
  2497. #u135409 .text {
  2498. position:absolute;
  2499. align-self:flex-start;
  2500. padding:0px 0px 0px 0px;
  2501. box-sizing:border-box;
  2502. width:100%;
  2503. }
  2504. #u135409_text {
  2505. border-width:0px;
  2506. word-wrap:break-word;
  2507. text-transform:none;
  2508. }
  2509. #u135410_img {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:0px;
  2513. top:0px;
  2514. width:2px;
  2515. height:49px;
  2516. }
  2517. #u135410 {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:228px;
  2521. top:858px;
  2522. width:1px;
  2523. height:48px;
  2524. display:flex;
  2525. }
  2526. #u135410 .text {
  2527. position:absolute;
  2528. align-self:center;
  2529. padding:2px 2px 2px 2px;
  2530. box-sizing:border-box;
  2531. width:100%;
  2532. }
  2533. #u135410_text {
  2534. border-width:0px;
  2535. word-wrap:break-word;
  2536. text-transform:none;
  2537. visibility:hidden;
  2538. }