styles.css 57 KB

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