styles.css 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988
  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. #u37794 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u37796_img {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. }
  35. #u37796 {
  36. border-width:0px;
  37. position:absolute;
  38. left:0px;
  39. top:0px;
  40. width:433px;
  41. height:865px;
  42. display:flex;
  43. }
  44. #u37796 .text {
  45. position:absolute;
  46. align-self:center;
  47. padding:2px 2px 2px 2px;
  48. box-sizing:border-box;
  49. width:100%;
  50. }
  51. #u37796_text {
  52. border-width:0px;
  53. word-wrap:break-word;
  54. text-transform:none;
  55. visibility:hidden;
  56. }
  57. #u37797_div {
  58. border-width:0px;
  59. position:absolute;
  60. left:0px;
  61. top:0px;
  62. width:375px;
  63. height:40px;
  64. background:inherit;
  65. background-color:rgba(255, 255, 255, 1);
  66. border:none;
  67. border-left:0px;
  68. border-top:0px;
  69. border-right:0px;
  70. border-radius:0px;
  71. border-bottom-right-radius:0px;
  72. border-bottom-left-radius:0px;
  73. -moz-box-shadow:none;
  74. -webkit-box-shadow:none;
  75. box-shadow:none;
  76. }
  77. #u37797 {
  78. border-width:0px;
  79. position:absolute;
  80. left:29px;
  81. top:67px;
  82. width:375px;
  83. height:40px;
  84. display:flex;
  85. }
  86. #u37797 .text {
  87. position:absolute;
  88. align-self:center;
  89. padding:2px 2px 2px 2px;
  90. box-sizing:border-box;
  91. width:100%;
  92. }
  93. #u37797_text {
  94. border-width:0px;
  95. word-wrap:break-word;
  96. text-transform:none;
  97. visibility:hidden;
  98. }
  99. #u37798 {
  100. border-width:0px;
  101. position:absolute;
  102. left:0px;
  103. top:0px;
  104. width:0px;
  105. height:0px;
  106. }
  107. #u37799_div {
  108. border-width:0px;
  109. position:absolute;
  110. left:0px;
  111. top:0px;
  112. width:88px;
  113. height:32px;
  114. background:inherit;
  115. background-color:rgba(255, 255, 255, 1);
  116. box-sizing:border-box;
  117. border-width:1px;
  118. border-style:solid;
  119. border-color:rgba(242, 242, 242, 1);
  120. border-radius:33px;
  121. -moz-box-shadow:none;
  122. -webkit-box-shadow:none;
  123. box-shadow:none;
  124. }
  125. #u37799 {
  126. border-width:0px;
  127. position:absolute;
  128. left:309px;
  129. top:71px;
  130. width:88px;
  131. height:32px;
  132. display:flex;
  133. }
  134. #u37799 .text {
  135. position:absolute;
  136. align-self:center;
  137. padding:2px 2px 2px 2px;
  138. box-sizing:border-box;
  139. width:100%;
  140. }
  141. #u37799_text {
  142. border-width:0px;
  143. word-wrap:break-word;
  144. text-transform:none;
  145. visibility:hidden;
  146. }
  147. #u37800 {
  148. border-width:0px;
  149. position:absolute;
  150. left:0px;
  151. top:0px;
  152. width:0px;
  153. height:0px;
  154. }
  155. #u37801_img {
  156. border-width:0px;
  157. position:absolute;
  158. left:0px;
  159. top:0px;
  160. width:18px;
  161. height:18px;
  162. }
  163. #u37801 {
  164. border-width:0px;
  165. position:absolute;
  166. left:372px;
  167. top:78px;
  168. width:18px;
  169. height:18px;
  170. display:flex;
  171. }
  172. #u37801 .text {
  173. position:absolute;
  174. align-self:center;
  175. padding:2px 2px 2px 2px;
  176. box-sizing:border-box;
  177. width:100%;
  178. }
  179. #u37801_text {
  180. border-width:0px;
  181. word-wrap:break-word;
  182. text-transform:none;
  183. visibility:hidden;
  184. }
  185. #u37802_img {
  186. border-width:0px;
  187. position:absolute;
  188. left:0px;
  189. top:0px;
  190. width:6px;
  191. height:6px;
  192. }
  193. #u37802 {
  194. border-width:0px;
  195. position:absolute;
  196. left:378px;
  197. top:84px;
  198. width:6px;
  199. height:6px;
  200. display:flex;
  201. }
  202. #u37802 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u37802_text {
  210. border-width:0px;
  211. word-wrap:break-word;
  212. text-transform:none;
  213. visibility:hidden;
  214. }
  215. #u37803 {
  216. border-width:0px;
  217. position:absolute;
  218. left:0px;
  219. top:0px;
  220. width:0px;
  221. height:0px;
  222. }
  223. #u37804_img {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:5px;
  229. height:5px;
  230. }
  231. #u37804 {
  232. border-width:0px;
  233. position:absolute;
  234. left:323px;
  235. top:85px;
  236. width:5px;
  237. height:5px;
  238. display:flex;
  239. }
  240. #u37804 .text {
  241. position:absolute;
  242. align-self:center;
  243. padding:2px 2px 2px 2px;
  244. box-sizing:border-box;
  245. width:100%;
  246. }
  247. #u37804_text {
  248. border-width:0px;
  249. word-wrap:break-word;
  250. text-transform:none;
  251. visibility:hidden;
  252. }
  253. #u37805_img {
  254. border-width:0px;
  255. position:absolute;
  256. left:0px;
  257. top:0px;
  258. width:5px;
  259. height:5px;
  260. }
  261. #u37805 {
  262. border-width:0px;
  263. position:absolute;
  264. left:339px;
  265. top:85px;
  266. width:5px;
  267. height:5px;
  268. display:flex;
  269. }
  270. #u37805 .text {
  271. position:absolute;
  272. align-self:center;
  273. padding:2px 2px 2px 2px;
  274. box-sizing:border-box;
  275. width:100%;
  276. }
  277. #u37805_text {
  278. border-width:0px;
  279. word-wrap:break-word;
  280. text-transform:none;
  281. visibility:hidden;
  282. }
  283. #u37806_img {
  284. border-width:0px;
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:7px;
  289. height:7px;
  290. }
  291. #u37806 {
  292. border-width:0px;
  293. position:absolute;
  294. left:330px;
  295. top:84px;
  296. width:7px;
  297. height:7px;
  298. display:flex;
  299. }
  300. #u37806 .text {
  301. position:absolute;
  302. align-self:center;
  303. padding:2px 2px 2px 2px;
  304. box-sizing:border-box;
  305. width:100%;
  306. }
  307. #u37806_text {
  308. border-width:0px;
  309. word-wrap:break-word;
  310. text-transform:none;
  311. visibility:hidden;
  312. }
  313. #u37807_img {
  314. border-width:0px;
  315. position:absolute;
  316. left:0px;
  317. top:0px;
  318. width:19px;
  319. height:2px;
  320. }
  321. #u37807 {
  322. border-width:0px;
  323. position:absolute;
  324. left:347px;
  325. top:87px;
  326. width:18px;
  327. height:1px;
  328. display:flex;
  329. -webkit-transform:rotate(90deg);
  330. -moz-transform:rotate(90deg);
  331. -ms-transform:rotate(90deg);
  332. transform:rotate(90deg);
  333. }
  334. #u37807 .text {
  335. position:absolute;
  336. align-self:center;
  337. padding:2px 2px 2px 2px;
  338. box-sizing:border-box;
  339. width:100%;
  340. }
  341. #u37807_text {
  342. border-width:0px;
  343. word-wrap:break-word;
  344. text-transform:none;
  345. visibility:hidden;
  346. }
  347. #u37808_img {
  348. border-width:0px;
  349. position:absolute;
  350. left:0px;
  351. top:0px;
  352. width:375px;
  353. height:44px;
  354. }
  355. #u37808 {
  356. border-width:0px;
  357. position:absolute;
  358. left:29px;
  359. top:24px;
  360. width:375px;
  361. height:44px;
  362. display:flex;
  363. }
  364. #u37808 .text {
  365. position:absolute;
  366. align-self:center;
  367. padding:2px 2px 2px 2px;
  368. box-sizing:border-box;
  369. width:100%;
  370. }
  371. #u37808_text {
  372. border-width:0px;
  373. word-wrap:break-word;
  374. text-transform:none;
  375. visibility:hidden;
  376. }
  377. #u37809_div {
  378. border-width:0px;
  379. position:absolute;
  380. left:0px;
  381. top:0px;
  382. width:375px;
  383. height:50px;
  384. background:inherit;
  385. background-color:rgba(255, 255, 255, 1);
  386. box-sizing:border-box;
  387. border-width:1px;
  388. border-style:solid;
  389. border-color:rgba(242, 242, 242, 1);
  390. border-radius:26px;
  391. border-top-left-radius:0px;
  392. border-top-right-radius:0px;
  393. -moz-box-shadow:none;
  394. -webkit-box-shadow:none;
  395. box-shadow:none;
  396. }
  397. #u37809 {
  398. border-width:0px;
  399. position:absolute;
  400. left:29px;
  401. top:788px;
  402. width:375px;
  403. height:50px;
  404. display:flex;
  405. }
  406. #u37809 .text {
  407. position:absolute;
  408. align-self:center;
  409. padding:2px 2px 2px 2px;
  410. box-sizing:border-box;
  411. width:100%;
  412. }
  413. #u37809_text {
  414. border-width:0px;
  415. word-wrap:break-word;
  416. text-transform:none;
  417. visibility:hidden;
  418. }
  419. #u37810 {
  420. border-width:0px;
  421. position:absolute;
  422. left:0px;
  423. top:0px;
  424. width:0px;
  425. height:0px;
  426. }
  427. #u37811_img {
  428. border-width:0px;
  429. position:absolute;
  430. left:0px;
  431. top:0px;
  432. width:24px;
  433. height:24px;
  434. }
  435. #u37811 {
  436. border-width:0px;
  437. position:absolute;
  438. left:69px;
  439. top:792px;
  440. width:24px;
  441. height:24px;
  442. display:flex;
  443. font-size:8px;
  444. }
  445. #u37811 .text {
  446. position:absolute;
  447. align-self:center;
  448. padding:2px 2px 2px 2px;
  449. box-sizing:border-box;
  450. width:100%;
  451. }
  452. #u37811_text {
  453. border-width:0px;
  454. word-wrap:break-word;
  455. text-transform:none;
  456. }
  457. #u37812_div {
  458. border-width:0px;
  459. position:absolute;
  460. left:0px;
  461. top:0px;
  462. width:25px;
  463. height:17px;
  464. background:inherit;
  465. background-color:rgba(255, 255, 255, 0);
  466. border:none;
  467. border-radius:0px;
  468. -moz-box-shadow:none;
  469. -webkit-box-shadow:none;
  470. box-shadow:none;
  471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  472. font-weight:400;
  473. font-style:normal;
  474. font-size:12px;
  475. }
  476. #u37812 {
  477. border-width:0px;
  478. position:absolute;
  479. left:69px;
  480. top:817px;
  481. width:25px;
  482. height:17px;
  483. display:flex;
  484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  485. font-weight:400;
  486. font-style:normal;
  487. font-size:12px;
  488. }
  489. #u37812 .text {
  490. position:absolute;
  491. align-self:flex-start;
  492. padding:0px 0px 0px 0px;
  493. box-sizing:border-box;
  494. width:100%;
  495. }
  496. #u37812_text {
  497. border-width:0px;
  498. white-space:nowrap;
  499. text-transform:none;
  500. }
  501. #u37813 {
  502. border-width:0px;
  503. position:absolute;
  504. left:0px;
  505. top:0px;
  506. width:0px;
  507. height:0px;
  508. }
  509. #u37814_img {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:24px;
  515. height:24px;
  516. }
  517. #u37814 {
  518. border-width:0px;
  519. position:absolute;
  520. left:339px;
  521. top:794px;
  522. width:24px;
  523. height:24px;
  524. display:flex;
  525. font-size:8px;
  526. }
  527. #u37814 .text {
  528. position:absolute;
  529. align-self:center;
  530. padding:2px 2px 2px 2px;
  531. box-sizing:border-box;
  532. width:100%;
  533. }
  534. #u37814_text {
  535. border-width:0px;
  536. word-wrap:break-word;
  537. text-transform:none;
  538. }
  539. #u37815_div {
  540. border-width:0px;
  541. position:absolute;
  542. left:0px;
  543. top:0px;
  544. width:25px;
  545. height:17px;
  546. background:inherit;
  547. background-color:rgba(255, 255, 255, 0);
  548. border:none;
  549. border-radius:0px;
  550. -moz-box-shadow:none;
  551. -webkit-box-shadow:none;
  552. box-shadow:none;
  553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  554. font-weight:400;
  555. font-style:normal;
  556. font-size:12px;
  557. }
  558. #u37815 {
  559. border-width:0px;
  560. position:absolute;
  561. left:339px;
  562. top:819px;
  563. width:25px;
  564. height:17px;
  565. display:flex;
  566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  567. font-weight:400;
  568. font-style:normal;
  569. font-size:12px;
  570. }
  571. #u37815 .text {
  572. position:absolute;
  573. align-self:flex-start;
  574. padding:0px 0px 0px 0px;
  575. box-sizing:border-box;
  576. width:100%;
  577. }
  578. #u37815_text {
  579. border-width:0px;
  580. white-space:nowrap;
  581. text-transform:none;
  582. }
  583. #u37816_div {
  584. border-width:0px;
  585. position:absolute;
  586. left:0px;
  587. top:0px;
  588. width:375px;
  589. height:681px;
  590. background:inherit;
  591. background-color:rgba(242, 242, 242, 0.462745098039216);
  592. border:none;
  593. border-radius:0px;
  594. -moz-box-shadow:none;
  595. -webkit-box-shadow:none;
  596. box-shadow:none;
  597. }
  598. #u37816 {
  599. border-width:0px;
  600. position:absolute;
  601. left:29px;
  602. top:107px;
  603. width:375px;
  604. height:681px;
  605. display:flex;
  606. }
  607. #u37816 .text {
  608. position:absolute;
  609. align-self:center;
  610. padding:2px 2px 2px 2px;
  611. box-sizing:border-box;
  612. width:100%;
  613. }
  614. #u37816_text {
  615. border-width:0px;
  616. word-wrap:break-word;
  617. text-transform:none;
  618. visibility:hidden;
  619. }
  620. #u37817 {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:0px;
  626. height:0px;
  627. }
  628. #u37818_img {
  629. border-width:0px;
  630. position:absolute;
  631. left:0px;
  632. top:0px;
  633. width:24px;
  634. height:24px;
  635. }
  636. #u37818 {
  637. border-width:0px;
  638. position:absolute;
  639. left:251px;
  640. top:792px;
  641. width:24px;
  642. height:24px;
  643. display:flex;
  644. font-size:8px;
  645. }
  646. #u37818 .text {
  647. position:absolute;
  648. align-self:center;
  649. padding:2px 2px 2px 2px;
  650. box-sizing:border-box;
  651. width:100%;
  652. }
  653. #u37818_text {
  654. border-width:0px;
  655. word-wrap:break-word;
  656. text-transform:none;
  657. }
  658. #u37819_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:37px;
  664. height:17px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:12px;
  676. }
  677. #u37819 {
  678. border-width:0px;
  679. position:absolute;
  680. left:245px;
  681. top:817px;
  682. width:37px;
  683. height:17px;
  684. display:flex;
  685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  686. font-weight:400;
  687. font-style:normal;
  688. font-size:12px;
  689. }
  690. #u37819 .text {
  691. position:absolute;
  692. align-self:flex-start;
  693. padding:0px 0px 0px 0px;
  694. box-sizing:border-box;
  695. width:100%;
  696. }
  697. #u37819_text {
  698. border-width:0px;
  699. white-space:nowrap;
  700. text-transform:none;
  701. }
  702. #u37820 {
  703. border-width:0px;
  704. position:absolute;
  705. left:0px;
  706. top:0px;
  707. width:0px;
  708. height:0px;
  709. }
  710. #u37821_img {
  711. border-width:0px;
  712. position:absolute;
  713. left:0px;
  714. top:0px;
  715. width:24px;
  716. height:24px;
  717. }
  718. #u37821 {
  719. border-width:0px;
  720. position:absolute;
  721. left:157px;
  722. top:792px;
  723. width:24px;
  724. height:24px;
  725. display:flex;
  726. font-size:8px;
  727. }
  728. #u37821 .text {
  729. position:absolute;
  730. align-self:center;
  731. padding:2px 2px 2px 2px;
  732. box-sizing:border-box;
  733. width:100%;
  734. }
  735. #u37821_text {
  736. border-width:0px;
  737. word-wrap:break-word;
  738. text-transform:none;
  739. }
  740. #u37822_div {
  741. border-width:0px;
  742. position:absolute;
  743. left:0px;
  744. top:0px;
  745. width:37px;
  746. height:17px;
  747. background:inherit;
  748. background-color:rgba(255, 255, 255, 0);
  749. border:none;
  750. border-radius:0px;
  751. -moz-box-shadow:none;
  752. -webkit-box-shadow:none;
  753. box-shadow:none;
  754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  755. font-weight:400;
  756. font-style:normal;
  757. font-size:12px;
  758. }
  759. #u37822 {
  760. border-width:0px;
  761. position:absolute;
  762. left:151px;
  763. top:817px;
  764. width:37px;
  765. height:17px;
  766. display:flex;
  767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  768. font-weight:400;
  769. font-style:normal;
  770. font-size:12px;
  771. }
  772. #u37822 .text {
  773. position:absolute;
  774. align-self:flex-start;
  775. padding:0px 0px 0px 0px;
  776. box-sizing:border-box;
  777. width:100%;
  778. }
  779. #u37822_text {
  780. border-width:0px;
  781. white-space:nowrap;
  782. text-transform:none;
  783. }
  784. #u37823_div {
  785. border-width:0px;
  786. position:absolute;
  787. left:0px;
  788. top:0px;
  789. width:375px;
  790. height:732px;
  791. background:inherit;
  792. background-color:rgba(242, 242, 242, 0.996078431372549);
  793. border:none;
  794. border-top:0px;
  795. border-radius:28px;
  796. border-top-left-radius:0px;
  797. border-top-right-radius:0px;
  798. -moz-box-shadow:none;
  799. -webkit-box-shadow:none;
  800. box-shadow:none;
  801. }
  802. #u37823 {
  803. border-width:0px;
  804. position:absolute;
  805. left:29px;
  806. top:107px;
  807. width:375px;
  808. height:732px;
  809. display:flex;
  810. }
  811. #u37823 .text {
  812. position:absolute;
  813. align-self:center;
  814. padding:2px 2px 2px 2px;
  815. box-sizing:border-box;
  816. width:100%;
  817. }
  818. #u37823_text {
  819. border-width:0px;
  820. word-wrap:break-word;
  821. text-transform:none;
  822. visibility:hidden;
  823. }
  824. #u37824_div {
  825. border-width:0px;
  826. position:absolute;
  827. left:0px;
  828. top:0px;
  829. width:375px;
  830. height:50px;
  831. background:inherit;
  832. background-color:rgba(255, 255, 255, 1);
  833. border:none;
  834. border-left:0px;
  835. border-top:0px;
  836. border-right:0px;
  837. border-radius:0px;
  838. border-bottom-right-radius:0px;
  839. border-bottom-left-radius:0px;
  840. -moz-box-shadow:none;
  841. -webkit-box-shadow:none;
  842. box-shadow:none;
  843. }
  844. #u37824 {
  845. border-width:0px;
  846. position:absolute;
  847. left:29px;
  848. top:107px;
  849. width:375px;
  850. height:50px;
  851. display:flex;
  852. }
  853. #u37824 .text {
  854. position:absolute;
  855. align-self:center;
  856. padding:2px 2px 2px 2px;
  857. box-sizing:border-box;
  858. width:100%;
  859. }
  860. #u37824_text {
  861. border-width:0px;
  862. word-wrap:break-word;
  863. text-transform:none;
  864. visibility:hidden;
  865. }
  866. #u37825_div {
  867. border-width:0px;
  868. position:absolute;
  869. left:0px;
  870. top:0px;
  871. width:375px;
  872. height:90px;
  873. background:inherit;
  874. background-color:rgba(255, 255, 255, 1);
  875. box-sizing:border-box;
  876. border-width:1px;
  877. border-style:solid;
  878. border-color:rgba(215, 215, 215, 1);
  879. border-left:0px;
  880. border-top:0px;
  881. border-right:0px;
  882. border-radius:0px;
  883. border-bottom-right-radius:0px;
  884. border-bottom-left-radius:0px;
  885. -moz-box-shadow:none;
  886. -webkit-box-shadow:none;
  887. box-shadow:none;
  888. }
  889. #u37825 {
  890. border-width:0px;
  891. position:absolute;
  892. left:29px;
  893. top:67px;
  894. width:375px;
  895. height:90px;
  896. display:flex;
  897. }
  898. #u37825 .text {
  899. position:absolute;
  900. align-self:center;
  901. padding:2px 2px 2px 2px;
  902. box-sizing:border-box;
  903. width:100%;
  904. }
  905. #u37825_text {
  906. border-width:0px;
  907. word-wrap:break-word;
  908. text-transform:none;
  909. visibility:hidden;
  910. }
  911. #u37826_img {
  912. border-width:0px;
  913. position:absolute;
  914. left:0px;
  915. top:0px;
  916. width:375px;
  917. height:44px;
  918. }
  919. #u37826 {
  920. border-width:0px;
  921. position:absolute;
  922. left:29px;
  923. top:24px;
  924. width:375px;
  925. height:44px;
  926. display:flex;
  927. }
  928. #u37826 .text {
  929. position:absolute;
  930. align-self:center;
  931. padding:2px 2px 2px 2px;
  932. box-sizing:border-box;
  933. width:100%;
  934. }
  935. #u37826_text {
  936. border-width:0px;
  937. word-wrap:break-word;
  938. text-transform:none;
  939. visibility:hidden;
  940. }
  941. #u37827 {
  942. border-width:0px;
  943. position:absolute;
  944. left:0px;
  945. top:0px;
  946. width:0px;
  947. height:0px;
  948. }
  949. #u37828_div {
  950. border-width:0px;
  951. position:absolute;
  952. left:0px;
  953. top:0px;
  954. width:88px;
  955. height:32px;
  956. background:inherit;
  957. background-color:rgba(255, 255, 255, 1);
  958. box-sizing:border-box;
  959. border-width:1px;
  960. border-style:solid;
  961. border-color:rgba(242, 242, 242, 1);
  962. border-radius:33px;
  963. -moz-box-shadow:none;
  964. -webkit-box-shadow:none;
  965. box-shadow:none;
  966. }
  967. #u37828 {
  968. border-width:0px;
  969. position:absolute;
  970. left:309px;
  971. top:71px;
  972. width:88px;
  973. height:32px;
  974. display:flex;
  975. }
  976. #u37828 .text {
  977. position:absolute;
  978. align-self:center;
  979. padding:2px 2px 2px 2px;
  980. box-sizing:border-box;
  981. width:100%;
  982. }
  983. #u37828_text {
  984. border-width:0px;
  985. word-wrap:break-word;
  986. text-transform:none;
  987. visibility:hidden;
  988. }
  989. #u37829 {
  990. border-width:0px;
  991. position:absolute;
  992. left:0px;
  993. top:0px;
  994. width:0px;
  995. height:0px;
  996. }
  997. #u37830_img {
  998. border-width:0px;
  999. position:absolute;
  1000. left:0px;
  1001. top:0px;
  1002. width:18px;
  1003. height:18px;
  1004. }
  1005. #u37830 {
  1006. border-width:0px;
  1007. position:absolute;
  1008. left:372px;
  1009. top:78px;
  1010. width:18px;
  1011. height:18px;
  1012. display:flex;
  1013. }
  1014. #u37830 .text {
  1015. position:absolute;
  1016. align-self:center;
  1017. padding:2px 2px 2px 2px;
  1018. box-sizing:border-box;
  1019. width:100%;
  1020. }
  1021. #u37830_text {
  1022. border-width:0px;
  1023. word-wrap:break-word;
  1024. text-transform:none;
  1025. visibility:hidden;
  1026. }
  1027. #u37831_img {
  1028. border-width:0px;
  1029. position:absolute;
  1030. left:0px;
  1031. top:0px;
  1032. width:6px;
  1033. height:6px;
  1034. }
  1035. #u37831 {
  1036. border-width:0px;
  1037. position:absolute;
  1038. left:378px;
  1039. top:84px;
  1040. width:6px;
  1041. height:6px;
  1042. display:flex;
  1043. }
  1044. #u37831 .text {
  1045. position:absolute;
  1046. align-self:center;
  1047. padding:2px 2px 2px 2px;
  1048. box-sizing:border-box;
  1049. width:100%;
  1050. }
  1051. #u37831_text {
  1052. border-width:0px;
  1053. word-wrap:break-word;
  1054. text-transform:none;
  1055. visibility:hidden;
  1056. }
  1057. #u37832 {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:0px;
  1063. height:0px;
  1064. }
  1065. #u37833_img {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:0px;
  1069. top:0px;
  1070. width:5px;
  1071. height:5px;
  1072. }
  1073. #u37833 {
  1074. border-width:0px;
  1075. position:absolute;
  1076. left:323px;
  1077. top:85px;
  1078. width:5px;
  1079. height:5px;
  1080. display:flex;
  1081. }
  1082. #u37833 .text {
  1083. position:absolute;
  1084. align-self:center;
  1085. padding:2px 2px 2px 2px;
  1086. box-sizing:border-box;
  1087. width:100%;
  1088. }
  1089. #u37833_text {
  1090. border-width:0px;
  1091. word-wrap:break-word;
  1092. text-transform:none;
  1093. visibility:hidden;
  1094. }
  1095. #u37834_img {
  1096. border-width:0px;
  1097. position:absolute;
  1098. left:0px;
  1099. top:0px;
  1100. width:5px;
  1101. height:5px;
  1102. }
  1103. #u37834 {
  1104. border-width:0px;
  1105. position:absolute;
  1106. left:339px;
  1107. top:85px;
  1108. width:5px;
  1109. height:5px;
  1110. display:flex;
  1111. }
  1112. #u37834 .text {
  1113. position:absolute;
  1114. align-self:center;
  1115. padding:2px 2px 2px 2px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u37834_text {
  1120. border-width:0px;
  1121. word-wrap:break-word;
  1122. text-transform:none;
  1123. visibility:hidden;
  1124. }
  1125. #u37835_img {
  1126. border-width:0px;
  1127. position:absolute;
  1128. left:0px;
  1129. top:0px;
  1130. width:7px;
  1131. height:7px;
  1132. }
  1133. #u37835 {
  1134. border-width:0px;
  1135. position:absolute;
  1136. left:330px;
  1137. top:84px;
  1138. width:7px;
  1139. height:7px;
  1140. display:flex;
  1141. }
  1142. #u37835 .text {
  1143. position:absolute;
  1144. align-self:center;
  1145. padding:2px 2px 2px 2px;
  1146. box-sizing:border-box;
  1147. width:100%;
  1148. }
  1149. #u37835_text {
  1150. border-width:0px;
  1151. word-wrap:break-word;
  1152. text-transform:none;
  1153. visibility:hidden;
  1154. }
  1155. #u37836_img {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:0px;
  1159. top:0px;
  1160. width:19px;
  1161. height:2px;
  1162. }
  1163. #u37836 {
  1164. border-width:0px;
  1165. position:absolute;
  1166. left:347px;
  1167. top:87px;
  1168. width:18px;
  1169. height:1px;
  1170. display:flex;
  1171. -webkit-transform:rotate(90deg);
  1172. -moz-transform:rotate(90deg);
  1173. -ms-transform:rotate(90deg);
  1174. transform:rotate(90deg);
  1175. }
  1176. #u37836 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u37836_text {
  1184. border-width:0px;
  1185. word-wrap:break-word;
  1186. text-transform:none;
  1187. visibility:hidden;
  1188. }
  1189. #u37837_div {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:0px;
  1193. top:0px;
  1194. width:73px;
  1195. height:25px;
  1196. background:inherit;
  1197. background-color:rgba(255, 255, 255, 0);
  1198. border:none;
  1199. border-radius:0px;
  1200. -moz-box-shadow:none;
  1201. -webkit-box-shadow:none;
  1202. box-shadow:none;
  1203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1204. font-weight:400;
  1205. font-style:normal;
  1206. font-size:18px;
  1207. color:#000000;
  1208. }
  1209. #u37837 {
  1210. border-width:0px;
  1211. position:absolute;
  1212. left:50px;
  1213. top:115px;
  1214. width:73px;
  1215. height:25px;
  1216. display:flex;
  1217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1218. font-weight:400;
  1219. font-style:normal;
  1220. font-size:18px;
  1221. color:#000000;
  1222. }
  1223. #u37837 .text {
  1224. position:absolute;
  1225. align-self:flex-start;
  1226. padding:0px 0px 0px 0px;
  1227. box-sizing:border-box;
  1228. width:100%;
  1229. }
  1230. #u37837_text {
  1231. border-width:0px;
  1232. white-space:nowrap;
  1233. text-transform:none;
  1234. }
  1235. #u37838_div {
  1236. border-width:0px;
  1237. position:absolute;
  1238. left:0px;
  1239. top:0px;
  1240. width:12px;
  1241. height:12px;
  1242. background:inherit;
  1243. background-color:rgba(255, 255, 255, 0);
  1244. box-sizing:border-box;
  1245. border-width:2px;
  1246. border-style:solid;
  1247. border-color:rgba(51, 51, 51, 1);
  1248. border-right:0px;
  1249. border-bottom:0px;
  1250. border-radius:0px;
  1251. border-top-right-radius:0px;
  1252. border-bottom-left-radius:0px;
  1253. -moz-box-shadow:none;
  1254. -webkit-box-shadow:none;
  1255. box-shadow:none;
  1256. }
  1257. #u37838 {
  1258. border-width:0px;
  1259. position:absolute;
  1260. left:44px;
  1261. top:81px;
  1262. width:12px;
  1263. height:12px;
  1264. display:flex;
  1265. -webkit-transform:rotate(315deg);
  1266. -moz-transform:rotate(315deg);
  1267. -ms-transform:rotate(315deg);
  1268. transform:rotate(315deg);
  1269. }
  1270. #u37838 .text {
  1271. position:absolute;
  1272. align-self:center;
  1273. padding:2px 2px 2px 2px;
  1274. box-sizing:border-box;
  1275. width:100%;
  1276. }
  1277. #u37838_text {
  1278. border-width:0px;
  1279. word-wrap:break-word;
  1280. text-transform:none;
  1281. visibility:hidden;
  1282. }
  1283. #u37839 {
  1284. border-width:0px;
  1285. position:absolute;
  1286. left:0px;
  1287. top:0px;
  1288. width:0px;
  1289. height:0px;
  1290. }
  1291. #u37840_div {
  1292. border-width:0px;
  1293. position:absolute;
  1294. left:0px;
  1295. top:0px;
  1296. width:375px;
  1297. height:80px;
  1298. background:inherit;
  1299. background-color:rgba(255, 255, 255, 1);
  1300. border:none;
  1301. border-radius:0px;
  1302. -moz-box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  1303. -webkit-box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  1304. box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  1305. }
  1306. #u37840 {
  1307. border-width:0px;
  1308. position:absolute;
  1309. left:29px;
  1310. top:167px;
  1311. width:375px;
  1312. height:80px;
  1313. display:flex;
  1314. }
  1315. #u37840 .text {
  1316. position:absolute;
  1317. align-self:center;
  1318. padding:2px 2px 2px 2px;
  1319. box-sizing:border-box;
  1320. width:100%;
  1321. }
  1322. #u37840_text {
  1323. border-width:0px;
  1324. word-wrap:break-word;
  1325. text-transform:none;
  1326. visibility:hidden;
  1327. }
  1328. #u37841 {
  1329. border-width:0px;
  1330. position:absolute;
  1331. left:0px;
  1332. top:0px;
  1333. width:0px;
  1334. height:0px;
  1335. }
  1336. #u37842_div {
  1337. border-width:0px;
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:65px;
  1342. height:22px;
  1343. background:inherit;
  1344. background-color:rgba(255, 255, 255, 0);
  1345. border:none;
  1346. border-radius:0px;
  1347. -moz-box-shadow:none;
  1348. -webkit-box-shadow:none;
  1349. box-shadow:none;
  1350. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1351. font-weight:500;
  1352. font-style:normal;
  1353. font-size:16px;
  1354. }
  1355. #u37842 {
  1356. border-width:0px;
  1357. position:absolute;
  1358. left:111px;
  1359. top:186px;
  1360. width:65px;
  1361. height:22px;
  1362. display:flex;
  1363. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1364. font-weight:500;
  1365. font-style:normal;
  1366. font-size:16px;
  1367. }
  1368. #u37842 .text {
  1369. position:absolute;
  1370. align-self:flex-start;
  1371. padding:0px 0px 0px 0px;
  1372. box-sizing:border-box;
  1373. width:100%;
  1374. }
  1375. #u37842_text {
  1376. border-width:0px;
  1377. white-space:nowrap;
  1378. text-transform:none;
  1379. }
  1380. #u37843_div {
  1381. border-width:0px;
  1382. position:absolute;
  1383. left:0px;
  1384. top:0px;
  1385. width:133px;
  1386. height:17px;
  1387. background:inherit;
  1388. background-color:rgba(255, 255, 255, 0);
  1389. border:none;
  1390. border-radius:0px;
  1391. -moz-box-shadow:none;
  1392. -webkit-box-shadow:none;
  1393. box-shadow:none;
  1394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1395. font-weight:400;
  1396. font-style:normal;
  1397. font-size:12px;
  1398. color:#7F7F7F;
  1399. }
  1400. #u37843 {
  1401. border-width:0px;
  1402. position:absolute;
  1403. left:111px;
  1404. top:213px;
  1405. width:133px;
  1406. height:17px;
  1407. display:flex;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. font-size:12px;
  1412. color:#7F7F7F;
  1413. }
  1414. #u37843 .text {
  1415. position:absolute;
  1416. align-self:flex-start;
  1417. padding:0px 0px 0px 0px;
  1418. box-sizing:border-box;
  1419. width:100%;
  1420. }
  1421. #u37843_text {
  1422. border-width:0px;
  1423. white-space:nowrap;
  1424. text-transform:none;
  1425. }
  1426. #u37844_img {
  1427. border-width:0px;
  1428. position:absolute;
  1429. left:0px;
  1430. top:0px;
  1431. width:50px;
  1432. height:50px;
  1433. }
  1434. #u37844 {
  1435. border-width:0px;
  1436. position:absolute;
  1437. left:50px;
  1438. top:182px;
  1439. width:50px;
  1440. height:50px;
  1441. display:flex;
  1442. color:#FFFFFF;
  1443. }
  1444. #u37844 .text {
  1445. position:absolute;
  1446. align-self:center;
  1447. padding:2px 2px 2px 2px;
  1448. box-sizing:border-box;
  1449. width:100%;
  1450. }
  1451. #u37844_text {
  1452. border-width:0px;
  1453. word-wrap:break-word;
  1454. text-transform:none;
  1455. }
  1456. #u37845_div {
  1457. border-width:0px;
  1458. position:absolute;
  1459. left:0px;
  1460. top:0px;
  1461. width:15px;
  1462. height:11px;
  1463. background:inherit;
  1464. background-color:rgba(217, 0, 27, 1);
  1465. border:none;
  1466. border-radius:4px;
  1467. -moz-box-shadow:none;
  1468. -webkit-box-shadow:none;
  1469. box-shadow:none;
  1470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1471. font-weight:400;
  1472. font-style:normal;
  1473. font-size:8px;
  1474. color:#FFFFFF;
  1475. text-align:center;
  1476. }
  1477. #u37845 {
  1478. border-width:0px;
  1479. position:absolute;
  1480. left:90px;
  1481. top:184px;
  1482. width:15px;
  1483. height:11px;
  1484. display:flex;
  1485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1486. font-weight:400;
  1487. font-style:normal;
  1488. font-size:8px;
  1489. color:#FFFFFF;
  1490. text-align:center;
  1491. }
  1492. #u37845 .text {
  1493. position:absolute;
  1494. align-self:flex-start;
  1495. padding:0px 0px 0px 0px;
  1496. box-sizing:border-box;
  1497. width:100%;
  1498. }
  1499. #u37845_text {
  1500. border-width:0px;
  1501. white-space:nowrap;
  1502. text-transform:none;
  1503. }
  1504. #u37846_div {
  1505. border-width:0px;
  1506. position:absolute;
  1507. left:0px;
  1508. top:0px;
  1509. width:41px;
  1510. height:14px;
  1511. background:inherit;
  1512. background-color:rgba(255, 255, 255, 0);
  1513. border:none;
  1514. border-radius:0px;
  1515. -moz-box-shadow:none;
  1516. -webkit-box-shadow:none;
  1517. box-shadow:none;
  1518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1519. font-weight:400;
  1520. font-style:normal;
  1521. font-size:10px;
  1522. color:#7F7F7F;
  1523. text-align:right;
  1524. }
  1525. #u37846 {
  1526. border-width:0px;
  1527. position:absolute;
  1528. left:353px;
  1529. top:174px;
  1530. width:41px;
  1531. height:14px;
  1532. display:flex;
  1533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1534. font-weight:400;
  1535. font-style:normal;
  1536. font-size:10px;
  1537. color:#7F7F7F;
  1538. text-align:right;
  1539. }
  1540. #u37846 .text {
  1541. position:absolute;
  1542. align-self:flex-start;
  1543. padding:0px 0px 0px 0px;
  1544. box-sizing:border-box;
  1545. width:100%;
  1546. }
  1547. #u37846_text {
  1548. border-width:0px;
  1549. white-space:nowrap;
  1550. text-transform:none;
  1551. }
  1552. #u37847_div {
  1553. border-width:0px;
  1554. position:absolute;
  1555. left:0px;
  1556. top:0px;
  1557. width:73px;
  1558. height:17px;
  1559. background:inherit;
  1560. background-color:rgba(255, 255, 255, 0);
  1561. border:none;
  1562. border-radius:0px;
  1563. -moz-box-shadow:none;
  1564. -webkit-box-shadow:none;
  1565. box-shadow:none;
  1566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1567. font-weight:400;
  1568. font-style:normal;
  1569. font-size:12px;
  1570. color:#1890FF;
  1571. }
  1572. #u37847 {
  1573. border-width:0px;
  1574. position:absolute;
  1575. left:323px;
  1576. top:119px;
  1577. width:73px;
  1578. height:17px;
  1579. display:flex;
  1580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1581. font-weight:400;
  1582. font-style:normal;
  1583. font-size:12px;
  1584. color:#1890FF;
  1585. }
  1586. #u37847 .text {
  1587. position:absolute;
  1588. align-self:flex-start;
  1589. padding:0px 0px 0px 0px;
  1590. box-sizing:border-box;
  1591. width:100%;
  1592. }
  1593. #u37847_text {
  1594. border-width:0px;
  1595. white-space:nowrap;
  1596. text-transform:none;
  1597. }
  1598. #u37848 {
  1599. border-width:0px;
  1600. position:absolute;
  1601. left:0px;
  1602. top:0px;
  1603. width:0px;
  1604. height:0px;
  1605. }
  1606. #u37849_div {
  1607. border-width:0px;
  1608. position:absolute;
  1609. left:0px;
  1610. top:0px;
  1611. width:375px;
  1612. height:80px;
  1613. background:inherit;
  1614. background-color:rgba(255, 255, 255, 1);
  1615. border:none;
  1616. border-radius:0px;
  1617. -moz-box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  1618. -webkit-box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  1619. box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  1620. }
  1621. #u37849 {
  1622. border-width:0px;
  1623. position:absolute;
  1624. left:29px;
  1625. top:247px;
  1626. width:375px;
  1627. height:80px;
  1628. display:flex;
  1629. }
  1630. #u37849 .text {
  1631. position:absolute;
  1632. align-self:center;
  1633. padding:2px 2px 2px 2px;
  1634. box-sizing:border-box;
  1635. width:100%;
  1636. }
  1637. #u37849_text {
  1638. border-width:0px;
  1639. word-wrap:break-word;
  1640. text-transform:none;
  1641. visibility:hidden;
  1642. }
  1643. #u37850 {
  1644. border-width:0px;
  1645. position:absolute;
  1646. left:0px;
  1647. top:0px;
  1648. width:0px;
  1649. height:0px;
  1650. }
  1651. #u37851_div {
  1652. border-width:0px;
  1653. position:absolute;
  1654. left:0px;
  1655. top:0px;
  1656. width:65px;
  1657. height:22px;
  1658. background:inherit;
  1659. background-color:rgba(255, 255, 255, 0);
  1660. border:none;
  1661. border-radius:0px;
  1662. -moz-box-shadow:none;
  1663. -webkit-box-shadow:none;
  1664. box-shadow:none;
  1665. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1666. font-weight:500;
  1667. font-style:normal;
  1668. font-size:16px;
  1669. }
  1670. #u37851 {
  1671. border-width:0px;
  1672. position:absolute;
  1673. left:111px;
  1674. top:266px;
  1675. width:65px;
  1676. height:22px;
  1677. display:flex;
  1678. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1679. font-weight:500;
  1680. font-style:normal;
  1681. font-size:16px;
  1682. }
  1683. #u37851 .text {
  1684. position:absolute;
  1685. align-self:flex-start;
  1686. padding:0px 0px 0px 0px;
  1687. box-sizing:border-box;
  1688. width:100%;
  1689. }
  1690. #u37851_text {
  1691. border-width:0px;
  1692. white-space:nowrap;
  1693. text-transform:none;
  1694. }
  1695. #u37852_div {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:0px;
  1699. top:0px;
  1700. width:150px;
  1701. height:17px;
  1702. background:inherit;
  1703. background-color:rgba(255, 255, 255, 0);
  1704. border:none;
  1705. border-radius:0px;
  1706. -moz-box-shadow:none;
  1707. -webkit-box-shadow:none;
  1708. box-shadow:none;
  1709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1710. font-weight:400;
  1711. font-style:normal;
  1712. font-size:12px;
  1713. color:#7F7F7F;
  1714. }
  1715. #u37852 {
  1716. border-width:0px;
  1717. position:absolute;
  1718. left:111px;
  1719. top:293px;
  1720. width:150px;
  1721. height:17px;
  1722. display:flex;
  1723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1724. font-weight:400;
  1725. font-style:normal;
  1726. font-size:12px;
  1727. color:#7F7F7F;
  1728. }
  1729. #u37852 .text {
  1730. position:absolute;
  1731. align-self:flex-start;
  1732. padding:0px 0px 0px 0px;
  1733. box-sizing:border-box;
  1734. width:100%;
  1735. }
  1736. #u37852_text {
  1737. border-width:0px;
  1738. white-space:nowrap;
  1739. text-transform:none;
  1740. }
  1741. #u37853_img {
  1742. border-width:0px;
  1743. position:absolute;
  1744. left:0px;
  1745. top:0px;
  1746. width:50px;
  1747. height:50px;
  1748. }
  1749. #u37853 {
  1750. border-width:0px;
  1751. position:absolute;
  1752. left:50px;
  1753. top:262px;
  1754. width:50px;
  1755. height:50px;
  1756. display:flex;
  1757. color:#FFFFFF;
  1758. }
  1759. #u37853 .text {
  1760. position:absolute;
  1761. align-self:center;
  1762. padding:2px 2px 2px 2px;
  1763. box-sizing:border-box;
  1764. width:100%;
  1765. }
  1766. #u37853_text {
  1767. border-width:0px;
  1768. word-wrap:break-word;
  1769. text-transform:none;
  1770. }
  1771. #u37854_div {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:0px;
  1775. top:0px;
  1776. width:15px;
  1777. height:11px;
  1778. background:inherit;
  1779. background-color:rgba(217, 0, 27, 1);
  1780. border:none;
  1781. border-radius:4px;
  1782. -moz-box-shadow:none;
  1783. -webkit-box-shadow:none;
  1784. box-shadow:none;
  1785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1786. font-weight:400;
  1787. font-style:normal;
  1788. font-size:8px;
  1789. color:#FFFFFF;
  1790. text-align:center;
  1791. }
  1792. #u37854 {
  1793. border-width:0px;
  1794. position:absolute;
  1795. left:90px;
  1796. top:264px;
  1797. width:15px;
  1798. height:11px;
  1799. display:flex;
  1800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1801. font-weight:400;
  1802. font-style:normal;
  1803. font-size:8px;
  1804. color:#FFFFFF;
  1805. text-align:center;
  1806. }
  1807. #u37854 .text {
  1808. position:absolute;
  1809. align-self:flex-start;
  1810. padding:0px 0px 0px 0px;
  1811. box-sizing:border-box;
  1812. width:100%;
  1813. }
  1814. #u37854_text {
  1815. border-width:0px;
  1816. white-space:nowrap;
  1817. text-transform:none;
  1818. }
  1819. #u37855_div {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:106px;
  1825. height:14px;
  1826. background:inherit;
  1827. background-color:rgba(255, 255, 255, 0);
  1828. border:none;
  1829. border-radius:0px;
  1830. -moz-box-shadow:none;
  1831. -webkit-box-shadow:none;
  1832. box-shadow:none;
  1833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1834. font-weight:400;
  1835. font-style:normal;
  1836. font-size:10px;
  1837. color:#7F7F7F;
  1838. text-align:right;
  1839. }
  1840. #u37855 {
  1841. border-width:0px;
  1842. position:absolute;
  1843. left:288px;
  1844. top:254px;
  1845. width:106px;
  1846. height:14px;
  1847. display:flex;
  1848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1849. font-weight:400;
  1850. font-style:normal;
  1851. font-size:10px;
  1852. color:#7F7F7F;
  1853. text-align:right;
  1854. }
  1855. #u37855 .text {
  1856. position:absolute;
  1857. align-self:flex-start;
  1858. padding:0px 0px 0px 0px;
  1859. box-sizing:border-box;
  1860. width:100%;
  1861. }
  1862. #u37855_text {
  1863. border-width:0px;
  1864. white-space:nowrap;
  1865. text-transform:none;
  1866. }
  1867. #u37856 {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:0px;
  1871. top:0px;
  1872. width:0px;
  1873. height:0px;
  1874. }
  1875. #u37857_div {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:0px;
  1879. top:0px;
  1880. width:375px;
  1881. height:80px;
  1882. background:inherit;
  1883. background-color:rgba(255, 255, 255, 1);
  1884. border:none;
  1885. border-radius:0px;
  1886. -moz-box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  1887. -webkit-box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  1888. box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  1889. }
  1890. #u37857 {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:29px;
  1894. top:498px;
  1895. width:375px;
  1896. height:80px;
  1897. display:flex;
  1898. }
  1899. #u37857 .text {
  1900. position:absolute;
  1901. align-self:center;
  1902. padding:2px 2px 2px 2px;
  1903. box-sizing:border-box;
  1904. width:100%;
  1905. }
  1906. #u37857_text {
  1907. border-width:0px;
  1908. word-wrap:break-word;
  1909. text-transform:none;
  1910. visibility:hidden;
  1911. }
  1912. #u37858 {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:0px;
  1916. top:0px;
  1917. width:0px;
  1918. height:0px;
  1919. }
  1920. #u37859_div {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:0px;
  1924. top:0px;
  1925. width:65px;
  1926. height:22px;
  1927. background:inherit;
  1928. background-color:rgba(255, 255, 255, 0);
  1929. border:none;
  1930. border-radius:0px;
  1931. -moz-box-shadow:none;
  1932. -webkit-box-shadow:none;
  1933. box-shadow:none;
  1934. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1935. font-weight:500;
  1936. font-style:normal;
  1937. font-size:16px;
  1938. }
  1939. #u37859 {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:111px;
  1943. top:517px;
  1944. width:65px;
  1945. height:22px;
  1946. display:flex;
  1947. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1948. font-weight:500;
  1949. font-style:normal;
  1950. font-size:16px;
  1951. }
  1952. #u37859 .text {
  1953. position:absolute;
  1954. align-self:flex-start;
  1955. padding:0px 0px 0px 0px;
  1956. box-sizing:border-box;
  1957. width:100%;
  1958. }
  1959. #u37859_text {
  1960. border-width:0px;
  1961. white-space:nowrap;
  1962. text-transform:none;
  1963. }
  1964. #u37860_div {
  1965. border-width:0px;
  1966. position:absolute;
  1967. left:0px;
  1968. top:0px;
  1969. width:138px;
  1970. height:17px;
  1971. background:inherit;
  1972. background-color:rgba(255, 255, 255, 0);
  1973. border:none;
  1974. border-radius:0px;
  1975. -moz-box-shadow:none;
  1976. -webkit-box-shadow:none;
  1977. box-shadow:none;
  1978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1979. font-weight:400;
  1980. font-style:normal;
  1981. font-size:12px;
  1982. color:#7F7F7F;
  1983. }
  1984. #u37860 {
  1985. border-width:0px;
  1986. position:absolute;
  1987. left:111px;
  1988. top:544px;
  1989. width:138px;
  1990. height:17px;
  1991. display:flex;
  1992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1993. font-weight:400;
  1994. font-style:normal;
  1995. font-size:12px;
  1996. color:#7F7F7F;
  1997. }
  1998. #u37860 .text {
  1999. position:absolute;
  2000. align-self:flex-start;
  2001. padding:0px 0px 0px 0px;
  2002. box-sizing:border-box;
  2003. width:100%;
  2004. }
  2005. #u37860_text {
  2006. border-width:0px;
  2007. white-space:nowrap;
  2008. text-transform:none;
  2009. }
  2010. #u37861_img {
  2011. border-width:0px;
  2012. position:absolute;
  2013. left:0px;
  2014. top:0px;
  2015. width:50px;
  2016. height:50px;
  2017. }
  2018. #u37861 {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:50px;
  2022. top:513px;
  2023. width:50px;
  2024. height:50px;
  2025. display:flex;
  2026. color:#FFFFFF;
  2027. }
  2028. #u37861 .text {
  2029. position:absolute;
  2030. align-self:center;
  2031. padding:2px 2px 2px 2px;
  2032. box-sizing:border-box;
  2033. width:100%;
  2034. }
  2035. #u37861_text {
  2036. border-width:0px;
  2037. word-wrap:break-word;
  2038. text-transform:none;
  2039. }
  2040. #u37862_div {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:0px;
  2044. top:0px;
  2045. width:15px;
  2046. height:11px;
  2047. background:inherit;
  2048. background-color:rgba(217, 0, 27, 1);
  2049. border:none;
  2050. border-radius:4px;
  2051. -moz-box-shadow:none;
  2052. -webkit-box-shadow:none;
  2053. box-shadow:none;
  2054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2055. font-weight:400;
  2056. font-style:normal;
  2057. font-size:8px;
  2058. color:#FFFFFF;
  2059. text-align:center;
  2060. }
  2061. #u37862 {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:90px;
  2065. top:515px;
  2066. width:15px;
  2067. height:11px;
  2068. display:flex;
  2069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2070. font-weight:400;
  2071. font-style:normal;
  2072. font-size:8px;
  2073. color:#FFFFFF;
  2074. text-align:center;
  2075. }
  2076. #u37862 .text {
  2077. position:absolute;
  2078. align-self:flex-start;
  2079. padding:0px 0px 0px 0px;
  2080. box-sizing:border-box;
  2081. width:100%;
  2082. }
  2083. #u37862_text {
  2084. border-width:0px;
  2085. white-space:nowrap;
  2086. text-transform:none;
  2087. }
  2088. #u37863_div {
  2089. border-width:0px;
  2090. position:absolute;
  2091. left:0px;
  2092. top:0px;
  2093. width:41px;
  2094. height:14px;
  2095. background:inherit;
  2096. background-color:rgba(255, 255, 255, 0);
  2097. border:none;
  2098. border-radius:0px;
  2099. -moz-box-shadow:none;
  2100. -webkit-box-shadow:none;
  2101. box-shadow:none;
  2102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2103. font-weight:400;
  2104. font-style:normal;
  2105. font-size:10px;
  2106. color:#7F7F7F;
  2107. text-align:right;
  2108. }
  2109. #u37863 {
  2110. border-width:0px;
  2111. position:absolute;
  2112. left:353px;
  2113. top:505px;
  2114. width:41px;
  2115. height:14px;
  2116. display:flex;
  2117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2118. font-weight:400;
  2119. font-style:normal;
  2120. font-size:10px;
  2121. color:#7F7F7F;
  2122. text-align:right;
  2123. }
  2124. #u37863 .text {
  2125. position:absolute;
  2126. align-self:flex-start;
  2127. padding:0px 0px 0px 0px;
  2128. box-sizing:border-box;
  2129. width:100%;
  2130. }
  2131. #u37863_text {
  2132. border-width:0px;
  2133. white-space:nowrap;
  2134. text-transform:none;
  2135. }
  2136. #u37864 {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:0px;
  2140. top:0px;
  2141. width:0px;
  2142. height:0px;
  2143. }
  2144. #u37865_div {
  2145. border-width:0px;
  2146. position:absolute;
  2147. left:0px;
  2148. top:0px;
  2149. width:375px;
  2150. height:80px;
  2151. background:inherit;
  2152. background-color:rgba(255, 255, 255, 1);
  2153. border:none;
  2154. border-radius:0px;
  2155. -moz-box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  2156. -webkit-box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  2157. box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  2158. }
  2159. #u37865 {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:29px;
  2163. top:327px;
  2164. width:375px;
  2165. height:80px;
  2166. display:flex;
  2167. }
  2168. #u37865 .text {
  2169. position:absolute;
  2170. align-self:center;
  2171. padding:2px 2px 2px 2px;
  2172. box-sizing:border-box;
  2173. width:100%;
  2174. }
  2175. #u37865_text {
  2176. border-width:0px;
  2177. word-wrap:break-word;
  2178. text-transform:none;
  2179. visibility:hidden;
  2180. }
  2181. #u37866 {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:0px;
  2185. top:0px;
  2186. width:0px;
  2187. height:0px;
  2188. }
  2189. #u37867_div {
  2190. border-width:0px;
  2191. position:absolute;
  2192. left:0px;
  2193. top:0px;
  2194. width:65px;
  2195. height:22px;
  2196. background:inherit;
  2197. background-color:rgba(255, 255, 255, 0);
  2198. border:none;
  2199. border-radius:0px;
  2200. -moz-box-shadow:none;
  2201. -webkit-box-shadow:none;
  2202. box-shadow:none;
  2203. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2204. font-weight:500;
  2205. font-style:normal;
  2206. font-size:16px;
  2207. }
  2208. #u37867 {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:111px;
  2212. top:346px;
  2213. width:65px;
  2214. height:22px;
  2215. display:flex;
  2216. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2217. font-weight:500;
  2218. font-style:normal;
  2219. font-size:16px;
  2220. }
  2221. #u37867 .text {
  2222. position:absolute;
  2223. align-self:flex-start;
  2224. padding:0px 0px 0px 0px;
  2225. box-sizing:border-box;
  2226. width:100%;
  2227. }
  2228. #u37867_text {
  2229. border-width:0px;
  2230. white-space:nowrap;
  2231. text-transform:none;
  2232. }
  2233. #u37868_div {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:0px;
  2237. top:0px;
  2238. width:198px;
  2239. height:17px;
  2240. background:inherit;
  2241. background-color:rgba(255, 255, 255, 0);
  2242. border:none;
  2243. border-radius:0px;
  2244. -moz-box-shadow:none;
  2245. -webkit-box-shadow:none;
  2246. box-shadow:none;
  2247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2248. font-weight:400;
  2249. font-style:normal;
  2250. font-size:12px;
  2251. color:#7F7F7F;
  2252. }
  2253. #u37868 {
  2254. border-width:0px;
  2255. position:absolute;
  2256. left:111px;
  2257. top:373px;
  2258. width:198px;
  2259. height:17px;
  2260. display:flex;
  2261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2262. font-weight:400;
  2263. font-style:normal;
  2264. font-size:12px;
  2265. color:#7F7F7F;
  2266. }
  2267. #u37868 .text {
  2268. position:absolute;
  2269. align-self:flex-start;
  2270. padding:0px 0px 0px 0px;
  2271. box-sizing:border-box;
  2272. width:100%;
  2273. }
  2274. #u37868_text {
  2275. border-width:0px;
  2276. white-space:nowrap;
  2277. text-transform:none;
  2278. }
  2279. #u37869_img {
  2280. border-width:0px;
  2281. position:absolute;
  2282. left:0px;
  2283. top:0px;
  2284. width:50px;
  2285. height:50px;
  2286. }
  2287. #u37869 {
  2288. border-width:0px;
  2289. position:absolute;
  2290. left:50px;
  2291. top:342px;
  2292. width:50px;
  2293. height:50px;
  2294. display:flex;
  2295. color:#FFFFFF;
  2296. }
  2297. #u37869 .text {
  2298. position:absolute;
  2299. align-self:center;
  2300. padding:2px 2px 2px 2px;
  2301. box-sizing:border-box;
  2302. width:100%;
  2303. }
  2304. #u37869_text {
  2305. border-width:0px;
  2306. word-wrap:break-word;
  2307. text-transform:none;
  2308. }
  2309. #u37870_div {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:0px;
  2313. top:0px;
  2314. width:15px;
  2315. height:11px;
  2316. background:inherit;
  2317. background-color:rgba(217, 0, 27, 1);
  2318. border:none;
  2319. border-radius:4px;
  2320. -moz-box-shadow:none;
  2321. -webkit-box-shadow:none;
  2322. box-shadow:none;
  2323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2324. font-weight:400;
  2325. font-style:normal;
  2326. font-size:8px;
  2327. color:#FFFFFF;
  2328. text-align:center;
  2329. }
  2330. #u37870 {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:90px;
  2334. top:344px;
  2335. width:15px;
  2336. height:11px;
  2337. display:flex;
  2338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2339. font-weight:400;
  2340. font-style:normal;
  2341. font-size:8px;
  2342. color:#FFFFFF;
  2343. text-align:center;
  2344. }
  2345. #u37870 .text {
  2346. position:absolute;
  2347. align-self:flex-start;
  2348. padding:0px 0px 0px 0px;
  2349. box-sizing:border-box;
  2350. width:100%;
  2351. }
  2352. #u37870_text {
  2353. border-width:0px;
  2354. white-space:nowrap;
  2355. text-transform:none;
  2356. }
  2357. #u37871_div {
  2358. border-width:0px;
  2359. position:absolute;
  2360. left:0px;
  2361. top:0px;
  2362. width:41px;
  2363. height:14px;
  2364. background:inherit;
  2365. background-color:rgba(255, 255, 255, 0);
  2366. border:none;
  2367. border-radius:0px;
  2368. -moz-box-shadow:none;
  2369. -webkit-box-shadow:none;
  2370. box-shadow:none;
  2371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2372. font-weight:400;
  2373. font-style:normal;
  2374. font-size:10px;
  2375. color:#7F7F7F;
  2376. text-align:right;
  2377. }
  2378. #u37871 {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:353px;
  2382. top:334px;
  2383. width:41px;
  2384. height:14px;
  2385. display:flex;
  2386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2387. font-weight:400;
  2388. font-style:normal;
  2389. font-size:10px;
  2390. color:#7F7F7F;
  2391. text-align:right;
  2392. }
  2393. #u37871 .text {
  2394. position:absolute;
  2395. align-self:flex-start;
  2396. padding:0px 0px 0px 0px;
  2397. box-sizing:border-box;
  2398. width:100%;
  2399. }
  2400. #u37871_text {
  2401. border-width:0px;
  2402. white-space:nowrap;
  2403. text-transform:none;
  2404. }
  2405. #u37872 {
  2406. border-width:0px;
  2407. position:absolute;
  2408. left:0px;
  2409. top:0px;
  2410. width:0px;
  2411. height:0px;
  2412. }
  2413. #u37873_div {
  2414. border-width:0px;
  2415. position:absolute;
  2416. left:0px;
  2417. top:0px;
  2418. width:375px;
  2419. height:80px;
  2420. background:inherit;
  2421. background-color:rgba(255, 255, 255, 1);
  2422. border:none;
  2423. border-radius:0px;
  2424. -moz-box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  2425. -webkit-box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  2426. box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  2427. }
  2428. #u37873 {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:29px;
  2432. top:417px;
  2433. width:375px;
  2434. height:80px;
  2435. display:flex;
  2436. }
  2437. #u37873 .text {
  2438. position:absolute;
  2439. align-self:center;
  2440. padding:2px 2px 2px 2px;
  2441. box-sizing:border-box;
  2442. width:100%;
  2443. }
  2444. #u37873_text {
  2445. border-width:0px;
  2446. word-wrap:break-word;
  2447. text-transform:none;
  2448. visibility:hidden;
  2449. }
  2450. #u37874 {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:0px;
  2454. top:0px;
  2455. width:0px;
  2456. height:0px;
  2457. }
  2458. #u37875_div {
  2459. border-width:0px;
  2460. position:absolute;
  2461. left:0px;
  2462. top:0px;
  2463. width:65px;
  2464. height:22px;
  2465. background:inherit;
  2466. background-color:rgba(255, 255, 255, 0);
  2467. border:none;
  2468. border-radius:0px;
  2469. -moz-box-shadow:none;
  2470. -webkit-box-shadow:none;
  2471. box-shadow:none;
  2472. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2473. font-weight:500;
  2474. font-style:normal;
  2475. font-size:16px;
  2476. }
  2477. #u37875 {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:111px;
  2481. top:436px;
  2482. width:65px;
  2483. height:22px;
  2484. display:flex;
  2485. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2486. font-weight:500;
  2487. font-style:normal;
  2488. font-size:16px;
  2489. }
  2490. #u37875 .text {
  2491. position:absolute;
  2492. align-self:flex-start;
  2493. padding:0px 0px 0px 0px;
  2494. box-sizing:border-box;
  2495. width:100%;
  2496. }
  2497. #u37875_text {
  2498. border-width:0px;
  2499. white-space:nowrap;
  2500. text-transform:none;
  2501. }
  2502. #u37876_div {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:0px;
  2506. top:0px;
  2507. width:174px;
  2508. height:17px;
  2509. background:inherit;
  2510. background-color:rgba(255, 255, 255, 0);
  2511. border:none;
  2512. border-radius:0px;
  2513. -moz-box-shadow:none;
  2514. -webkit-box-shadow:none;
  2515. box-shadow:none;
  2516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2517. font-weight:400;
  2518. font-style:normal;
  2519. font-size:12px;
  2520. color:#7F7F7F;
  2521. }
  2522. #u37876 {
  2523. border-width:0px;
  2524. position:absolute;
  2525. left:111px;
  2526. top:463px;
  2527. width:174px;
  2528. height:17px;
  2529. display:flex;
  2530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2531. font-weight:400;
  2532. font-style:normal;
  2533. font-size:12px;
  2534. color:#7F7F7F;
  2535. }
  2536. #u37876 .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. #u37876_text {
  2544. border-width:0px;
  2545. white-space:nowrap;
  2546. text-transform:none;
  2547. }
  2548. #u37877_img {
  2549. border-width:0px;
  2550. position:absolute;
  2551. left:0px;
  2552. top:0px;
  2553. width:50px;
  2554. height:50px;
  2555. }
  2556. #u37877 {
  2557. border-width:0px;
  2558. position:absolute;
  2559. left:50px;
  2560. top:432px;
  2561. width:50px;
  2562. height:50px;
  2563. display:flex;
  2564. color:#FFFFFF;
  2565. }
  2566. #u37877 .text {
  2567. position:absolute;
  2568. align-self:center;
  2569. padding:2px 2px 2px 2px;
  2570. box-sizing:border-box;
  2571. width:100%;
  2572. }
  2573. #u37877_text {
  2574. border-width:0px;
  2575. word-wrap:break-word;
  2576. text-transform:none;
  2577. }
  2578. #u37878_div {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:0px;
  2582. top:0px;
  2583. width:15px;
  2584. height:11px;
  2585. background:inherit;
  2586. background-color:rgba(217, 0, 27, 1);
  2587. border:none;
  2588. border-radius:4px;
  2589. -moz-box-shadow:none;
  2590. -webkit-box-shadow:none;
  2591. box-shadow:none;
  2592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2593. font-weight:400;
  2594. font-style:normal;
  2595. font-size:8px;
  2596. color:#FFFFFF;
  2597. text-align:center;
  2598. }
  2599. #u37878 {
  2600. border-width:0px;
  2601. position:absolute;
  2602. left:90px;
  2603. top:434px;
  2604. width:15px;
  2605. height:11px;
  2606. display:flex;
  2607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2608. font-weight:400;
  2609. font-style:normal;
  2610. font-size:8px;
  2611. color:#FFFFFF;
  2612. text-align:center;
  2613. }
  2614. #u37878 .text {
  2615. position:absolute;
  2616. align-self:flex-start;
  2617. padding:0px 0px 0px 0px;
  2618. box-sizing:border-box;
  2619. width:100%;
  2620. }
  2621. #u37878_text {
  2622. border-width:0px;
  2623. white-space:nowrap;
  2624. text-transform:none;
  2625. }
  2626. #u37879_div {
  2627. border-width:0px;
  2628. position:absolute;
  2629. left:0px;
  2630. top:0px;
  2631. width:41px;
  2632. height:14px;
  2633. background:inherit;
  2634. background-color:rgba(255, 255, 255, 0);
  2635. border:none;
  2636. border-radius:0px;
  2637. -moz-box-shadow:none;
  2638. -webkit-box-shadow:none;
  2639. box-shadow:none;
  2640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2641. font-weight:400;
  2642. font-style:normal;
  2643. font-size:10px;
  2644. color:#7F7F7F;
  2645. text-align:right;
  2646. }
  2647. #u37879 {
  2648. border-width:0px;
  2649. position:absolute;
  2650. left:353px;
  2651. top:424px;
  2652. width:41px;
  2653. height:14px;
  2654. display:flex;
  2655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2656. font-weight:400;
  2657. font-style:normal;
  2658. font-size:10px;
  2659. color:#7F7F7F;
  2660. text-align:right;
  2661. }
  2662. #u37879 .text {
  2663. position:absolute;
  2664. align-self:flex-start;
  2665. padding:0px 0px 0px 0px;
  2666. box-sizing:border-box;
  2667. width:100%;
  2668. }
  2669. #u37879_text {
  2670. border-width:0px;
  2671. white-space:nowrap;
  2672. text-transform:none;
  2673. }
  2674. #u37880 {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:0px;
  2678. top:0px;
  2679. width:0px;
  2680. height:0px;
  2681. }
  2682. #u37881_div {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:0px;
  2686. top:0px;
  2687. width:375px;
  2688. height:80px;
  2689. background:inherit;
  2690. background-color:rgba(255, 255, 255, 1);
  2691. border:none;
  2692. border-radius:0px;
  2693. -moz-box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  2694. -webkit-box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  2695. box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  2696. }
  2697. #u37881 {
  2698. border-width:0px;
  2699. position:absolute;
  2700. left:29px;
  2701. top:579px;
  2702. width:375px;
  2703. height:80px;
  2704. display:flex;
  2705. }
  2706. #u37881 .text {
  2707. position:absolute;
  2708. align-self:center;
  2709. padding:2px 2px 2px 2px;
  2710. box-sizing:border-box;
  2711. width:100%;
  2712. }
  2713. #u37881_text {
  2714. border-width:0px;
  2715. word-wrap:break-word;
  2716. text-transform:none;
  2717. visibility:hidden;
  2718. }
  2719. #u37882 {
  2720. border-width:0px;
  2721. position:absolute;
  2722. left:0px;
  2723. top:0px;
  2724. width:0px;
  2725. height:0px;
  2726. }
  2727. #u37883_div {
  2728. border-width:0px;
  2729. position:absolute;
  2730. left:0px;
  2731. top:0px;
  2732. width:65px;
  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-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2742. font-weight:500;
  2743. font-style:normal;
  2744. font-size:16px;
  2745. }
  2746. #u37883 {
  2747. border-width:0px;
  2748. position:absolute;
  2749. left:111px;
  2750. top:598px;
  2751. width:65px;
  2752. height:22px;
  2753. display:flex;
  2754. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2755. font-weight:500;
  2756. font-style:normal;
  2757. font-size:16px;
  2758. }
  2759. #u37883 .text {
  2760. position:absolute;
  2761. align-self:flex-start;
  2762. padding:0px 0px 0px 0px;
  2763. box-sizing:border-box;
  2764. width:100%;
  2765. }
  2766. #u37883_text {
  2767. border-width:0px;
  2768. white-space:nowrap;
  2769. text-transform:none;
  2770. }
  2771. #u37884_div {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:0px;
  2775. top:0px;
  2776. width:145px;
  2777. height:17px;
  2778. background:inherit;
  2779. background-color:rgba(255, 255, 255, 0);
  2780. border:none;
  2781. border-radius:0px;
  2782. -moz-box-shadow:none;
  2783. -webkit-box-shadow:none;
  2784. box-shadow:none;
  2785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2786. font-weight:400;
  2787. font-style:normal;
  2788. font-size:12px;
  2789. color:#7F7F7F;
  2790. }
  2791. #u37884 {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:111px;
  2795. top:625px;
  2796. width:145px;
  2797. height:17px;
  2798. display:flex;
  2799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2800. font-weight:400;
  2801. font-style:normal;
  2802. font-size:12px;
  2803. color:#7F7F7F;
  2804. }
  2805. #u37884 .text {
  2806. position:absolute;
  2807. align-self:flex-start;
  2808. padding:0px 0px 0px 0px;
  2809. box-sizing:border-box;
  2810. width:100%;
  2811. }
  2812. #u37884_text {
  2813. border-width:0px;
  2814. white-space:nowrap;
  2815. text-transform:none;
  2816. }
  2817. #u37885_img {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:0px;
  2821. top:0px;
  2822. width:50px;
  2823. height:50px;
  2824. }
  2825. #u37885 {
  2826. border-width:0px;
  2827. position:absolute;
  2828. left:50px;
  2829. top:594px;
  2830. width:50px;
  2831. height:50px;
  2832. display:flex;
  2833. color:#FFFFFF;
  2834. }
  2835. #u37885 .text {
  2836. position:absolute;
  2837. align-self:center;
  2838. padding:2px 2px 2px 2px;
  2839. box-sizing:border-box;
  2840. width:100%;
  2841. }
  2842. #u37885_text {
  2843. border-width:0px;
  2844. word-wrap:break-word;
  2845. text-transform:none;
  2846. }
  2847. #u37886_div {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:0px;
  2851. top:0px;
  2852. width:15px;
  2853. height:11px;
  2854. background:inherit;
  2855. background-color:rgba(217, 0, 27, 1);
  2856. border:none;
  2857. border-radius:4px;
  2858. -moz-box-shadow:none;
  2859. -webkit-box-shadow:none;
  2860. box-shadow:none;
  2861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2862. font-weight:400;
  2863. font-style:normal;
  2864. font-size:8px;
  2865. color:#FFFFFF;
  2866. text-align:center;
  2867. }
  2868. #u37886 {
  2869. border-width:0px;
  2870. position:absolute;
  2871. left:90px;
  2872. top:596px;
  2873. width:15px;
  2874. height:11px;
  2875. display:flex;
  2876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2877. font-weight:400;
  2878. font-style:normal;
  2879. font-size:8px;
  2880. color:#FFFFFF;
  2881. text-align:center;
  2882. }
  2883. #u37886 .text {
  2884. position:absolute;
  2885. align-self:flex-start;
  2886. padding:0px 0px 0px 0px;
  2887. box-sizing:border-box;
  2888. width:100%;
  2889. }
  2890. #u37886_text {
  2891. border-width:0px;
  2892. white-space:nowrap;
  2893. text-transform:none;
  2894. }
  2895. #u37887_div {
  2896. border-width:0px;
  2897. position:absolute;
  2898. left:0px;
  2899. top:0px;
  2900. width:41px;
  2901. height:14px;
  2902. background:inherit;
  2903. background-color:rgba(255, 255, 255, 0);
  2904. border:none;
  2905. border-radius:0px;
  2906. -moz-box-shadow:none;
  2907. -webkit-box-shadow:none;
  2908. box-shadow:none;
  2909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2910. font-weight:400;
  2911. font-style:normal;
  2912. font-size:10px;
  2913. color:#7F7F7F;
  2914. text-align:right;
  2915. }
  2916. #u37887 {
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:353px;
  2920. top:586px;
  2921. width:41px;
  2922. height:14px;
  2923. display:flex;
  2924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2925. font-weight:400;
  2926. font-style:normal;
  2927. font-size:10px;
  2928. color:#7F7F7F;
  2929. text-align:right;
  2930. }
  2931. #u37887 .text {
  2932. position:absolute;
  2933. align-self:flex-start;
  2934. padding:0px 0px 0px 0px;
  2935. box-sizing:border-box;
  2936. width:100%;
  2937. }
  2938. #u37887_text {
  2939. border-width:0px;
  2940. white-space:nowrap;
  2941. text-transform:none;
  2942. }
  2943. #u37888_div {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:0px;
  2947. top:0px;
  2948. width:272px;
  2949. height:51px;
  2950. background:inherit;
  2951. background-color:rgba(255, 255, 255, 0);
  2952. border:none;
  2953. border-radius:0px;
  2954. -moz-box-shadow:none;
  2955. -webkit-box-shadow:none;
  2956. box-shadow:none;
  2957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2958. font-weight:400;
  2959. font-style:normal;
  2960. font-size:12px;
  2961. color:#7F7F7F;
  2962. }
  2963. #u37888 {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:75px;
  2967. top:694px;
  2968. width:272px;
  2969. height:51px;
  2970. display:flex;
  2971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2972. font-weight:400;
  2973. font-style:normal;
  2974. font-size:12px;
  2975. color:#7F7F7F;
  2976. }
  2977. #u37888 .text {
  2978. position:absolute;
  2979. align-self:flex-start;
  2980. padding:0px 0px 0px 0px;
  2981. box-sizing:border-box;
  2982. width:100%;
  2983. }
  2984. #u37888_text {
  2985. border-width:0px;
  2986. white-space:nowrap;
  2987. text-transform:none;
  2988. }