styles.css 56 KB

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