styles.css 45 KB

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