styles.css 43 KB

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