styles.css 52 KB

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