styles.css 52 KB

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