styles.css 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-104px;
  6. width:913px;
  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. #u105755 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u105756_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:860px;
  33. height:1201px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(215, 215, 215, 1);
  40. border-radius:0px;
  41. -moz-box-shadow:none;
  42. -webkit-box-shadow:none;
  43. box-shadow:none;
  44. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  45. font-weight:400;
  46. font-style:normal;
  47. font-size:14px;
  48. color:#AAAAAA;
  49. text-align:center;
  50. line-height:30px;
  51. }
  52. #u105756 {
  53. border-width:0px;
  54. position:absolute;
  55. left:105px;
  56. top:50px;
  57. width:860px;
  58. height:1201px;
  59. display:flex;
  60. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  61. font-weight:400;
  62. font-style:normal;
  63. font-size:14px;
  64. color:#AAAAAA;
  65. text-align:center;
  66. line-height:30px;
  67. }
  68. #u105756 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u105756_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u105757_div {
  82. border-width:0px;
  83. position:absolute;
  84. left:0px;
  85. top:0px;
  86. width:119px;
  87. height:35px;
  88. background:inherit;
  89. background-color:rgba(255, 255, 255, 0);
  90. border:none;
  91. border-top:0px;
  92. border-right:0px;
  93. border-bottom:0px;
  94. border-radius:0px;
  95. border-top-left-radius:0px;
  96. border-bottom-left-radius:0px;
  97. -moz-box-shadow:none;
  98. -webkit-box-shadow:none;
  99. box-shadow:none;
  100. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  101. font-weight:500;
  102. font-style:normal;
  103. font-size:18px;
  104. }
  105. #u105757 {
  106. border-width:0px;
  107. position:absolute;
  108. left:125px;
  109. top:68px;
  110. width:119px;
  111. height:35px;
  112. display:flex;
  113. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  114. font-weight:500;
  115. font-style:normal;
  116. font-size:18px;
  117. }
  118. #u105757 .text {
  119. position:absolute;
  120. align-self:center;
  121. padding:5px 10px 5px 0px;
  122. box-sizing:border-box;
  123. width:100%;
  124. }
  125. #u105757_text {
  126. border-width:0px;
  127. white-space:nowrap;
  128. text-transform:none;
  129. }
  130. #u105758 {
  131. border-width:0px;
  132. position:absolute;
  133. left:0px;
  134. top:0px;
  135. width:0px;
  136. height:0px;
  137. }
  138. #u105759_div {
  139. border-width:0px;
  140. position:absolute;
  141. left:0px;
  142. top:0px;
  143. width:40px;
  144. height:40px;
  145. background:inherit;
  146. background-color:rgba(255, 255, 255, 0);
  147. border:none;
  148. border-top:0px;
  149. border-right:0px;
  150. border-bottom:0px;
  151. border-radius:0px;
  152. border-top-left-radius:0px;
  153. border-bottom-left-radius:0px;
  154. -moz-box-shadow:none;
  155. -webkit-box-shadow:none;
  156. box-shadow:none;
  157. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  158. font-weight:500;
  159. font-style:normal;
  160. font-size:14px;
  161. text-align:center;
  162. }
  163. #u105759 {
  164. border-width:0px;
  165. position:absolute;
  166. left:925px;
  167. top:50px;
  168. width:40px;
  169. height:40px;
  170. display:flex;
  171. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  172. font-weight:500;
  173. font-style:normal;
  174. font-size:14px;
  175. text-align:center;
  176. }
  177. #u105759 .text {
  178. position:absolute;
  179. align-self:center;
  180. padding:5px 10px 5px 0px;
  181. box-sizing:border-box;
  182. width:100%;
  183. }
  184. #u105759_text {
  185. border-width:0px;
  186. word-wrap:break-word;
  187. text-transform:none;
  188. }
  189. #u105760_img {
  190. border-width:0px;
  191. position:absolute;
  192. left:0px;
  193. top:0px;
  194. width:13px;
  195. height:13px;
  196. }
  197. #u105760 {
  198. border-width:0px;
  199. position:absolute;
  200. left:913px;
  201. top:66px;
  202. width:13px;
  203. height:13px;
  204. display:flex;
  205. font-size:14px;
  206. }
  207. #u105760 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u105760_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u105761 {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:0px;
  226. height:0px;
  227. }
  228. #u105762_div {
  229. border-width:0px;
  230. position:absolute;
  231. left:0px;
  232. top:0px;
  233. width:861px;
  234. height:60px;
  235. background:inherit;
  236. background-color:rgba(255, 255, 255, 1);
  237. box-sizing:border-box;
  238. border-width:1px;
  239. border-style:solid;
  240. border-color:rgba(215, 215, 215, 1);
  241. border-radius:0px;
  242. -moz-box-shadow:none;
  243. -webkit-box-shadow:none;
  244. box-shadow:none;
  245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  246. font-weight:400;
  247. font-style:normal;
  248. font-size:14px;
  249. color:#AAAAAA;
  250. text-align:center;
  251. line-height:30px;
  252. }
  253. #u105762 {
  254. border-width:0px;
  255. position:absolute;
  256. left:104px;
  257. top:1191px;
  258. width:861px;
  259. height:60px;
  260. display:flex;
  261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  262. font-weight:400;
  263. font-style:normal;
  264. font-size:14px;
  265. color:#AAAAAA;
  266. text-align:center;
  267. line-height:30px;
  268. }
  269. #u105762 .text {
  270. position:absolute;
  271. align-self:center;
  272. padding:5px 10px 5px 10px;
  273. box-sizing:border-box;
  274. width:100%;
  275. }
  276. #u105762_text {
  277. border-width:0px;
  278. word-wrap:break-word;
  279. text-transform:none;
  280. visibility:hidden;
  281. }
  282. #u105763_div {
  283. border-width:0px;
  284. position:absolute;
  285. left:0px;
  286. top:0px;
  287. width:100px;
  288. height:30px;
  289. background:inherit;
  290. background-color:rgba(255, 255, 255, 1);
  291. box-sizing:border-box;
  292. border-width:1px;
  293. border-style:solid;
  294. border-color:rgba(170, 170, 170, 1);
  295. border-radius:4px;
  296. -moz-box-shadow:none;
  297. -webkit-box-shadow:none;
  298. box-shadow:none;
  299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  300. font-weight:400;
  301. font-style:normal;
  302. font-size:14px;
  303. }
  304. #u105763 {
  305. border-width:0px;
  306. position:absolute;
  307. left:775px;
  308. top:1206px;
  309. width:100px;
  310. height:30px;
  311. display:flex;
  312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  313. font-weight:400;
  314. font-style:normal;
  315. font-size:14px;
  316. }
  317. #u105763 .text {
  318. position:absolute;
  319. align-self:center;
  320. padding:2px 2px 2px 2px;
  321. box-sizing:border-box;
  322. width:100%;
  323. }
  324. #u105763_text {
  325. border-width:0px;
  326. word-wrap:break-word;
  327. text-transform:none;
  328. }
  329. #u105764_img {
  330. border-width:0px;
  331. position:absolute;
  332. left:0px;
  333. top:0px;
  334. width:60px;
  335. height:30px;
  336. }
  337. #u105764 {
  338. border-width:0px;
  339. position:absolute;
  340. left:885px;
  341. top:1206px;
  342. width:60px;
  343. height:30px;
  344. display:flex;
  345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  346. font-weight:400;
  347. font-style:normal;
  348. font-size:14px;
  349. color:#FFFFFF;
  350. }
  351. #u105764 .text {
  352. position:absolute;
  353. align-self:center;
  354. padding:2px 2px 2px 2px;
  355. box-sizing:border-box;
  356. width:100%;
  357. }
  358. #u105764_text {
  359. border-width:0px;
  360. word-wrap:break-word;
  361. text-transform:none;
  362. }
  363. #u105765_div {
  364. border-width:0px;
  365. position:absolute;
  366. left:0px;
  367. top:0px;
  368. width:80px;
  369. height:30px;
  370. background:inherit;
  371. background-color:rgba(255, 255, 255, 1);
  372. box-sizing:border-box;
  373. border-width:1px;
  374. border-style:solid;
  375. border-color:rgba(170, 170, 170, 1);
  376. border-radius:4px;
  377. -moz-box-shadow:none;
  378. -webkit-box-shadow:none;
  379. box-shadow:none;
  380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  381. font-weight:400;
  382. font-style:normal;
  383. font-size:14px;
  384. }
  385. #u105765 {
  386. border-width:0px;
  387. position:absolute;
  388. left:685px;
  389. top:1206px;
  390. width:80px;
  391. height:30px;
  392. display:flex;
  393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  394. font-weight:400;
  395. font-style:normal;
  396. font-size:14px;
  397. }
  398. #u105765 .text {
  399. position:absolute;
  400. align-self:center;
  401. padding:2px 2px 2px 2px;
  402. box-sizing:border-box;
  403. width:100%;
  404. }
  405. #u105765_text {
  406. border-width:0px;
  407. word-wrap:break-word;
  408. text-transform:none;
  409. }
  410. #u105766_div {
  411. border-width:0px;
  412. position:absolute;
  413. left:0px;
  414. top:0px;
  415. width:88px;
  416. height:30px;
  417. background:inherit;
  418. background-color:rgba(255, 255, 255, 0);
  419. border:none;
  420. border-top:0px;
  421. border-right:0px;
  422. border-bottom:0px;
  423. border-radius:0px;
  424. border-top-left-radius:0px;
  425. border-bottom-left-radius:0px;
  426. -moz-box-shadow:none;
  427. -webkit-box-shadow:none;
  428. box-shadow:none;
  429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  430. font-weight:400;
  431. font-style:normal;
  432. font-size:14px;
  433. color:#7F7F7F;
  434. text-align:right;
  435. }
  436. #u105766 {
  437. border-width:0px;
  438. position:absolute;
  439. left:166px;
  440. top:187px;
  441. width:88px;
  442. height:30px;
  443. display:flex;
  444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  445. font-weight:400;
  446. font-style:normal;
  447. font-size:14px;
  448. color:#7F7F7F;
  449. text-align:right;
  450. }
  451. #u105766 .text {
  452. position:absolute;
  453. align-self:center;
  454. padding:5px 10px 5px 0px;
  455. box-sizing:border-box;
  456. width:100%;
  457. }
  458. #u105766_text {
  459. border-width:0px;
  460. white-space:nowrap;
  461. text-transform:none;
  462. }
  463. #u105767 {
  464. border-width:0px;
  465. position:absolute;
  466. left:0px;
  467. top:0px;
  468. width:0px;
  469. height:0px;
  470. }
  471. #u105768_div {
  472. border-width:0px;
  473. position:absolute;
  474. left:0px;
  475. top:0px;
  476. width:641px;
  477. height:40px;
  478. background:inherit;
  479. background-color:rgba(255, 255, 255, 1);
  480. box-sizing:border-box;
  481. border-width:1px;
  482. border-style:solid;
  483. border-color:rgba(215, 215, 215, 1);
  484. border-radius:4px;
  485. -moz-box-shadow:none;
  486. -webkit-box-shadow:none;
  487. box-shadow:none;
  488. font-size:14px;
  489. }
  490. #u105768 {
  491. border-width:0px;
  492. position:absolute;
  493. left:254px;
  494. top:182px;
  495. width:641px;
  496. height:40px;
  497. display:flex;
  498. font-size:14px;
  499. }
  500. #u105768 .text {
  501. position:absolute;
  502. align-self:center;
  503. padding:2px 2px 2px 2px;
  504. box-sizing:border-box;
  505. width:100%;
  506. }
  507. #u105768_text {
  508. border-width:0px;
  509. word-wrap:break-word;
  510. text-transform:none;
  511. visibility:hidden;
  512. }
  513. #u105769_input {
  514. position:absolute;
  515. left:0px;
  516. top:0px;
  517. width:621px;
  518. height:31px;
  519. padding:2px 2px 2px 2px;
  520. font-family:'ArialMT', 'Arial', sans-serif;
  521. font-weight:400;
  522. font-style:normal;
  523. font-size:14px;
  524. letter-spacing:normal;
  525. color:#AAAAAA;
  526. vertical-align:none;
  527. text-align:left;
  528. text-transform:none;
  529. background-color:transparent;
  530. border-color:transparent;
  531. }
  532. #u105769_input.disabled {
  533. position:absolute;
  534. left:0px;
  535. top:0px;
  536. width:621px;
  537. height:31px;
  538. padding:2px 2px 2px 2px;
  539. font-family:'ArialMT', 'Arial', sans-serif;
  540. font-weight:400;
  541. font-style:normal;
  542. font-size:14px;
  543. letter-spacing:normal;
  544. color:#AAAAAA;
  545. vertical-align:none;
  546. text-align:left;
  547. text-transform:none;
  548. background-color:transparent;
  549. border-color:transparent;
  550. }
  551. #u105769_div {
  552. border-width:0px;
  553. position:absolute;
  554. left:0px;
  555. top:0px;
  556. width:621px;
  557. height:31px;
  558. background:inherit;
  559. background-color:rgba(255, 255, 255, 1);
  560. border:none;
  561. border-radius:0px;
  562. -moz-box-shadow:none;
  563. -webkit-box-shadow:none;
  564. box-shadow:none;
  565. font-size:14px;
  566. color:#AAAAAA;
  567. }
  568. #u105769 {
  569. border-width:0px;
  570. position:absolute;
  571. left:264px;
  572. top:185px;
  573. width:621px;
  574. height:31px;
  575. display:flex;
  576. font-size:14px;
  577. color:#AAAAAA;
  578. }
  579. #u105769 .text {
  580. position:absolute;
  581. align-self:flex-start;
  582. padding:2px 2px 2px 2px;
  583. box-sizing:border-box;
  584. width:100%;
  585. }
  586. #u105769_div.disabled {
  587. border-width:0px;
  588. position:absolute;
  589. left:0px;
  590. top:0px;
  591. width:621px;
  592. height:31px;
  593. background:inherit;
  594. background-color:rgba(240, 240, 240, 1);
  595. border:none;
  596. border-radius:0px;
  597. -moz-box-shadow:none;
  598. -webkit-box-shadow:none;
  599. box-shadow:none;
  600. font-size:14px;
  601. color:#AAAAAA;
  602. }
  603. #u105769.disabled {
  604. }
  605. .u105769_input_option {
  606. font-size:14px;
  607. }
  608. #u105770_div {
  609. border-width:0px;
  610. position:absolute;
  611. left:0px;
  612. top:0px;
  613. width:88px;
  614. height:30px;
  615. background:inherit;
  616. background-color:rgba(255, 255, 255, 0);
  617. border:none;
  618. border-top:0px;
  619. border-right:0px;
  620. border-bottom:0px;
  621. border-radius:0px;
  622. border-top-left-radius:0px;
  623. border-bottom-left-radius:0px;
  624. -moz-box-shadow:none;
  625. -webkit-box-shadow:none;
  626. box-shadow:none;
  627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  628. font-weight:400;
  629. font-style:normal;
  630. font-size:14px;
  631. color:#7F7F7F;
  632. text-align:right;
  633. }
  634. #u105770 {
  635. border-width:0px;
  636. position:absolute;
  637. left:166px;
  638. top:237px;
  639. width:88px;
  640. height:30px;
  641. display:flex;
  642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  643. font-weight:400;
  644. font-style:normal;
  645. font-size:14px;
  646. color:#7F7F7F;
  647. text-align:right;
  648. }
  649. #u105770 .text {
  650. position:absolute;
  651. align-self:center;
  652. padding:5px 10px 5px 0px;
  653. box-sizing:border-box;
  654. width:100%;
  655. }
  656. #u105770_text {
  657. border-width:0px;
  658. white-space:nowrap;
  659. text-transform:none;
  660. }
  661. #u105771_div {
  662. border-width:0px;
  663. position:absolute;
  664. left:0px;
  665. top:0px;
  666. width:88px;
  667. height:30px;
  668. background:inherit;
  669. background-color:rgba(255, 255, 255, 0);
  670. border:none;
  671. border-top:0px;
  672. border-right:0px;
  673. border-bottom:0px;
  674. border-radius:0px;
  675. border-top-left-radius:0px;
  676. border-bottom-left-radius:0px;
  677. -moz-box-shadow:none;
  678. -webkit-box-shadow:none;
  679. box-shadow:none;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:14px;
  684. color:#7F7F7F;
  685. text-align:right;
  686. }
  687. #u105771 {
  688. border-width:0px;
  689. position:absolute;
  690. left:166px;
  691. top:287px;
  692. width:88px;
  693. height:30px;
  694. display:flex;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:14px;
  699. color:#7F7F7F;
  700. text-align:right;
  701. }
  702. #u105771 .text {
  703. position:absolute;
  704. align-self:center;
  705. padding:5px 10px 5px 0px;
  706. box-sizing:border-box;
  707. width:100%;
  708. }
  709. #u105771_text {
  710. border-width:0px;
  711. white-space:nowrap;
  712. text-transform:none;
  713. }
  714. #u105772 {
  715. border-width:0px;
  716. position:absolute;
  717. left:0px;
  718. top:0px;
  719. width:0px;
  720. height:0px;
  721. }
  722. #u105773_div {
  723. border-width:0px;
  724. position:absolute;
  725. left:0px;
  726. top:0px;
  727. width:641px;
  728. height:40px;
  729. background:inherit;
  730. background-color:rgba(255, 255, 255, 1);
  731. box-sizing:border-box;
  732. border-width:1px;
  733. border-style:solid;
  734. border-color:rgba(201, 201, 201, 1);
  735. border-radius:4px;
  736. -moz-box-shadow:none;
  737. -webkit-box-shadow:none;
  738. box-shadow:none;
  739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  740. font-weight:400;
  741. font-style:normal;
  742. font-size:12px;
  743. color:#CCCCCC;
  744. text-align:right;
  745. }
  746. #u105773 {
  747. border-width:0px;
  748. position:absolute;
  749. left:254px;
  750. top:282px;
  751. width:641px;
  752. height:40px;
  753. display:flex;
  754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  755. font-weight:400;
  756. font-style:normal;
  757. font-size:12px;
  758. color:#CCCCCC;
  759. text-align:right;
  760. }
  761. #u105773 .text {
  762. position:absolute;
  763. align-self:center;
  764. padding:2px 8px 2px 8px;
  765. box-sizing:border-box;
  766. width:100%;
  767. }
  768. #u105773_text {
  769. border-width:0px;
  770. word-wrap:break-word;
  771. text-transform:none;
  772. visibility:hidden;
  773. }
  774. #u105774_input {
  775. position:absolute;
  776. left:0px;
  777. top:0px;
  778. width:573px;
  779. height:38px;
  780. padding:2px 2px 2px 2px;
  781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  782. font-weight:400;
  783. font-style:normal;
  784. font-size:14px;
  785. letter-spacing:normal;
  786. color:#000000;
  787. vertical-align:none;
  788. text-align:left;
  789. text-transform:none;
  790. background-color:transparent;
  791. border-color:transparent;
  792. }
  793. #u105774_input.disabled {
  794. position:absolute;
  795. left:0px;
  796. top:0px;
  797. width:573px;
  798. height:38px;
  799. padding:2px 2px 2px 2px;
  800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  801. font-weight:400;
  802. font-style:normal;
  803. font-size:14px;
  804. letter-spacing:normal;
  805. color:#000000;
  806. vertical-align:none;
  807. text-align:left;
  808. text-transform:none;
  809. background-color:transparent;
  810. border-color:transparent;
  811. }
  812. #u105774_div {
  813. border-width:0px;
  814. position:absolute;
  815. left:0px;
  816. top:0px;
  817. width:573px;
  818. height:38px;
  819. background:inherit;
  820. background-color:rgba(255, 255, 255, 1);
  821. border:none;
  822. border-radius:0px;
  823. -moz-box-shadow:none;
  824. -webkit-box-shadow:none;
  825. box-shadow:none;
  826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  827. font-weight:400;
  828. font-style:normal;
  829. font-size:14px;
  830. }
  831. #u105774 {
  832. border-width:0px;
  833. position:absolute;
  834. left:264px;
  835. top:283px;
  836. width:573px;
  837. height:38px;
  838. display:flex;
  839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  840. font-weight:400;
  841. font-style:normal;
  842. font-size:14px;
  843. }
  844. #u105774 .text {
  845. position:absolute;
  846. align-self:center;
  847. padding:2px 2px 2px 2px;
  848. box-sizing:border-box;
  849. width:100%;
  850. }
  851. #u105774_div.disabled {
  852. border-width:0px;
  853. position:absolute;
  854. left:0px;
  855. top:0px;
  856. width:573px;
  857. height:38px;
  858. background:inherit;
  859. background-color:rgba(240, 240, 240, 1);
  860. border:none;
  861. border-radius:0px;
  862. -moz-box-shadow:none;
  863. -webkit-box-shadow:none;
  864. box-shadow:none;
  865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  866. font-weight:400;
  867. font-style:normal;
  868. font-size:14px;
  869. }
  870. #u105774.disabled {
  871. }
  872. #u105775_div {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:81px;
  878. height:30px;
  879. background:inherit;
  880. background-color:rgba(255, 255, 255, 0);
  881. border:none;
  882. border-top:0px;
  883. border-right:0px;
  884. border-bottom:0px;
  885. border-radius:0px;
  886. border-top-left-radius:0px;
  887. border-bottom-left-radius:0px;
  888. -moz-box-shadow:none;
  889. -webkit-box-shadow:none;
  890. box-shadow:none;
  891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  892. font-weight:400;
  893. font-style:normal;
  894. font-size:14px;
  895. color:#7F7F7F;
  896. text-align:right;
  897. }
  898. #u105775 {
  899. border-width:0px;
  900. position:absolute;
  901. left:174px;
  902. top:433px;
  903. width:81px;
  904. height:30px;
  905. display:flex;
  906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  907. font-weight:400;
  908. font-style:normal;
  909. font-size:14px;
  910. color:#7F7F7F;
  911. text-align:right;
  912. }
  913. #u105775 .text {
  914. position:absolute;
  915. align-self:center;
  916. padding:5px 10px 5px 0px;
  917. box-sizing:border-box;
  918. width:100%;
  919. }
  920. #u105775_text {
  921. border-width:0px;
  922. white-space:nowrap;
  923. text-transform:none;
  924. }
  925. #u105776 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u105777_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:640px;
  939. height:80px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 1);
  942. box-sizing:border-box;
  943. border-width:1px;
  944. border-style:solid;
  945. border-color:rgba(201, 201, 201, 1);
  946. border-radius:4px;
  947. -moz-box-shadow:none;
  948. -webkit-box-shadow:none;
  949. box-shadow:none;
  950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  951. font-weight:400;
  952. font-style:normal;
  953. font-size:12px;
  954. color:#CCCCCC;
  955. text-align:right;
  956. }
  957. #u105777 {
  958. border-width:0px;
  959. position:absolute;
  960. left:255px;
  961. top:428px;
  962. width:640px;
  963. height:80px;
  964. display:flex;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:12px;
  969. color:#CCCCCC;
  970. text-align:right;
  971. }
  972. #u105777 .text {
  973. position:absolute;
  974. align-self:center;
  975. padding:2px 8px 2px 8px;
  976. box-sizing:border-box;
  977. width:100%;
  978. }
  979. #u105777_text {
  980. border-width:0px;
  981. word-wrap:break-word;
  982. text-transform:none;
  983. visibility:hidden;
  984. }
  985. #u105778_input {
  986. position:absolute;
  987. left:0px;
  988. top:0px;
  989. width:576px;
  990. height:38px;
  991. padding:2px 2px 2px 2px;
  992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  993. font-weight:400;
  994. font-style:normal;
  995. font-size:14px;
  996. letter-spacing:normal;
  997. color:#000000;
  998. vertical-align:none;
  999. text-align:left;
  1000. text-transform:none;
  1001. background-color:transparent;
  1002. border-color:transparent;
  1003. }
  1004. #u105778_input.disabled {
  1005. position:absolute;
  1006. left:0px;
  1007. top:0px;
  1008. width:576px;
  1009. height:38px;
  1010. padding:2px 2px 2px 2px;
  1011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1012. font-weight:400;
  1013. font-style:normal;
  1014. font-size:14px;
  1015. letter-spacing:normal;
  1016. color:#000000;
  1017. vertical-align:none;
  1018. text-align:left;
  1019. text-transform:none;
  1020. background-color:transparent;
  1021. border-color:transparent;
  1022. }
  1023. #u105778_div {
  1024. border-width:0px;
  1025. position:absolute;
  1026. left:0px;
  1027. top:0px;
  1028. width:576px;
  1029. height:38px;
  1030. background:inherit;
  1031. background-color:rgba(255, 255, 255, 1);
  1032. border:none;
  1033. border-radius:0px;
  1034. -moz-box-shadow:none;
  1035. -webkit-box-shadow:none;
  1036. box-shadow:none;
  1037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1038. font-weight:400;
  1039. font-style:normal;
  1040. font-size:14px;
  1041. }
  1042. #u105778 {
  1043. border-width:0px;
  1044. position:absolute;
  1045. left:273px;
  1046. top:429px;
  1047. width:576px;
  1048. height:38px;
  1049. display:flex;
  1050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1051. font-weight:400;
  1052. font-style:normal;
  1053. font-size:14px;
  1054. }
  1055. #u105778 .text {
  1056. position:absolute;
  1057. align-self:center;
  1058. padding:2px 2px 2px 2px;
  1059. box-sizing:border-box;
  1060. width:100%;
  1061. }
  1062. #u105778_div.disabled {
  1063. border-width:0px;
  1064. position:absolute;
  1065. left:0px;
  1066. top:0px;
  1067. width:576px;
  1068. height:38px;
  1069. background:inherit;
  1070. background-color:rgba(240, 240, 240, 1);
  1071. border:none;
  1072. border-radius:0px;
  1073. -moz-box-shadow:none;
  1074. -webkit-box-shadow:none;
  1075. box-shadow:none;
  1076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1077. font-weight:400;
  1078. font-style:normal;
  1079. font-size:14px;
  1080. }
  1081. #u105778.disabled {
  1082. }
  1083. #u105779_div {
  1084. border-width:0px;
  1085. position:absolute;
  1086. left:0px;
  1087. top:0px;
  1088. width:88px;
  1089. height:30px;
  1090. background:inherit;
  1091. background-color:rgba(255, 255, 255, 0);
  1092. border:none;
  1093. border-top:0px;
  1094. border-right:0px;
  1095. border-bottom:0px;
  1096. border-radius:0px;
  1097. border-top-left-radius:0px;
  1098. border-bottom-left-radius:0px;
  1099. -moz-box-shadow:none;
  1100. -webkit-box-shadow:none;
  1101. box-shadow:none;
  1102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1103. font-weight:400;
  1104. font-style:normal;
  1105. font-size:14px;
  1106. color:#7F7F7F;
  1107. text-align:right;
  1108. }
  1109. #u105779 {
  1110. border-width:0px;
  1111. position:absolute;
  1112. left:166px;
  1113. top:137px;
  1114. width:88px;
  1115. height:30px;
  1116. display:flex;
  1117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1118. font-weight:400;
  1119. font-style:normal;
  1120. font-size:14px;
  1121. color:#7F7F7F;
  1122. text-align:right;
  1123. }
  1124. #u105779 .text {
  1125. position:absolute;
  1126. align-self:center;
  1127. padding:5px 10px 5px 0px;
  1128. box-sizing:border-box;
  1129. width:100%;
  1130. }
  1131. #u105779_text {
  1132. border-width:0px;
  1133. white-space:nowrap;
  1134. text-transform:none;
  1135. }
  1136. #u105780 {
  1137. border-width:0px;
  1138. position:absolute;
  1139. left:0px;
  1140. top:0px;
  1141. width:0px;
  1142. height:0px;
  1143. }
  1144. #u105781_div {
  1145. border-width:0px;
  1146. position:absolute;
  1147. left:0px;
  1148. top:0px;
  1149. width:641px;
  1150. height:40px;
  1151. background:inherit;
  1152. background-color:rgba(242, 242, 242, 1);
  1153. box-sizing:border-box;
  1154. border-width:1px;
  1155. border-style:solid;
  1156. border-color:rgba(215, 215, 215, 1);
  1157. border-radius:4px;
  1158. -moz-box-shadow:none;
  1159. -webkit-box-shadow:none;
  1160. box-shadow:none;
  1161. font-size:14px;
  1162. }
  1163. #u105781 {
  1164. border-width:0px;
  1165. position:absolute;
  1166. left:254px;
  1167. top:132px;
  1168. width:641px;
  1169. height:40px;
  1170. display:flex;
  1171. font-size:14px;
  1172. }
  1173. #u105781 .text {
  1174. position:absolute;
  1175. align-self:center;
  1176. padding:2px 2px 2px 2px;
  1177. box-sizing:border-box;
  1178. width:100%;
  1179. }
  1180. #u105781_text {
  1181. border-width:0px;
  1182. word-wrap:break-word;
  1183. text-transform:none;
  1184. visibility:hidden;
  1185. }
  1186. #u105782_input {
  1187. position:absolute;
  1188. left:0px;
  1189. top:0px;
  1190. width:612px;
  1191. height:31px;
  1192. padding:2px 2px 2px 2px;
  1193. font-family:'ArialMT', 'Arial', sans-serif;
  1194. font-weight:400;
  1195. font-style:normal;
  1196. font-size:14px;
  1197. letter-spacing:normal;
  1198. color:#AAAAAA;
  1199. vertical-align:none;
  1200. text-align:left;
  1201. text-transform:none;
  1202. background-color:transparent;
  1203. border-color:transparent;
  1204. }
  1205. #u105782_input.disabled {
  1206. position:absolute;
  1207. left:0px;
  1208. top:0px;
  1209. width:612px;
  1210. height:31px;
  1211. padding:2px 2px 2px 2px;
  1212. font-family:'ArialMT', 'Arial', sans-serif;
  1213. font-weight:400;
  1214. font-style:normal;
  1215. font-size:14px;
  1216. letter-spacing:normal;
  1217. color:#AAAAAA;
  1218. vertical-align:none;
  1219. text-align:left;
  1220. text-transform:none;
  1221. background-color:transparent;
  1222. border-color:transparent;
  1223. }
  1224. #u105782_div {
  1225. border-width:0px;
  1226. position:absolute;
  1227. left:0px;
  1228. top:0px;
  1229. width:612px;
  1230. height:31px;
  1231. background:inherit;
  1232. background-color:rgba(242, 242, 242, 1);
  1233. border:none;
  1234. border-radius:0px;
  1235. -moz-box-shadow:none;
  1236. -webkit-box-shadow:none;
  1237. box-shadow:none;
  1238. font-size:14px;
  1239. color:#AAAAAA;
  1240. }
  1241. #u105782 {
  1242. border-width:0px;
  1243. position:absolute;
  1244. left:273px;
  1245. top:135px;
  1246. width:612px;
  1247. height:31px;
  1248. display:flex;
  1249. font-size:14px;
  1250. color:#AAAAAA;
  1251. }
  1252. #u105782 .text {
  1253. position:absolute;
  1254. align-self:flex-start;
  1255. padding:2px 2px 2px 2px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u105782_div.disabled {
  1260. border-width:0px;
  1261. position:absolute;
  1262. left:0px;
  1263. top:0px;
  1264. width:612px;
  1265. height:31px;
  1266. background:inherit;
  1267. background-color:rgba(240, 240, 240, 1);
  1268. border:none;
  1269. border-radius:0px;
  1270. -moz-box-shadow:none;
  1271. -webkit-box-shadow:none;
  1272. box-shadow:none;
  1273. font-size:14px;
  1274. color:#AAAAAA;
  1275. }
  1276. #u105782.disabled {
  1277. }
  1278. .u105782_input_option {
  1279. font-size:14px;
  1280. }
  1281. #u105783 {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:0px;
  1285. top:0px;
  1286. width:0px;
  1287. height:0px;
  1288. }
  1289. #u105784_div {
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:0px;
  1293. top:0px;
  1294. width:641px;
  1295. height:40px;
  1296. background:inherit;
  1297. background-color:rgba(255, 255, 255, 1);
  1298. box-sizing:border-box;
  1299. border-width:1px;
  1300. border-style:solid;
  1301. border-color:rgba(215, 215, 215, 1);
  1302. border-radius:4px;
  1303. -moz-box-shadow:none;
  1304. -webkit-box-shadow:none;
  1305. box-shadow:none;
  1306. font-size:14px;
  1307. }
  1308. #u105784 {
  1309. border-width:0px;
  1310. position:absolute;
  1311. left:254px;
  1312. top:232px;
  1313. width:641px;
  1314. height:40px;
  1315. display:flex;
  1316. font-size:14px;
  1317. }
  1318. #u105784 .text {
  1319. position:absolute;
  1320. align-self:center;
  1321. padding:2px 2px 2px 2px;
  1322. box-sizing:border-box;
  1323. width:100%;
  1324. }
  1325. #u105784_text {
  1326. border-width:0px;
  1327. word-wrap:break-word;
  1328. text-transform:none;
  1329. visibility:hidden;
  1330. }
  1331. #u105785_input {
  1332. position:absolute;
  1333. left:0px;
  1334. top:0px;
  1335. width:623px;
  1336. height:31px;
  1337. padding:2px 2px 2px 2px;
  1338. font-family:'ArialMT', 'Arial', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. font-size:14px;
  1342. letter-spacing:normal;
  1343. color:#AAAAAA;
  1344. vertical-align:none;
  1345. text-align:left;
  1346. text-transform:none;
  1347. background-color:transparent;
  1348. border-color:transparent;
  1349. }
  1350. #u105785_input.disabled {
  1351. position:absolute;
  1352. left:0px;
  1353. top:0px;
  1354. width:623px;
  1355. height:31px;
  1356. padding:2px 2px 2px 2px;
  1357. font-family:'ArialMT', 'Arial', sans-serif;
  1358. font-weight:400;
  1359. font-style:normal;
  1360. font-size:14px;
  1361. letter-spacing:normal;
  1362. color:#AAAAAA;
  1363. vertical-align:none;
  1364. text-align:left;
  1365. text-transform:none;
  1366. background-color:transparent;
  1367. border-color:transparent;
  1368. }
  1369. #u105785_div {
  1370. border-width:0px;
  1371. position:absolute;
  1372. left:0px;
  1373. top:0px;
  1374. width:623px;
  1375. height:31px;
  1376. background:inherit;
  1377. background-color:rgba(255, 255, 255, 1);
  1378. border:none;
  1379. border-radius:0px;
  1380. -moz-box-shadow:none;
  1381. -webkit-box-shadow:none;
  1382. box-shadow:none;
  1383. font-size:14px;
  1384. color:#AAAAAA;
  1385. }
  1386. #u105785 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:264px;
  1390. top:235px;
  1391. width:623px;
  1392. height:31px;
  1393. display:flex;
  1394. font-size:14px;
  1395. color:#AAAAAA;
  1396. }
  1397. #u105785 .text {
  1398. position:absolute;
  1399. align-self:flex-start;
  1400. padding:2px 2px 2px 2px;
  1401. box-sizing:border-box;
  1402. width:100%;
  1403. }
  1404. #u105785_div.disabled {
  1405. border-width:0px;
  1406. position:absolute;
  1407. left:0px;
  1408. top:0px;
  1409. width:623px;
  1410. height:31px;
  1411. background:inherit;
  1412. background-color:rgba(240, 240, 240, 1);
  1413. border:none;
  1414. border-radius:0px;
  1415. -moz-box-shadow:none;
  1416. -webkit-box-shadow:none;
  1417. box-shadow:none;
  1418. font-size:14px;
  1419. color:#AAAAAA;
  1420. }
  1421. #u105785.disabled {
  1422. }
  1423. .u105785_input_option {
  1424. font-size:14px;
  1425. }
  1426. #u105786_div {
  1427. border-width:0px;
  1428. position:absolute;
  1429. left:0px;
  1430. top:0px;
  1431. width:88px;
  1432. height:30px;
  1433. background:inherit;
  1434. background-color:rgba(255, 255, 255, 0);
  1435. border:none;
  1436. border-top:0px;
  1437. border-right:0px;
  1438. border-bottom:0px;
  1439. border-radius:0px;
  1440. border-top-left-radius:0px;
  1441. border-bottom-left-radius:0px;
  1442. -moz-box-shadow:none;
  1443. -webkit-box-shadow:none;
  1444. box-shadow:none;
  1445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1446. font-weight:400;
  1447. font-style:normal;
  1448. font-size:14px;
  1449. color:#7F7F7F;
  1450. text-align:right;
  1451. }
  1452. #u105786 {
  1453. border-width:0px;
  1454. position:absolute;
  1455. left:166px;
  1456. top:384px;
  1457. width:88px;
  1458. height:30px;
  1459. display:flex;
  1460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1461. font-weight:400;
  1462. font-style:normal;
  1463. font-size:14px;
  1464. color:#7F7F7F;
  1465. text-align:right;
  1466. }
  1467. #u105786 .text {
  1468. position:absolute;
  1469. align-self:center;
  1470. padding:5px 10px 5px 0px;
  1471. box-sizing:border-box;
  1472. width:100%;
  1473. }
  1474. #u105786_text {
  1475. border-width:0px;
  1476. white-space:nowrap;
  1477. text-transform:none;
  1478. }
  1479. #u105787 {
  1480. border-width:0px;
  1481. position:absolute;
  1482. left:0px;
  1483. top:0px;
  1484. width:0px;
  1485. height:0px;
  1486. }
  1487. #u105788_div {
  1488. border-width:0px;
  1489. position:absolute;
  1490. left:0px;
  1491. top:0px;
  1492. width:641px;
  1493. height:38px;
  1494. background:inherit;
  1495. background-color:rgba(255, 255, 255, 1);
  1496. box-sizing:border-box;
  1497. border-width:1px;
  1498. border-style:solid;
  1499. border-color:rgba(188, 188, 188, 1);
  1500. border-radius:6px;
  1501. -moz-box-shadow:none;
  1502. -webkit-box-shadow:none;
  1503. box-shadow:none;
  1504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1505. font-weight:400;
  1506. font-style:normal;
  1507. font-size:12px;
  1508. color:#FFFFFF;
  1509. }
  1510. #u105788 {
  1511. border-width:0px;
  1512. position:absolute;
  1513. left:254px;
  1514. top:380px;
  1515. width:641px;
  1516. height:38px;
  1517. display:flex;
  1518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1519. font-weight:400;
  1520. font-style:normal;
  1521. font-size:12px;
  1522. color:#FFFFFF;
  1523. }
  1524. #u105788 .text {
  1525. position:absolute;
  1526. align-self:center;
  1527. padding:8px 15px 8px 15px;
  1528. box-sizing:border-box;
  1529. width:100%;
  1530. }
  1531. #u105788_text {
  1532. border-width:0px;
  1533. word-wrap:break-word;
  1534. text-transform:none;
  1535. visibility:hidden;
  1536. }
  1537. #u105789_div {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:57px;
  1543. height:20px;
  1544. background:inherit;
  1545. background-color:rgba(255, 255, 255, 0);
  1546. border:none;
  1547. border-radius:0px;
  1548. -moz-box-shadow:none;
  1549. -webkit-box-shadow:none;
  1550. box-shadow:none;
  1551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1552. font-weight:400;
  1553. font-style:normal;
  1554. color:#BCBCBC;
  1555. }
  1556. #u105789 {
  1557. border-width:0px;
  1558. position:absolute;
  1559. left:273px;
  1560. top:389px;
  1561. width:57px;
  1562. height:20px;
  1563. display:flex;
  1564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1565. font-weight:400;
  1566. font-style:normal;
  1567. color:#BCBCBC;
  1568. }
  1569. #u105789 .text {
  1570. position:absolute;
  1571. align-self:flex-start;
  1572. padding:0px 0px 0px 0px;
  1573. box-sizing:border-box;
  1574. width:100%;
  1575. }
  1576. #u105789_text {
  1577. border-width:0px;
  1578. white-space:nowrap;
  1579. text-transform:none;
  1580. }
  1581. #u105790_img {
  1582. border-width:0px;
  1583. position:absolute;
  1584. left:0px;
  1585. top:0px;
  1586. width:18px;
  1587. height:18px;
  1588. }
  1589. #u105790 {
  1590. border-width:0px;
  1591. position:absolute;
  1592. left:866px;
  1593. top:390px;
  1594. width:18px;
  1595. height:18px;
  1596. display:flex;
  1597. opacity:0.5;
  1598. }
  1599. #u105790 .text {
  1600. position:absolute;
  1601. align-self:center;
  1602. padding:2px 2px 2px 2px;
  1603. box-sizing:border-box;
  1604. width:100%;
  1605. }
  1606. #u105790_text {
  1607. border-width:0px;
  1608. word-wrap:break-word;
  1609. text-transform:none;
  1610. visibility:hidden;
  1611. }
  1612. #u105791_div {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:88px;
  1618. height:30px;
  1619. background:inherit;
  1620. background-color:rgba(255, 255, 255, 0);
  1621. border:none;
  1622. border-top:0px;
  1623. border-right:0px;
  1624. border-bottom:0px;
  1625. border-radius:0px;
  1626. border-top-left-radius:0px;
  1627. border-bottom-left-radius:0px;
  1628. -moz-box-shadow:none;
  1629. -webkit-box-shadow:none;
  1630. box-shadow:none;
  1631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1632. font-weight:400;
  1633. font-style:normal;
  1634. font-size:14px;
  1635. color:#7F7F7F;
  1636. text-align:right;
  1637. }
  1638. #u105791 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:166px;
  1642. top:336px;
  1643. width:88px;
  1644. height:30px;
  1645. display:flex;
  1646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1647. font-weight:400;
  1648. font-style:normal;
  1649. font-size:14px;
  1650. color:#7F7F7F;
  1651. text-align:right;
  1652. }
  1653. #u105791 .text {
  1654. position:absolute;
  1655. align-self:center;
  1656. padding:5px 10px 5px 0px;
  1657. box-sizing:border-box;
  1658. width:100%;
  1659. }
  1660. #u105791_text {
  1661. border-width:0px;
  1662. white-space:nowrap;
  1663. text-transform:none;
  1664. }
  1665. #u105792 {
  1666. border-width:0px;
  1667. position:absolute;
  1668. left:0px;
  1669. top:0px;
  1670. width:0px;
  1671. height:0px;
  1672. }
  1673. #u105793_div {
  1674. border-width:0px;
  1675. position:absolute;
  1676. left:0px;
  1677. top:0px;
  1678. width:641px;
  1679. height:38px;
  1680. background:inherit;
  1681. background-color:rgba(255, 255, 255, 1);
  1682. box-sizing:border-box;
  1683. border-width:1px;
  1684. border-style:solid;
  1685. border-color:rgba(188, 188, 188, 1);
  1686. border-radius:6px;
  1687. -moz-box-shadow:none;
  1688. -webkit-box-shadow:none;
  1689. box-shadow:none;
  1690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1691. font-weight:400;
  1692. font-style:normal;
  1693. font-size:12px;
  1694. color:#FFFFFF;
  1695. }
  1696. #u105793 {
  1697. border-width:0px;
  1698. position:absolute;
  1699. left:254px;
  1700. top:332px;
  1701. width:641px;
  1702. height:38px;
  1703. display:flex;
  1704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1705. font-weight:400;
  1706. font-style:normal;
  1707. font-size:12px;
  1708. color:#FFFFFF;
  1709. }
  1710. #u105793 .text {
  1711. position:absolute;
  1712. align-self:center;
  1713. padding:8px 15px 8px 15px;
  1714. box-sizing:border-box;
  1715. width:100%;
  1716. }
  1717. #u105793_text {
  1718. border-width:0px;
  1719. word-wrap:break-word;
  1720. text-transform:none;
  1721. visibility:hidden;
  1722. }
  1723. #u105794_div {
  1724. border-width:0px;
  1725. position:absolute;
  1726. left:0px;
  1727. top:0px;
  1728. width:57px;
  1729. height:20px;
  1730. background:inherit;
  1731. background-color:rgba(255, 255, 255, 0);
  1732. border:none;
  1733. border-radius:0px;
  1734. -moz-box-shadow:none;
  1735. -webkit-box-shadow:none;
  1736. box-shadow:none;
  1737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1738. font-weight:400;
  1739. font-style:normal;
  1740. color:#BCBCBC;
  1741. }
  1742. #u105794 {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:273px;
  1746. top:341px;
  1747. width:57px;
  1748. height:20px;
  1749. display:flex;
  1750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1751. font-weight:400;
  1752. font-style:normal;
  1753. color:#BCBCBC;
  1754. }
  1755. #u105794 .text {
  1756. position:absolute;
  1757. align-self:flex-start;
  1758. padding:0px 0px 0px 0px;
  1759. box-sizing:border-box;
  1760. width:100%;
  1761. }
  1762. #u105794_text {
  1763. border-width:0px;
  1764. white-space:nowrap;
  1765. text-transform:none;
  1766. }
  1767. #u105795_img {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:0px;
  1771. top:0px;
  1772. width:18px;
  1773. height:18px;
  1774. }
  1775. #u105795 {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:866px;
  1779. top:342px;
  1780. width:18px;
  1781. height:18px;
  1782. display:flex;
  1783. opacity:0.5;
  1784. }
  1785. #u105795 .text {
  1786. position:absolute;
  1787. align-self:center;
  1788. padding:2px 2px 2px 2px;
  1789. box-sizing:border-box;
  1790. width:100%;
  1791. }
  1792. #u105795_text {
  1793. border-width:0px;
  1794. word-wrap:break-word;
  1795. text-transform:none;
  1796. visibility:hidden;
  1797. }
  1798. #u105796_div {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:0px;
  1802. top:0px;
  1803. width:835px;
  1804. height:60px;
  1805. background:inherit;
  1806. background-color:rgba(255, 255, 255, 0);
  1807. border:none;
  1808. border-radius:0px;
  1809. -moz-box-shadow:none;
  1810. -webkit-box-shadow:none;
  1811. box-shadow:none;
  1812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1813. font-weight:400;
  1814. font-style:normal;
  1815. font-size:14px;
  1816. color:#D9001B;
  1817. line-height:30px;
  1818. }
  1819. #u105796 {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:182px;
  1823. top:1273px;
  1824. width:835px;
  1825. height:60px;
  1826. display:flex;
  1827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1828. font-weight:400;
  1829. font-style:normal;
  1830. font-size:14px;
  1831. color:#D9001B;
  1832. line-height:30px;
  1833. }
  1834. #u105796 .text {
  1835. position:absolute;
  1836. align-self:flex-start;
  1837. padding:0px 0px 0px 0px;
  1838. box-sizing:border-box;
  1839. width:100%;
  1840. }
  1841. #u105796_text {
  1842. border-width:0px;
  1843. white-space:nowrap;
  1844. text-transform:none;
  1845. }