styles.css 45 KB

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