styles.css 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301
  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. #u35740_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u35740 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u35740 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u35740_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u35741_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. box-sizing:border-box;
  59. border-width:1px;
  60. border-style:solid;
  61. border-color:rgba(215, 215, 215, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. }
  72. #u35741 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u35741 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u35741_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u35742 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u35743_div {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:88px;
  108. height:32px;
  109. background:inherit;
  110. background-color:rgba(255, 255, 255, 1);
  111. box-sizing:border-box;
  112. border-width:1px;
  113. border-style:solid;
  114. border-color:rgba(242, 242, 242, 1);
  115. border-radius:33px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. }
  120. #u35743 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u35743 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u35743_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u35744 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u35745_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u35745 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u35745 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u35745_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u35746_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u35746 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u35746 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u35746_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u35747 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u35748_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u35748 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u35748 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u35748_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u35749_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u35749 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u35749 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u35749_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u35750_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u35750 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u35750 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u35750_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u35751_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u35751 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u35751 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u35751_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u35752_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u35752 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u35752 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u35752_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u35753_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:50px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 1);
  381. box-sizing:border-box;
  382. border-width:1px;
  383. border-style:solid;
  384. border-color:rgba(242, 242, 242, 1);
  385. border-radius:26px;
  386. border-top-left-radius:0px;
  387. border-top-right-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. }
  392. #u35753 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u35753 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u35753_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u35754 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u35755_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u35755 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u35755 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u35755_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u35756_div {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:25px;
  458. height:17px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:12px;
  470. }
  471. #u35756 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u35756 .text {
  485. position:absolute;
  486. align-self:flex-start;
  487. padding:0px 0px 0px 0px;
  488. box-sizing:border-box;
  489. width:100%;
  490. }
  491. #u35756_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u35757 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u35758_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u35758 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u35758 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u35758_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u35759_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:25px;
  540. height:17px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:12px;
  552. }
  553. #u35759 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u35759 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 0px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u35759_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u35760_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:375px;
  584. height:681px;
  585. background:inherit;
  586. background-color:rgba(242, 242, 242, 0.462745098039216);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u35760 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u35760 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u35760_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u35761 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u35762_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u35762 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u35762 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u35762_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u35763_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:37px;
  659. height:17px;
  660. background:inherit;
  661. background-color:rgba(255, 255, 255, 0);
  662. border:none;
  663. border-radius:0px;
  664. -moz-box-shadow:none;
  665. -webkit-box-shadow:none;
  666. box-shadow:none;
  667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:12px;
  671. }
  672. #u35763 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u35763 .text {
  686. position:absolute;
  687. align-self:flex-start;
  688. padding:0px 0px 0px 0px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u35763_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u35764 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u35765_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u35765 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u35765 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u35765_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u35766_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:37px;
  741. height:17px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. }
  754. #u35766 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u35766 .text {
  768. position:absolute;
  769. align-self:flex-start;
  770. padding:0px 0px 0px 0px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u35766_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u35767_img {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:44px;
  786. }
  787. #u35767 {
  788. border-width:0px;
  789. position:absolute;
  790. left:29px;
  791. top:24px;
  792. width:375px;
  793. height:44px;
  794. display:flex;
  795. }
  796. #u35767 .text {
  797. position:absolute;
  798. align-self:center;
  799. padding:2px 2px 2px 2px;
  800. box-sizing:border-box;
  801. width:100%;
  802. }
  803. #u35767_text {
  804. border-width:0px;
  805. word-wrap:break-word;
  806. text-transform:none;
  807. visibility:hidden;
  808. }
  809. #u35768_div {
  810. border-width:0px;
  811. position:absolute;
  812. left:0px;
  813. top:0px;
  814. width:65px;
  815. height:22px;
  816. background:inherit;
  817. background-color:rgba(255, 255, 255, 0);
  818. border:none;
  819. border-radius:0px;
  820. -moz-box-shadow:none;
  821. -webkit-box-shadow:none;
  822. box-shadow:none;
  823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  824. font-weight:400;
  825. font-style:normal;
  826. font-size:16px;
  827. color:#000000;
  828. }
  829. #u35768 {
  830. border-width:0px;
  831. position:absolute;
  832. left:182px;
  833. top:76px;
  834. width:65px;
  835. height:22px;
  836. display:flex;
  837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  838. font-weight:400;
  839. font-style:normal;
  840. font-size:16px;
  841. color:#000000;
  842. }
  843. #u35768 .text {
  844. position:absolute;
  845. align-self:flex-start;
  846. padding:0px 0px 0px 0px;
  847. box-sizing:border-box;
  848. width:100%;
  849. }
  850. #u35768_text {
  851. border-width:0px;
  852. white-space:nowrap;
  853. text-transform:none;
  854. }
  855. #u35769_div {
  856. border-width:0px;
  857. position:absolute;
  858. left:0px;
  859. top:0px;
  860. width:12px;
  861. height:12px;
  862. background:inherit;
  863. background-color:rgba(255, 255, 255, 0);
  864. box-sizing:border-box;
  865. border-width:2px;
  866. border-style:solid;
  867. border-color:rgba(51, 51, 51, 1);
  868. border-right:0px;
  869. border-bottom:0px;
  870. border-radius:0px;
  871. border-top-right-radius:0px;
  872. border-bottom-left-radius:0px;
  873. -moz-box-shadow:none;
  874. -webkit-box-shadow:none;
  875. box-shadow:none;
  876. }
  877. #u35769 {
  878. border-width:0px;
  879. position:absolute;
  880. left:44px;
  881. top:81px;
  882. width:12px;
  883. height:12px;
  884. display:flex;
  885. -webkit-transform:rotate(315deg);
  886. -moz-transform:rotate(315deg);
  887. -ms-transform:rotate(315deg);
  888. transform:rotate(315deg);
  889. }
  890. #u35769 .text {
  891. position:absolute;
  892. align-self:center;
  893. padding:2px 2px 2px 2px;
  894. box-sizing:border-box;
  895. width:100%;
  896. }
  897. #u35769_text {
  898. border-width:0px;
  899. word-wrap:break-word;
  900. text-transform:none;
  901. visibility:hidden;
  902. }
  903. #u35770_img {
  904. border-width:0px;
  905. position:absolute;
  906. left:0px;
  907. top:0px;
  908. width:23px;
  909. height:23px;
  910. }
  911. #u35770 {
  912. border-width:0px;
  913. position:absolute;
  914. left:68px;
  915. top:76px;
  916. width:23px;
  917. height:23px;
  918. display:flex;
  919. }
  920. #u35770 .text {
  921. position:absolute;
  922. align-self:center;
  923. padding:2px 2px 2px 2px;
  924. box-sizing:border-box;
  925. width:100%;
  926. }
  927. #u35770_text {
  928. border-width:0px;
  929. word-wrap:break-word;
  930. text-transform:none;
  931. visibility:hidden;
  932. }
  933. #u35771_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:375px;
  939. height:733px;
  940. background:inherit;
  941. background-color:rgba(242, 242, 242, 0.996078431372549);
  942. border:none;
  943. border-top:0px;
  944. border-radius:21px;
  945. border-top-left-radius:0px;
  946. border-top-right-radius:0px;
  947. -moz-box-shadow:none;
  948. -webkit-box-shadow:none;
  949. box-shadow:none;
  950. }
  951. #u35771 {
  952. border-width:0px;
  953. position:absolute;
  954. left:29px;
  955. top:107px;
  956. width:375px;
  957. height:733px;
  958. display:flex;
  959. }
  960. #u35771 .text {
  961. position:absolute;
  962. align-self:center;
  963. padding:2px 2px 2px 2px;
  964. box-sizing:border-box;
  965. width:100%;
  966. }
  967. #u35771_text {
  968. border-width:0px;
  969. word-wrap:break-word;
  970. text-transform:none;
  971. visibility:hidden;
  972. }
  973. #u35772 {
  974. border-width:0px;
  975. position:absolute;
  976. left:0px;
  977. top:0px;
  978. width:0px;
  979. height:0px;
  980. }
  981. #u35773_div {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:375px;
  987. height:50px;
  988. background:inherit;
  989. background-color:rgba(255, 255, 255, 1);
  990. box-sizing:border-box;
  991. border-width:1px;
  992. border-style:solid;
  993. border-color:rgba(242, 242, 242, 1);
  994. border-radius:26px;
  995. border-top-left-radius:0px;
  996. border-top-right-radius:0px;
  997. -moz-box-shadow:none;
  998. -webkit-box-shadow:none;
  999. box-shadow:none;
  1000. }
  1001. #u35773 {
  1002. border-width:0px;
  1003. position:absolute;
  1004. left:29px;
  1005. top:790px;
  1006. width:375px;
  1007. height:50px;
  1008. display:flex;
  1009. }
  1010. #u35773 .text {
  1011. position:absolute;
  1012. align-self:center;
  1013. padding:2px 2px 2px 2px;
  1014. box-sizing:border-box;
  1015. width:100%;
  1016. }
  1017. #u35773_text {
  1018. border-width:0px;
  1019. word-wrap:break-word;
  1020. text-transform:none;
  1021. visibility:hidden;
  1022. }
  1023. #u35774 {
  1024. border-width:0px;
  1025. position:absolute;
  1026. left:0px;
  1027. top:0px;
  1028. width:0px;
  1029. height:0px;
  1030. }
  1031. #u35775_div {
  1032. border-width:0px;
  1033. position:absolute;
  1034. left:0px;
  1035. top:0px;
  1036. width:49px;
  1037. height:17px;
  1038. background:inherit;
  1039. background-color:rgba(255, 255, 255, 0);
  1040. border:none;
  1041. border-radius:0px;
  1042. -moz-box-shadow:none;
  1043. -webkit-box-shadow:none;
  1044. box-shadow:none;
  1045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1046. font-weight:400;
  1047. font-style:normal;
  1048. font-size:12px;
  1049. }
  1050. #u35775 {
  1051. border-width:0px;
  1052. position:absolute;
  1053. left:89px;
  1054. top:819px;
  1055. width:49px;
  1056. height:17px;
  1057. display:flex;
  1058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1059. font-weight:400;
  1060. font-style:normal;
  1061. font-size:12px;
  1062. }
  1063. #u35775 .text {
  1064. position:absolute;
  1065. align-self:flex-start;
  1066. padding:0px 0px 0px 0px;
  1067. box-sizing:border-box;
  1068. width:100%;
  1069. }
  1070. #u35775_text {
  1071. border-width:0px;
  1072. white-space:nowrap;
  1073. text-transform:none;
  1074. }
  1075. #u35776_img {
  1076. border-width:0px;
  1077. position:absolute;
  1078. left:0px;
  1079. top:0px;
  1080. width:24px;
  1081. height:24px;
  1082. }
  1083. #u35776 {
  1084. border-width:0px;
  1085. position:absolute;
  1086. left:102px;
  1087. top:794px;
  1088. width:24px;
  1089. height:24px;
  1090. display:flex;
  1091. font-size:8px;
  1092. color:#FFFFFF;
  1093. }
  1094. #u35776 .text {
  1095. position:absolute;
  1096. align-self:center;
  1097. padding:2px 2px 2px 2px;
  1098. box-sizing:border-box;
  1099. width:100%;
  1100. }
  1101. #u35776_text {
  1102. border-width:0px;
  1103. word-wrap:break-word;
  1104. text-transform:none;
  1105. }
  1106. #u35777 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:0px;
  1110. top:0px;
  1111. width:0px;
  1112. height:0px;
  1113. }
  1114. #u35778_div {
  1115. border-width:0px;
  1116. position:absolute;
  1117. left:0px;
  1118. top:0px;
  1119. width:49px;
  1120. height:17px;
  1121. background:inherit;
  1122. background-color:rgba(255, 255, 255, 0);
  1123. border:none;
  1124. border-radius:0px;
  1125. -moz-box-shadow:none;
  1126. -webkit-box-shadow:none;
  1127. box-shadow:none;
  1128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1129. font-weight:400;
  1130. font-style:normal;
  1131. font-size:12px;
  1132. }
  1133. #u35778 {
  1134. border-width:0px;
  1135. position:absolute;
  1136. left:295px;
  1137. top:819px;
  1138. width:49px;
  1139. height:17px;
  1140. display:flex;
  1141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1142. font-weight:400;
  1143. font-style:normal;
  1144. font-size:12px;
  1145. }
  1146. #u35778 .text {
  1147. position:absolute;
  1148. align-self:flex-start;
  1149. padding:0px 0px 0px 0px;
  1150. box-sizing:border-box;
  1151. width:100%;
  1152. }
  1153. #u35778_text {
  1154. border-width:0px;
  1155. white-space:nowrap;
  1156. text-transform:none;
  1157. }
  1158. #u35779_img {
  1159. border-width:0px;
  1160. position:absolute;
  1161. left:0px;
  1162. top:0px;
  1163. width:24px;
  1164. height:24px;
  1165. }
  1166. #u35779 {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:308px;
  1170. top:795px;
  1171. width:24px;
  1172. height:24px;
  1173. display:flex;
  1174. font-size:8px;
  1175. }
  1176. #u35779 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u35779_text {
  1184. border-width:0px;
  1185. word-wrap:break-word;
  1186. text-transform:none;
  1187. }
  1188. #u35780 {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:0px;
  1194. height:0px;
  1195. }
  1196. #u35781 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:0px;
  1200. top:0px;
  1201. width:0px;
  1202. height:0px;
  1203. }
  1204. #u35782_div {
  1205. border-width:0px;
  1206. position:absolute;
  1207. left:0px;
  1208. top:0px;
  1209. width:375px;
  1210. height:41px;
  1211. background:inherit;
  1212. background-color:rgba(255, 255, 255, 1);
  1213. border:none;
  1214. border-radius:0px;
  1215. -moz-box-shadow:none;
  1216. -webkit-box-shadow:none;
  1217. box-shadow:none;
  1218. }
  1219. #u35782 {
  1220. border-width:0px;
  1221. position:absolute;
  1222. left:29px;
  1223. top:156px;
  1224. width:375px;
  1225. height:41px;
  1226. display:flex;
  1227. }
  1228. #u35782 .text {
  1229. position:absolute;
  1230. align-self:center;
  1231. padding:2px 2px 2px 2px;
  1232. box-sizing:border-box;
  1233. width:100%;
  1234. }
  1235. #u35782_text {
  1236. border-width:0px;
  1237. word-wrap:break-word;
  1238. text-transform:none;
  1239. visibility:hidden;
  1240. }
  1241. #u35783_div {
  1242. border-width:0px;
  1243. position:absolute;
  1244. left:0px;
  1245. top:0px;
  1246. width:25px;
  1247. height:40px;
  1248. background:inherit;
  1249. background-color:rgba(255, 255, 255, 0);
  1250. border:none;
  1251. border-left:0px;
  1252. border-top:0px;
  1253. border-right:0px;
  1254. border-radius:0px;
  1255. border-bottom-right-radius:0px;
  1256. border-bottom-left-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:12px;
  1264. text-align:center;
  1265. }
  1266. #u35783 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:116px;
  1270. top:156px;
  1271. width:25px;
  1272. height:40px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:12px;
  1278. text-align:center;
  1279. }
  1280. #u35783 .text {
  1281. position:absolute;
  1282. align-self:center;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u35783_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u35784_div {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:25px;
  1298. height:40px;
  1299. background:inherit;
  1300. background-color:rgba(255, 255, 255, 0);
  1301. border:none;
  1302. border-radius:0px;
  1303. -moz-box-shadow:none;
  1304. -webkit-box-shadow:none;
  1305. box-shadow:none;
  1306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1307. font-weight:400;
  1308. font-style:normal;
  1309. font-size:12px;
  1310. color:#000000;
  1311. text-align:center;
  1312. }
  1313. #u35784 {
  1314. border-width:0px;
  1315. position:absolute;
  1316. left:182px;
  1317. top:156px;
  1318. width:25px;
  1319. height:40px;
  1320. display:flex;
  1321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1322. font-weight:400;
  1323. font-style:normal;
  1324. font-size:12px;
  1325. color:#000000;
  1326. text-align:center;
  1327. }
  1328. #u35784 .text {
  1329. position:absolute;
  1330. align-self:center;
  1331. padding:0px 0px 0px 0px;
  1332. box-sizing:border-box;
  1333. width:100%;
  1334. }
  1335. #u35784_text {
  1336. border-width:0px;
  1337. white-space:nowrap;
  1338. text-transform:none;
  1339. }
  1340. #u35785_div {
  1341. border-width:0px;
  1342. position:absolute;
  1343. left:0px;
  1344. top:0px;
  1345. width:25px;
  1346. height:40px;
  1347. background:inherit;
  1348. background-color:rgba(255, 255, 255, 0);
  1349. border:none;
  1350. border-radius:0px;
  1351. -moz-box-shadow:none;
  1352. -webkit-box-shadow:none;
  1353. box-shadow:none;
  1354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1355. font-weight:400;
  1356. font-style:normal;
  1357. font-size:12px;
  1358. color:#000000;
  1359. text-align:center;
  1360. }
  1361. #u35785 {
  1362. border-width:0px;
  1363. position:absolute;
  1364. left:247px;
  1365. top:156px;
  1366. width:25px;
  1367. height:40px;
  1368. display:flex;
  1369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1370. font-weight:400;
  1371. font-style:normal;
  1372. font-size:12px;
  1373. color:#000000;
  1374. text-align:center;
  1375. }
  1376. #u35785 .text {
  1377. position:absolute;
  1378. align-self:center;
  1379. padding:0px 0px 0px 0px;
  1380. box-sizing:border-box;
  1381. width:100%;
  1382. }
  1383. #u35785_text {
  1384. border-width:0px;
  1385. white-space:nowrap;
  1386. text-transform:none;
  1387. }
  1388. #u35786_div {
  1389. border-width:0px;
  1390. position:absolute;
  1391. left:0px;
  1392. top:0px;
  1393. width:25px;
  1394. height:40px;
  1395. background:inherit;
  1396. background-color:rgba(255, 255, 255, 0);
  1397. box-sizing:border-box;
  1398. border-width:2px;
  1399. border-style:solid;
  1400. border-color:rgba(24, 144, 255, 1);
  1401. border-left:0px;
  1402. border-top:0px;
  1403. border-right:0px;
  1404. border-radius:0px;
  1405. border-bottom-right-radius:0px;
  1406. border-bottom-left-radius:0px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. font-size:12px;
  1414. color:#1890FF;
  1415. text-align:center;
  1416. }
  1417. #u35786 {
  1418. border-width:0px;
  1419. position:absolute;
  1420. left:51px;
  1421. top:156px;
  1422. width:25px;
  1423. height:40px;
  1424. display:flex;
  1425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1426. font-weight:400;
  1427. font-style:normal;
  1428. font-size:12px;
  1429. color:#1890FF;
  1430. text-align:center;
  1431. }
  1432. #u35786 .text {
  1433. position:absolute;
  1434. align-self:center;
  1435. padding:0px 0px 0px 0px;
  1436. box-sizing:border-box;
  1437. width:100%;
  1438. }
  1439. #u35786_text {
  1440. border-width:0px;
  1441. white-space:nowrap;
  1442. text-transform:none;
  1443. }
  1444. #u35787 {
  1445. border-width:0px;
  1446. position:absolute;
  1447. left:0px;
  1448. top:0px;
  1449. width:0px;
  1450. height:0px;
  1451. }
  1452. #u35788_div {
  1453. border-width:0px;
  1454. position:absolute;
  1455. left:0px;
  1456. top:0px;
  1457. width:375px;
  1458. height:50px;
  1459. background:inherit;
  1460. background-color:rgba(255, 255, 255, 1);
  1461. border:none;
  1462. border-radius:0px;
  1463. -moz-box-shadow:none;
  1464. -webkit-box-shadow:none;
  1465. box-shadow:none;
  1466. }
  1467. #u35788 {
  1468. border-width:0px;
  1469. position:absolute;
  1470. left:29px;
  1471. top:106px;
  1472. width:375px;
  1473. height:50px;
  1474. display:flex;
  1475. }
  1476. #u35788 .text {
  1477. position:absolute;
  1478. align-self:center;
  1479. padding:2px 2px 2px 2px;
  1480. box-sizing:border-box;
  1481. width:100%;
  1482. }
  1483. #u35788_text {
  1484. border-width:0px;
  1485. word-wrap:break-word;
  1486. text-transform:none;
  1487. visibility:hidden;
  1488. }
  1489. #u35789 {
  1490. border-width:0px;
  1491. position:absolute;
  1492. left:0px;
  1493. top:0px;
  1494. width:0px;
  1495. height:0px;
  1496. }
  1497. #u35790 {
  1498. border-width:0px;
  1499. position:absolute;
  1500. left:0px;
  1501. top:0px;
  1502. width:0px;
  1503. height:0px;
  1504. }
  1505. #u35791_div {
  1506. border-width:0px;
  1507. position:absolute;
  1508. left:0px;
  1509. top:0px;
  1510. width:135px;
  1511. height:30px;
  1512. background:inherit;
  1513. background-color:rgba(242, 242, 242, 1);
  1514. border:none;
  1515. border-radius:20px;
  1516. -moz-box-shadow:none;
  1517. -webkit-box-shadow:none;
  1518. box-shadow:none;
  1519. }
  1520. #u35791 {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:42px;
  1524. top:116px;
  1525. width:135px;
  1526. height:30px;
  1527. display:flex;
  1528. }
  1529. #u35791 .text {
  1530. position:absolute;
  1531. align-self:center;
  1532. padding:2px 2px 2px 2px;
  1533. box-sizing:border-box;
  1534. width:100%;
  1535. }
  1536. #u35791_text {
  1537. border-width:0px;
  1538. word-wrap:break-word;
  1539. text-transform:none;
  1540. visibility:hidden;
  1541. }
  1542. #u35792_input {
  1543. position:absolute;
  1544. left:0px;
  1545. top:0px;
  1546. width:122px;
  1547. height:22px;
  1548. padding:2px 2px 2px 2px;
  1549. font-family:'ArialMT', 'Arial', sans-serif;
  1550. font-weight:400;
  1551. font-style:normal;
  1552. font-size:12px;
  1553. letter-spacing:normal;
  1554. color:#7F7F7F;
  1555. vertical-align:none;
  1556. text-align:left;
  1557. text-transform:none;
  1558. background-color:transparent;
  1559. border-color:transparent;
  1560. }
  1561. #u35792_input.disabled {
  1562. position:absolute;
  1563. left:0px;
  1564. top:0px;
  1565. width:122px;
  1566. height:22px;
  1567. padding:2px 2px 2px 2px;
  1568. font-family:'ArialMT', 'Arial', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:12px;
  1572. letter-spacing:normal;
  1573. color:#7F7F7F;
  1574. vertical-align:none;
  1575. text-align:left;
  1576. text-transform:none;
  1577. background-color:transparent;
  1578. border-color:transparent;
  1579. }
  1580. #u35792_div {
  1581. border-width:0px;
  1582. position:absolute;
  1583. left:0px;
  1584. top:0px;
  1585. width:122px;
  1586. height:22px;
  1587. background:inherit;
  1588. background-color:rgba(255, 255, 255, 0);
  1589. border:none;
  1590. border-radius:0px;
  1591. -moz-box-shadow:none;
  1592. -webkit-box-shadow:none;
  1593. box-shadow:none;
  1594. font-size:12px;
  1595. color:#7F7F7F;
  1596. }
  1597. #u35792 {
  1598. border-width:0px;
  1599. position:absolute;
  1600. left:49px;
  1601. top:120px;
  1602. width:122px;
  1603. height:22px;
  1604. display:flex;
  1605. font-size:12px;
  1606. color:#7F7F7F;
  1607. }
  1608. #u35792 .text {
  1609. position:absolute;
  1610. align-self:flex-start;
  1611. padding:2px 2px 2px 2px;
  1612. box-sizing:border-box;
  1613. width:100%;
  1614. }
  1615. #u35792_div.disabled {
  1616. border-width:0px;
  1617. position:absolute;
  1618. left:0px;
  1619. top:0px;
  1620. width:122px;
  1621. height:22px;
  1622. background:inherit;
  1623. background-color:rgba(240, 240, 240, 1);
  1624. border:none;
  1625. border-radius:0px;
  1626. -moz-box-shadow:none;
  1627. -webkit-box-shadow:none;
  1628. box-shadow:none;
  1629. font-size:12px;
  1630. color:#7F7F7F;
  1631. }
  1632. #u35792.disabled {
  1633. }
  1634. .u35792_input_option {
  1635. font-size:12px;
  1636. }
  1637. #u35793_div {
  1638. border-width:0px;
  1639. position:absolute;
  1640. left:0px;
  1641. top:0px;
  1642. width:64px;
  1643. height:30px;
  1644. background:inherit;
  1645. background-color:rgba(255, 255, 255, 0);
  1646. border:none;
  1647. border-left:0px;
  1648. border-top:0px;
  1649. border-right:0px;
  1650. border-radius:0px;
  1651. border-bottom-right-radius:0px;
  1652. border-bottom-left-radius:0px;
  1653. -moz-box-shadow:none;
  1654. -webkit-box-shadow:none;
  1655. box-shadow:none;
  1656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1657. font-weight:400;
  1658. font-style:normal;
  1659. font-size:12px;
  1660. color:#1890FF;
  1661. line-height:30px;
  1662. }
  1663. #u35793 {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:332px;
  1667. top:116px;
  1668. width:64px;
  1669. height:30px;
  1670. display:flex;
  1671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1672. font-weight:400;
  1673. font-style:normal;
  1674. font-size:12px;
  1675. color:#1890FF;
  1676. line-height:30px;
  1677. }
  1678. #u35793 .text {
  1679. position:absolute;
  1680. align-self:flex-start;
  1681. padding:0px 0px 0px 0px;
  1682. box-sizing:border-box;
  1683. width:100%;
  1684. }
  1685. #u35793_text {
  1686. border-width:0px;
  1687. white-space:nowrap;
  1688. text-transform:none;
  1689. }
  1690. #u35794 {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:0px;
  1694. top:0px;
  1695. width:0px;
  1696. height:0px;
  1697. }
  1698. #u35795_div {
  1699. border-width:0px;
  1700. position:absolute;
  1701. left:0px;
  1702. top:0px;
  1703. width:135px;
  1704. height:30px;
  1705. background:inherit;
  1706. background-color:rgba(242, 242, 242, 1);
  1707. border:none;
  1708. border-radius:20px;
  1709. -moz-box-shadow:none;
  1710. -webkit-box-shadow:none;
  1711. box-shadow:none;
  1712. }
  1713. #u35795 {
  1714. border-width:0px;
  1715. position:absolute;
  1716. left:187px;
  1717. top:116px;
  1718. width:135px;
  1719. height:30px;
  1720. display:flex;
  1721. }
  1722. #u35795 .text {
  1723. position:absolute;
  1724. align-self:center;
  1725. padding:2px 2px 2px 2px;
  1726. box-sizing:border-box;
  1727. width:100%;
  1728. }
  1729. #u35795_text {
  1730. border-width:0px;
  1731. word-wrap:break-word;
  1732. text-transform:none;
  1733. visibility:hidden;
  1734. }
  1735. #u35796_input {
  1736. position:absolute;
  1737. left:0px;
  1738. top:0px;
  1739. width:122px;
  1740. height:22px;
  1741. padding:2px 2px 2px 2px;
  1742. font-family:'ArialMT', 'Arial', sans-serif;
  1743. font-weight:400;
  1744. font-style:normal;
  1745. font-size:12px;
  1746. letter-spacing:normal;
  1747. color:#7F7F7F;
  1748. vertical-align:none;
  1749. text-align:left;
  1750. text-transform:none;
  1751. background-color:transparent;
  1752. border-color:transparent;
  1753. }
  1754. #u35796_input.disabled {
  1755. position:absolute;
  1756. left:0px;
  1757. top:0px;
  1758. width:122px;
  1759. height:22px;
  1760. padding:2px 2px 2px 2px;
  1761. font-family:'ArialMT', 'Arial', sans-serif;
  1762. font-weight:400;
  1763. font-style:normal;
  1764. font-size:12px;
  1765. letter-spacing:normal;
  1766. color:#7F7F7F;
  1767. vertical-align:none;
  1768. text-align:left;
  1769. text-transform:none;
  1770. background-color:transparent;
  1771. border-color:transparent;
  1772. }
  1773. #u35796_div {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:0px;
  1777. top:0px;
  1778. width:122px;
  1779. height:22px;
  1780. background:inherit;
  1781. background-color:rgba(255, 255, 255, 0);
  1782. border:none;
  1783. border-radius:0px;
  1784. -moz-box-shadow:none;
  1785. -webkit-box-shadow:none;
  1786. box-shadow:none;
  1787. font-size:12px;
  1788. color:#7F7F7F;
  1789. }
  1790. #u35796 {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:194px;
  1794. top:120px;
  1795. width:122px;
  1796. height:22px;
  1797. display:flex;
  1798. font-size:12px;
  1799. color:#7F7F7F;
  1800. }
  1801. #u35796 .text {
  1802. position:absolute;
  1803. align-self:flex-start;
  1804. padding:2px 2px 2px 2px;
  1805. box-sizing:border-box;
  1806. width:100%;
  1807. }
  1808. #u35796_div.disabled {
  1809. border-width:0px;
  1810. position:absolute;
  1811. left:0px;
  1812. top:0px;
  1813. width:122px;
  1814. height:22px;
  1815. background:inherit;
  1816. background-color:rgba(240, 240, 240, 1);
  1817. border:none;
  1818. border-radius:0px;
  1819. -moz-box-shadow:none;
  1820. -webkit-box-shadow:none;
  1821. box-shadow:none;
  1822. font-size:12px;
  1823. color:#7F7F7F;
  1824. }
  1825. #u35796.disabled {
  1826. }
  1827. .u35796_input_option {
  1828. font-size:12px;
  1829. }
  1830. #u35797 {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:0px;
  1834. top:0px;
  1835. width:0px;
  1836. height:0px;
  1837. }
  1838. #u35798_div {
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:0px;
  1842. top:0px;
  1843. width:375px;
  1844. height:90px;
  1845. background:inherit;
  1846. background-color:rgba(255, 255, 255, 1);
  1847. border:none;
  1848. border-radius:4px;
  1849. -moz-box-shadow:none;
  1850. -webkit-box-shadow:none;
  1851. box-shadow:none;
  1852. }
  1853. #u35798 {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:29px;
  1857. top:208px;
  1858. width:375px;
  1859. height:90px;
  1860. display:flex;
  1861. }
  1862. #u35798 .text {
  1863. position:absolute;
  1864. align-self:center;
  1865. padding:2px 2px 2px 2px;
  1866. box-sizing:border-box;
  1867. width:100%;
  1868. }
  1869. #u35798_text {
  1870. border-width:0px;
  1871. word-wrap:break-word;
  1872. text-transform:none;
  1873. visibility:hidden;
  1874. }
  1875. #u35799_div {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:0px;
  1879. top:0px;
  1880. width:150px;
  1881. height:20px;
  1882. background:inherit;
  1883. background-color:rgba(255, 255, 255, 0);
  1884. border:none;
  1885. border-radius:0px;
  1886. -moz-box-shadow:none;
  1887. -webkit-box-shadow:none;
  1888. box-shadow:none;
  1889. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1890. font-weight:500;
  1891. font-style:normal;
  1892. color:#000000;
  1893. }
  1894. #u35799 {
  1895. border-width:0px;
  1896. position:absolute;
  1897. left:43px;
  1898. top:221px;
  1899. width:150px;
  1900. height:20px;
  1901. display:flex;
  1902. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1903. font-weight:500;
  1904. font-style:normal;
  1905. color:#000000;
  1906. }
  1907. #u35799 .text {
  1908. position:absolute;
  1909. align-self:center;
  1910. padding:0px 0px 0px 0px;
  1911. box-sizing:border-box;
  1912. width:100%;
  1913. }
  1914. #u35799_text {
  1915. border-width:0px;
  1916. white-space:nowrap;
  1917. text-transform:none;
  1918. }
  1919. #u35800_div {
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:0px;
  1923. top:0px;
  1924. width:21px;
  1925. height:14px;
  1926. background:inherit;
  1927. background-color:rgba(0, 191, 191, 0);
  1928. border:none;
  1929. border-left:0px;
  1930. border-top:0px;
  1931. border-right:0px;
  1932. border-radius:0px;
  1933. border-bottom-right-radius:0px;
  1934. border-bottom-left-radius:0px;
  1935. -moz-box-shadow:none;
  1936. -webkit-box-shadow:none;
  1937. box-shadow:none;
  1938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1939. font-weight:400;
  1940. font-style:normal;
  1941. font-size:10px;
  1942. color:#00BFBF;
  1943. }
  1944. #u35800 {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:361px;
  1948. top:224px;
  1949. width:21px;
  1950. height:14px;
  1951. display:flex;
  1952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1953. font-weight:400;
  1954. font-style:normal;
  1955. font-size:10px;
  1956. color:#00BFBF;
  1957. }
  1958. #u35800 .text {
  1959. position:absolute;
  1960. align-self:center;
  1961. padding:0px 0px 0px 0px;
  1962. box-sizing:border-box;
  1963. width:100%;
  1964. }
  1965. #u35800_text {
  1966. border-width:0px;
  1967. white-space:nowrap;
  1968. text-transform:none;
  1969. }
  1970. #u35801_div {
  1971. border-width:0px;
  1972. position:absolute;
  1973. left:0px;
  1974. top:0px;
  1975. width:157px;
  1976. height:40px;
  1977. background:inherit;
  1978. background-color:rgba(255, 255, 255, 0);
  1979. border:none;
  1980. border-radius:0px;
  1981. -moz-box-shadow:none;
  1982. -webkit-box-shadow:none;
  1983. box-shadow:none;
  1984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1985. font-weight:400;
  1986. font-style:normal;
  1987. font-size:12px;
  1988. color:#7F7F7F;
  1989. line-height:20px;
  1990. }
  1991. #u35801 {
  1992. border-width:0px;
  1993. position:absolute;
  1994. left:43px;
  1995. top:246px;
  1996. width:157px;
  1997. height:40px;
  1998. display:flex;
  1999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2000. font-weight:400;
  2001. font-style:normal;
  2002. font-size:12px;
  2003. color:#7F7F7F;
  2004. line-height:20px;
  2005. }
  2006. #u35801 .text {
  2007. position:absolute;
  2008. align-self:center;
  2009. padding:0px 0px 0px 0px;
  2010. box-sizing:border-box;
  2011. width:100%;
  2012. }
  2013. #u35801_text {
  2014. border-width:0px;
  2015. white-space:nowrap;
  2016. text-transform:none;
  2017. }
  2018. #u35802_div {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:0px;
  2022. top:0px;
  2023. width:8px;
  2024. height:8px;
  2025. background:inherit;
  2026. background-color:rgba(255, 255, 255, 0);
  2027. box-sizing:border-box;
  2028. border-width:1px;
  2029. border-style:solid;
  2030. border-color:rgba(51, 51, 51, 1);
  2031. border-right:0px;
  2032. border-bottom:0px;
  2033. border-radius:0px;
  2034. border-top-right-radius:0px;
  2035. border-bottom-left-radius:0px;
  2036. -moz-box-shadow:none;
  2037. -webkit-box-shadow:none;
  2038. box-shadow:none;
  2039. }
  2040. #u35802 {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:384px;
  2044. top:227px;
  2045. width:8px;
  2046. height:8px;
  2047. display:flex;
  2048. -webkit-transform:rotate(135deg);
  2049. -moz-transform:rotate(135deg);
  2050. -ms-transform:rotate(135deg);
  2051. transform:rotate(135deg);
  2052. }
  2053. #u35802 .text {
  2054. position:absolute;
  2055. align-self:center;
  2056. padding:2px 2px 2px 2px;
  2057. box-sizing:border-box;
  2058. width:100%;
  2059. }
  2060. #u35802_text {
  2061. border-width:0px;
  2062. word-wrap:break-word;
  2063. text-transform:none;
  2064. visibility:hidden;
  2065. }
  2066. #u35803 {
  2067. border-width:0px;
  2068. position:absolute;
  2069. left:0px;
  2070. top:0px;
  2071. width:0px;
  2072. height:0px;
  2073. }
  2074. #u35804_div {
  2075. border-width:0px;
  2076. position:absolute;
  2077. left:0px;
  2078. top:0px;
  2079. width:375px;
  2080. height:90px;
  2081. background:inherit;
  2082. background-color:rgba(255, 255, 255, 1);
  2083. border:none;
  2084. border-radius:4px;
  2085. -moz-box-shadow:none;
  2086. -webkit-box-shadow:none;
  2087. box-shadow:none;
  2088. }
  2089. #u35804 {
  2090. border-width:0px;
  2091. position:absolute;
  2092. left:29px;
  2093. top:299px;
  2094. width:375px;
  2095. height:90px;
  2096. display:flex;
  2097. }
  2098. #u35804 .text {
  2099. position:absolute;
  2100. align-self:center;
  2101. padding:2px 2px 2px 2px;
  2102. box-sizing:border-box;
  2103. width:100%;
  2104. }
  2105. #u35804_text {
  2106. border-width:0px;
  2107. word-wrap:break-word;
  2108. text-transform:none;
  2109. visibility:hidden;
  2110. }
  2111. #u35805_div {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:0px;
  2115. top:0px;
  2116. width:150px;
  2117. height:20px;
  2118. background:inherit;
  2119. background-color:rgba(255, 255, 255, 0);
  2120. border:none;
  2121. border-radius:0px;
  2122. -moz-box-shadow:none;
  2123. -webkit-box-shadow:none;
  2124. box-shadow:none;
  2125. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2126. font-weight:500;
  2127. font-style:normal;
  2128. color:#000000;
  2129. }
  2130. #u35805 {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:43px;
  2134. top:312px;
  2135. width:150px;
  2136. height:20px;
  2137. display:flex;
  2138. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2139. font-weight:500;
  2140. font-style:normal;
  2141. color:#000000;
  2142. }
  2143. #u35805 .text {
  2144. position:absolute;
  2145. align-self:center;
  2146. padding:0px 0px 0px 0px;
  2147. box-sizing:border-box;
  2148. width:100%;
  2149. }
  2150. #u35805_text {
  2151. border-width:0px;
  2152. white-space:nowrap;
  2153. text-transform:none;
  2154. }
  2155. #u35806_div {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:0px;
  2159. top:0px;
  2160. width:21px;
  2161. height:14px;
  2162. background:inherit;
  2163. background-color:rgba(0, 191, 191, 0);
  2164. border:none;
  2165. border-left:0px;
  2166. border-top:0px;
  2167. border-right:0px;
  2168. border-radius:0px;
  2169. border-bottom-right-radius:0px;
  2170. border-bottom-left-radius:0px;
  2171. -moz-box-shadow:none;
  2172. -webkit-box-shadow:none;
  2173. box-shadow:none;
  2174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2175. font-weight:400;
  2176. font-style:normal;
  2177. font-size:10px;
  2178. color:#7F7F7F;
  2179. }
  2180. #u35806 {
  2181. border-width:0px;
  2182. position:absolute;
  2183. left:361px;
  2184. top:315px;
  2185. width:21px;
  2186. height:14px;
  2187. display:flex;
  2188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2189. font-weight:400;
  2190. font-style:normal;
  2191. font-size:10px;
  2192. color:#7F7F7F;
  2193. }
  2194. #u35806 .text {
  2195. position:absolute;
  2196. align-self:center;
  2197. padding:0px 0px 0px 0px;
  2198. box-sizing:border-box;
  2199. width:100%;
  2200. }
  2201. #u35806_text {
  2202. border-width:0px;
  2203. white-space:nowrap;
  2204. text-transform:none;
  2205. }
  2206. #u35807_div {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:0px;
  2210. top:0px;
  2211. width:157px;
  2212. height:40px;
  2213. background:inherit;
  2214. background-color:rgba(255, 255, 255, 0);
  2215. border:none;
  2216. border-radius:0px;
  2217. -moz-box-shadow:none;
  2218. -webkit-box-shadow:none;
  2219. box-shadow:none;
  2220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2221. font-weight:400;
  2222. font-style:normal;
  2223. font-size:12px;
  2224. color:#7F7F7F;
  2225. line-height:20px;
  2226. }
  2227. #u35807 {
  2228. border-width:0px;
  2229. position:absolute;
  2230. left:43px;
  2231. top:337px;
  2232. width:157px;
  2233. height:40px;
  2234. display:flex;
  2235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2236. font-weight:400;
  2237. font-style:normal;
  2238. font-size:12px;
  2239. color:#7F7F7F;
  2240. line-height:20px;
  2241. }
  2242. #u35807 .text {
  2243. position:absolute;
  2244. align-self:center;
  2245. padding:0px 0px 0px 0px;
  2246. box-sizing:border-box;
  2247. width:100%;
  2248. }
  2249. #u35807_text {
  2250. border-width:0px;
  2251. white-space:nowrap;
  2252. text-transform:none;
  2253. }
  2254. #u35808_div {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:0px;
  2258. top:0px;
  2259. width:8px;
  2260. height:8px;
  2261. background:inherit;
  2262. background-color:rgba(255, 255, 255, 0);
  2263. box-sizing:border-box;
  2264. border-width:1px;
  2265. border-style:solid;
  2266. border-color:rgba(51, 51, 51, 1);
  2267. border-right:0px;
  2268. border-bottom:0px;
  2269. border-radius:0px;
  2270. border-top-right-radius:0px;
  2271. border-bottom-left-radius:0px;
  2272. -moz-box-shadow:none;
  2273. -webkit-box-shadow:none;
  2274. box-shadow:none;
  2275. }
  2276. #u35808 {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:384px;
  2280. top:318px;
  2281. width:8px;
  2282. height:8px;
  2283. display:flex;
  2284. -webkit-transform:rotate(135deg);
  2285. -moz-transform:rotate(135deg);
  2286. -ms-transform:rotate(135deg);
  2287. transform:rotate(135deg);
  2288. }
  2289. #u35808 .text {
  2290. position:absolute;
  2291. align-self:center;
  2292. padding:2px 2px 2px 2px;
  2293. box-sizing:border-box;
  2294. width:100%;
  2295. }
  2296. #u35808_text {
  2297. border-width:0px;
  2298. word-wrap:break-word;
  2299. text-transform:none;
  2300. visibility:hidden;
  2301. }