styles.css 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562
  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. #u51872 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u51873 {
  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. #u51873 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u51873_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u51873_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u51874_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. #u51874 {
  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. #u51874 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u51874_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u51875 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u51876_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. #u51876 {
  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. #u51876 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u51876_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u51877 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u51878 {
  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. #u51878 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u51878_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u51878_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u51879 {
  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. #u51879 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u51879_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u51879_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u51880 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u51881 {
  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. #u51881 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u51881_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u51881_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u51882 {
  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. #u51882 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u51882_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u51882_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u51883 {
  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. #u51883 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u51883_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u51883_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u51884 {
  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. #u51884 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u51884_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u51884_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u51885 {
  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. #u51885 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u51885_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u51885_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u51886_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. #u51886 {
  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. #u51886 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u51886_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u51887 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u51888 {
  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. #u51888 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u51888_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u51888_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u51889_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. #u51889 {
  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. #u51889 .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. #u51889_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u51890 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u51891 {
  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. #u51891 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u51891_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u51891_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u51892_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. #u51892 {
  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. #u51892 .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. #u51892_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u51893_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. #u51893 {
  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. #u51893 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u51893_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u51894 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u51895 {
  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. #u51895 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u51895_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u51895_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u51896_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. #u51896 {
  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. #u51896 .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. #u51896_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u51897 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u51898 {
  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. #u51898 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u51898_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u51898_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u51899_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. #u51899 {
  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. #u51899 .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. #u51899_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u51900_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. #u51900 {
  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. #u51900 .text {
  830. position:absolute;
  831. align-self:center;
  832. padding:2px 2px 2px 2px;
  833. box-sizing:border-box;
  834. width:100%;
  835. }
  836. #u51900_text {
  837. border-width:0px;
  838. word-wrap:break-word;
  839. text-transform:none;
  840. visibility:hidden;
  841. }
  842. #u51901 {
  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. #u51901 .text {
  853. position:absolute;
  854. align-self:center;
  855. padding:2px 2px 2px 2px;
  856. box-sizing:border-box;
  857. width:100%;
  858. }
  859. #u51901_img {
  860. border-width:0px;
  861. position:absolute;
  862. left:0px;
  863. top:0px;
  864. width:375px;
  865. height:44px;
  866. }
  867. #u51901_text {
  868. border-width:0px;
  869. word-wrap:break-word;
  870. text-transform:none;
  871. visibility:hidden;
  872. }
  873. #u51902 {
  874. border-width:0px;
  875. position:absolute;
  876. left:0px;
  877. top:0px;
  878. width:0px;
  879. height:0px;
  880. }
  881. #u51903 {
  882. border-width:0px;
  883. position:absolute;
  884. left:39px;
  885. top:207px;
  886. width:355px;
  887. height:150px;
  888. display:flex;
  889. transition:none;
  890. }
  891. #u51903 .text {
  892. position:absolute;
  893. align-self:center;
  894. padding:2px 2px 2px 2px;
  895. box-sizing:border-box;
  896. width:100%;
  897. }
  898. #u51903_img {
  899. border-width:0px;
  900. position:absolute;
  901. left:0px;
  902. top:0px;
  903. width:355px;
  904. height:150px;
  905. }
  906. #u51903_text {
  907. border-width:0px;
  908. word-wrap:break-word;
  909. text-transform:none;
  910. visibility:hidden;
  911. }
  912. #u51904_div {
  913. border-width:0px;
  914. position:absolute;
  915. left:0px;
  916. top:0px;
  917. width:80px;
  918. height:30px;
  919. background:inherit;
  920. background-color:rgba(255, 255, 255, 0);
  921. border-left:0px;
  922. border-top:0px;
  923. border-right:0px;
  924. border-radius:0px;
  925. border-bottom-right-radius:0px;
  926. border-bottom-left-radius:0px;
  927. filter:drop-shadow(none);
  928. transition:none;
  929. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  930. font-weight:500;
  931. font-style:normal;
  932. font-size:14px;
  933. line-height:30px;
  934. }
  935. #u51904 {
  936. border-width:0px;
  937. position:absolute;
  938. left:56px;
  939. top:214px;
  940. width:80px;
  941. height:30px;
  942. display:flex;
  943. transition:none;
  944. transform-origin:50% 50%;
  945. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  946. font-weight:500;
  947. font-style:normal;
  948. font-size:14px;
  949. line-height:30px;
  950. }
  951. #u51904 .text {
  952. position:absolute;
  953. align-self:flex-start;
  954. padding:0px 0px 0px 0px;
  955. box-sizing:border-box;
  956. width:100%;
  957. }
  958. #u51904_text {
  959. border-width:0px;
  960. white-space:nowrap;
  961. text-transform:none;
  962. }
  963. #u51905_div {
  964. border-width:0px;
  965. position:absolute;
  966. left:0px;
  967. top:0px;
  968. width:325px;
  969. height:100px;
  970. background:inherit;
  971. background-color:rgba(255, 255, 255, 0);
  972. border-left:0px;
  973. border-top:0px;
  974. border-right:0px;
  975. border-radius:0px;
  976. border-bottom-right-radius:0px;
  977. border-bottom-left-radius:0px;
  978. filter:drop-shadow(none);
  979. transition:none;
  980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  981. font-weight:400;
  982. font-style:normal;
  983. font-size:12px;
  984. line-height:20px;
  985. }
  986. #u51905 {
  987. border-width:0px;
  988. position:absolute;
  989. left:56px;
  990. top:244px;
  991. width:325px;
  992. height:100px;
  993. display:flex;
  994. transition:none;
  995. transform-origin:50% 50%;
  996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  997. font-weight:400;
  998. font-style:normal;
  999. font-size:12px;
  1000. line-height:20px;
  1001. }
  1002. #u51905 .text {
  1003. position:absolute;
  1004. align-self:flex-start;
  1005. padding:0px 0px 0px 0px;
  1006. box-sizing:border-box;
  1007. width:100%;
  1008. }
  1009. #u51905_text {
  1010. border-width:0px;
  1011. word-wrap:break-word;
  1012. text-transform:none;
  1013. }
  1014. #u51906_div {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:0px;
  1018. top:0px;
  1019. width:8px;
  1020. height:8px;
  1021. background:inherit;
  1022. background-color:rgba(255, 255, 255, 0);
  1023. box-sizing:border-box;
  1024. border-width:1px;
  1025. border-style:solid;
  1026. border-color:rgba(127, 127, 127, 1);
  1027. border-right:0px;
  1028. border-bottom:0px;
  1029. border-radius:0px;
  1030. border-top-right-radius:0px;
  1031. border-bottom-left-radius:0px;
  1032. filter:drop-shadow(none);
  1033. transition:none;
  1034. }
  1035. #u51906 {
  1036. border-width:0px;
  1037. position:absolute;
  1038. left:368px;
  1039. top:219px;
  1040. width:8px;
  1041. height:8px;
  1042. display:flex;
  1043. -webkit-transform:rotate(135deg);
  1044. -moz-transform:rotate(135deg);
  1045. -ms-transform:rotate(135deg);
  1046. transform:rotate(135deg);
  1047. transition:none;
  1048. transform-origin:50% 50%;
  1049. }
  1050. #u51906 .text {
  1051. position:absolute;
  1052. align-self:center;
  1053. padding:2px 2px 2px 2px;
  1054. box-sizing:border-box;
  1055. width:100%;
  1056. }
  1057. #u51906_text {
  1058. border-width:0px;
  1059. word-wrap:break-word;
  1060. text-transform:none;
  1061. visibility:hidden;
  1062. }
  1063. #u51907 {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:0px;
  1069. height:0px;
  1070. }
  1071. #u51908 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:39px;
  1075. top:367px;
  1076. width:355px;
  1077. height:150px;
  1078. display:flex;
  1079. transition:none;
  1080. }
  1081. #u51908 .text {
  1082. position:absolute;
  1083. align-self:center;
  1084. padding:2px 2px 2px 2px;
  1085. box-sizing:border-box;
  1086. width:100%;
  1087. }
  1088. #u51908_img {
  1089. border-width:0px;
  1090. position:absolute;
  1091. left:0px;
  1092. top:0px;
  1093. width:355px;
  1094. height:150px;
  1095. }
  1096. #u51908_text {
  1097. border-width:0px;
  1098. word-wrap:break-word;
  1099. text-transform:none;
  1100. visibility:hidden;
  1101. }
  1102. #u51909_div {
  1103. border-width:0px;
  1104. position:absolute;
  1105. left:0px;
  1106. top:0px;
  1107. width:80px;
  1108. height:30px;
  1109. background:inherit;
  1110. background-color:rgba(255, 255, 255, 0);
  1111. border-left:0px;
  1112. border-top:0px;
  1113. border-right:0px;
  1114. border-radius:0px;
  1115. border-bottom-right-radius:0px;
  1116. border-bottom-left-radius:0px;
  1117. filter:drop-shadow(none);
  1118. transition:none;
  1119. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1120. font-weight:500;
  1121. font-style:normal;
  1122. font-size:14px;
  1123. line-height:30px;
  1124. }
  1125. #u51909 {
  1126. border-width:0px;
  1127. position:absolute;
  1128. left:56px;
  1129. top:374px;
  1130. width:80px;
  1131. height:30px;
  1132. display:flex;
  1133. transition:none;
  1134. transform-origin:50% 50%;
  1135. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1136. font-weight:500;
  1137. font-style:normal;
  1138. font-size:14px;
  1139. line-height:30px;
  1140. }
  1141. #u51909 .text {
  1142. position:absolute;
  1143. align-self:flex-start;
  1144. padding:0px 0px 0px 0px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u51909_text {
  1149. border-width:0px;
  1150. white-space:nowrap;
  1151. text-transform:none;
  1152. }
  1153. #u51910_div {
  1154. border-width:0px;
  1155. position:absolute;
  1156. left:0px;
  1157. top:0px;
  1158. width:325px;
  1159. height:100px;
  1160. background:inherit;
  1161. background-color:rgba(255, 255, 255, 0);
  1162. border-left:0px;
  1163. border-top:0px;
  1164. border-right:0px;
  1165. border-radius:0px;
  1166. border-bottom-right-radius:0px;
  1167. border-bottom-left-radius:0px;
  1168. filter:drop-shadow(none);
  1169. transition:none;
  1170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1171. font-weight:400;
  1172. font-style:normal;
  1173. font-size:12px;
  1174. line-height:20px;
  1175. }
  1176. #u51910 {
  1177. border-width:0px;
  1178. position:absolute;
  1179. left:56px;
  1180. top:404px;
  1181. width:325px;
  1182. height:100px;
  1183. display:flex;
  1184. transition:none;
  1185. transform-origin:50% 50%;
  1186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1187. font-weight:400;
  1188. font-style:normal;
  1189. font-size:12px;
  1190. line-height:20px;
  1191. }
  1192. #u51910 .text {
  1193. position:absolute;
  1194. align-self:flex-start;
  1195. padding:0px 0px 0px 0px;
  1196. box-sizing:border-box;
  1197. width:100%;
  1198. }
  1199. #u51910_text {
  1200. border-width:0px;
  1201. word-wrap:break-word;
  1202. text-transform:none;
  1203. }
  1204. #u51911_div {
  1205. border-width:0px;
  1206. position:absolute;
  1207. left:0px;
  1208. top:0px;
  1209. width:8px;
  1210. height:8px;
  1211. background:inherit;
  1212. background-color:rgba(255, 255, 255, 0);
  1213. box-sizing:border-box;
  1214. border-width:1px;
  1215. border-style:solid;
  1216. border-color:rgba(127, 127, 127, 1);
  1217. border-right:0px;
  1218. border-bottom:0px;
  1219. border-radius:0px;
  1220. border-top-right-radius:0px;
  1221. border-bottom-left-radius:0px;
  1222. filter:drop-shadow(none);
  1223. transition:none;
  1224. }
  1225. #u51911 {
  1226. border-width:0px;
  1227. position:absolute;
  1228. left:368px;
  1229. top:379px;
  1230. width:8px;
  1231. height:8px;
  1232. display:flex;
  1233. -webkit-transform:rotate(135deg);
  1234. -moz-transform:rotate(135deg);
  1235. -ms-transform:rotate(135deg);
  1236. transform:rotate(135deg);
  1237. transition:none;
  1238. transform-origin:50% 50%;
  1239. }
  1240. #u51911 .text {
  1241. position:absolute;
  1242. align-self:center;
  1243. padding:2px 2px 2px 2px;
  1244. box-sizing:border-box;
  1245. width:100%;
  1246. }
  1247. #u51911_text {
  1248. border-width:0px;
  1249. word-wrap:break-word;
  1250. text-transform:none;
  1251. visibility:hidden;
  1252. }
  1253. #u51912 {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:0px;
  1259. height:0px;
  1260. }
  1261. #u51913 {
  1262. border-width:0px;
  1263. position:absolute;
  1264. left:39px;
  1265. top:527px;
  1266. width:355px;
  1267. height:150px;
  1268. display:flex;
  1269. transition:none;
  1270. }
  1271. #u51913 .text {
  1272. position:absolute;
  1273. align-self:center;
  1274. padding:2px 2px 2px 2px;
  1275. box-sizing:border-box;
  1276. width:100%;
  1277. }
  1278. #u51913_img {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:0px;
  1282. top:0px;
  1283. width:355px;
  1284. height:150px;
  1285. }
  1286. #u51913_text {
  1287. border-width:0px;
  1288. word-wrap:break-word;
  1289. text-transform:none;
  1290. visibility:hidden;
  1291. }
  1292. #u51914_div {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:80px;
  1298. height:30px;
  1299. background:inherit;
  1300. background-color:rgba(255, 255, 255, 0);
  1301. border-left:0px;
  1302. border-top:0px;
  1303. border-right:0px;
  1304. border-radius:0px;
  1305. border-bottom-right-radius:0px;
  1306. border-bottom-left-radius:0px;
  1307. filter:drop-shadow(none);
  1308. transition:none;
  1309. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1310. font-weight:500;
  1311. font-style:normal;
  1312. font-size:14px;
  1313. line-height:30px;
  1314. }
  1315. #u51914 {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:56px;
  1319. top:534px;
  1320. width:80px;
  1321. height:30px;
  1322. display:flex;
  1323. transition:none;
  1324. transform-origin:50% 50%;
  1325. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1326. font-weight:500;
  1327. font-style:normal;
  1328. font-size:14px;
  1329. line-height:30px;
  1330. }
  1331. #u51914 .text {
  1332. position:absolute;
  1333. align-self:flex-start;
  1334. padding:0px 0px 0px 0px;
  1335. box-sizing:border-box;
  1336. width:100%;
  1337. }
  1338. #u51914_text {
  1339. border-width:0px;
  1340. white-space:nowrap;
  1341. text-transform:none;
  1342. }
  1343. #u51915_div {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:0px;
  1347. top:0px;
  1348. width:325px;
  1349. height:80px;
  1350. background:inherit;
  1351. background-color:rgba(255, 255, 255, 0);
  1352. border-left:0px;
  1353. border-top:0px;
  1354. border-right:0px;
  1355. border-radius:0px;
  1356. border-bottom-right-radius:0px;
  1357. border-bottom-left-radius:0px;
  1358. filter:drop-shadow(none);
  1359. transition:none;
  1360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1361. font-weight:400;
  1362. font-style:normal;
  1363. font-size:12px;
  1364. line-height:20px;
  1365. }
  1366. #u51915 {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:56px;
  1370. top:564px;
  1371. width:325px;
  1372. height:80px;
  1373. display:flex;
  1374. transition:none;
  1375. transform-origin:50% 50%;
  1376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1377. font-weight:400;
  1378. font-style:normal;
  1379. font-size:12px;
  1380. line-height:20px;
  1381. }
  1382. #u51915 .text {
  1383. position:absolute;
  1384. align-self:flex-start;
  1385. padding:0px 0px 0px 0px;
  1386. box-sizing:border-box;
  1387. width:100%;
  1388. }
  1389. #u51915_text {
  1390. border-width:0px;
  1391. word-wrap:break-word;
  1392. text-transform:none;
  1393. }
  1394. #u51916_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:8px;
  1400. height:8px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. box-sizing:border-box;
  1404. border-width:1px;
  1405. border-style:solid;
  1406. border-color:rgba(127, 127, 127, 1);
  1407. border-right:0px;
  1408. border-bottom:0px;
  1409. border-radius:0px;
  1410. border-top-right-radius:0px;
  1411. border-bottom-left-radius:0px;
  1412. filter:drop-shadow(none);
  1413. transition:none;
  1414. }
  1415. #u51916 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:368px;
  1419. top:539px;
  1420. width:8px;
  1421. height:8px;
  1422. display:flex;
  1423. -webkit-transform:rotate(135deg);
  1424. -moz-transform:rotate(135deg);
  1425. -ms-transform:rotate(135deg);
  1426. transform:rotate(135deg);
  1427. transition:none;
  1428. transform-origin:50% 50%;
  1429. }
  1430. #u51916 .text {
  1431. position:absolute;
  1432. align-self:center;
  1433. padding:2px 2px 2px 2px;
  1434. box-sizing:border-box;
  1435. width:100%;
  1436. }
  1437. #u51916_text {
  1438. border-width:0px;
  1439. word-wrap:break-word;
  1440. text-transform:none;
  1441. visibility:hidden;
  1442. }
  1443. #u51917 {
  1444. border-width:0px;
  1445. position:absolute;
  1446. left:0px;
  1447. top:0px;
  1448. width:0px;
  1449. height:0px;
  1450. }
  1451. #u51918_div {
  1452. border-width:0px;
  1453. position:absolute;
  1454. left:0px;
  1455. top:0px;
  1456. width:375px;
  1457. height:40px;
  1458. background:inherit;
  1459. background-color:rgba(255, 255, 255, 1);
  1460. box-sizing:border-box;
  1461. border-width:1px;
  1462. border-style:solid;
  1463. border-color:rgba(215, 215, 215, 1);
  1464. border-left:0px;
  1465. border-top:0px;
  1466. border-right:0px;
  1467. border-radius:0px;
  1468. border-bottom-right-radius:0px;
  1469. border-bottom-left-radius:0px;
  1470. filter:drop-shadow(none);
  1471. transition:none;
  1472. }
  1473. #u51918 {
  1474. border-width:0px;
  1475. position:absolute;
  1476. left:29px;
  1477. top:67px;
  1478. width:375px;
  1479. height:40px;
  1480. display:flex;
  1481. transition:none;
  1482. transform-origin:50% 50%;
  1483. }
  1484. #u51918 .text {
  1485. position:absolute;
  1486. align-self:center;
  1487. padding:2px 2px 2px 2px;
  1488. box-sizing:border-box;
  1489. width:100%;
  1490. }
  1491. #u51918_text {
  1492. border-width:0px;
  1493. word-wrap:break-word;
  1494. text-transform:none;
  1495. visibility:hidden;
  1496. }
  1497. #u51919 {
  1498. border-width:0px;
  1499. position:absolute;
  1500. left:0px;
  1501. top:0px;
  1502. width:0px;
  1503. height:0px;
  1504. }
  1505. #u51920_div {
  1506. border-width:0px;
  1507. position:absolute;
  1508. left:0px;
  1509. top:0px;
  1510. width:88px;
  1511. height:32px;
  1512. background:inherit;
  1513. background-color:rgba(255, 255, 255, 1);
  1514. box-sizing:border-box;
  1515. border-width:1px;
  1516. border-style:solid;
  1517. border-color:rgba(242, 242, 242, 1);
  1518. border-radius:33px;
  1519. filter:drop-shadow(none);
  1520. transition:none;
  1521. }
  1522. #u51920 {
  1523. border-width:0px;
  1524. position:absolute;
  1525. left:309px;
  1526. top:71px;
  1527. width:88px;
  1528. height:32px;
  1529. display:flex;
  1530. transition:none;
  1531. transform-origin:50% 50%;
  1532. }
  1533. #u51920 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u51920_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u51921 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u51922 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:372px;
  1558. top:78px;
  1559. width:18px;
  1560. height:18px;
  1561. display:flex;
  1562. transition:none;
  1563. }
  1564. #u51922 .text {
  1565. position:absolute;
  1566. align-self:center;
  1567. padding:2px 2px 2px 2px;
  1568. box-sizing:border-box;
  1569. width:100%;
  1570. }
  1571. #u51922_img {
  1572. border-width:0px;
  1573. position:absolute;
  1574. left:0px;
  1575. top:0px;
  1576. width:18px;
  1577. height:18px;
  1578. }
  1579. #u51922_text {
  1580. border-width:0px;
  1581. word-wrap:break-word;
  1582. text-transform:none;
  1583. visibility:hidden;
  1584. }
  1585. #u51923 {
  1586. border-width:0px;
  1587. position:absolute;
  1588. left:378px;
  1589. top:84px;
  1590. width:6px;
  1591. height:6px;
  1592. display:flex;
  1593. transition:none;
  1594. }
  1595. #u51923 .text {
  1596. position:absolute;
  1597. align-self:center;
  1598. padding:2px 2px 2px 2px;
  1599. box-sizing:border-box;
  1600. width:100%;
  1601. }
  1602. #u51923_img {
  1603. border-width:0px;
  1604. position:absolute;
  1605. left:0px;
  1606. top:0px;
  1607. width:6px;
  1608. height:6px;
  1609. }
  1610. #u51923_text {
  1611. border-width:0px;
  1612. word-wrap:break-word;
  1613. text-transform:none;
  1614. visibility:hidden;
  1615. }
  1616. #u51924 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:0px;
  1620. top:0px;
  1621. width:0px;
  1622. height:0px;
  1623. }
  1624. #u51925 {
  1625. border-width:0px;
  1626. position:absolute;
  1627. left:323px;
  1628. top:85px;
  1629. width:5px;
  1630. height:5px;
  1631. display:flex;
  1632. transition:none;
  1633. }
  1634. #u51925 .text {
  1635. position:absolute;
  1636. align-self:center;
  1637. padding:2px 2px 2px 2px;
  1638. box-sizing:border-box;
  1639. width:100%;
  1640. }
  1641. #u51925_img {
  1642. border-width:0px;
  1643. position:absolute;
  1644. left:0px;
  1645. top:0px;
  1646. width:5px;
  1647. height:5px;
  1648. }
  1649. #u51925_text {
  1650. border-width:0px;
  1651. word-wrap:break-word;
  1652. text-transform:none;
  1653. visibility:hidden;
  1654. }
  1655. #u51926 {
  1656. border-width:0px;
  1657. position:absolute;
  1658. left:339px;
  1659. top:85px;
  1660. width:5px;
  1661. height:5px;
  1662. display:flex;
  1663. transition:none;
  1664. }
  1665. #u51926 .text {
  1666. position:absolute;
  1667. align-self:center;
  1668. padding:2px 2px 2px 2px;
  1669. box-sizing:border-box;
  1670. width:100%;
  1671. }
  1672. #u51926_img {
  1673. border-width:0px;
  1674. position:absolute;
  1675. left:0px;
  1676. top:0px;
  1677. width:5px;
  1678. height:5px;
  1679. }
  1680. #u51926_text {
  1681. border-width:0px;
  1682. word-wrap:break-word;
  1683. text-transform:none;
  1684. visibility:hidden;
  1685. }
  1686. #u51927 {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:330px;
  1690. top:84px;
  1691. width:7px;
  1692. height:7px;
  1693. display:flex;
  1694. transition:none;
  1695. }
  1696. #u51927 .text {
  1697. position:absolute;
  1698. align-self:center;
  1699. padding:2px 2px 2px 2px;
  1700. box-sizing:border-box;
  1701. width:100%;
  1702. }
  1703. #u51927_img {
  1704. border-width:0px;
  1705. position:absolute;
  1706. left:0px;
  1707. top:0px;
  1708. width:7px;
  1709. height:7px;
  1710. }
  1711. #u51927_text {
  1712. border-width:0px;
  1713. word-wrap:break-word;
  1714. text-transform:none;
  1715. visibility:hidden;
  1716. }
  1717. #u51928 {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:347px;
  1721. top:87px;
  1722. width:18px;
  1723. height:1px;
  1724. display:flex;
  1725. -webkit-transform:rotate(90deg);
  1726. -moz-transform:rotate(90deg);
  1727. -ms-transform:rotate(90deg);
  1728. transform:rotate(90deg);
  1729. transition:none;
  1730. }
  1731. #u51928 .text {
  1732. position:absolute;
  1733. align-self:center;
  1734. padding:2px 2px 2px 2px;
  1735. box-sizing:border-box;
  1736. width:100%;
  1737. }
  1738. #u51928_img {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:0px;
  1742. top:0px;
  1743. width:19px;
  1744. height:2px;
  1745. }
  1746. #u51928_text {
  1747. border-width:0px;
  1748. word-wrap:break-word;
  1749. text-transform:none;
  1750. visibility:hidden;
  1751. }
  1752. #u51929_div {
  1753. border-width:0px;
  1754. position:absolute;
  1755. left:0px;
  1756. top:0px;
  1757. width:65px;
  1758. height:22px;
  1759. background:inherit;
  1760. background-color:rgba(255, 255, 255, 0);
  1761. border-radius:0px;
  1762. filter:drop-shadow(none);
  1763. transition:none;
  1764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1765. font-weight:400;
  1766. font-style:normal;
  1767. font-size:16px;
  1768. color:#000000;
  1769. }
  1770. #u51929 {
  1771. border-width:0px;
  1772. position:absolute;
  1773. left:182px;
  1774. top:76px;
  1775. width:65px;
  1776. height:22px;
  1777. display:flex;
  1778. transition:none;
  1779. transform-origin:50% 50%;
  1780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1781. font-weight:400;
  1782. font-style:normal;
  1783. font-size:16px;
  1784. color:#000000;
  1785. }
  1786. #u51929 .text {
  1787. position:absolute;
  1788. align-self:flex-start;
  1789. padding:0px 0px 0px 0px;
  1790. box-sizing:border-box;
  1791. width:100%;
  1792. }
  1793. #u51929_text {
  1794. border-width:0px;
  1795. white-space:nowrap;
  1796. text-transform:none;
  1797. }
  1798. #u51930_div {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:0px;
  1802. top:0px;
  1803. width:12px;
  1804. height:12px;
  1805. background:inherit;
  1806. background-color:rgba(255, 255, 255, 0);
  1807. box-sizing:border-box;
  1808. border-width:2px;
  1809. border-style:solid;
  1810. border-color:rgba(51, 51, 51, 1);
  1811. border-right:0px;
  1812. border-bottom:0px;
  1813. border-radius:0px;
  1814. border-top-right-radius:0px;
  1815. border-bottom-left-radius:0px;
  1816. filter:drop-shadow(none);
  1817. transition:none;
  1818. }
  1819. #u51930 {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:44px;
  1823. top:81px;
  1824. width:12px;
  1825. height:12px;
  1826. display:flex;
  1827. -webkit-transform:rotate(315deg);
  1828. -moz-transform:rotate(315deg);
  1829. -ms-transform:rotate(315deg);
  1830. transform:rotate(315deg);
  1831. transition:none;
  1832. transform-origin:50% 50%;
  1833. }
  1834. #u51930 .text {
  1835. position:absolute;
  1836. align-self:center;
  1837. padding:2px 2px 2px 2px;
  1838. box-sizing:border-box;
  1839. width:100%;
  1840. }
  1841. #u51930_text {
  1842. border-width:0px;
  1843. word-wrap:break-word;
  1844. text-transform:none;
  1845. visibility:hidden;
  1846. }
  1847. #u51931 {
  1848. border-width:0px;
  1849. position:absolute;
  1850. left:71px;
  1851. top:76px;
  1852. width:23px;
  1853. height:23px;
  1854. display:flex;
  1855. transition:none;
  1856. }
  1857. #u51931 .text {
  1858. position:absolute;
  1859. align-self:center;
  1860. padding:2px 2px 2px 2px;
  1861. box-sizing:border-box;
  1862. width:100%;
  1863. }
  1864. #u51931_img {
  1865. border-width:0px;
  1866. position:absolute;
  1867. left:0px;
  1868. top:0px;
  1869. width:23px;
  1870. height:23px;
  1871. }
  1872. #u51931_text {
  1873. border-width:0px;
  1874. word-wrap:break-word;
  1875. text-transform:none;
  1876. visibility:hidden;
  1877. }
  1878. #u51932 {
  1879. border-width:0px;
  1880. position:absolute;
  1881. left:0px;
  1882. top:0px;
  1883. width:0px;
  1884. height:0px;
  1885. }
  1886. #u51933_div {
  1887. border-width:0px;
  1888. position:absolute;
  1889. left:0px;
  1890. top:0px;
  1891. width:375px;
  1892. height:41px;
  1893. background:inherit;
  1894. background-color:rgba(255, 255, 255, 1);
  1895. border-radius:0px;
  1896. filter:drop-shadow(none);
  1897. transition:none;
  1898. }
  1899. #u51933 {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:29px;
  1903. top:157px;
  1904. width:375px;
  1905. height:41px;
  1906. display:flex;
  1907. transition:none;
  1908. transform-origin:50% 50%;
  1909. }
  1910. #u51933 .text {
  1911. position:absolute;
  1912. align-self:center;
  1913. padding:2px 2px 2px 2px;
  1914. box-sizing:border-box;
  1915. width:100%;
  1916. }
  1917. #u51933_text {
  1918. border-width:0px;
  1919. word-wrap:break-word;
  1920. text-transform:none;
  1921. visibility:hidden;
  1922. }
  1923. #u51934_div {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:0px;
  1927. top:0px;
  1928. width:37px;
  1929. height:40px;
  1930. background:inherit;
  1931. background-color:rgba(255, 255, 255, 0);
  1932. border-left:0px;
  1933. border-top:0px;
  1934. border-right:0px;
  1935. border-radius:0px;
  1936. border-bottom-right-radius:0px;
  1937. border-bottom-left-radius:0px;
  1938. filter:drop-shadow(none);
  1939. transition:none;
  1940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1941. font-weight:400;
  1942. font-style:normal;
  1943. font-size:12px;
  1944. text-align:center;
  1945. }
  1946. #u51934 {
  1947. border-width:0px;
  1948. position:absolute;
  1949. left:111px;
  1950. top:157px;
  1951. width:37px;
  1952. height:40px;
  1953. display:flex;
  1954. transition:none;
  1955. transform-origin:50% 50%;
  1956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1957. font-weight:400;
  1958. font-style:normal;
  1959. font-size:12px;
  1960. text-align:center;
  1961. }
  1962. #u51934 .text {
  1963. position:absolute;
  1964. align-self:center;
  1965. padding:0px 0px 0px 0px;
  1966. box-sizing:border-box;
  1967. width:100%;
  1968. }
  1969. #u51934_text {
  1970. border-width:0px;
  1971. white-space:nowrap;
  1972. text-transform:none;
  1973. }
  1974. #u51935_div {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:0px;
  1978. top:0px;
  1979. width:37px;
  1980. height:40px;
  1981. background:inherit;
  1982. background-color:rgba(255, 255, 255, 0);
  1983. box-sizing:border-box;
  1984. border-width:2px;
  1985. border-style:solid;
  1986. border-color:rgba(24, 144, 255, 1);
  1987. border-left:0px;
  1988. border-top:0px;
  1989. border-right:0px;
  1990. border-radius:0px;
  1991. border-bottom-right-radius:0px;
  1992. border-bottom-left-radius:0px;
  1993. filter:drop-shadow(none);
  1994. transition:none;
  1995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1996. font-weight:400;
  1997. font-style:normal;
  1998. font-size:12px;
  1999. color:#1890FF;
  2000. text-align:center;
  2001. }
  2002. #u51935 {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:45px;
  2006. top:157px;
  2007. width:37px;
  2008. height:40px;
  2009. display:flex;
  2010. transition:none;
  2011. transform-origin:50% 50%;
  2012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2013. font-weight:400;
  2014. font-style:normal;
  2015. font-size:12px;
  2016. color:#1890FF;
  2017. text-align:center;
  2018. }
  2019. #u51935 .text {
  2020. position:absolute;
  2021. align-self:center;
  2022. padding:0px 0px 0px 0px;
  2023. box-sizing:border-box;
  2024. width:100%;
  2025. }
  2026. #u51935_text {
  2027. border-width:0px;
  2028. white-space:nowrap;
  2029. text-transform:none;
  2030. }
  2031. #u51936_div {
  2032. border-width:0px;
  2033. position:absolute;
  2034. left:0px;
  2035. top:0px;
  2036. width:11px;
  2037. height:11px;
  2038. background:inherit;
  2039. background-color:rgba(217, 0, 27, 1);
  2040. border-radius:7px;
  2041. filter:drop-shadow(none);
  2042. transition:none;
  2043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2044. font-weight:400;
  2045. font-style:normal;
  2046. font-size:8px;
  2047. color:#FFFFFF;
  2048. text-align:center;
  2049. }
  2050. #u51936 {
  2051. border-width:0px;
  2052. position:absolute;
  2053. left:79px;
  2054. top:161px;
  2055. width:11px;
  2056. height:11px;
  2057. display:flex;
  2058. transition:none;
  2059. transform-origin:50% 50%;
  2060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2061. font-weight:400;
  2062. font-style:normal;
  2063. font-size:8px;
  2064. color:#FFFFFF;
  2065. text-align:center;
  2066. }
  2067. #u51936 .text {
  2068. position:absolute;
  2069. align-self:flex-start;
  2070. padding:0px 0px 0px 0px;
  2071. box-sizing:border-box;
  2072. width:100%;
  2073. }
  2074. #u51936_text {
  2075. border-width:0px;
  2076. word-wrap:break-word;
  2077. text-transform:none;
  2078. }
  2079. #u51937_div {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:0px;
  2083. top:0px;
  2084. width:37px;
  2085. height:40px;
  2086. background:inherit;
  2087. background-color:rgba(255, 255, 255, 0);
  2088. border-left:0px;
  2089. border-top:0px;
  2090. border-right:0px;
  2091. border-radius:0px;
  2092. border-bottom-right-radius:0px;
  2093. border-bottom-left-radius:0px;
  2094. filter:drop-shadow(none);
  2095. transition:none;
  2096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2097. font-weight:400;
  2098. font-style:normal;
  2099. font-size:12px;
  2100. text-align:center;
  2101. }
  2102. #u51937 {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:178px;
  2106. top:157px;
  2107. width:37px;
  2108. height:40px;
  2109. display:flex;
  2110. transition:none;
  2111. transform-origin:50% 50%;
  2112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2113. font-weight:400;
  2114. font-style:normal;
  2115. font-size:12px;
  2116. text-align:center;
  2117. }
  2118. #u51937 .text {
  2119. position:absolute;
  2120. align-self:center;
  2121. padding:0px 0px 0px 0px;
  2122. box-sizing:border-box;
  2123. width:100%;
  2124. }
  2125. #u51937_text {
  2126. border-width:0px;
  2127. white-space:nowrap;
  2128. text-transform:none;
  2129. }
  2130. #u51938_div {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:0px;
  2135. width:37px;
  2136. height:40px;
  2137. background:inherit;
  2138. background-color:rgba(255, 255, 255, 0);
  2139. border-left:0px;
  2140. border-top:0px;
  2141. border-right:0px;
  2142. border-radius:0px;
  2143. border-bottom-right-radius:0px;
  2144. border-bottom-left-radius:0px;
  2145. filter:drop-shadow(none);
  2146. transition:none;
  2147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2148. font-weight:400;
  2149. font-style:normal;
  2150. font-size:12px;
  2151. text-align:center;
  2152. }
  2153. #u51938 {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:245px;
  2157. top:157px;
  2158. width:37px;
  2159. height:40px;
  2160. display:flex;
  2161. transition:none;
  2162. transform-origin:50% 50%;
  2163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2164. font-weight:400;
  2165. font-style:normal;
  2166. font-size:12px;
  2167. text-align:center;
  2168. }
  2169. #u51938 .text {
  2170. position:absolute;
  2171. align-self:center;
  2172. padding:0px 0px 0px 0px;
  2173. box-sizing:border-box;
  2174. width:100%;
  2175. }
  2176. #u51938_text {
  2177. border-width:0px;
  2178. white-space:nowrap;
  2179. text-transform:none;
  2180. }
  2181. #u51939 {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:0px;
  2185. top:0px;
  2186. width:0px;
  2187. height:0px;
  2188. }
  2189. #u51940_div {
  2190. border-width:0px;
  2191. position:absolute;
  2192. left:0px;
  2193. top:0px;
  2194. width:375px;
  2195. height:50px;
  2196. background:inherit;
  2197. background-color:rgba(255, 255, 255, 1);
  2198. border-radius:0px;
  2199. filter:drop-shadow(none);
  2200. transition:none;
  2201. }
  2202. #u51940 {
  2203. border-width:0px;
  2204. position:absolute;
  2205. left:30px;
  2206. top:107px;
  2207. width:375px;
  2208. height:50px;
  2209. display:flex;
  2210. transition:none;
  2211. transform-origin:50% 50%;
  2212. }
  2213. #u51940 .text {
  2214. position:absolute;
  2215. align-self:center;
  2216. padding:2px 2px 2px 2px;
  2217. box-sizing:border-box;
  2218. width:100%;
  2219. }
  2220. #u51940_text {
  2221. border-width:0px;
  2222. word-wrap:break-word;
  2223. text-transform:none;
  2224. visibility:hidden;
  2225. }
  2226. #u51941 {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:0px;
  2230. top:0px;
  2231. width:0px;
  2232. height:0px;
  2233. }
  2234. #u51942 {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:0px;
  2238. top:0px;
  2239. width:0px;
  2240. height:0px;
  2241. }
  2242. #u51943_div {
  2243. border-width:0px;
  2244. position:absolute;
  2245. left:0px;
  2246. top:0px;
  2247. width:135px;
  2248. height:30px;
  2249. background:inherit;
  2250. background-color:rgba(242, 242, 242, 1);
  2251. border-radius:20px;
  2252. filter:drop-shadow(none);
  2253. transition:none;
  2254. }
  2255. #u51943 {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:43px;
  2259. top:117px;
  2260. width:135px;
  2261. height:30px;
  2262. display:flex;
  2263. transition:none;
  2264. transform-origin:50% 50%;
  2265. }
  2266. #u51943 .text {
  2267. position:absolute;
  2268. align-self:center;
  2269. padding:2px 2px 2px 2px;
  2270. box-sizing:border-box;
  2271. width:100%;
  2272. }
  2273. #u51943_text {
  2274. border-width:0px;
  2275. word-wrap:break-word;
  2276. text-transform:none;
  2277. visibility:hidden;
  2278. }
  2279. #u51944_input {
  2280. position:absolute;
  2281. left:0px;
  2282. top:0px;
  2283. width:121px;
  2284. height:22px;
  2285. padding:2px 2px 2px 2px;
  2286. font-family:"ArialMT", "Arial", sans-serif;
  2287. font-weight:400;
  2288. font-style:normal;
  2289. font-size:12px;
  2290. letter-spacing:normal;
  2291. color:#7F7F7F;
  2292. vertical-align:none;
  2293. text-align:left;
  2294. text-transform:none;
  2295. background-color:transparent;
  2296. border-color:transparent;
  2297. }
  2298. #u51944_input.disabled {
  2299. position:absolute;
  2300. left:0px;
  2301. top:0px;
  2302. width:121px;
  2303. height:22px;
  2304. padding:2px 2px 2px 2px;
  2305. font-family:"ArialMT", "Arial", sans-serif;
  2306. font-weight:400;
  2307. font-style:normal;
  2308. font-size:12px;
  2309. letter-spacing:normal;
  2310. color:#7F7F7F;
  2311. vertical-align:none;
  2312. text-align:left;
  2313. text-transform:none;
  2314. background-color:transparent;
  2315. border-color:transparent;
  2316. }
  2317. #u51944_div {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:0px;
  2321. top:0px;
  2322. width:121px;
  2323. height:22px;
  2324. background:inherit;
  2325. background-color:rgba(255, 255, 255, 0);
  2326. border-radius:0px;
  2327. filter:drop-shadow(none);
  2328. transition:none;
  2329. font-size:12px;
  2330. color:#7F7F7F;
  2331. }
  2332. #u51944 {
  2333. border-width:0px;
  2334. position:absolute;
  2335. left:50px;
  2336. top:121px;
  2337. width:121px;
  2338. height:22px;
  2339. display:flex;
  2340. transition:none;
  2341. transform-origin:50% 50%;
  2342. font-size:12px;
  2343. color:#7F7F7F;
  2344. }
  2345. #u51944 .text {
  2346. position:absolute;
  2347. align-self:flex-start;
  2348. padding:2px 2px 2px 2px;
  2349. box-sizing:border-box;
  2350. width:100%;
  2351. }
  2352. #u51944_div.disabled {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:0px;
  2356. top:0px;
  2357. width:121px;
  2358. height:22px;
  2359. background:inherit;
  2360. background-color:rgba(240, 240, 240, 1);
  2361. border-radius:0px;
  2362. filter:drop-shadow(none);
  2363. transition:none;
  2364. font-size:12px;
  2365. color:#7F7F7F;
  2366. }
  2367. #u51944.disabled {
  2368. }
  2369. .u51944_input_option {
  2370. font-size:12px;
  2371. }
  2372. #u51945_div {
  2373. border-width:0px;
  2374. position:absolute;
  2375. left:0px;
  2376. top:0px;
  2377. width:64px;
  2378. height:30px;
  2379. background:inherit;
  2380. background-color:rgba(255, 255, 255, 0);
  2381. border-left:0px;
  2382. border-top:0px;
  2383. border-right:0px;
  2384. border-radius:0px;
  2385. border-bottom-right-radius:0px;
  2386. border-bottom-left-radius:0px;
  2387. filter:drop-shadow(none);
  2388. transition:none;
  2389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2390. font-weight:400;
  2391. font-style:normal;
  2392. font-size:12px;
  2393. color:#1890FF;
  2394. line-height:30px;
  2395. }
  2396. #u51945 {
  2397. border-width:0px;
  2398. position:absolute;
  2399. left:333px;
  2400. top:117px;
  2401. width:64px;
  2402. height:30px;
  2403. display:flex;
  2404. transition:none;
  2405. transform-origin:50% 50%;
  2406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2407. font-weight:400;
  2408. font-style:normal;
  2409. font-size:12px;
  2410. color:#1890FF;
  2411. line-height:30px;
  2412. }
  2413. #u51945 .text {
  2414. position:absolute;
  2415. align-self:flex-start;
  2416. padding:0px 0px 0px 0px;
  2417. box-sizing:border-box;
  2418. width:100%;
  2419. }
  2420. #u51945_text {
  2421. border-width:0px;
  2422. white-space:nowrap;
  2423. text-transform:none;
  2424. }
  2425. #u51946 {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:0px;
  2429. top:0px;
  2430. width:0px;
  2431. height:0px;
  2432. }
  2433. #u51947_div {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:0px;
  2437. top:0px;
  2438. width:135px;
  2439. height:30px;
  2440. background:inherit;
  2441. background-color:rgba(242, 242, 242, 1);
  2442. border-radius:20px;
  2443. filter:drop-shadow(none);
  2444. transition:none;
  2445. }
  2446. #u51947 {
  2447. border-width:0px;
  2448. position:absolute;
  2449. left:188px;
  2450. top:117px;
  2451. width:135px;
  2452. height:30px;
  2453. display:flex;
  2454. transition:none;
  2455. transform-origin:50% 50%;
  2456. }
  2457. #u51947 .text {
  2458. position:absolute;
  2459. align-self:center;
  2460. padding:2px 2px 2px 2px;
  2461. box-sizing:border-box;
  2462. width:100%;
  2463. }
  2464. #u51947_text {
  2465. border-width:0px;
  2466. word-wrap:break-word;
  2467. text-transform:none;
  2468. visibility:hidden;
  2469. }
  2470. #u51948_input {
  2471. position:absolute;
  2472. left:0px;
  2473. top:0px;
  2474. width:121px;
  2475. height:22px;
  2476. padding:2px 2px 2px 2px;
  2477. font-family:"ArialMT", "Arial", sans-serif;
  2478. font-weight:400;
  2479. font-style:normal;
  2480. font-size:12px;
  2481. letter-spacing:normal;
  2482. color:#7F7F7F;
  2483. vertical-align:none;
  2484. text-align:left;
  2485. text-transform:none;
  2486. background-color:transparent;
  2487. border-color:transparent;
  2488. }
  2489. #u51948_input.disabled {
  2490. position:absolute;
  2491. left:0px;
  2492. top:0px;
  2493. width:121px;
  2494. height:22px;
  2495. padding:2px 2px 2px 2px;
  2496. font-family:"ArialMT", "Arial", sans-serif;
  2497. font-weight:400;
  2498. font-style:normal;
  2499. font-size:12px;
  2500. letter-spacing:normal;
  2501. color:#7F7F7F;
  2502. vertical-align:none;
  2503. text-align:left;
  2504. text-transform:none;
  2505. background-color:transparent;
  2506. border-color:transparent;
  2507. }
  2508. #u51948_div {
  2509. border-width:0px;
  2510. position:absolute;
  2511. left:0px;
  2512. top:0px;
  2513. width:121px;
  2514. height:22px;
  2515. background:inherit;
  2516. background-color:rgba(255, 255, 255, 0);
  2517. border-radius:0px;
  2518. filter:drop-shadow(none);
  2519. transition:none;
  2520. font-size:12px;
  2521. color:#7F7F7F;
  2522. }
  2523. #u51948 {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:195px;
  2527. top:121px;
  2528. width:121px;
  2529. height:22px;
  2530. display:flex;
  2531. transition:none;
  2532. transform-origin:50% 50%;
  2533. font-size:12px;
  2534. color:#7F7F7F;
  2535. }
  2536. #u51948 .text {
  2537. position:absolute;
  2538. align-self:flex-start;
  2539. padding:2px 2px 2px 2px;
  2540. box-sizing:border-box;
  2541. width:100%;
  2542. }
  2543. #u51948_div.disabled {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:0px;
  2547. top:0px;
  2548. width:121px;
  2549. height:22px;
  2550. background:inherit;
  2551. background-color:rgba(240, 240, 240, 1);
  2552. border-radius:0px;
  2553. filter:drop-shadow(none);
  2554. transition:none;
  2555. font-size:12px;
  2556. color:#7F7F7F;
  2557. }
  2558. #u51948.disabled {
  2559. }
  2560. .u51948_input_option {
  2561. font-size:12px;
  2562. }