styles.css 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:771px;
  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. #u143981_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u143981 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u143981 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u143981_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u143982_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. #u143982 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u143982 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u143982_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u143983 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u143984_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. #u143984 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u143984 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u143984_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u143985 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u143986_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u143986 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u143986 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u143986_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u143987_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u143987 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u143987 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u143987_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u143988 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u143989_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u143989 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u143989 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u143989_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u143990_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u143990 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u143990 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u143990_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u143991_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u143991 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u143991 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u143991_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u143992_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u143992 {
  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. #u143992 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u143992_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u143993_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u143993 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u143993 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u143993_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u143994_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. #u143994 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u143994 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u143994_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u143995 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u143996_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u143996 {
  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. #u143996 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u143996_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u143997_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. #u143997 {
  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. #u143997 .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. #u143997_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u143998 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u143999_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u143999 {
  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. #u143999 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u143999_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u144000_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. #u144000 {
  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. #u144000 .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. #u144000_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u144001_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. #u144001 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u144001 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u144001_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u144002 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u144003_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u144003 {
  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. #u144003 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u144003_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u144004_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. #u144004 {
  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. #u144004 .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. #u144004_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u144005 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u144006_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u144006 {
  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. #u144006 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u144006_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u144007_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. #u144007 {
  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. #u144007 .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. #u144007_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u144008_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, 0.996078431372549);
  788. border:none;
  789. border-top:0px;
  790. border-radius:35px;
  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. #u144008 {
  801. border-width:0px;
  802. position:absolute;
  803. left:29px;
  804. top:106px;
  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. #u144008 .text {
  813. position:absolute;
  814. align-self:center;
  815. padding:2px 2px 2px 2px;
  816. box-sizing:border-box;
  817. width:100%;
  818. }
  819. #u144008_text {
  820. border-width:0px;
  821. word-wrap:break-word;
  822. text-transform:none;
  823. }
  824. #u144009_div {
  825. border-width:0px;
  826. position:absolute;
  827. left:0px;
  828. top:0px;
  829. width:375px;
  830. height:40px;
  831. background:inherit;
  832. background-color:rgba(255, 255, 255, 1);
  833. box-sizing:border-box;
  834. border-width:1px;
  835. border-style:solid;
  836. border-color:rgba(215, 215, 215, 1);
  837. border-left:0px;
  838. border-top:0px;
  839. border-right:0px;
  840. border-radius:0px;
  841. border-bottom-right-radius:0px;
  842. border-bottom-left-radius:0px;
  843. -moz-box-shadow:none;
  844. -webkit-box-shadow:none;
  845. box-shadow:none;
  846. }
  847. #u144009 {
  848. border-width:0px;
  849. position:absolute;
  850. left:29px;
  851. top:67px;
  852. width:375px;
  853. height:40px;
  854. display:flex;
  855. }
  856. #u144009 .text {
  857. position:absolute;
  858. align-self:center;
  859. padding:2px 2px 2px 2px;
  860. box-sizing:border-box;
  861. width:100%;
  862. }
  863. #u144009_text {
  864. border-width:0px;
  865. word-wrap:break-word;
  866. text-transform:none;
  867. visibility:hidden;
  868. }
  869. #u144010_img {
  870. border-width:0px;
  871. position:absolute;
  872. left:0px;
  873. top:0px;
  874. width:375px;
  875. height:44px;
  876. }
  877. #u144010 {
  878. border-width:0px;
  879. position:absolute;
  880. left:29px;
  881. top:24px;
  882. width:375px;
  883. height:44px;
  884. display:flex;
  885. }
  886. #u144010 .text {
  887. position:absolute;
  888. align-self:center;
  889. padding:2px 2px 2px 2px;
  890. box-sizing:border-box;
  891. width:100%;
  892. }
  893. #u144010_text {
  894. border-width:0px;
  895. word-wrap:break-word;
  896. text-transform:none;
  897. visibility:hidden;
  898. }
  899. #u144011 {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:0px;
  905. height:0px;
  906. }
  907. #u144012_div {
  908. border-width:0px;
  909. position:absolute;
  910. left:0px;
  911. top:0px;
  912. width:88px;
  913. height:32px;
  914. background:inherit;
  915. background-color:rgba(255, 255, 255, 1);
  916. box-sizing:border-box;
  917. border-width:1px;
  918. border-style:solid;
  919. border-color:rgba(242, 242, 242, 1);
  920. border-radius:33px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. }
  925. #u144012 {
  926. border-width:0px;
  927. position:absolute;
  928. left:309px;
  929. top:71px;
  930. width:88px;
  931. height:32px;
  932. display:flex;
  933. }
  934. #u144012 .text {
  935. position:absolute;
  936. align-self:center;
  937. padding:2px 2px 2px 2px;
  938. box-sizing:border-box;
  939. width:100%;
  940. }
  941. #u144012_text {
  942. border-width:0px;
  943. word-wrap:break-word;
  944. text-transform:none;
  945. visibility:hidden;
  946. }
  947. #u144013 {
  948. border-width:0px;
  949. position:absolute;
  950. left:0px;
  951. top:0px;
  952. width:0px;
  953. height:0px;
  954. }
  955. #u144014_img {
  956. border-width:0px;
  957. position:absolute;
  958. left:0px;
  959. top:0px;
  960. width:18px;
  961. height:18px;
  962. }
  963. #u144014 {
  964. border-width:0px;
  965. position:absolute;
  966. left:372px;
  967. top:78px;
  968. width:18px;
  969. height:18px;
  970. display:flex;
  971. }
  972. #u144014 .text {
  973. position:absolute;
  974. align-self:center;
  975. padding:2px 2px 2px 2px;
  976. box-sizing:border-box;
  977. width:100%;
  978. }
  979. #u144014_text {
  980. border-width:0px;
  981. word-wrap:break-word;
  982. text-transform:none;
  983. visibility:hidden;
  984. }
  985. #u144015_img {
  986. border-width:0px;
  987. position:absolute;
  988. left:0px;
  989. top:0px;
  990. width:6px;
  991. height:6px;
  992. }
  993. #u144015 {
  994. border-width:0px;
  995. position:absolute;
  996. left:378px;
  997. top:84px;
  998. width:6px;
  999. height:6px;
  1000. display:flex;
  1001. }
  1002. #u144015 .text {
  1003. position:absolute;
  1004. align-self:center;
  1005. padding:2px 2px 2px 2px;
  1006. box-sizing:border-box;
  1007. width:100%;
  1008. }
  1009. #u144015_text {
  1010. border-width:0px;
  1011. word-wrap:break-word;
  1012. text-transform:none;
  1013. visibility:hidden;
  1014. }
  1015. #u144016 {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:0px;
  1021. height:0px;
  1022. }
  1023. #u144017_img {
  1024. border-width:0px;
  1025. position:absolute;
  1026. left:0px;
  1027. top:0px;
  1028. width:5px;
  1029. height:5px;
  1030. }
  1031. #u144017 {
  1032. border-width:0px;
  1033. position:absolute;
  1034. left:323px;
  1035. top:85px;
  1036. width:5px;
  1037. height:5px;
  1038. display:flex;
  1039. }
  1040. #u144017 .text {
  1041. position:absolute;
  1042. align-self:center;
  1043. padding:2px 2px 2px 2px;
  1044. box-sizing:border-box;
  1045. width:100%;
  1046. }
  1047. #u144017_text {
  1048. border-width:0px;
  1049. word-wrap:break-word;
  1050. text-transform:none;
  1051. visibility:hidden;
  1052. }
  1053. #u144018_img {
  1054. border-width:0px;
  1055. position:absolute;
  1056. left:0px;
  1057. top:0px;
  1058. width:5px;
  1059. height:5px;
  1060. }
  1061. #u144018 {
  1062. border-width:0px;
  1063. position:absolute;
  1064. left:339px;
  1065. top:85px;
  1066. width:5px;
  1067. height:5px;
  1068. display:flex;
  1069. }
  1070. #u144018 .text {
  1071. position:absolute;
  1072. align-self:center;
  1073. padding:2px 2px 2px 2px;
  1074. box-sizing:border-box;
  1075. width:100%;
  1076. }
  1077. #u144018_text {
  1078. border-width:0px;
  1079. word-wrap:break-word;
  1080. text-transform:none;
  1081. visibility:hidden;
  1082. }
  1083. #u144019_img {
  1084. border-width:0px;
  1085. position:absolute;
  1086. left:0px;
  1087. top:0px;
  1088. width:7px;
  1089. height:7px;
  1090. }
  1091. #u144019 {
  1092. border-width:0px;
  1093. position:absolute;
  1094. left:330px;
  1095. top:84px;
  1096. width:7px;
  1097. height:7px;
  1098. display:flex;
  1099. }
  1100. #u144019 .text {
  1101. position:absolute;
  1102. align-self:center;
  1103. padding:2px 2px 2px 2px;
  1104. box-sizing:border-box;
  1105. width:100%;
  1106. }
  1107. #u144019_text {
  1108. border-width:0px;
  1109. word-wrap:break-word;
  1110. text-transform:none;
  1111. visibility:hidden;
  1112. }
  1113. #u144020_img {
  1114. border-width:0px;
  1115. position:absolute;
  1116. left:0px;
  1117. top:0px;
  1118. width:19px;
  1119. height:2px;
  1120. }
  1121. #u144020 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:347px;
  1125. top:87px;
  1126. width:18px;
  1127. height:1px;
  1128. display:flex;
  1129. -webkit-transform:rotate(90deg);
  1130. -moz-transform:rotate(90deg);
  1131. -ms-transform:rotate(90deg);
  1132. transform:rotate(90deg);
  1133. }
  1134. #u144020 .text {
  1135. position:absolute;
  1136. align-self:center;
  1137. padding:2px 2px 2px 2px;
  1138. box-sizing:border-box;
  1139. width:100%;
  1140. }
  1141. #u144020_text {
  1142. border-width:0px;
  1143. word-wrap:break-word;
  1144. text-transform:none;
  1145. visibility:hidden;
  1146. }
  1147. #u144021_div {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:65px;
  1153. height:22px;
  1154. background:inherit;
  1155. background-color:rgba(255, 255, 255, 0);
  1156. border:none;
  1157. border-radius:0px;
  1158. -moz-box-shadow:none;
  1159. -webkit-box-shadow:none;
  1160. box-shadow:none;
  1161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1162. font-weight:400;
  1163. font-style:normal;
  1164. font-size:16px;
  1165. color:#000000;
  1166. }
  1167. #u144021 {
  1168. border-width:0px;
  1169. position:absolute;
  1170. left:174px;
  1171. top:78px;
  1172. width:65px;
  1173. height:22px;
  1174. display:flex;
  1175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1176. font-weight:400;
  1177. font-style:normal;
  1178. font-size:16px;
  1179. color:#000000;
  1180. }
  1181. #u144021 .text {
  1182. position:absolute;
  1183. align-self:flex-start;
  1184. padding:0px 0px 0px 0px;
  1185. box-sizing:border-box;
  1186. width:100%;
  1187. }
  1188. #u144021_text {
  1189. border-width:0px;
  1190. white-space:nowrap;
  1191. text-transform:none;
  1192. }
  1193. #u144022_div {
  1194. border-width:0px;
  1195. position:absolute;
  1196. left:0px;
  1197. top:0px;
  1198. width:12px;
  1199. height:12px;
  1200. background:inherit;
  1201. background-color:rgba(255, 255, 255, 0);
  1202. box-sizing:border-box;
  1203. border-width:2px;
  1204. border-style:solid;
  1205. border-color:rgba(51, 51, 51, 1);
  1206. border-right:0px;
  1207. border-bottom:0px;
  1208. border-radius:0px;
  1209. border-top-right-radius:0px;
  1210. border-bottom-left-radius:0px;
  1211. -moz-box-shadow:none;
  1212. -webkit-box-shadow:none;
  1213. box-shadow:none;
  1214. }
  1215. #u144022 {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:46px;
  1219. top:81px;
  1220. width:12px;
  1221. height:12px;
  1222. display:flex;
  1223. -webkit-transform:rotate(315deg);
  1224. -moz-transform:rotate(315deg);
  1225. -ms-transform:rotate(315deg);
  1226. transform:rotate(315deg);
  1227. }
  1228. #u144022 .text {
  1229. position:absolute;
  1230. align-self:center;
  1231. padding:2px 2px 2px 2px;
  1232. box-sizing:border-box;
  1233. width:100%;
  1234. }
  1235. #u144022_text {
  1236. border-width:0px;
  1237. word-wrap:break-word;
  1238. text-transform:none;
  1239. visibility:hidden;
  1240. }
  1241. #u144023_img {
  1242. border-width:0px;
  1243. position:absolute;
  1244. left:0px;
  1245. top:0px;
  1246. width:23px;
  1247. height:23px;
  1248. }
  1249. #u144023 {
  1250. border-width:0px;
  1251. position:absolute;
  1252. left:73px;
  1253. top:76px;
  1254. width:23px;
  1255. height:23px;
  1256. display:flex;
  1257. }
  1258. #u144023 .text {
  1259. position:absolute;
  1260. align-self:center;
  1261. padding:2px 2px 2px 2px;
  1262. box-sizing:border-box;
  1263. width:100%;
  1264. }
  1265. #u144023_text {
  1266. border-width:0px;
  1267. word-wrap:break-word;
  1268. text-transform:none;
  1269. visibility:hidden;
  1270. }
  1271. #u144024 {
  1272. border-width:0px;
  1273. position:absolute;
  1274. left:0px;
  1275. top:0px;
  1276. width:0px;
  1277. height:0px;
  1278. }
  1279. #u144025_div {
  1280. border-width:0px;
  1281. position:absolute;
  1282. left:0px;
  1283. top:0px;
  1284. width:375px;
  1285. height:50px;
  1286. background:inherit;
  1287. background-color:rgba(255, 255, 255, 1);
  1288. box-sizing:border-box;
  1289. border-width:1px;
  1290. border-style:solid;
  1291. border-color:rgba(242, 242, 242, 1);
  1292. border-radius:26px;
  1293. border-top-left-radius:0px;
  1294. border-top-right-radius:0px;
  1295. -moz-box-shadow:none;
  1296. -webkit-box-shadow:none;
  1297. box-shadow:none;
  1298. }
  1299. #u144025 {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:29px;
  1303. top:791px;
  1304. width:375px;
  1305. height:50px;
  1306. display:flex;
  1307. }
  1308. #u144025 .text {
  1309. position:absolute;
  1310. align-self:center;
  1311. padding:2px 2px 2px 2px;
  1312. box-sizing:border-box;
  1313. width:100%;
  1314. }
  1315. #u144025_text {
  1316. border-width:0px;
  1317. word-wrap:break-word;
  1318. text-transform:none;
  1319. visibility:hidden;
  1320. }
  1321. #u144026 {
  1322. border-width:0px;
  1323. position:absolute;
  1324. left:0px;
  1325. top:0px;
  1326. width:0px;
  1327. height:0px;
  1328. }
  1329. #u144027_img {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:24px;
  1335. height:24px;
  1336. }
  1337. #u144027 {
  1338. border-width:0px;
  1339. position:absolute;
  1340. left:340px;
  1341. top:795px;
  1342. width:24px;
  1343. height:24px;
  1344. display:flex;
  1345. font-size:8px;
  1346. }
  1347. #u144027 .text {
  1348. position:absolute;
  1349. align-self:center;
  1350. padding:2px 2px 2px 2px;
  1351. box-sizing:border-box;
  1352. width:100%;
  1353. }
  1354. #u144027_text {
  1355. border-width:0px;
  1356. word-wrap:break-word;
  1357. text-transform:none;
  1358. }
  1359. #u144028_div {
  1360. border-width:0px;
  1361. position:absolute;
  1362. left:0px;
  1363. top:0px;
  1364. width:25px;
  1365. height:17px;
  1366. background:inherit;
  1367. background-color:rgba(255, 255, 255, 0);
  1368. border:none;
  1369. border-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:12px;
  1377. }
  1378. #u144028 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:340px;
  1382. top:820px;
  1383. width:25px;
  1384. height:17px;
  1385. display:flex;
  1386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1387. font-weight:400;
  1388. font-style:normal;
  1389. font-size:12px;
  1390. }
  1391. #u144028 .text {
  1392. position:absolute;
  1393. align-self:flex-start;
  1394. padding:0px 0px 0px 0px;
  1395. box-sizing:border-box;
  1396. width:100%;
  1397. }
  1398. #u144028_text {
  1399. border-width:0px;
  1400. white-space:nowrap;
  1401. text-transform:none;
  1402. }
  1403. #u144029 {
  1404. border-width:0px;
  1405. position:absolute;
  1406. left:0px;
  1407. top:0px;
  1408. width:0px;
  1409. height:0px;
  1410. }
  1411. #u144030_div {
  1412. border-width:0px;
  1413. position:absolute;
  1414. left:0px;
  1415. top:0px;
  1416. width:25px;
  1417. height:17px;
  1418. background:inherit;
  1419. background-color:rgba(255, 255, 255, 0);
  1420. border:none;
  1421. border-radius:0px;
  1422. -moz-box-shadow:none;
  1423. -webkit-box-shadow:none;
  1424. box-shadow:none;
  1425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1426. font-weight:400;
  1427. font-style:normal;
  1428. font-size:12px;
  1429. }
  1430. #u144030 {
  1431. border-width:0px;
  1432. position:absolute;
  1433. left:68px;
  1434. top:820px;
  1435. width:25px;
  1436. height:17px;
  1437. display:flex;
  1438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1439. font-weight:400;
  1440. font-style:normal;
  1441. font-size:12px;
  1442. }
  1443. #u144030 .text {
  1444. position:absolute;
  1445. align-self:flex-start;
  1446. padding:0px 0px 0px 0px;
  1447. box-sizing:border-box;
  1448. width:100%;
  1449. }
  1450. #u144030_text {
  1451. border-width:0px;
  1452. white-space:nowrap;
  1453. text-transform:none;
  1454. }
  1455. #u144031_img {
  1456. border-width:0px;
  1457. position:absolute;
  1458. left:0px;
  1459. top:0px;
  1460. width:24px;
  1461. height:24px;
  1462. }
  1463. #u144031 {
  1464. border-width:0px;
  1465. position:absolute;
  1466. left:69px;
  1467. top:795px;
  1468. width:24px;
  1469. height:24px;
  1470. display:flex;
  1471. font-size:8px;
  1472. color:#FFFFFF;
  1473. }
  1474. #u144031 .text {
  1475. position:absolute;
  1476. align-self:center;
  1477. padding:2px 2px 2px 2px;
  1478. box-sizing:border-box;
  1479. width:100%;
  1480. }
  1481. #u144031_text {
  1482. border-width:0px;
  1483. word-wrap:break-word;
  1484. text-transform:none;
  1485. }
  1486. #u144032 {
  1487. border-width:0px;
  1488. position:absolute;
  1489. left:0px;
  1490. top:0px;
  1491. width:0px;
  1492. height:0px;
  1493. }
  1494. #u144033_img {
  1495. border-width:0px;
  1496. position:absolute;
  1497. left:0px;
  1498. top:0px;
  1499. width:24px;
  1500. height:24px;
  1501. }
  1502. #u144033 {
  1503. border-width:0px;
  1504. position:absolute;
  1505. left:249px;
  1506. top:795px;
  1507. width:24px;
  1508. height:24px;
  1509. display:flex;
  1510. font-size:8px;
  1511. }
  1512. #u144033 .text {
  1513. position:absolute;
  1514. align-self:center;
  1515. padding:2px 2px 2px 2px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u144033_text {
  1520. border-width:0px;
  1521. word-wrap:break-word;
  1522. text-transform:none;
  1523. }
  1524. #u144034_div {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:25px;
  1530. height:17px;
  1531. background:inherit;
  1532. background-color:rgba(255, 255, 255, 0);
  1533. border:none;
  1534. border-radius:0px;
  1535. -moz-box-shadow:none;
  1536. -webkit-box-shadow:none;
  1537. box-shadow:none;
  1538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1539. font-weight:400;
  1540. font-style:normal;
  1541. font-size:12px;
  1542. }
  1543. #u144034 {
  1544. border-width:0px;
  1545. position:absolute;
  1546. left:249px;
  1547. top:820px;
  1548. width:25px;
  1549. height:17px;
  1550. display:flex;
  1551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1552. font-weight:400;
  1553. font-style:normal;
  1554. font-size:12px;
  1555. }
  1556. #u144034 .text {
  1557. position:absolute;
  1558. align-self:flex-start;
  1559. padding:0px 0px 0px 0px;
  1560. box-sizing:border-box;
  1561. width:100%;
  1562. }
  1563. #u144034_text {
  1564. border-width:0px;
  1565. white-space:nowrap;
  1566. text-transform:none;
  1567. }
  1568. #u144035 {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:0px;
  1572. top:0px;
  1573. width:0px;
  1574. height:0px;
  1575. }
  1576. #u144036_img {
  1577. border-width:0px;
  1578. position:absolute;
  1579. left:0px;
  1580. top:0px;
  1581. width:24px;
  1582. height:24px;
  1583. }
  1584. #u144036 {
  1585. border-width:0px;
  1586. position:absolute;
  1587. left:159px;
  1588. top:795px;
  1589. width:24px;
  1590. height:24px;
  1591. display:flex;
  1592. font-size:8px;
  1593. }
  1594. #u144036 .text {
  1595. position:absolute;
  1596. align-self:center;
  1597. padding:2px 2px 2px 2px;
  1598. box-sizing:border-box;
  1599. width:100%;
  1600. }
  1601. #u144036_text {
  1602. border-width:0px;
  1603. word-wrap:break-word;
  1604. text-transform:none;
  1605. }
  1606. #u144037_div {
  1607. border-width:0px;
  1608. position:absolute;
  1609. left:0px;
  1610. top:0px;
  1611. width:25px;
  1612. height:17px;
  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. font-size:12px;
  1624. }
  1625. #u144037 {
  1626. border-width:0px;
  1627. position:absolute;
  1628. left:159px;
  1629. top:820px;
  1630. width:25px;
  1631. height:17px;
  1632. display:flex;
  1633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1634. font-weight:400;
  1635. font-style:normal;
  1636. font-size:12px;
  1637. }
  1638. #u144037 .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. #u144037_text {
  1646. border-width:0px;
  1647. white-space:nowrap;
  1648. text-transform:none;
  1649. }
  1650. #u144038 {
  1651. border-width:0px;
  1652. position:absolute;
  1653. left:0px;
  1654. top:0px;
  1655. width:0px;
  1656. height:0px;
  1657. }
  1658. #u144039_div {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:0px;
  1662. top:0px;
  1663. width:129px;
  1664. height:30px;
  1665. background:inherit;
  1666. background-color:rgba(127, 127, 127, 1);
  1667. border:none;
  1668. border-radius:4px;
  1669. -moz-box-shadow:none;
  1670. -webkit-box-shadow:none;
  1671. box-shadow:none;
  1672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1673. font-weight:400;
  1674. font-style:normal;
  1675. color:#FFFFFF;
  1676. text-align:right;
  1677. }
  1678. #u144039 {
  1679. border-width:0px;
  1680. position:absolute;
  1681. left:191px;
  1682. top:192px;
  1683. width:129px;
  1684. height:30px;
  1685. display:flex;
  1686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1687. font-weight:400;
  1688. font-style:normal;
  1689. color:#FFFFFF;
  1690. text-align:right;
  1691. }
  1692. #u144039 .text {
  1693. position:absolute;
  1694. align-self:center;
  1695. padding:0px 10px 0px 0px;
  1696. box-sizing:border-box;
  1697. width:100%;
  1698. }
  1699. #u144039_text {
  1700. border-width:0px;
  1701. word-wrap:break-word;
  1702. text-transform:none;
  1703. }
  1704. #u144040_div {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:0px;
  1708. top:0px;
  1709. width:44px;
  1710. height:30px;
  1711. background:inherit;
  1712. background-color:rgba(0, 191, 191, 1);
  1713. border:none;
  1714. border-right:0px;
  1715. border-radius:4px;
  1716. border-top-right-radius:0px;
  1717. border-bottom-right-radius:0px;
  1718. -moz-box-shadow:none;
  1719. -webkit-box-shadow:none;
  1720. box-shadow:none;
  1721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1722. font-weight:400;
  1723. font-style:normal;
  1724. color:#FFFFFF;
  1725. }
  1726. #u144040 {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:191px;
  1730. top:192px;
  1731. width:44px;
  1732. height:30px;
  1733. display:flex;
  1734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1735. font-weight:400;
  1736. font-style:normal;
  1737. color:#FFFFFF;
  1738. }
  1739. #u144040 .text {
  1740. position:absolute;
  1741. align-self:center;
  1742. padding:0px 0px 0px 10px;
  1743. box-sizing:border-box;
  1744. width:100%;
  1745. }
  1746. #u144040_text {
  1747. border-width:0px;
  1748. word-wrap:break-word;
  1749. text-transform:none;
  1750. }
  1751. #u144041 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:0px;
  1757. height:0px;
  1758. }
  1759. #u144042_div {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:129px;
  1765. height:30px;
  1766. background:inherit;
  1767. background-color:rgba(127, 127, 127, 1);
  1768. border:none;
  1769. border-radius:4px;
  1770. -moz-box-shadow:none;
  1771. -webkit-box-shadow:none;
  1772. box-shadow:none;
  1773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1774. font-weight:400;
  1775. font-style:normal;
  1776. color:#FFFFFF;
  1777. text-align:right;
  1778. }
  1779. #u144042 {
  1780. border-width:0px;
  1781. position:absolute;
  1782. left:123px;
  1783. top:651px;
  1784. width:129px;
  1785. height:30px;
  1786. display:flex;
  1787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1788. font-weight:400;
  1789. font-style:normal;
  1790. color:#FFFFFF;
  1791. text-align:right;
  1792. }
  1793. #u144042 .text {
  1794. position:absolute;
  1795. align-self:center;
  1796. padding:0px 10px 0px 0px;
  1797. box-sizing:border-box;
  1798. width:100%;
  1799. }
  1800. #u144042_text {
  1801. border-width:0px;
  1802. word-wrap:break-word;
  1803. text-transform:none;
  1804. }
  1805. #u144043_div {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:0px;
  1809. top:0px;
  1810. width:44px;
  1811. height:30px;
  1812. background:inherit;
  1813. background-color:rgba(24, 144, 255, 1);
  1814. border:none;
  1815. border-right:0px;
  1816. border-radius:4px;
  1817. border-top-right-radius:0px;
  1818. border-bottom-right-radius:0px;
  1819. -moz-box-shadow:none;
  1820. -webkit-box-shadow:none;
  1821. box-shadow:none;
  1822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1823. font-weight:400;
  1824. font-style:normal;
  1825. color:#FFFFFF;
  1826. }
  1827. #u144043 {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:123px;
  1831. top:651px;
  1832. width:44px;
  1833. height:30px;
  1834. display:flex;
  1835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1836. font-weight:400;
  1837. font-style:normal;
  1838. color:#FFFFFF;
  1839. }
  1840. #u144043 .text {
  1841. position:absolute;
  1842. align-self:center;
  1843. padding:0px 0px 0px 10px;
  1844. box-sizing:border-box;
  1845. width:100%;
  1846. }
  1847. #u144043_text {
  1848. border-width:0px;
  1849. word-wrap:break-word;
  1850. text-transform:none;
  1851. }
  1852. #u144044 {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:0px;
  1856. top:0px;
  1857. width:0px;
  1858. height:0px;
  1859. }
  1860. #u144045_div {
  1861. border-width:0px;
  1862. position:absolute;
  1863. left:0px;
  1864. top:0px;
  1865. width:129px;
  1866. height:30px;
  1867. background:inherit;
  1868. background-color:rgba(127, 127, 127, 1);
  1869. border:none;
  1870. border-radius:4px;
  1871. -moz-box-shadow:none;
  1872. -webkit-box-shadow:none;
  1873. box-shadow:none;
  1874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1875. font-weight:400;
  1876. font-style:normal;
  1877. color:#FFFFFF;
  1878. text-align:right;
  1879. }
  1880. #u144045 {
  1881. border-width:0px;
  1882. position:absolute;
  1883. left:215px;
  1884. top:554px;
  1885. width:129px;
  1886. height:30px;
  1887. display:flex;
  1888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1889. font-weight:400;
  1890. font-style:normal;
  1891. color:#FFFFFF;
  1892. text-align:right;
  1893. }
  1894. #u144045 .text {
  1895. position:absolute;
  1896. align-self:center;
  1897. padding:0px 10px 0px 0px;
  1898. box-sizing:border-box;
  1899. width:100%;
  1900. }
  1901. #u144045_text {
  1902. border-width:0px;
  1903. word-wrap:break-word;
  1904. text-transform:none;
  1905. }
  1906. #u144046_div {
  1907. border-width:0px;
  1908. position:absolute;
  1909. left:0px;
  1910. top:0px;
  1911. width:44px;
  1912. height:30px;
  1913. background:inherit;
  1914. background-color:rgba(217, 0, 27, 1);
  1915. border:none;
  1916. border-right:0px;
  1917. border-radius:4px;
  1918. border-top-right-radius:0px;
  1919. border-bottom-right-radius:0px;
  1920. -moz-box-shadow:none;
  1921. -webkit-box-shadow:none;
  1922. box-shadow:none;
  1923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1924. font-weight:400;
  1925. font-style:normal;
  1926. color:#FFFFFF;
  1927. }
  1928. #u144046 {
  1929. border-width:0px;
  1930. position:absolute;
  1931. left:215px;
  1932. top:554px;
  1933. width:44px;
  1934. height:30px;
  1935. display:flex;
  1936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1937. font-weight:400;
  1938. font-style:normal;
  1939. color:#FFFFFF;
  1940. }
  1941. #u144046 .text {
  1942. position:absolute;
  1943. align-self:center;
  1944. padding:0px 0px 0px 10px;
  1945. box-sizing:border-box;
  1946. width:100%;
  1947. }
  1948. #u144046_text {
  1949. border-width:0px;
  1950. word-wrap:break-word;
  1951. text-transform:none;
  1952. }
  1953. #u144047 {
  1954. border-width:0px;
  1955. position:absolute;
  1956. left:0px;
  1957. top:0px;
  1958. width:0px;
  1959. height:0px;
  1960. }
  1961. #u144048_div {
  1962. border-width:0px;
  1963. position:absolute;
  1964. left:0px;
  1965. top:0px;
  1966. width:129px;
  1967. height:30px;
  1968. background:inherit;
  1969. background-color:rgba(127, 127, 127, 1);
  1970. border:none;
  1971. border-radius:4px;
  1972. -moz-box-shadow:none;
  1973. -webkit-box-shadow:none;
  1974. box-shadow:none;
  1975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1976. font-weight:400;
  1977. font-style:normal;
  1978. color:#FFFFFF;
  1979. text-align:right;
  1980. }
  1981. #u144048 {
  1982. border-width:0px;
  1983. position:absolute;
  1984. left:96px;
  1985. top:291px;
  1986. width:129px;
  1987. height:30px;
  1988. display:flex;
  1989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1990. font-weight:400;
  1991. font-style:normal;
  1992. color:#FFFFFF;
  1993. text-align:right;
  1994. }
  1995. #u144048 .text {
  1996. position:absolute;
  1997. align-self:center;
  1998. padding:0px 10px 0px 0px;
  1999. box-sizing:border-box;
  2000. width:100%;
  2001. }
  2002. #u144048_text {
  2003. border-width:0px;
  2004. word-wrap:break-word;
  2005. text-transform:none;
  2006. }
  2007. #u144049_div {
  2008. border-width:0px;
  2009. position:absolute;
  2010. left:0px;
  2011. top:0px;
  2012. width:44px;
  2013. height:30px;
  2014. background:inherit;
  2015. background-color:rgba(245, 154, 35, 1);
  2016. border:none;
  2017. border-right:0px;
  2018. border-radius:4px;
  2019. border-top-right-radius:0px;
  2020. border-bottom-right-radius:0px;
  2021. -moz-box-shadow:none;
  2022. -webkit-box-shadow:none;
  2023. box-shadow:none;
  2024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2025. font-weight:400;
  2026. font-style:normal;
  2027. color:#FFFFFF;
  2028. }
  2029. #u144049 {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:96px;
  2033. top:291px;
  2034. width:44px;
  2035. height:30px;
  2036. display:flex;
  2037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2038. font-weight:400;
  2039. font-style:normal;
  2040. color:#FFFFFF;
  2041. }
  2042. #u144049 .text {
  2043. position:absolute;
  2044. align-self:center;
  2045. padding:0px 0px 0px 10px;
  2046. box-sizing:border-box;
  2047. width:100%;
  2048. }
  2049. #u144049_text {
  2050. border-width:0px;
  2051. word-wrap:break-word;
  2052. text-transform:none;
  2053. }
  2054. #u144050 {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:0px;
  2058. top:0px;
  2059. width:0px;
  2060. height:0px;
  2061. }
  2062. #u144051_div {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:0px;
  2066. top:0px;
  2067. width:129px;
  2068. height:30px;
  2069. background:inherit;
  2070. background-color:rgba(127, 127, 127, 1);
  2071. border:none;
  2072. border-radius:4px;
  2073. -moz-box-shadow:none;
  2074. -webkit-box-shadow:none;
  2075. box-shadow:none;
  2076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2077. font-weight:400;
  2078. font-style:normal;
  2079. color:#FFFFFF;
  2080. text-align:right;
  2081. }
  2082. #u144051 {
  2083. border-width:0px;
  2084. position:absolute;
  2085. left:257px;
  2086. top:342px;
  2087. width:129px;
  2088. height:30px;
  2089. display:flex;
  2090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2091. font-weight:400;
  2092. font-style:normal;
  2093. color:#FFFFFF;
  2094. text-align:right;
  2095. }
  2096. #u144051 .text {
  2097. position:absolute;
  2098. align-self:center;
  2099. padding:0px 10px 0px 0px;
  2100. box-sizing:border-box;
  2101. width:100%;
  2102. }
  2103. #u144051_text {
  2104. border-width:0px;
  2105. word-wrap:break-word;
  2106. text-transform:none;
  2107. }
  2108. #u144052_div {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:0px;
  2112. top:0px;
  2113. width:44px;
  2114. height:30px;
  2115. background:inherit;
  2116. background-color:rgba(51, 51, 51, 1);
  2117. border:none;
  2118. border-right:0px;
  2119. border-radius:4px;
  2120. border-top-right-radius:0px;
  2121. border-bottom-right-radius:0px;
  2122. -moz-box-shadow:none;
  2123. -webkit-box-shadow:none;
  2124. box-shadow:none;
  2125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2126. font-weight:400;
  2127. font-style:normal;
  2128. color:#FFFFFF;
  2129. }
  2130. #u144052 {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:257px;
  2134. top:342px;
  2135. width:44px;
  2136. height:30px;
  2137. display:flex;
  2138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2139. font-weight:400;
  2140. font-style:normal;
  2141. color:#FFFFFF;
  2142. }
  2143. #u144052 .text {
  2144. position:absolute;
  2145. align-self:center;
  2146. padding:0px 0px 0px 10px;
  2147. box-sizing:border-box;
  2148. width:100%;
  2149. }
  2150. #u144052_text {
  2151. border-width:0px;
  2152. word-wrap:break-word;
  2153. text-transform:none;
  2154. }
  2155. #u144053 {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:0px;
  2159. top:0px;
  2160. width:0px;
  2161. height:0px;
  2162. }
  2163. #u144054_div {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:0px;
  2167. top:0px;
  2168. width:310px;
  2169. height:465px;
  2170. background:inherit;
  2171. background-color:rgba(51, 51, 51, 0.901960784313726);
  2172. border:none;
  2173. border-radius:4px;
  2174. -moz-box-shadow:none;
  2175. -webkit-box-shadow:none;
  2176. box-shadow:none;
  2177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2178. font-weight:400;
  2179. font-style:normal;
  2180. color:#FFFFFF;
  2181. text-align:right;
  2182. }
  2183. #u144054 {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:461px;
  2187. top:157px;
  2188. width:310px;
  2189. height:465px;
  2190. display:flex;
  2191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2192. font-weight:400;
  2193. font-style:normal;
  2194. color:#FFFFFF;
  2195. text-align:right;
  2196. }
  2197. #u144054 .text {
  2198. position:absolute;
  2199. align-self:center;
  2200. padding:0px 0px 0px 0px;
  2201. box-sizing:border-box;
  2202. width:100%;
  2203. }
  2204. #u144054_text {
  2205. border-width:0px;
  2206. word-wrap:break-word;
  2207. text-transform:none;
  2208. visibility:hidden;
  2209. }
  2210. #u144055_div {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:0px;
  2214. top:0px;
  2215. width:102px;
  2216. height:25px;
  2217. background:inherit;
  2218. background-color:rgba(255, 255, 255, 0);
  2219. border:none;
  2220. border-radius:0px;
  2221. -moz-box-shadow:none;
  2222. -webkit-box-shadow:none;
  2223. box-shadow:none;
  2224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2225. font-weight:400;
  2226. font-style:normal;
  2227. font-size:18px;
  2228. color:#FFFFFF;
  2229. }
  2230. #u144055 {
  2231. border-width:0px;
  2232. position:absolute;
  2233. left:488px;
  2234. top:367px;
  2235. width:102px;
  2236. height:25px;
  2237. display:flex;
  2238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2239. font-weight:400;
  2240. font-style:normal;
  2241. font-size:18px;
  2242. color:#FFFFFF;
  2243. }
  2244. #u144055 .text {
  2245. position:absolute;
  2246. align-self:flex-start;
  2247. padding:0px 0px 0px 0px;
  2248. box-sizing:border-box;
  2249. width:100%;
  2250. }
  2251. #u144055_text {
  2252. border-width:0px;
  2253. white-space:nowrap;
  2254. text-transform:none;
  2255. }
  2256. #u144056_div {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:0px;
  2260. top:0px;
  2261. width:217px;
  2262. height:125px;
  2263. background:inherit;
  2264. background-color:rgba(255, 255, 255, 0);
  2265. border:none;
  2266. border-radius:0px;
  2267. -moz-box-shadow:none;
  2268. -webkit-box-shadow:none;
  2269. box-shadow:none;
  2270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2271. font-weight:400;
  2272. font-style:normal;
  2273. color:#FFFFFF;
  2274. line-height:25px;
  2275. }
  2276. #u144056 {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:488px;
  2280. top:402px;
  2281. width:217px;
  2282. height:125px;
  2283. display:flex;
  2284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2285. font-weight:400;
  2286. font-style:normal;
  2287. color:#FFFFFF;
  2288. line-height:25px;
  2289. }
  2290. #u144056 .text {
  2291. position:absolute;
  2292. align-self:flex-start;
  2293. padding:0px 0px 0px 0px;
  2294. box-sizing:border-box;
  2295. width:100%;
  2296. }
  2297. #u144056_text {
  2298. border-width:0px;
  2299. white-space:nowrap;
  2300. text-transform:none;
  2301. }
  2302. #u144057_div {
  2303. border-width:0px;
  2304. position:absolute;
  2305. left:0px;
  2306. top:0px;
  2307. width:71px;
  2308. height:20px;
  2309. background:inherit;
  2310. background-color:rgba(255, 255, 255, 0);
  2311. border:none;
  2312. border-radius:0px;
  2313. -moz-box-shadow:none;
  2314. -webkit-box-shadow:none;
  2315. box-shadow:none;
  2316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2317. font-weight:400;
  2318. font-style:normal;
  2319. color:#FFFFFF;
  2320. }
  2321. #u144057 {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:677px;
  2325. top:577px;
  2326. width:71px;
  2327. height:20px;
  2328. display:flex;
  2329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2330. font-weight:400;
  2331. font-style:normal;
  2332. color:#FFFFFF;
  2333. }
  2334. #u144057 .text {
  2335. position:absolute;
  2336. align-self:flex-start;
  2337. padding:0px 0px 0px 0px;
  2338. box-sizing:border-box;
  2339. width:100%;
  2340. }
  2341. #u144057_text {
  2342. border-width:0px;
  2343. white-space:nowrap;
  2344. text-transform:none;
  2345. }
  2346. #u144058_div {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:0px;
  2350. top:0px;
  2351. width:63px;
  2352. height:17px;
  2353. background:inherit;
  2354. background-color:rgba(255, 255, 255, 0);
  2355. border:none;
  2356. border-radius:0px;
  2357. -moz-box-shadow:none;
  2358. -webkit-box-shadow:none;
  2359. box-shadow:none;
  2360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2361. font-weight:400;
  2362. font-style:normal;
  2363. font-size:12px;
  2364. color:#FFFFFF;
  2365. }
  2366. #u144058 {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:690px;
  2370. top:372px;
  2371. width:63px;
  2372. height:17px;
  2373. display:flex;
  2374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2375. font-weight:400;
  2376. font-style:normal;
  2377. font-size:12px;
  2378. color:#FFFFFF;
  2379. }
  2380. #u144058 .text {
  2381. position:absolute;
  2382. align-self:flex-start;
  2383. padding:0px 0px 0px 0px;
  2384. box-sizing:border-box;
  2385. width:100%;
  2386. }
  2387. #u144058_text {
  2388. border-width:0px;
  2389. white-space:nowrap;
  2390. text-transform:none;
  2391. }
  2392. #u144059_img {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:0px;
  2396. top:0px;
  2397. width:256px;
  2398. height:176px;
  2399. }
  2400. #u144059 {
  2401. border-width:0px;
  2402. position:absolute;
  2403. left:488px;
  2404. top:171px;
  2405. width:256px;
  2406. height:176px;
  2407. display:flex;
  2408. }
  2409. #u144059 .text {
  2410. position:absolute;
  2411. align-self:center;
  2412. padding:2px 2px 2px 2px;
  2413. box-sizing:border-box;
  2414. width:100%;
  2415. }
  2416. #u144059_text {
  2417. border-width:0px;
  2418. word-wrap:break-word;
  2419. text-transform:none;
  2420. visibility:hidden;
  2421. }
  2422. #u144060_img {
  2423. border-width:0px;
  2424. position:absolute;
  2425. left:0px;
  2426. top:0px;
  2427. width:39px;
  2428. height:39px;
  2429. }
  2430. #u144060 {
  2431. border-width:0px;
  2432. position:absolute;
  2433. left:597px;
  2434. top:636px;
  2435. width:39px;
  2436. height:39px;
  2437. display:flex;
  2438. }
  2439. #u144060 .text {
  2440. position:absolute;
  2441. align-self:center;
  2442. padding:2px 2px 2px 2px;
  2443. box-sizing:border-box;
  2444. width:100%;
  2445. }
  2446. #u144060_text {
  2447. border-width:0px;
  2448. word-wrap:break-word;
  2449. text-transform:none;
  2450. visibility:hidden;
  2451. }
  2452. #u144061_img {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:0px;
  2456. top:0px;
  2457. width:20px;
  2458. height:30px;
  2459. }
  2460. #u144061 {
  2461. border-width:0px;
  2462. position:absolute;
  2463. left:171px;
  2464. top:216px;
  2465. width:20px;
  2466. height:30px;
  2467. display:flex;
  2468. }
  2469. #u144061 .text {
  2470. position:absolute;
  2471. align-self:center;
  2472. padding:2px 2px 2px 2px;
  2473. box-sizing:border-box;
  2474. width:100%;
  2475. }
  2476. #u144061_text {
  2477. border-width:0px;
  2478. word-wrap:break-word;
  2479. text-transform:none;
  2480. visibility:hidden;
  2481. }
  2482. #u144062_img {
  2483. border-width:0px;
  2484. position:absolute;
  2485. left:0px;
  2486. top:0px;
  2487. width:20px;
  2488. height:30px;
  2489. }
  2490. #u144062 {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:76px;
  2494. top:327px;
  2495. width:20px;
  2496. height:30px;
  2497. display:flex;
  2498. }
  2499. #u144062 .text {
  2500. position:absolute;
  2501. align-self:center;
  2502. padding:2px 2px 2px 2px;
  2503. box-sizing:border-box;
  2504. width:100%;
  2505. }
  2506. #u144062_text {
  2507. border-width:0px;
  2508. word-wrap:break-word;
  2509. text-transform:none;
  2510. visibility:hidden;
  2511. }
  2512. #u144063_img {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:0px;
  2516. top:0px;
  2517. width:20px;
  2518. height:30px;
  2519. }
  2520. #u144063 {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:237px;
  2524. top:368px;
  2525. width:20px;
  2526. height:30px;
  2527. display:flex;
  2528. }
  2529. #u144063 .text {
  2530. position:absolute;
  2531. align-self:center;
  2532. padding:2px 2px 2px 2px;
  2533. box-sizing:border-box;
  2534. width:100%;
  2535. }
  2536. #u144063_text {
  2537. border-width:0px;
  2538. word-wrap:break-word;
  2539. text-transform:none;
  2540. visibility:hidden;
  2541. }
  2542. #u144064_img {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:0px;
  2546. top:0px;
  2547. width:20px;
  2548. height:30px;
  2549. }
  2550. #u144064 {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:197px;
  2554. top:584px;
  2555. width:20px;
  2556. height:30px;
  2557. display:flex;
  2558. }
  2559. #u144064 .text {
  2560. position:absolute;
  2561. align-self:center;
  2562. padding:2px 2px 2px 2px;
  2563. box-sizing:border-box;
  2564. width:100%;
  2565. }
  2566. #u144064_text {
  2567. border-width:0px;
  2568. word-wrap:break-word;
  2569. text-transform:none;
  2570. visibility:hidden;
  2571. }
  2572. #u144065_img {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:0px;
  2576. top:0px;
  2577. width:20px;
  2578. height:30px;
  2579. }
  2580. #u144065 {
  2581. border-width:0px;
  2582. position:absolute;
  2583. left:108px;
  2584. top:681px;
  2585. width:20px;
  2586. height:30px;
  2587. display:flex;
  2588. }
  2589. #u144065 .text {
  2590. position:absolute;
  2591. align-self:center;
  2592. padding:2px 2px 2px 2px;
  2593. box-sizing:border-box;
  2594. width:100%;
  2595. }
  2596. #u144065_text {
  2597. border-width:0px;
  2598. word-wrap:break-word;
  2599. text-transform:none;
  2600. visibility:hidden;
  2601. }
  2602. #u144066 {
  2603. border-width:0px;
  2604. position:absolute;
  2605. left:0px;
  2606. top:0px;
  2607. width:0px;
  2608. height:0px;
  2609. }
  2610. #u144067_div {
  2611. border-width:0px;
  2612. position:absolute;
  2613. left:0px;
  2614. top:0px;
  2615. width:375px;
  2616. height:50px;
  2617. background:inherit;
  2618. background-color:rgba(255, 255, 255, 1);
  2619. border:none;
  2620. border-radius:0px;
  2621. -moz-box-shadow:none;
  2622. -webkit-box-shadow:none;
  2623. box-shadow:none;
  2624. }
  2625. #u144067 {
  2626. border-width:0px;
  2627. position:absolute;
  2628. left:30px;
  2629. top:106px;
  2630. width:375px;
  2631. height:50px;
  2632. display:flex;
  2633. }
  2634. #u144067 .text {
  2635. position:absolute;
  2636. align-self:center;
  2637. padding:2px 2px 2px 2px;
  2638. box-sizing:border-box;
  2639. width:100%;
  2640. }
  2641. #u144067_text {
  2642. border-width:0px;
  2643. word-wrap:break-word;
  2644. text-transform:none;
  2645. visibility:hidden;
  2646. }
  2647. #u144068 {
  2648. border-width:0px;
  2649. position:absolute;
  2650. left:0px;
  2651. top:0px;
  2652. width:0px;
  2653. height:0px;
  2654. }
  2655. #u144069 {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:0px;
  2659. top:0px;
  2660. width:0px;
  2661. height:0px;
  2662. }
  2663. #u144070_div {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:0px;
  2667. top:0px;
  2668. width:280px;
  2669. height:30px;
  2670. background:inherit;
  2671. background-color:rgba(242, 242, 242, 1);
  2672. border:none;
  2673. border-radius:20px;
  2674. -moz-box-shadow:none;
  2675. -webkit-box-shadow:none;
  2676. box-shadow:none;
  2677. }
  2678. #u144070 {
  2679. border-width:0px;
  2680. position:absolute;
  2681. left:43px;
  2682. top:116px;
  2683. width:280px;
  2684. height:30px;
  2685. display:flex;
  2686. }
  2687. #u144070 .text {
  2688. position:absolute;
  2689. align-self:center;
  2690. padding:2px 2px 2px 2px;
  2691. box-sizing:border-box;
  2692. width:100%;
  2693. }
  2694. #u144070_text {
  2695. border-width:0px;
  2696. word-wrap:break-word;
  2697. text-transform:none;
  2698. visibility:hidden;
  2699. }
  2700. #u144071_input {
  2701. position:absolute;
  2702. left:0px;
  2703. top:0px;
  2704. width:252px;
  2705. height:22px;
  2706. padding:2px 2px 2px 2px;
  2707. font-family:'ArialMT', 'Arial', sans-serif;
  2708. font-weight:400;
  2709. font-style:normal;
  2710. font-size:12px;
  2711. letter-spacing:normal;
  2712. color:#7F7F7F;
  2713. vertical-align:none;
  2714. text-align:left;
  2715. text-transform:none;
  2716. background-color:transparent;
  2717. border-color:transparent;
  2718. }
  2719. #u144071_input.disabled {
  2720. position:absolute;
  2721. left:0px;
  2722. top:0px;
  2723. width:252px;
  2724. height:22px;
  2725. padding:2px 2px 2px 2px;
  2726. font-family:'ArialMT', 'Arial', sans-serif;
  2727. font-weight:400;
  2728. font-style:normal;
  2729. font-size:12px;
  2730. letter-spacing:normal;
  2731. color:#7F7F7F;
  2732. vertical-align:none;
  2733. text-align:left;
  2734. text-transform:none;
  2735. background-color:transparent;
  2736. border-color:transparent;
  2737. }
  2738. #u144071_div {
  2739. border-width:0px;
  2740. position:absolute;
  2741. left:0px;
  2742. top:0px;
  2743. width:252px;
  2744. height:22px;
  2745. background:inherit;
  2746. background-color:rgba(255, 255, 255, 0);
  2747. border:none;
  2748. border-radius:0px;
  2749. -moz-box-shadow:none;
  2750. -webkit-box-shadow:none;
  2751. box-shadow:none;
  2752. font-size:12px;
  2753. color:#7F7F7F;
  2754. }
  2755. #u144071 {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:57px;
  2759. top:120px;
  2760. width:252px;
  2761. height:22px;
  2762. display:flex;
  2763. font-size:12px;
  2764. color:#7F7F7F;
  2765. }
  2766. #u144071 .text {
  2767. position:absolute;
  2768. align-self:flex-start;
  2769. padding:2px 2px 2px 2px;
  2770. box-sizing:border-box;
  2771. width:100%;
  2772. }
  2773. #u144071_div.disabled {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:0px;
  2777. top:0px;
  2778. width:252px;
  2779. height:22px;
  2780. background:inherit;
  2781. background-color:rgba(240, 240, 240, 1);
  2782. border:none;
  2783. border-radius:0px;
  2784. -moz-box-shadow:none;
  2785. -webkit-box-shadow:none;
  2786. box-shadow:none;
  2787. font-size:12px;
  2788. color:#7F7F7F;
  2789. }
  2790. #u144071.disabled {
  2791. }
  2792. .u144071_input_option {
  2793. font-size:12px;
  2794. }
  2795. #u144072_div {
  2796. border-width:0px;
  2797. position:absolute;
  2798. left:0px;
  2799. top:0px;
  2800. width:64px;
  2801. height:30px;
  2802. background:inherit;
  2803. background-color:rgba(255, 255, 255, 0);
  2804. border:none;
  2805. border-left:0px;
  2806. border-top:0px;
  2807. border-right:0px;
  2808. border-radius:0px;
  2809. border-bottom-right-radius:0px;
  2810. border-bottom-left-radius:0px;
  2811. -moz-box-shadow:none;
  2812. -webkit-box-shadow:none;
  2813. box-shadow:none;
  2814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2815. font-weight:400;
  2816. font-style:normal;
  2817. font-size:12px;
  2818. color:#1890FF;
  2819. line-height:30px;
  2820. }
  2821. #u144072 {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:333px;
  2825. top:116px;
  2826. width:64px;
  2827. height:30px;
  2828. display:flex;
  2829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2830. font-weight:400;
  2831. font-style:normal;
  2832. font-size:12px;
  2833. color:#1890FF;
  2834. line-height:30px;
  2835. }
  2836. #u144072 .text {
  2837. position:absolute;
  2838. align-self:flex-start;
  2839. padding:0px 0px 0px 0px;
  2840. box-sizing:border-box;
  2841. width:100%;
  2842. }
  2843. #u144072_text {
  2844. border-width:0px;
  2845. white-space:nowrap;
  2846. text-transform:none;
  2847. }