styles.css 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1359px;
  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. #u154421_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u154421 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u154421 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u154421_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u154422_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. #u154422 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u154422 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u154422_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u154423 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u154424_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. #u154424 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u154424 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u154424_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u154425 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u154426_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u154426 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u154426 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u154426_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u154427_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u154427 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u154427 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u154427_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u154428 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u154429_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u154429 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u154429 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u154429_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u154430_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u154430 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u154430 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u154430_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u154431_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u154431 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u154431 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u154431_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u154432_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u154432 {
  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. #u154432 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u154432_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u154433_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u154433 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u154433 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u154433_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u154434_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. #u154434 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u154434 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u154434_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u154435 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u154436_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u154436 {
  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. #u154436 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u154436_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u154437_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. #u154437 {
  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. #u154437 .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. #u154437_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u154438 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u154439_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u154439 {
  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. #u154439 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u154439_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u154440_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. #u154440 {
  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. #u154440 .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. #u154440_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u154441_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. #u154441 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u154441 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u154441_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u154442 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u154443_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u154443 {
  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. #u154443 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u154443_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u154444_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. #u154444 {
  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. #u154444 .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. #u154444_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u154445 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u154446_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u154446 {
  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. #u154446 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u154446_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u154447_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. #u154447 {
  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. #u154447 .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. #u154447_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u154448_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:733px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 0.996078431372549);
  788. border:none;
  789. border-top:0px;
  790. border-radius:28px;
  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. #u154448 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:107px;
  802. width:375px;
  803. height:733px;
  804. display:flex;
  805. }
  806. #u154448 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u154448_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u154449 {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:0px;
  825. height:0px;
  826. }
  827. #u154450_div {
  828. border-width:0px;
  829. position:absolute;
  830. left:0px;
  831. top:0px;
  832. width:88px;
  833. height:32px;
  834. background:inherit;
  835. background-color:rgba(255, 255, 255, 1);
  836. box-sizing:border-box;
  837. border-width:1px;
  838. border-style:solid;
  839. border-color:rgba(242, 242, 242, 1);
  840. border-radius:33px;
  841. -moz-box-shadow:none;
  842. -webkit-box-shadow:none;
  843. box-shadow:none;
  844. }
  845. #u154450 {
  846. border-width:0px;
  847. position:absolute;
  848. left:308px;
  849. top:71px;
  850. width:88px;
  851. height:32px;
  852. display:flex;
  853. }
  854. #u154450 .text {
  855. position:absolute;
  856. align-self:center;
  857. padding:2px 2px 2px 2px;
  858. box-sizing:border-box;
  859. width:100%;
  860. }
  861. #u154450_text {
  862. border-width:0px;
  863. word-wrap:break-word;
  864. text-transform:none;
  865. visibility:hidden;
  866. }
  867. #u154451 {
  868. border-width:0px;
  869. position:absolute;
  870. left:0px;
  871. top:0px;
  872. width:0px;
  873. height:0px;
  874. }
  875. #u154452_img {
  876. border-width:0px;
  877. position:absolute;
  878. left:0px;
  879. top:0px;
  880. width:18px;
  881. height:18px;
  882. }
  883. #u154452 {
  884. border-width:0px;
  885. position:absolute;
  886. left:371px;
  887. top:78px;
  888. width:18px;
  889. height:18px;
  890. display:flex;
  891. }
  892. #u154452 .text {
  893. position:absolute;
  894. align-self:center;
  895. padding:2px 2px 2px 2px;
  896. box-sizing:border-box;
  897. width:100%;
  898. }
  899. #u154452_text {
  900. border-width:0px;
  901. word-wrap:break-word;
  902. text-transform:none;
  903. visibility:hidden;
  904. }
  905. #u154453_img {
  906. border-width:0px;
  907. position:absolute;
  908. left:0px;
  909. top:0px;
  910. width:6px;
  911. height:6px;
  912. }
  913. #u154453 {
  914. border-width:0px;
  915. position:absolute;
  916. left:377px;
  917. top:84px;
  918. width:6px;
  919. height:6px;
  920. display:flex;
  921. }
  922. #u154453 .text {
  923. position:absolute;
  924. align-self:center;
  925. padding:2px 2px 2px 2px;
  926. box-sizing:border-box;
  927. width:100%;
  928. }
  929. #u154453_text {
  930. border-width:0px;
  931. word-wrap:break-word;
  932. text-transform:none;
  933. visibility:hidden;
  934. }
  935. #u154454 {
  936. border-width:0px;
  937. position:absolute;
  938. left:0px;
  939. top:0px;
  940. width:0px;
  941. height:0px;
  942. }
  943. #u154455_img {
  944. border-width:0px;
  945. position:absolute;
  946. left:0px;
  947. top:0px;
  948. width:5px;
  949. height:5px;
  950. }
  951. #u154455 {
  952. border-width:0px;
  953. position:absolute;
  954. left:322px;
  955. top:85px;
  956. width:5px;
  957. height:5px;
  958. display:flex;
  959. }
  960. #u154455 .text {
  961. position:absolute;
  962. align-self:center;
  963. padding:2px 2px 2px 2px;
  964. box-sizing:border-box;
  965. width:100%;
  966. }
  967. #u154455_text {
  968. border-width:0px;
  969. word-wrap:break-word;
  970. text-transform:none;
  971. visibility:hidden;
  972. }
  973. #u154456_img {
  974. border-width:0px;
  975. position:absolute;
  976. left:0px;
  977. top:0px;
  978. width:5px;
  979. height:5px;
  980. }
  981. #u154456 {
  982. border-width:0px;
  983. position:absolute;
  984. left:338px;
  985. top:85px;
  986. width:5px;
  987. height:5px;
  988. display:flex;
  989. }
  990. #u154456 .text {
  991. position:absolute;
  992. align-self:center;
  993. padding:2px 2px 2px 2px;
  994. box-sizing:border-box;
  995. width:100%;
  996. }
  997. #u154456_text {
  998. border-width:0px;
  999. word-wrap:break-word;
  1000. text-transform:none;
  1001. visibility:hidden;
  1002. }
  1003. #u154457_img {
  1004. border-width:0px;
  1005. position:absolute;
  1006. left:0px;
  1007. top:0px;
  1008. width:7px;
  1009. height:7px;
  1010. }
  1011. #u154457 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:329px;
  1015. top:84px;
  1016. width:7px;
  1017. height:7px;
  1018. display:flex;
  1019. }
  1020. #u154457 .text {
  1021. position:absolute;
  1022. align-self:center;
  1023. padding:2px 2px 2px 2px;
  1024. box-sizing:border-box;
  1025. width:100%;
  1026. }
  1027. #u154457_text {
  1028. border-width:0px;
  1029. word-wrap:break-word;
  1030. text-transform:none;
  1031. visibility:hidden;
  1032. }
  1033. #u154458_img {
  1034. border-width:0px;
  1035. position:absolute;
  1036. left:0px;
  1037. top:0px;
  1038. width:19px;
  1039. height:2px;
  1040. }
  1041. #u154458 {
  1042. border-width:0px;
  1043. position:absolute;
  1044. left:346px;
  1045. top:87px;
  1046. width:18px;
  1047. height:1px;
  1048. display:flex;
  1049. -webkit-transform:rotate(90deg);
  1050. -moz-transform:rotate(90deg);
  1051. -ms-transform:rotate(90deg);
  1052. transform:rotate(90deg);
  1053. }
  1054. #u154458 .text {
  1055. position:absolute;
  1056. align-self:center;
  1057. padding:2px 2px 2px 2px;
  1058. box-sizing:border-box;
  1059. width:100%;
  1060. }
  1061. #u154458_text {
  1062. border-width:0px;
  1063. word-wrap:break-word;
  1064. text-transform:none;
  1065. visibility:hidden;
  1066. }
  1067. #u154459_div {
  1068. border-width:0px;
  1069. position:absolute;
  1070. left:0px;
  1071. top:0px;
  1072. width:12px;
  1073. height:12px;
  1074. background:inherit;
  1075. background-color:rgba(255, 255, 255, 0);
  1076. box-sizing:border-box;
  1077. border-width:2px;
  1078. border-style:solid;
  1079. border-color:rgba(51, 51, 51, 1);
  1080. border-right:0px;
  1081. border-bottom:0px;
  1082. border-radius:0px;
  1083. border-top-right-radius:0px;
  1084. border-bottom-left-radius:0px;
  1085. -moz-box-shadow:none;
  1086. -webkit-box-shadow:none;
  1087. box-shadow:none;
  1088. }
  1089. #u154459 {
  1090. border-width:0px;
  1091. position:absolute;
  1092. left:43px;
  1093. top:81px;
  1094. width:12px;
  1095. height:12px;
  1096. display:flex;
  1097. -webkit-transform:rotate(315deg);
  1098. -moz-transform:rotate(315deg);
  1099. -ms-transform:rotate(315deg);
  1100. transform:rotate(315deg);
  1101. }
  1102. #u154459 .text {
  1103. position:absolute;
  1104. align-self:center;
  1105. padding:2px 2px 2px 2px;
  1106. box-sizing:border-box;
  1107. width:100%;
  1108. }
  1109. #u154459_text {
  1110. border-width:0px;
  1111. word-wrap:break-word;
  1112. text-transform:none;
  1113. visibility:hidden;
  1114. }
  1115. #u154460_div {
  1116. border-width:0px;
  1117. position:absolute;
  1118. left:0px;
  1119. top:0px;
  1120. width:33px;
  1121. height:22px;
  1122. background:inherit;
  1123. background-color:rgba(255, 255, 255, 0);
  1124. border:none;
  1125. border-radius:0px;
  1126. -moz-box-shadow:none;
  1127. -webkit-box-shadow:none;
  1128. box-shadow:none;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:16px;
  1133. color:#000000;
  1134. }
  1135. #u154460 {
  1136. border-width:0px;
  1137. position:absolute;
  1138. left:67px;
  1139. top:76px;
  1140. width:33px;
  1141. height:22px;
  1142. display:flex;
  1143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1144. font-weight:400;
  1145. font-style:normal;
  1146. font-size:16px;
  1147. color:#000000;
  1148. }
  1149. #u154460 .text {
  1150. position:absolute;
  1151. align-self:flex-start;
  1152. padding:0px 0px 0px 0px;
  1153. box-sizing:border-box;
  1154. width:100%;
  1155. }
  1156. #u154460_text {
  1157. border-width:0px;
  1158. white-space:nowrap;
  1159. text-transform:none;
  1160. }
  1161. #u154461 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u154462_div {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:375px;
  1175. height:60px;
  1176. background:inherit;
  1177. background-color:rgba(255, 255, 255, 1);
  1178. box-sizing:border-box;
  1179. border-width:1px;
  1180. border-style:solid;
  1181. border-color:rgba(242, 242, 242, 1);
  1182. border-radius:20px;
  1183. border-top-left-radius:0px;
  1184. border-top-right-radius:0px;
  1185. -moz-box-shadow:none;
  1186. -webkit-box-shadow:none;
  1187. box-shadow:none;
  1188. }
  1189. #u154462 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:29px;
  1193. top:780px;
  1194. width:375px;
  1195. height:60px;
  1196. display:flex;
  1197. }
  1198. #u154462 .text {
  1199. position:absolute;
  1200. align-self:center;
  1201. padding:2px 2px 2px 2px;
  1202. box-sizing:border-box;
  1203. width:100%;
  1204. }
  1205. #u154462_text {
  1206. border-width:0px;
  1207. word-wrap:break-word;
  1208. text-transform:none;
  1209. visibility:hidden;
  1210. }
  1211. #u154463_div {
  1212. border-width:0px;
  1213. position:absolute;
  1214. left:0px;
  1215. top:0px;
  1216. width:160px;
  1217. height:40px;
  1218. background:inherit;
  1219. background-color:rgba(0, 137, 254, 1);
  1220. border:none;
  1221. border-radius:63px;
  1222. -moz-box-shadow:none;
  1223. -webkit-box-shadow:none;
  1224. box-shadow:none;
  1225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1226. font-weight:400;
  1227. font-style:normal;
  1228. font-size:14px;
  1229. color:#FFFFFF;
  1230. }
  1231. #u154463 {
  1232. border-width:0px;
  1233. position:absolute;
  1234. left:224px;
  1235. top:790px;
  1236. width:160px;
  1237. height:40px;
  1238. display:flex;
  1239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1240. font-weight:400;
  1241. font-style:normal;
  1242. font-size:14px;
  1243. color:#FFFFFF;
  1244. }
  1245. #u154463 .text {
  1246. position:absolute;
  1247. align-self:center;
  1248. padding:2px 2px 2px 2px;
  1249. box-sizing:border-box;
  1250. width:100%;
  1251. }
  1252. #u154463_text {
  1253. border-width:0px;
  1254. word-wrap:break-word;
  1255. text-transform:none;
  1256. }
  1257. #u154464_div {
  1258. border-width:0px;
  1259. position:absolute;
  1260. left:0px;
  1261. top:0px;
  1262. width:160px;
  1263. height:40px;
  1264. background:inherit;
  1265. background-color:rgba(255, 255, 255, 1);
  1266. box-sizing:border-box;
  1267. border-width:1px;
  1268. border-style:solid;
  1269. border-color:rgba(121, 121, 121, 1);
  1270. border-radius:63px;
  1271. -moz-box-shadow:none;
  1272. -webkit-box-shadow:none;
  1273. box-shadow:none;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:14px;
  1278. }
  1279. #u154464 {
  1280. border-width:0px;
  1281. position:absolute;
  1282. left:49px;
  1283. top:790px;
  1284. width:160px;
  1285. height:40px;
  1286. display:flex;
  1287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1288. font-weight:400;
  1289. font-style:normal;
  1290. font-size:14px;
  1291. }
  1292. #u154464 .text {
  1293. position:absolute;
  1294. align-self:center;
  1295. padding:2px 2px 2px 2px;
  1296. box-sizing:border-box;
  1297. width:100%;
  1298. }
  1299. #u154464_text {
  1300. border-width:0px;
  1301. word-wrap:break-word;
  1302. text-transform:none;
  1303. }
  1304. #u154465_div {
  1305. border-width:0px;
  1306. position:absolute;
  1307. left:0px;
  1308. top:0px;
  1309. width:375px;
  1310. height:100px;
  1311. background:inherit;
  1312. background-color:rgba(255, 255, 255, 1);
  1313. border:none;
  1314. border-left:0px;
  1315. border-top:0px;
  1316. border-right:0px;
  1317. border-radius:0px;
  1318. border-bottom-right-radius:0px;
  1319. border-bottom-left-radius:0px;
  1320. -moz-box-shadow:none;
  1321. -webkit-box-shadow:none;
  1322. box-shadow:none;
  1323. }
  1324. #u154465 {
  1325. border-width:0px;
  1326. position:absolute;
  1327. left:29px;
  1328. top:107px;
  1329. width:375px;
  1330. height:100px;
  1331. display:flex;
  1332. }
  1333. #u154465 .text {
  1334. position:absolute;
  1335. align-self:center;
  1336. padding:2px 2px 2px 2px;
  1337. box-sizing:border-box;
  1338. width:100%;
  1339. }
  1340. #u154465_text {
  1341. border-width:0px;
  1342. word-wrap:break-word;
  1343. text-transform:none;
  1344. visibility:hidden;
  1345. }
  1346. #u154466_div {
  1347. border-width:0px;
  1348. position:absolute;
  1349. left:0px;
  1350. top:0px;
  1351. width:57px;
  1352. height:30px;
  1353. background:inherit;
  1354. background-color:rgba(255, 255, 255, 0);
  1355. border:none;
  1356. border-left:0px;
  1357. border-top:0px;
  1358. border-right:0px;
  1359. border-radius:0px;
  1360. border-bottom-right-radius:0px;
  1361. border-bottom-left-radius:0px;
  1362. -moz-box-shadow:none;
  1363. -webkit-box-shadow:none;
  1364. box-shadow:none;
  1365. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1366. font-weight:500;
  1367. font-style:normal;
  1368. font-size:14px;
  1369. line-height:30px;
  1370. }
  1371. #u154466 {
  1372. border-width:0px;
  1373. position:absolute;
  1374. left:56px;
  1375. top:117px;
  1376. width:57px;
  1377. height:30px;
  1378. display:flex;
  1379. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1380. font-weight:500;
  1381. font-style:normal;
  1382. font-size:14px;
  1383. line-height:30px;
  1384. }
  1385. #u154466 .text {
  1386. position:absolute;
  1387. align-self:flex-start;
  1388. padding:0px 0px 0px 0px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u154466_text {
  1393. border-width:0px;
  1394. white-space:nowrap;
  1395. text-transform:none;
  1396. }
  1397. #u154467_div {
  1398. border-width:0px;
  1399. position:absolute;
  1400. left:0px;
  1401. top:0px;
  1402. width:325px;
  1403. height:45px;
  1404. background:inherit;
  1405. background-color:rgba(255, 255, 255, 0);
  1406. border:none;
  1407. border-left:0px;
  1408. border-top:0px;
  1409. border-right:0px;
  1410. border-radius:0px;
  1411. border-bottom-right-radius:0px;
  1412. border-bottom-left-radius:0px;
  1413. -moz-box-shadow:none;
  1414. -webkit-box-shadow:none;
  1415. box-shadow:none;
  1416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1417. font-weight:400;
  1418. font-style:normal;
  1419. font-size:12px;
  1420. }
  1421. #u154467 {
  1422. border-width:0px;
  1423. position:absolute;
  1424. left:56px;
  1425. top:147px;
  1426. width:325px;
  1427. height:45px;
  1428. display:flex;
  1429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1430. font-weight:400;
  1431. font-style:normal;
  1432. font-size:12px;
  1433. }
  1434. #u154467 .text {
  1435. position:absolute;
  1436. align-self:flex-start;
  1437. padding:0px 0px 0px 0px;
  1438. box-sizing:border-box;
  1439. width:100%;
  1440. }
  1441. #u154467_text {
  1442. border-width:0px;
  1443. word-wrap:break-word;
  1444. text-transform:none;
  1445. }
  1446. #u154468_div {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:0px;
  1450. top:0px;
  1451. width:375px;
  1452. height:380px;
  1453. background:inherit;
  1454. background-color:rgba(255, 255, 255, 1);
  1455. border:none;
  1456. border-left:0px;
  1457. border-top:0px;
  1458. border-right:0px;
  1459. border-radius:0px;
  1460. border-bottom-right-radius:0px;
  1461. border-bottom-left-radius:0px;
  1462. -moz-box-shadow:none;
  1463. -webkit-box-shadow:none;
  1464. box-shadow:none;
  1465. }
  1466. #u154468 {
  1467. border-width:0px;
  1468. position:absolute;
  1469. left:29px;
  1470. top:217px;
  1471. width:375px;
  1472. height:380px;
  1473. display:flex;
  1474. }
  1475. #u154468 .text {
  1476. position:absolute;
  1477. align-self:center;
  1478. padding:2px 2px 2px 2px;
  1479. box-sizing:border-box;
  1480. width:100%;
  1481. }
  1482. #u154468_text {
  1483. border-width:0px;
  1484. word-wrap:break-word;
  1485. text-transform:none;
  1486. visibility:hidden;
  1487. }
  1488. #u154469_div {
  1489. border-width:0px;
  1490. position:absolute;
  1491. left:0px;
  1492. top:0px;
  1493. width:85px;
  1494. height:280px;
  1495. background:inherit;
  1496. background-color:rgba(255, 255, 255, 0);
  1497. border:none;
  1498. border-left:0px;
  1499. border-top:0px;
  1500. border-right:0px;
  1501. border-radius:0px;
  1502. border-bottom-right-radius:0px;
  1503. border-bottom-left-radius:0px;
  1504. -moz-box-shadow:none;
  1505. -webkit-box-shadow:none;
  1506. box-shadow:none;
  1507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1508. font-weight:400;
  1509. font-style:normal;
  1510. font-size:14px;
  1511. color:#7F7F7F;
  1512. line-height:40px;
  1513. }
  1514. #u154469 {
  1515. border-width:0px;
  1516. position:absolute;
  1517. left:49px;
  1518. top:267px;
  1519. width:85px;
  1520. height:280px;
  1521. display:flex;
  1522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1523. font-weight:400;
  1524. font-style:normal;
  1525. font-size:14px;
  1526. color:#7F7F7F;
  1527. line-height:40px;
  1528. }
  1529. #u154469 .text {
  1530. position:absolute;
  1531. align-self:flex-start;
  1532. padding:0px 0px 0px 0px;
  1533. box-sizing:border-box;
  1534. width:100%;
  1535. }
  1536. #u154469_text {
  1537. border-width:0px;
  1538. white-space:nowrap;
  1539. text-transform:none;
  1540. }
  1541. #u154470 {
  1542. border-width:0px;
  1543. position:absolute;
  1544. left:0px;
  1545. top:0px;
  1546. width:0px;
  1547. height:0px;
  1548. }
  1549. #u154471_div {
  1550. border-width:0px;
  1551. position:absolute;
  1552. left:0px;
  1553. top:0px;
  1554. width:375px;
  1555. height:50px;
  1556. background:inherit;
  1557. background-color:rgba(255, 255, 255, 1);
  1558. border:none;
  1559. border-left:0px;
  1560. border-top:0px;
  1561. border-right:0px;
  1562. border-radius:0px;
  1563. border-bottom-right-radius:0px;
  1564. border-bottom-left-radius:0px;
  1565. -moz-box-shadow:none;
  1566. -webkit-box-shadow:none;
  1567. box-shadow:none;
  1568. }
  1569. #u154471 {
  1570. border-width:0px;
  1571. position:absolute;
  1572. left:29px;
  1573. top:604px;
  1574. width:375px;
  1575. height:50px;
  1576. display:flex;
  1577. }
  1578. #u154471 .text {
  1579. position:absolute;
  1580. align-self:center;
  1581. padding:2px 2px 2px 2px;
  1582. box-sizing:border-box;
  1583. width:100%;
  1584. }
  1585. #u154471_text {
  1586. border-width:0px;
  1587. word-wrap:break-word;
  1588. text-transform:none;
  1589. visibility:hidden;
  1590. }
  1591. #u154472_div {
  1592. border-width:0px;
  1593. position:absolute;
  1594. left:0px;
  1595. top:0px;
  1596. width:127px;
  1597. height:30px;
  1598. background:inherit;
  1599. background-color:rgba(255, 255, 255, 0);
  1600. border:none;
  1601. border-left:0px;
  1602. border-top:0px;
  1603. border-right:0px;
  1604. border-radius:0px;
  1605. border-bottom-right-radius:0px;
  1606. border-bottom-left-radius:0px;
  1607. -moz-box-shadow:none;
  1608. -webkit-box-shadow:none;
  1609. box-shadow:none;
  1610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1611. font-weight:400;
  1612. font-style:normal;
  1613. font-size:14px;
  1614. line-height:30px;
  1615. }
  1616. #u154472 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:49px;
  1620. top:614px;
  1621. width:127px;
  1622. height:30px;
  1623. display:flex;
  1624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1625. font-weight:400;
  1626. font-style:normal;
  1627. font-size:14px;
  1628. line-height:30px;
  1629. }
  1630. #u154472 .text {
  1631. position:absolute;
  1632. align-self:center;
  1633. padding:0px 0px 0px 0px;
  1634. box-sizing:border-box;
  1635. width:100%;
  1636. }
  1637. #u154472_text {
  1638. border-width:0px;
  1639. white-space:nowrap;
  1640. text-transform:none;
  1641. }
  1642. #u154473_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:8px;
  1648. height:8px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 0);
  1651. box-sizing:border-box;
  1652. border-width:1px;
  1653. border-style:solid;
  1654. border-color:rgba(127, 127, 127, 1);
  1655. border-right:0px;
  1656. border-bottom:0px;
  1657. border-radius:0px;
  1658. border-top-right-radius:0px;
  1659. border-bottom-left-radius:0px;
  1660. -moz-box-shadow:none;
  1661. -webkit-box-shadow:none;
  1662. box-shadow:none;
  1663. }
  1664. #u154473 {
  1665. border-width:0px;
  1666. position:absolute;
  1667. left:378px;
  1668. top:625px;
  1669. width:8px;
  1670. height:8px;
  1671. display:flex;
  1672. -webkit-transform:rotate(135deg);
  1673. -moz-transform:rotate(135deg);
  1674. -ms-transform:rotate(135deg);
  1675. transform:rotate(135deg);
  1676. }
  1677. #u154473 .text {
  1678. position:absolute;
  1679. align-self:center;
  1680. padding:2px 2px 2px 2px;
  1681. box-sizing:border-box;
  1682. width:100%;
  1683. }
  1684. #u154473_text {
  1685. border-width:0px;
  1686. word-wrap:break-word;
  1687. text-transform:none;
  1688. visibility:hidden;
  1689. }
  1690. #u154474_div {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:0px;
  1694. top:0px;
  1695. width:219px;
  1696. height:280px;
  1697. background:inherit;
  1698. background-color:rgba(255, 255, 255, 0);
  1699. border:none;
  1700. border-left:0px;
  1701. border-top:0px;
  1702. border-right:0px;
  1703. border-radius:0px;
  1704. border-bottom-right-radius:0px;
  1705. border-bottom-left-radius:0px;
  1706. -moz-box-shadow:none;
  1707. -webkit-box-shadow:none;
  1708. box-shadow:none;
  1709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1710. font-weight:400;
  1711. font-style:normal;
  1712. font-size:14px;
  1713. color:#000000;
  1714. line-height:40px;
  1715. }
  1716. #u154474 {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:142px;
  1720. top:267px;
  1721. width:219px;
  1722. height:280px;
  1723. display:flex;
  1724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1725. font-weight:400;
  1726. font-style:normal;
  1727. font-size:14px;
  1728. color:#000000;
  1729. line-height:40px;
  1730. }
  1731. #u154474 .text {
  1732. position:absolute;
  1733. align-self:flex-start;
  1734. padding:0px 0px 0px 0px;
  1735. box-sizing:border-box;
  1736. width:100%;
  1737. }
  1738. #u154474_text {
  1739. border-width:0px;
  1740. white-space:nowrap;
  1741. text-transform:none;
  1742. }
  1743. #u154475 {
  1744. border-width:0px;
  1745. position:absolute;
  1746. left:0px;
  1747. top:0px;
  1748. width:0px;
  1749. height:0px;
  1750. }
  1751. #u154476_div {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:25px;
  1757. height:40px;
  1758. background:inherit;
  1759. background-color:rgba(255, 255, 255, 0);
  1760. border:none;
  1761. border-left:0px;
  1762. border-top:0px;
  1763. border-right:0px;
  1764. border-radius:0px;
  1765. border-bottom-right-radius:0px;
  1766. border-bottom-left-radius:0px;
  1767. -moz-box-shadow:none;
  1768. -webkit-box-shadow:none;
  1769. box-shadow:none;
  1770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1771. font-weight:400;
  1772. font-style:normal;
  1773. font-size:12px;
  1774. line-height:40px;
  1775. }
  1776. #u154476 {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:197px;
  1780. top:548px;
  1781. width:25px;
  1782. height:40px;
  1783. display:flex;
  1784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1785. font-weight:400;
  1786. font-style:normal;
  1787. font-size:12px;
  1788. line-height:40px;
  1789. }
  1790. #u154476 .text {
  1791. position:absolute;
  1792. align-self:flex-start;
  1793. padding:0px 0px 0px 0px;
  1794. box-sizing:border-box;
  1795. width:100%;
  1796. }
  1797. #u154476_text {
  1798. border-width:0px;
  1799. white-space:nowrap;
  1800. text-transform:none;
  1801. }
  1802. #u154477_div {
  1803. border-width:0px;
  1804. position:absolute;
  1805. left:0px;
  1806. top:0px;
  1807. width:8px;
  1808. height:8px;
  1809. background:inherit;
  1810. background-color:rgba(255, 255, 255, 0);
  1811. box-sizing:border-box;
  1812. border-width:1px;
  1813. border-style:solid;
  1814. border-color:rgba(127, 127, 127, 1);
  1815. border-right:0px;
  1816. border-bottom:0px;
  1817. border-radius:0px;
  1818. border-top-right-radius:0px;
  1819. border-bottom-left-radius:0px;
  1820. -moz-box-shadow:none;
  1821. -webkit-box-shadow:none;
  1822. box-shadow:none;
  1823. }
  1824. #u154477 {
  1825. border-width:0px;
  1826. position:absolute;
  1827. left:226px;
  1828. top:566px;
  1829. width:8px;
  1830. height:8px;
  1831. display:flex;
  1832. -webkit-transform:rotate(45deg);
  1833. -moz-transform:rotate(45deg);
  1834. -ms-transform:rotate(45deg);
  1835. transform:rotate(45deg);
  1836. }
  1837. #u154477 .text {
  1838. position:absolute;
  1839. align-self:center;
  1840. padding:2px 2px 2px 2px;
  1841. box-sizing:border-box;
  1842. width:100%;
  1843. }
  1844. #u154477_text {
  1845. border-width:0px;
  1846. word-wrap:break-word;
  1847. text-transform:none;
  1848. visibility:hidden;
  1849. }
  1850. #u154478_div {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:0px;
  1854. top:0px;
  1855. width:73px;
  1856. height:40px;
  1857. background:inherit;
  1858. background-color:rgba(255, 255, 255, 0);
  1859. border:none;
  1860. border-left:0px;
  1861. border-top:0px;
  1862. border-right:0px;
  1863. border-radius:0px;
  1864. border-bottom-right-radius:0px;
  1865. border-bottom-left-radius:0px;
  1866. -moz-box-shadow:none;
  1867. -webkit-box-shadow:none;
  1868. box-shadow:none;
  1869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1870. font-weight:400;
  1871. font-style:normal;
  1872. font-size:18px;
  1873. line-height:40px;
  1874. }
  1875. #u154478 {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:49px;
  1879. top:229px;
  1880. width:73px;
  1881. height:40px;
  1882. display:flex;
  1883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1884. font-weight:400;
  1885. font-style:normal;
  1886. font-size:18px;
  1887. line-height:40px;
  1888. }
  1889. #u154478 .text {
  1890. position:absolute;
  1891. align-self:flex-start;
  1892. padding:0px 0px 0px 0px;
  1893. box-sizing:border-box;
  1894. width:100%;
  1895. }
  1896. #u154478_text {
  1897. border-width:0px;
  1898. white-space:nowrap;
  1899. text-transform:none;
  1900. }
  1901. #u154479_img {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:0px;
  1905. top:0px;
  1906. width:433px;
  1907. height:865px;
  1908. }
  1909. #u154479 {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:463px;
  1913. top:0px;
  1914. width:433px;
  1915. height:865px;
  1916. display:flex;
  1917. }
  1918. #u154479 .text {
  1919. position:absolute;
  1920. align-self:center;
  1921. padding:2px 2px 2px 2px;
  1922. box-sizing:border-box;
  1923. width:100%;
  1924. }
  1925. #u154479_text {
  1926. border-width:0px;
  1927. word-wrap:break-word;
  1928. text-transform:none;
  1929. visibility:hidden;
  1930. }
  1931. #u154480 {
  1932. border-width:0px;
  1933. position:absolute;
  1934. left:0px;
  1935. top:0px;
  1936. width:0px;
  1937. height:0px;
  1938. }
  1939. #u154481_img {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:-5px;
  1943. top:-5px;
  1944. width:385px;
  1945. height:743px;
  1946. }
  1947. #u154481 {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:492px;
  1951. top:107px;
  1952. width:375px;
  1953. height:733px;
  1954. display:flex;
  1955. }
  1956. #u154481 .text {
  1957. position:absolute;
  1958. align-self:center;
  1959. padding:2px 2px 2px 2px;
  1960. box-sizing:border-box;
  1961. width:100%;
  1962. }
  1963. #u154481_text {
  1964. border-width:0px;
  1965. word-wrap:break-word;
  1966. text-transform:none;
  1967. visibility:hidden;
  1968. }
  1969. #u154482_img {
  1970. border-width:0px;
  1971. position:absolute;
  1972. left:-5px;
  1973. top:-5px;
  1974. width:385px;
  1975. height:292px;
  1976. }
  1977. #u154482 {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:492px;
  1981. top:558px;
  1982. width:375px;
  1983. height:282px;
  1984. display:flex;
  1985. }
  1986. #u154482 .text {
  1987. position:absolute;
  1988. align-self:center;
  1989. padding:2px 2px 2px 2px;
  1990. box-sizing:border-box;
  1991. width:100%;
  1992. }
  1993. #u154482_text {
  1994. border-width:0px;
  1995. word-wrap:break-word;
  1996. text-transform:none;
  1997. visibility:hidden;
  1998. }
  1999. #u154483_div {
  2000. border-width:0px;
  2001. position:absolute;
  2002. left:0px;
  2003. top:0px;
  2004. width:73px;
  2005. height:30px;
  2006. background:inherit;
  2007. background-color:rgba(255, 255, 255, 0);
  2008. border:none;
  2009. border-left:0px;
  2010. border-top:0px;
  2011. border-right:0px;
  2012. border-radius:0px;
  2013. border-bottom-right-radius:0px;
  2014. border-bottom-left-radius:0px;
  2015. -moz-box-shadow:none;
  2016. -webkit-box-shadow:none;
  2017. box-shadow:none;
  2018. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2019. font-weight:500;
  2020. font-style:normal;
  2021. font-size:18px;
  2022. line-height:30px;
  2023. }
  2024. #u154483 {
  2025. border-width:0px;
  2026. position:absolute;
  2027. left:512px;
  2028. top:571px;
  2029. width:73px;
  2030. height:30px;
  2031. display:flex;
  2032. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2033. font-weight:500;
  2034. font-style:normal;
  2035. font-size:18px;
  2036. line-height:30px;
  2037. }
  2038. #u154483 .text {
  2039. position:absolute;
  2040. align-self:flex-start;
  2041. padding:0px 0px 0px 0px;
  2042. box-sizing:border-box;
  2043. width:100%;
  2044. }
  2045. #u154483_text {
  2046. border-width:0px;
  2047. white-space:nowrap;
  2048. text-transform:none;
  2049. }
  2050. #u154484 {
  2051. border-width:0px;
  2052. position:absolute;
  2053. left:0px;
  2054. top:0px;
  2055. width:0px;
  2056. height:0px;
  2057. }
  2058. #u154485_div {
  2059. border-width:0px;
  2060. position:absolute;
  2061. left:0px;
  2062. top:0px;
  2063. width:375px;
  2064. height:60px;
  2065. background:inherit;
  2066. background-color:rgba(255, 255, 255, 1);
  2067. box-sizing:border-box;
  2068. border-width:1px;
  2069. border-style:solid;
  2070. border-color:rgba(242, 242, 242, 1);
  2071. border-radius:20px;
  2072. border-top-left-radius:0px;
  2073. border-top-right-radius:0px;
  2074. -moz-box-shadow:none;
  2075. -webkit-box-shadow:none;
  2076. box-shadow:none;
  2077. }
  2078. #u154485 {
  2079. border-width:0px;
  2080. position:absolute;
  2081. left:492px;
  2082. top:780px;
  2083. width:375px;
  2084. height:60px;
  2085. display:flex;
  2086. }
  2087. #u154485 .text {
  2088. position:absolute;
  2089. align-self:center;
  2090. padding:2px 2px 2px 2px;
  2091. box-sizing:border-box;
  2092. width:100%;
  2093. }
  2094. #u154485_text {
  2095. border-width:0px;
  2096. word-wrap:break-word;
  2097. text-transform:none;
  2098. visibility:hidden;
  2099. }
  2100. #u154486_div {
  2101. border-width:0px;
  2102. position:absolute;
  2103. left:0px;
  2104. top:0px;
  2105. width:160px;
  2106. height:40px;
  2107. background:inherit;
  2108. background-color:rgba(0, 137, 254, 1);
  2109. border:none;
  2110. border-radius:63px;
  2111. -moz-box-shadow:none;
  2112. -webkit-box-shadow:none;
  2113. box-shadow:none;
  2114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2115. font-weight:400;
  2116. font-style:normal;
  2117. font-size:14px;
  2118. color:#FFFFFF;
  2119. }
  2120. #u154486 {
  2121. border-width:0px;
  2122. position:absolute;
  2123. left:687px;
  2124. top:790px;
  2125. width:160px;
  2126. height:40px;
  2127. display:flex;
  2128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2129. font-weight:400;
  2130. font-style:normal;
  2131. font-size:14px;
  2132. color:#FFFFFF;
  2133. }
  2134. #u154486 .text {
  2135. position:absolute;
  2136. align-self:center;
  2137. padding:2px 2px 2px 2px;
  2138. box-sizing:border-box;
  2139. width:100%;
  2140. }
  2141. #u154486_text {
  2142. border-width:0px;
  2143. word-wrap:break-word;
  2144. text-transform:none;
  2145. }
  2146. #u154487_div {
  2147. border-width:0px;
  2148. position:absolute;
  2149. left:0px;
  2150. top:0px;
  2151. width:160px;
  2152. height:40px;
  2153. background:inherit;
  2154. background-color:rgba(255, 255, 255, 1);
  2155. box-sizing:border-box;
  2156. border-width:1px;
  2157. border-style:solid;
  2158. border-color:rgba(121, 121, 121, 1);
  2159. border-radius:63px;
  2160. -moz-box-shadow:none;
  2161. -webkit-box-shadow:none;
  2162. box-shadow:none;
  2163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2164. font-weight:400;
  2165. font-style:normal;
  2166. font-size:14px;
  2167. }
  2168. #u154487 {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:512px;
  2172. top:790px;
  2173. width:160px;
  2174. height:40px;
  2175. display:flex;
  2176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2177. font-weight:400;
  2178. font-style:normal;
  2179. font-size:14px;
  2180. }
  2181. #u154487 .text {
  2182. position:absolute;
  2183. align-self:center;
  2184. padding:2px 2px 2px 2px;
  2185. box-sizing:border-box;
  2186. width:100%;
  2187. }
  2188. #u154487_text {
  2189. border-width:0px;
  2190. word-wrap:break-word;
  2191. text-transform:none;
  2192. }
  2193. #u154488_div {
  2194. border-width:0px;
  2195. position:absolute;
  2196. left:0px;
  2197. top:0px;
  2198. width:340px;
  2199. height:92px;
  2200. background:inherit;
  2201. background-color:rgba(255, 255, 255, 1);
  2202. box-sizing:border-box;
  2203. border-width:1px;
  2204. border-style:solid;
  2205. border-color:rgba(215, 215, 215, 1);
  2206. border-radius:4px;
  2207. -moz-box-shadow:none;
  2208. -webkit-box-shadow:none;
  2209. box-shadow:none;
  2210. }
  2211. #u154488 {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:512px;
  2215. top:611px;
  2216. width:340px;
  2217. height:92px;
  2218. display:flex;
  2219. }
  2220. #u154488 .text {
  2221. position:absolute;
  2222. align-self:center;
  2223. padding:2px 2px 2px 2px;
  2224. box-sizing:border-box;
  2225. width:100%;
  2226. }
  2227. #u154488_text {
  2228. border-width:0px;
  2229. word-wrap:break-word;
  2230. text-transform:none;
  2231. visibility:hidden;
  2232. }
  2233. #u154489_div {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:0px;
  2237. top:0px;
  2238. width:57px;
  2239. height:30px;
  2240. background:inherit;
  2241. background-color:rgba(255, 255, 255, 0);
  2242. border:none;
  2243. border-left:0px;
  2244. border-top:0px;
  2245. border-right:0px;
  2246. border-radius:0px;
  2247. border-bottom-right-radius:0px;
  2248. border-bottom-left-radius:0px;
  2249. -moz-box-shadow:none;
  2250. -webkit-box-shadow:none;
  2251. box-shadow:none;
  2252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2253. font-weight:400;
  2254. font-style:normal;
  2255. font-size:14px;
  2256. color:#AAAAAA;
  2257. line-height:30px;
  2258. }
  2259. #u154489 {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:521px;
  2263. top:619px;
  2264. width:57px;
  2265. height:30px;
  2266. display:flex;
  2267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2268. font-weight:400;
  2269. font-style:normal;
  2270. font-size:14px;
  2271. color:#AAAAAA;
  2272. line-height:30px;
  2273. }
  2274. #u154489 .text {
  2275. position:absolute;
  2276. align-self:center;
  2277. padding:0px 0px 0px 0px;
  2278. box-sizing:border-box;
  2279. width:100%;
  2280. }
  2281. #u154489_text {
  2282. border-width:0px;
  2283. white-space:nowrap;
  2284. text-transform:none;
  2285. }
  2286. #u154490 {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:0px;
  2290. top:0px;
  2291. width:0px;
  2292. height:0px;
  2293. }
  2294. #u154491_div {
  2295. border-width:0px;
  2296. position:absolute;
  2297. left:0px;
  2298. top:0px;
  2299. width:342px;
  2300. height:210px;
  2301. background:inherit;
  2302. background-color:rgba(255, 255, 255, 1);
  2303. border:none;
  2304. border-radius:10px;
  2305. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2306. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2307. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2308. }
  2309. #u154491 {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:567px;
  2313. top:314px;
  2314. width:342px;
  2315. height:210px;
  2316. display:flex;
  2317. }
  2318. #u154491 .text {
  2319. position:absolute;
  2320. align-self:center;
  2321. padding:2px 2px 2px 2px;
  2322. box-sizing:border-box;
  2323. width:100%;
  2324. }
  2325. #u154491_text {
  2326. border-width:0px;
  2327. word-wrap:break-word;
  2328. text-transform:none;
  2329. visibility:hidden;
  2330. }
  2331. #u154492_div {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:0px;
  2335. top:0px;
  2336. width:127px;
  2337. height:30px;
  2338. background:inherit;
  2339. background-color:rgba(255, 255, 255, 0);
  2340. border:none;
  2341. border-left:0px;
  2342. border-top:0px;
  2343. border-right:0px;
  2344. border-radius:0px;
  2345. border-bottom-right-radius:0px;
  2346. border-bottom-left-radius:0px;
  2347. -moz-box-shadow:none;
  2348. -webkit-box-shadow:none;
  2349. box-shadow:none;
  2350. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2351. font-weight:500;
  2352. font-style:normal;
  2353. font-size:18px;
  2354. text-align:center;
  2355. line-height:30px;
  2356. }
  2357. #u154492 {
  2358. border-width:0px;
  2359. position:absolute;
  2360. left:674px;
  2361. top:338px;
  2362. width:127px;
  2363. height:30px;
  2364. display:flex;
  2365. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2366. font-weight:500;
  2367. font-style:normal;
  2368. font-size:18px;
  2369. text-align:center;
  2370. line-height:30px;
  2371. }
  2372. #u154492 .text {
  2373. position:absolute;
  2374. align-self:flex-start;
  2375. padding:0px 0px 0px 0px;
  2376. box-sizing:border-box;
  2377. width:100%;
  2378. }
  2379. #u154492_text {
  2380. border-width:0px;
  2381. white-space:nowrap;
  2382. text-transform:none;
  2383. }
  2384. #u154493_img {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:0px;
  2388. top:0px;
  2389. width:343px;
  2390. height:2px;
  2391. }
  2392. #u154493 {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:567px;
  2396. top:457px;
  2397. width:342px;
  2398. height:1px;
  2399. display:flex;
  2400. }
  2401. #u154493 .text {
  2402. position:absolute;
  2403. align-self:center;
  2404. padding:2px 2px 2px 2px;
  2405. box-sizing:border-box;
  2406. width:100%;
  2407. }
  2408. #u154493_text {
  2409. border-width:0px;
  2410. word-wrap:break-word;
  2411. text-transform:none;
  2412. visibility:hidden;
  2413. }
  2414. #u154494_div {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:0px;
  2418. top:0px;
  2419. width:37px;
  2420. height:30px;
  2421. background:inherit;
  2422. background-color:rgba(255, 255, 255, 0);
  2423. border:none;
  2424. border-left:0px;
  2425. border-top:0px;
  2426. border-right:0px;
  2427. border-radius:0px;
  2428. border-bottom-right-radius:0px;
  2429. border-bottom-left-radius:0px;
  2430. -moz-box-shadow:none;
  2431. -webkit-box-shadow:none;
  2432. box-shadow:none;
  2433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2434. font-weight:400;
  2435. font-style:normal;
  2436. font-size:18px;
  2437. color:#0089FE;
  2438. text-align:right;
  2439. line-height:30px;
  2440. }
  2441. #u154494 {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:818px;
  2445. top:474px;
  2446. width:37px;
  2447. height:30px;
  2448. display:flex;
  2449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2450. font-weight:400;
  2451. font-style:normal;
  2452. font-size:18px;
  2453. color:#0089FE;
  2454. text-align:right;
  2455. line-height:30px;
  2456. }
  2457. #u154494 .text {
  2458. position:absolute;
  2459. align-self:flex-start;
  2460. padding:0px 0px 0px 0px;
  2461. box-sizing:border-box;
  2462. width:100%;
  2463. }
  2464. #u154494_text {
  2465. border-width:0px;
  2466. white-space:nowrap;
  2467. text-transform:none;
  2468. }
  2469. #u154495_div {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:0px;
  2473. top:0px;
  2474. width:273px;
  2475. height:60px;
  2476. background:inherit;
  2477. background-color:rgba(255, 255, 255, 0);
  2478. border:none;
  2479. border-left:0px;
  2480. border-top:0px;
  2481. border-right:0px;
  2482. border-radius:0px;
  2483. border-bottom-right-radius:0px;
  2484. border-bottom-left-radius:0px;
  2485. -moz-box-shadow:none;
  2486. -webkit-box-shadow:none;
  2487. box-shadow:none;
  2488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2489. font-weight:400;
  2490. font-style:normal;
  2491. font-size:14px;
  2492. text-align:center;
  2493. line-height:30px;
  2494. }
  2495. #u154495 {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:601px;
  2499. top:380px;
  2500. width:273px;
  2501. height:60px;
  2502. display:flex;
  2503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2504. font-weight:400;
  2505. font-style:normal;
  2506. font-size:14px;
  2507. text-align:center;
  2508. line-height:30px;
  2509. }
  2510. #u154495 .text {
  2511. position:absolute;
  2512. align-self:flex-start;
  2513. padding:0px 0px 0px 0px;
  2514. box-sizing:border-box;
  2515. width:100%;
  2516. }
  2517. #u154495_text {
  2518. border-width:0px;
  2519. word-wrap:break-word;
  2520. text-transform:none;
  2521. }
  2522. #u154496_img {
  2523. border-width:0px;
  2524. position:absolute;
  2525. left:0px;
  2526. top:0px;
  2527. width:2px;
  2528. height:59px;
  2529. }
  2530. #u154496 {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:738px;
  2534. top:460px;
  2535. width:1px;
  2536. height:58px;
  2537. display:flex;
  2538. }
  2539. #u154496 .text {
  2540. position:absolute;
  2541. align-self:center;
  2542. padding:2px 2px 2px 2px;
  2543. box-sizing:border-box;
  2544. width:100%;
  2545. }
  2546. #u154496_text {
  2547. border-width:0px;
  2548. word-wrap:break-word;
  2549. text-transform:none;
  2550. visibility:hidden;
  2551. }
  2552. #u154497_div {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:0px;
  2556. top:0px;
  2557. width:37px;
  2558. height:30px;
  2559. background:inherit;
  2560. background-color:rgba(255, 255, 255, 0);
  2561. border:none;
  2562. border-left:0px;
  2563. border-top:0px;
  2564. border-right:0px;
  2565. border-radius:0px;
  2566. border-bottom-right-radius:0px;
  2567. border-bottom-left-radius:0px;
  2568. -moz-box-shadow:none;
  2569. -webkit-box-shadow:none;
  2570. box-shadow:none;
  2571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2572. font-weight:400;
  2573. font-style:normal;
  2574. font-size:18px;
  2575. color:#0089FE;
  2576. text-align:right;
  2577. line-height:30px;
  2578. }
  2579. #u154497 {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:640px;
  2583. top:474px;
  2584. width:37px;
  2585. height:30px;
  2586. display:flex;
  2587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2588. font-weight:400;
  2589. font-style:normal;
  2590. font-size:18px;
  2591. color:#0089FE;
  2592. text-align:right;
  2593. line-height:30px;
  2594. }
  2595. #u154497 .text {
  2596. position:absolute;
  2597. align-self:flex-start;
  2598. padding:0px 0px 0px 0px;
  2599. box-sizing:border-box;
  2600. width:100%;
  2601. }
  2602. #u154497_text {
  2603. border-width:0px;
  2604. white-space:nowrap;
  2605. text-transform:none;
  2606. }
  2607. #u154498_img {
  2608. border-width:0px;
  2609. position:absolute;
  2610. left:0px;
  2611. top:0px;
  2612. width:433px;
  2613. height:865px;
  2614. }
  2615. #u154498 {
  2616. border-width:0px;
  2617. position:absolute;
  2618. left:926px;
  2619. top:0px;
  2620. width:433px;
  2621. height:865px;
  2622. display:flex;
  2623. }
  2624. #u154498 .text {
  2625. position:absolute;
  2626. align-self:center;
  2627. padding:2px 2px 2px 2px;
  2628. box-sizing:border-box;
  2629. width:100%;
  2630. }
  2631. #u154498_text {
  2632. border-width:0px;
  2633. word-wrap:break-word;
  2634. text-transform:none;
  2635. visibility:hidden;
  2636. }
  2637. #u154499 {
  2638. border-width:0px;
  2639. position:absolute;
  2640. left:0px;
  2641. top:0px;
  2642. width:0px;
  2643. height:0px;
  2644. }
  2645. #u154500_img {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:-5px;
  2649. top:-5px;
  2650. width:385px;
  2651. height:743px;
  2652. }
  2653. #u154500 {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:955px;
  2657. top:107px;
  2658. width:375px;
  2659. height:733px;
  2660. display:flex;
  2661. }
  2662. #u154500 .text {
  2663. position:absolute;
  2664. align-self:center;
  2665. padding:2px 2px 2px 2px;
  2666. box-sizing:border-box;
  2667. width:100%;
  2668. }
  2669. #u154500_text {
  2670. border-width:0px;
  2671. word-wrap:break-word;
  2672. text-transform:none;
  2673. visibility:hidden;
  2674. }
  2675. #u154501_img {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:-5px;
  2679. top:-5px;
  2680. width:385px;
  2681. height:292px;
  2682. }
  2683. #u154501 {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:955px;
  2687. top:558px;
  2688. width:375px;
  2689. height:282px;
  2690. display:flex;
  2691. }
  2692. #u154501 .text {
  2693. position:absolute;
  2694. align-self:center;
  2695. padding:2px 2px 2px 2px;
  2696. box-sizing:border-box;
  2697. width:100%;
  2698. }
  2699. #u154501_text {
  2700. border-width:0px;
  2701. word-wrap:break-word;
  2702. text-transform:none;
  2703. visibility:hidden;
  2704. }
  2705. #u154502_div {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:0px;
  2709. top:0px;
  2710. width:73px;
  2711. height:30px;
  2712. background:inherit;
  2713. background-color:rgba(255, 255, 255, 0);
  2714. border:none;
  2715. border-left:0px;
  2716. border-top:0px;
  2717. border-right:0px;
  2718. border-radius:0px;
  2719. border-bottom-right-radius:0px;
  2720. border-bottom-left-radius:0px;
  2721. -moz-box-shadow:none;
  2722. -webkit-box-shadow:none;
  2723. box-shadow:none;
  2724. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2725. font-weight:500;
  2726. font-style:normal;
  2727. font-size:18px;
  2728. line-height:30px;
  2729. }
  2730. #u154502 {
  2731. border-width:0px;
  2732. position:absolute;
  2733. left:975px;
  2734. top:571px;
  2735. width:73px;
  2736. height:30px;
  2737. display:flex;
  2738. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2739. font-weight:500;
  2740. font-style:normal;
  2741. font-size:18px;
  2742. line-height:30px;
  2743. }
  2744. #u154502 .text {
  2745. position:absolute;
  2746. align-self:flex-start;
  2747. padding:0px 0px 0px 0px;
  2748. box-sizing:border-box;
  2749. width:100%;
  2750. }
  2751. #u154502_text {
  2752. border-width:0px;
  2753. white-space:nowrap;
  2754. text-transform:none;
  2755. }
  2756. #u154503 {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:0px;
  2760. top:0px;
  2761. width:0px;
  2762. height:0px;
  2763. }
  2764. #u154504_div {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:0px;
  2768. top:0px;
  2769. width:375px;
  2770. height:60px;
  2771. background:inherit;
  2772. background-color:rgba(255, 255, 255, 1);
  2773. box-sizing:border-box;
  2774. border-width:1px;
  2775. border-style:solid;
  2776. border-color:rgba(242, 242, 242, 1);
  2777. border-radius:20px;
  2778. border-top-left-radius:0px;
  2779. border-top-right-radius:0px;
  2780. -moz-box-shadow:none;
  2781. -webkit-box-shadow:none;
  2782. box-shadow:none;
  2783. }
  2784. #u154504 {
  2785. border-width:0px;
  2786. position:absolute;
  2787. left:955px;
  2788. top:780px;
  2789. width:375px;
  2790. height:60px;
  2791. display:flex;
  2792. }
  2793. #u154504 .text {
  2794. position:absolute;
  2795. align-self:center;
  2796. padding:2px 2px 2px 2px;
  2797. box-sizing:border-box;
  2798. width:100%;
  2799. }
  2800. #u154504_text {
  2801. border-width:0px;
  2802. word-wrap:break-word;
  2803. text-transform:none;
  2804. visibility:hidden;
  2805. }
  2806. #u154505_div {
  2807. border-width:0px;
  2808. position:absolute;
  2809. left:0px;
  2810. top:0px;
  2811. width:160px;
  2812. height:40px;
  2813. background:inherit;
  2814. background-color:rgba(0, 137, 254, 1);
  2815. border:none;
  2816. border-radius:63px;
  2817. -moz-box-shadow:none;
  2818. -webkit-box-shadow:none;
  2819. box-shadow:none;
  2820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2821. font-weight:400;
  2822. font-style:normal;
  2823. font-size:14px;
  2824. color:#FFFFFF;
  2825. }
  2826. #u154505 {
  2827. border-width:0px;
  2828. position:absolute;
  2829. left:1150px;
  2830. top:790px;
  2831. width:160px;
  2832. height:40px;
  2833. display:flex;
  2834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2835. font-weight:400;
  2836. font-style:normal;
  2837. font-size:14px;
  2838. color:#FFFFFF;
  2839. }
  2840. #u154505 .text {
  2841. position:absolute;
  2842. align-self:center;
  2843. padding:2px 2px 2px 2px;
  2844. box-sizing:border-box;
  2845. width:100%;
  2846. }
  2847. #u154505_text {
  2848. border-width:0px;
  2849. word-wrap:break-word;
  2850. text-transform:none;
  2851. }
  2852. #u154506_div {
  2853. border-width:0px;
  2854. position:absolute;
  2855. left:0px;
  2856. top:0px;
  2857. width:160px;
  2858. height:40px;
  2859. background:inherit;
  2860. background-color:rgba(255, 255, 255, 1);
  2861. box-sizing:border-box;
  2862. border-width:1px;
  2863. border-style:solid;
  2864. border-color:rgba(121, 121, 121, 1);
  2865. border-radius:63px;
  2866. -moz-box-shadow:none;
  2867. -webkit-box-shadow:none;
  2868. box-shadow:none;
  2869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2870. font-weight:400;
  2871. font-style:normal;
  2872. font-size:14px;
  2873. }
  2874. #u154506 {
  2875. border-width:0px;
  2876. position:absolute;
  2877. left:975px;
  2878. top:790px;
  2879. width:160px;
  2880. height:40px;
  2881. display:flex;
  2882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2883. font-weight:400;
  2884. font-style:normal;
  2885. font-size:14px;
  2886. }
  2887. #u154506 .text {
  2888. position:absolute;
  2889. align-self:center;
  2890. padding:2px 2px 2px 2px;
  2891. box-sizing:border-box;
  2892. width:100%;
  2893. }
  2894. #u154506_text {
  2895. border-width:0px;
  2896. word-wrap:break-word;
  2897. text-transform:none;
  2898. }
  2899. #u154507_div {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:340px;
  2905. height:92px;
  2906. background:inherit;
  2907. background-color:rgba(255, 255, 255, 1);
  2908. box-sizing:border-box;
  2909. border-width:1px;
  2910. border-style:solid;
  2911. border-color:rgba(215, 215, 215, 1);
  2912. border-radius:4px;
  2913. -moz-box-shadow:none;
  2914. -webkit-box-shadow:none;
  2915. box-shadow:none;
  2916. }
  2917. #u154507 {
  2918. border-width:0px;
  2919. position:absolute;
  2920. left:975px;
  2921. top:611px;
  2922. width:340px;
  2923. height:92px;
  2924. display:flex;
  2925. }
  2926. #u154507 .text {
  2927. position:absolute;
  2928. align-self:center;
  2929. padding:2px 2px 2px 2px;
  2930. box-sizing:border-box;
  2931. width:100%;
  2932. }
  2933. #u154507_text {
  2934. border-width:0px;
  2935. word-wrap:break-word;
  2936. text-transform:none;
  2937. visibility:hidden;
  2938. }
  2939. #u154508_div {
  2940. border-width:0px;
  2941. position:absolute;
  2942. left:0px;
  2943. top:0px;
  2944. width:57px;
  2945. height:30px;
  2946. background:inherit;
  2947. background-color:rgba(255, 255, 255, 0);
  2948. border:none;
  2949. border-left:0px;
  2950. border-top:0px;
  2951. border-right:0px;
  2952. border-radius:0px;
  2953. border-bottom-right-radius:0px;
  2954. border-bottom-left-radius:0px;
  2955. -moz-box-shadow:none;
  2956. -webkit-box-shadow:none;
  2957. box-shadow:none;
  2958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2959. font-weight:400;
  2960. font-style:normal;
  2961. font-size:14px;
  2962. color:#AAAAAA;
  2963. line-height:30px;
  2964. }
  2965. #u154508 {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:984px;
  2969. top:619px;
  2970. width:57px;
  2971. height:30px;
  2972. display:flex;
  2973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2974. font-weight:400;
  2975. font-style:normal;
  2976. font-size:14px;
  2977. color:#AAAAAA;
  2978. line-height:30px;
  2979. }
  2980. #u154508 .text {
  2981. position:absolute;
  2982. align-self:center;
  2983. padding:0px 0px 0px 0px;
  2984. box-sizing:border-box;
  2985. width:100%;
  2986. }
  2987. #u154508_text {
  2988. border-width:0px;
  2989. white-space:nowrap;
  2990. text-transform:none;
  2991. }
  2992. #u154509_div {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:0px;
  2996. top:0px;
  2997. width:43px;
  2998. height:17px;
  2999. background:inherit;
  3000. background-color:rgba(245, 154, 35, 1);
  3001. border:none;
  3002. border-radius:19px;
  3003. -moz-box-shadow:none;
  3004. -webkit-box-shadow:none;
  3005. box-shadow:none;
  3006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3007. font-weight:400;
  3008. font-style:normal;
  3009. font-size:12px;
  3010. color:#FFFFFF;
  3011. text-align:center;
  3012. }
  3013. #u154509 {
  3014. border-width:0px;
  3015. position:absolute;
  3016. left:341px;
  3017. top:124px;
  3018. width:43px;
  3019. height:17px;
  3020. display:flex;
  3021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3022. font-weight:400;
  3023. font-style:normal;
  3024. font-size:12px;
  3025. color:#FFFFFF;
  3026. text-align:center;
  3027. }
  3028. #u154509 .text {
  3029. position:absolute;
  3030. align-self:flex-start;
  3031. padding:0px 0px 0px 0px;
  3032. box-sizing:border-box;
  3033. width:100%;
  3034. }
  3035. #u154509_text {
  3036. border-width:0px;
  3037. word-wrap:break-word;
  3038. text-transform:none;
  3039. }