styles.css 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-48px;
  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. #u14647 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u14648_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:800px;
  33. height:1196px;
  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. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  44. font-weight:400;
  45. font-style:normal;
  46. font-size:14px;
  47. color:#AAAAAA;
  48. text-align:center;
  49. line-height:30px;
  50. }
  51. #u14648 {
  52. border-width:0px;
  53. position:absolute;
  54. left:48px;
  55. top:41px;
  56. width:800px;
  57. height:1196px;
  58. display:flex;
  59. transition:none;
  60. transform-origin:50% 50%;
  61. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  62. font-weight:400;
  63. font-style:normal;
  64. font-size:14px;
  65. color:#AAAAAA;
  66. text-align:center;
  67. line-height:30px;
  68. }
  69. #u14648 .text {
  70. position:absolute;
  71. align-self:center;
  72. padding:5px 10px 5px 10px;
  73. box-sizing:border-box;
  74. width:100%;
  75. }
  76. #u14648_text {
  77. border-width:0px;
  78. word-wrap:break-word;
  79. text-transform:none;
  80. visibility:hidden;
  81. }
  82. #u14649_div {
  83. border-width:0px;
  84. position:absolute;
  85. left:0px;
  86. top:0px;
  87. width:137px;
  88. height:35px;
  89. background:inherit;
  90. background-color:rgba(255, 255, 255, 0);
  91. border-top:0px;
  92. border-right:0px;
  93. border-bottom:0px;
  94. border-radius:0px;
  95. border-top-left-radius:0px;
  96. border-bottom-left-radius:0px;
  97. filter:drop-shadow(none);
  98. transition:none;
  99. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  100. font-weight:500;
  101. font-style:normal;
  102. font-size:18px;
  103. }
  104. #u14649 {
  105. border-width:0px;
  106. position:absolute;
  107. left:68px;
  108. top:59px;
  109. width:137px;
  110. height:35px;
  111. display:flex;
  112. transition:none;
  113. transform-origin:50% 50%;
  114. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  115. font-weight:500;
  116. font-style:normal;
  117. font-size:18px;
  118. }
  119. #u14649 .text {
  120. position:absolute;
  121. align-self:center;
  122. padding:5px 10px 5px 0px;
  123. box-sizing:border-box;
  124. width:100%;
  125. }
  126. #u14649_text {
  127. border-width:0px;
  128. white-space:nowrap;
  129. text-transform:none;
  130. }
  131. #u14650 {
  132. border-width:0px;
  133. position:absolute;
  134. left:0px;
  135. top:0px;
  136. width:0px;
  137. height:0px;
  138. }
  139. #u14651_div {
  140. border-width:0px;
  141. position:absolute;
  142. left:0px;
  143. top:0px;
  144. width:40px;
  145. height:40px;
  146. background:inherit;
  147. background-color:rgba(255, 255, 255, 0);
  148. border-top:0px;
  149. border-right:0px;
  150. border-bottom:0px;
  151. border-radius:0px;
  152. border-top-left-radius:0px;
  153. border-bottom-left-radius:0px;
  154. filter:drop-shadow(none);
  155. transition:none;
  156. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  157. font-weight:500;
  158. font-style:normal;
  159. font-size:18px;
  160. text-align:center;
  161. }
  162. #u14651 {
  163. border-width:0px;
  164. position:absolute;
  165. left:808px;
  166. top:41px;
  167. width:40px;
  168. height:40px;
  169. display:flex;
  170. transition:none;
  171. transform-origin:50% 50%;
  172. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  173. font-weight:500;
  174. font-style:normal;
  175. font-size:18px;
  176. text-align:center;
  177. }
  178. #u14651 .text {
  179. position:absolute;
  180. align-self:center;
  181. padding:5px 10px 5px 0px;
  182. box-sizing:border-box;
  183. width:100%;
  184. }
  185. #u14651_text {
  186. border-width:0px;
  187. word-wrap:break-word;
  188. text-transform:none;
  189. }
  190. #u14652 {
  191. border-width:0px;
  192. position:absolute;
  193. left:796px;
  194. top:57px;
  195. width:13px;
  196. height:13px;
  197. display:flex;
  198. transition:none;
  199. }
  200. #u14652 .text {
  201. position:absolute;
  202. align-self:center;
  203. padding:2px 2px 2px 2px;
  204. box-sizing:border-box;
  205. width:100%;
  206. }
  207. #u14652_img {
  208. border-width:0px;
  209. position:absolute;
  210. left:0px;
  211. top:0px;
  212. width:13px;
  213. height:13px;
  214. }
  215. #u14652_text {
  216. border-width:0px;
  217. word-wrap:break-word;
  218. text-transform:none;
  219. visibility:hidden;
  220. }
  221. #u14653 {
  222. border-width:0px;
  223. position:absolute;
  224. left:0px;
  225. top:0px;
  226. width:0px;
  227. height:0px;
  228. }
  229. #u14654_div {
  230. border-width:0px;
  231. position:absolute;
  232. left:0px;
  233. top:0px;
  234. width:800px;
  235. height:50px;
  236. background:inherit;
  237. background-color:rgba(255, 255, 255, 1);
  238. box-sizing:border-box;
  239. border-width:1px;
  240. border-style:solid;
  241. border-color:rgba(215, 215, 215, 1);
  242. border-radius:0px;
  243. filter:drop-shadow(none);
  244. transition:none;
  245. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  246. font-weight:400;
  247. font-style:normal;
  248. font-size:14px;
  249. color:#AAAAAA;
  250. text-align:center;
  251. line-height:30px;
  252. }
  253. #u14654 {
  254. border-width:0px;
  255. position:absolute;
  256. left:48px;
  257. top:1187px;
  258. width:800px;
  259. height:50px;
  260. display:flex;
  261. transition:none;
  262. transform-origin:50% 50%;
  263. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  264. font-weight:400;
  265. font-style:normal;
  266. font-size:14px;
  267. color:#AAAAAA;
  268. text-align:center;
  269. line-height:30px;
  270. }
  271. #u14654 .text {
  272. position:absolute;
  273. align-self:center;
  274. padding:5px 10px 5px 10px;
  275. box-sizing:border-box;
  276. width:100%;
  277. }
  278. #u14654_text {
  279. border-width:0px;
  280. word-wrap:break-word;
  281. text-transform:none;
  282. visibility:hidden;
  283. }
  284. #u14655_div {
  285. border-width:0px;
  286. position:absolute;
  287. left:0px;
  288. top:0px;
  289. width:80px;
  290. height:30px;
  291. background:inherit;
  292. background-color:rgba(255, 255, 255, 1);
  293. box-sizing:border-box;
  294. border-width:1px;
  295. border-style:solid;
  296. border-color:rgba(121, 121, 121, 1);
  297. border-radius:4px;
  298. filter:drop-shadow(none);
  299. transition:none;
  300. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  301. font-weight:400;
  302. font-style:normal;
  303. font-size:14px;
  304. }
  305. #u14655 {
  306. border-width:0px;
  307. position:absolute;
  308. left:748px;
  309. top:1197px;
  310. width:80px;
  311. height:30px;
  312. display:flex;
  313. transition:none;
  314. transform-origin:50% 50%;
  315. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  316. font-weight:400;
  317. font-style:normal;
  318. font-size:14px;
  319. }
  320. #u14655 .text {
  321. position:absolute;
  322. align-self:center;
  323. padding:2px 2px 2px 2px;
  324. box-sizing:border-box;
  325. width:100%;
  326. }
  327. #u14655_text {
  328. border-width:0px;
  329. word-wrap:break-word;
  330. text-transform:none;
  331. }
  332. #u14656 {
  333. border-width:0px;
  334. position:absolute;
  335. left:68px;
  336. top:163px;
  337. width:754px;
  338. height:213px;
  339. }
  340. #u14657 {
  341. border-width:0px;
  342. position:absolute;
  343. left:0px;
  344. top:0px;
  345. width:71px;
  346. height:30px;
  347. display:flex;
  348. transition:none;
  349. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  350. font-weight:400;
  351. font-style:normal;
  352. color:#FFFFFF;
  353. }
  354. #u14657 .text {
  355. position:absolute;
  356. align-self:center;
  357. padding:2px 2px 2px 2px;
  358. box-sizing:border-box;
  359. width:100%;
  360. }
  361. #u14657_img {
  362. border-width:0px;
  363. position:absolute;
  364. left:0px;
  365. top:0px;
  366. width:71px;
  367. height:30px;
  368. }
  369. #u14657_text {
  370. border-width:0px;
  371. word-wrap:break-word;
  372. text-transform:none;
  373. }
  374. #u14658 {
  375. border-width:0px;
  376. position:absolute;
  377. left:71px;
  378. top:0px;
  379. width:137px;
  380. height:30px;
  381. display:flex;
  382. transition:none;
  383. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  384. font-weight:400;
  385. font-style:normal;
  386. color:#FFFFFF;
  387. }
  388. #u14658 .text {
  389. position:absolute;
  390. align-self:center;
  391. padding:2px 2px 2px 2px;
  392. box-sizing:border-box;
  393. width:100%;
  394. }
  395. #u14658_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:137px;
  401. height:30px;
  402. }
  403. #u14658_text {
  404. border-width:0px;
  405. word-wrap:break-word;
  406. text-transform:none;
  407. }
  408. #u14659 {
  409. border-width:0px;
  410. position:absolute;
  411. left:208px;
  412. top:0px;
  413. width:137px;
  414. height:30px;
  415. display:flex;
  416. transition:none;
  417. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  418. font-weight:400;
  419. font-style:normal;
  420. color:#FFFFFF;
  421. }
  422. #u14659 .text {
  423. position:absolute;
  424. align-self:center;
  425. padding:2px 2px 2px 2px;
  426. box-sizing:border-box;
  427. width:100%;
  428. }
  429. #u14659_img {
  430. border-width:0px;
  431. position:absolute;
  432. left:0px;
  433. top:0px;
  434. width:137px;
  435. height:30px;
  436. }
  437. #u14659_text {
  438. border-width:0px;
  439. word-wrap:break-word;
  440. text-transform:none;
  441. }
  442. #u14660 {
  443. border-width:0px;
  444. position:absolute;
  445. left:344px;
  446. top:0px;
  447. width:137px;
  448. height:30px;
  449. display:flex;
  450. transition:none;
  451. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  452. font-weight:400;
  453. font-style:normal;
  454. color:#FFFFFF;
  455. }
  456. #u14660 .text {
  457. position:absolute;
  458. align-self:center;
  459. padding:2px 2px 2px 2px;
  460. box-sizing:border-box;
  461. width:100%;
  462. }
  463. #u14660_img {
  464. border-width:0px;
  465. position:absolute;
  466. left:0px;
  467. top:0px;
  468. width:137px;
  469. height:30px;
  470. }
  471. #u14660_text {
  472. border-width:0px;
  473. word-wrap:break-word;
  474. text-transform:none;
  475. }
  476. #u14661 {
  477. border-width:0px;
  478. position:absolute;
  479. left:481px;
  480. top:0px;
  481. width:137px;
  482. height:30px;
  483. display:flex;
  484. transition:none;
  485. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  486. font-weight:400;
  487. font-style:normal;
  488. color:#FFFFFF;
  489. }
  490. #u14661 .text {
  491. position:absolute;
  492. align-self:center;
  493. padding:2px 2px 2px 2px;
  494. box-sizing:border-box;
  495. width:100%;
  496. }
  497. #u14661_img {
  498. border-width:0px;
  499. position:absolute;
  500. left:0px;
  501. top:0px;
  502. width:137px;
  503. height:30px;
  504. }
  505. #u14661_text {
  506. border-width:0px;
  507. word-wrap:break-word;
  508. text-transform:none;
  509. }
  510. #u14662 {
  511. border-width:0px;
  512. position:absolute;
  513. left:617px;
  514. top:0px;
  515. width:137px;
  516. height:30px;
  517. display:flex;
  518. transition:none;
  519. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  520. font-weight:400;
  521. font-style:normal;
  522. color:#FFFFFF;
  523. }
  524. #u14662 .text {
  525. position:absolute;
  526. align-self:center;
  527. padding:2px 2px 2px 2px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u14662_img {
  532. border-width:0px;
  533. position:absolute;
  534. left:0px;
  535. top:0px;
  536. width:137px;
  537. height:30px;
  538. }
  539. #u14662_text {
  540. border-width:0px;
  541. word-wrap:break-word;
  542. text-transform:none;
  543. }
  544. #u14663 {
  545. border-width:0px;
  546. position:absolute;
  547. left:0px;
  548. top:30px;
  549. width:71px;
  550. height:40px;
  551. display:flex;
  552. transition:none;
  553. }
  554. #u14663 .text {
  555. position:absolute;
  556. align-self:center;
  557. padding:2px 2px 2px 2px;
  558. box-sizing:border-box;
  559. width:100%;
  560. }
  561. #u14663_img {
  562. border-width:0px;
  563. position:absolute;
  564. left:0px;
  565. top:0px;
  566. width:71px;
  567. height:40px;
  568. }
  569. #u14663_text {
  570. border-width:0px;
  571. word-wrap:break-word;
  572. text-transform:none;
  573. }
  574. #u14664 {
  575. border-width:0px;
  576. position:absolute;
  577. left:71px;
  578. top:30px;
  579. width:137px;
  580. height:40px;
  581. display:flex;
  582. transition:none;
  583. }
  584. #u14664 .text {
  585. position:absolute;
  586. align-self:center;
  587. padding:2px 2px 2px 2px;
  588. box-sizing:border-box;
  589. width:100%;
  590. }
  591. #u14664_img {
  592. border-width:0px;
  593. position:absolute;
  594. left:0px;
  595. top:0px;
  596. width:137px;
  597. height:40px;
  598. }
  599. #u14664_text {
  600. border-width:0px;
  601. word-wrap:break-word;
  602. text-transform:none;
  603. visibility:hidden;
  604. }
  605. #u14665 {
  606. border-width:0px;
  607. position:absolute;
  608. left:208px;
  609. top:30px;
  610. width:137px;
  611. height:40px;
  612. display:flex;
  613. transition:none;
  614. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  615. font-weight:400;
  616. font-style:normal;
  617. }
  618. #u14665 .text {
  619. position:absolute;
  620. align-self:center;
  621. padding:2px 2px 2px 2px;
  622. box-sizing:border-box;
  623. width:100%;
  624. }
  625. #u14665_img {
  626. border-width:0px;
  627. position:absolute;
  628. left:0px;
  629. top:0px;
  630. width:137px;
  631. height:40px;
  632. }
  633. #u14665_text {
  634. border-width:0px;
  635. word-wrap:break-word;
  636. text-transform:none;
  637. }
  638. #u14666 {
  639. border-width:0px;
  640. position:absolute;
  641. left:344px;
  642. top:30px;
  643. width:137px;
  644. height:40px;
  645. display:flex;
  646. transition:none;
  647. }
  648. #u14666 .text {
  649. position:absolute;
  650. align-self:center;
  651. padding:2px 2px 2px 2px;
  652. box-sizing:border-box;
  653. width:100%;
  654. }
  655. #u14666_img {
  656. border-width:0px;
  657. position:absolute;
  658. left:0px;
  659. top:0px;
  660. width:137px;
  661. height:40px;
  662. }
  663. #u14666_text {
  664. border-width:0px;
  665. word-wrap:break-word;
  666. text-transform:none;
  667. }
  668. #u14667 {
  669. border-width:0px;
  670. position:absolute;
  671. left:481px;
  672. top:30px;
  673. width:137px;
  674. height:40px;
  675. display:flex;
  676. transition:none;
  677. }
  678. #u14667 .text {
  679. position:absolute;
  680. align-self:center;
  681. padding:2px 2px 2px 2px;
  682. box-sizing:border-box;
  683. width:100%;
  684. }
  685. #u14667_img {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:137px;
  691. height:40px;
  692. }
  693. #u14667_text {
  694. border-width:0px;
  695. word-wrap:break-word;
  696. text-transform:none;
  697. }
  698. #u14668 {
  699. border-width:0px;
  700. position:absolute;
  701. left:617px;
  702. top:30px;
  703. width:137px;
  704. height:40px;
  705. display:flex;
  706. transition:none;
  707. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  708. font-weight:400;
  709. font-style:normal;
  710. color:#298FFF;
  711. }
  712. #u14668 .text {
  713. position:absolute;
  714. align-self:center;
  715. padding:2px 2px 2px 2px;
  716. box-sizing:border-box;
  717. width:100%;
  718. }
  719. #u14668_img {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:137px;
  725. height:40px;
  726. }
  727. #u14668_text {
  728. border-width:0px;
  729. word-wrap:break-word;
  730. text-transform:none;
  731. }
  732. #u14669 {
  733. border-width:0px;
  734. position:absolute;
  735. left:0px;
  736. top:70px;
  737. width:71px;
  738. height:30px;
  739. display:flex;
  740. transition:none;
  741. }
  742. #u14669 .text {
  743. position:absolute;
  744. align-self:center;
  745. padding:2px 2px 2px 2px;
  746. box-sizing:border-box;
  747. width:100%;
  748. }
  749. #u14669_img {
  750. border-width:0px;
  751. position:absolute;
  752. left:0px;
  753. top:0px;
  754. width:71px;
  755. height:30px;
  756. }
  757. #u14669_text {
  758. border-width:0px;
  759. word-wrap:break-word;
  760. text-transform:none;
  761. }
  762. #u14670 {
  763. border-width:0px;
  764. position:absolute;
  765. left:71px;
  766. top:70px;
  767. width:137px;
  768. height:30px;
  769. display:flex;
  770. transition:none;
  771. }
  772. #u14670 .text {
  773. position:absolute;
  774. align-self:center;
  775. padding:2px 2px 2px 2px;
  776. box-sizing:border-box;
  777. width:100%;
  778. }
  779. #u14670_img {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:137px;
  785. height:30px;
  786. }
  787. #u14670_text {
  788. border-width:0px;
  789. word-wrap:break-word;
  790. text-transform:none;
  791. visibility:hidden;
  792. }
  793. #u14671 {
  794. border-width:0px;
  795. position:absolute;
  796. left:208px;
  797. top:70px;
  798. width:137px;
  799. height:30px;
  800. display:flex;
  801. transition:none;
  802. }
  803. #u14671 .text {
  804. position:absolute;
  805. align-self:center;
  806. padding:2px 2px 2px 2px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u14671_img {
  811. border-width:0px;
  812. position:absolute;
  813. left:0px;
  814. top:0px;
  815. width:137px;
  816. height:30px;
  817. }
  818. #u14671_text {
  819. border-width:0px;
  820. word-wrap:break-word;
  821. text-transform:none;
  822. visibility:hidden;
  823. }
  824. #u14672 {
  825. border-width:0px;
  826. position:absolute;
  827. left:344px;
  828. top:70px;
  829. width:137px;
  830. height:30px;
  831. display:flex;
  832. transition:none;
  833. }
  834. #u14672 .text {
  835. position:absolute;
  836. align-self:center;
  837. padding:2px 2px 2px 2px;
  838. box-sizing:border-box;
  839. width:100%;
  840. }
  841. #u14672_img {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:137px;
  847. height:30px;
  848. }
  849. #u14672_text {
  850. border-width:0px;
  851. word-wrap:break-word;
  852. text-transform:none;
  853. visibility:hidden;
  854. }
  855. #u14673 {
  856. border-width:0px;
  857. position:absolute;
  858. left:481px;
  859. top:70px;
  860. width:137px;
  861. height:30px;
  862. display:flex;
  863. transition:none;
  864. }
  865. #u14673 .text {
  866. position:absolute;
  867. align-self:center;
  868. padding:2px 2px 2px 2px;
  869. box-sizing:border-box;
  870. width:100%;
  871. }
  872. #u14673_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:137px;
  878. height:30px;
  879. }
  880. #u14673_text {
  881. border-width:0px;
  882. word-wrap:break-word;
  883. text-transform:none;
  884. visibility:hidden;
  885. }
  886. #u14674 {
  887. border-width:0px;
  888. position:absolute;
  889. left:617px;
  890. top:70px;
  891. width:137px;
  892. height:30px;
  893. display:flex;
  894. transition:none;
  895. }
  896. #u14674 .text {
  897. position:absolute;
  898. align-self:center;
  899. padding:2px 2px 2px 2px;
  900. box-sizing:border-box;
  901. width:100%;
  902. }
  903. #u14674_img {
  904. border-width:0px;
  905. position:absolute;
  906. left:0px;
  907. top:0px;
  908. width:137px;
  909. height:30px;
  910. }
  911. #u14674_text {
  912. border-width:0px;
  913. word-wrap:break-word;
  914. text-transform:none;
  915. visibility:hidden;
  916. }
  917. #u14675 {
  918. border-width:0px;
  919. position:absolute;
  920. left:0px;
  921. top:100px;
  922. width:71px;
  923. height:30px;
  924. display:flex;
  925. transition:none;
  926. }
  927. #u14675 .text {
  928. position:absolute;
  929. align-self:center;
  930. padding:2px 2px 2px 2px;
  931. box-sizing:border-box;
  932. width:100%;
  933. }
  934. #u14675_img {
  935. border-width:0px;
  936. position:absolute;
  937. left:0px;
  938. top:0px;
  939. width:71px;
  940. height:30px;
  941. }
  942. #u14675_text {
  943. border-width:0px;
  944. word-wrap:break-word;
  945. text-transform:none;
  946. }
  947. #u14676 {
  948. border-width:0px;
  949. position:absolute;
  950. left:71px;
  951. top:100px;
  952. width:137px;
  953. height:30px;
  954. display:flex;
  955. transition:none;
  956. }
  957. #u14676 .text {
  958. position:absolute;
  959. align-self:center;
  960. padding:2px 2px 2px 2px;
  961. box-sizing:border-box;
  962. width:100%;
  963. }
  964. #u14676_img {
  965. border-width:0px;
  966. position:absolute;
  967. left:0px;
  968. top:0px;
  969. width:137px;
  970. height:30px;
  971. }
  972. #u14676_text {
  973. border-width:0px;
  974. word-wrap:break-word;
  975. text-transform:none;
  976. visibility:hidden;
  977. }
  978. #u14677 {
  979. border-width:0px;
  980. position:absolute;
  981. left:208px;
  982. top:100px;
  983. width:137px;
  984. height:30px;
  985. display:flex;
  986. transition:none;
  987. }
  988. #u14677 .text {
  989. position:absolute;
  990. align-self:center;
  991. padding:2px 2px 2px 2px;
  992. box-sizing:border-box;
  993. width:100%;
  994. }
  995. #u14677_img {
  996. border-width:0px;
  997. position:absolute;
  998. left:0px;
  999. top:0px;
  1000. width:137px;
  1001. height:30px;
  1002. }
  1003. #u14677_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u14678 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:344px;
  1013. top:100px;
  1014. width:137px;
  1015. height:30px;
  1016. display:flex;
  1017. transition:none;
  1018. }
  1019. #u14678 .text {
  1020. position:absolute;
  1021. align-self:center;
  1022. padding:2px 2px 2px 2px;
  1023. box-sizing:border-box;
  1024. width:100%;
  1025. }
  1026. #u14678_img {
  1027. border-width:0px;
  1028. position:absolute;
  1029. left:0px;
  1030. top:0px;
  1031. width:137px;
  1032. height:30px;
  1033. }
  1034. #u14678_text {
  1035. border-width:0px;
  1036. word-wrap:break-word;
  1037. text-transform:none;
  1038. visibility:hidden;
  1039. }
  1040. #u14679 {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:481px;
  1044. top:100px;
  1045. width:137px;
  1046. height:30px;
  1047. display:flex;
  1048. transition:none;
  1049. }
  1050. #u14679 .text {
  1051. position:absolute;
  1052. align-self:center;
  1053. padding:2px 2px 2px 2px;
  1054. box-sizing:border-box;
  1055. width:100%;
  1056. }
  1057. #u14679_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:137px;
  1063. height:30px;
  1064. }
  1065. #u14679_text {
  1066. border-width:0px;
  1067. word-wrap:break-word;
  1068. text-transform:none;
  1069. visibility:hidden;
  1070. }
  1071. #u14680 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:617px;
  1075. top:100px;
  1076. width:137px;
  1077. height:30px;
  1078. display:flex;
  1079. transition:none;
  1080. }
  1081. #u14680 .text {
  1082. position:absolute;
  1083. align-self:center;
  1084. padding:2px 2px 2px 2px;
  1085. box-sizing:border-box;
  1086. width:100%;
  1087. }
  1088. #u14680_img {
  1089. border-width:0px;
  1090. position:absolute;
  1091. left:0px;
  1092. top:0px;
  1093. width:137px;
  1094. height:30px;
  1095. }
  1096. #u14680_text {
  1097. border-width:0px;
  1098. word-wrap:break-word;
  1099. text-transform:none;
  1100. visibility:hidden;
  1101. }
  1102. #u14681 {
  1103. border-width:0px;
  1104. position:absolute;
  1105. left:0px;
  1106. top:130px;
  1107. width:71px;
  1108. height:30px;
  1109. display:flex;
  1110. transition:none;
  1111. }
  1112. #u14681 .text {
  1113. position:absolute;
  1114. align-self:center;
  1115. padding:2px 2px 2px 2px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u14681_img {
  1120. border-width:0px;
  1121. position:absolute;
  1122. left:0px;
  1123. top:0px;
  1124. width:71px;
  1125. height:30px;
  1126. }
  1127. #u14681_text {
  1128. border-width:0px;
  1129. word-wrap:break-word;
  1130. text-transform:none;
  1131. }
  1132. #u14682 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:71px;
  1136. top:130px;
  1137. width:137px;
  1138. height:30px;
  1139. display:flex;
  1140. transition:none;
  1141. }
  1142. #u14682 .text {
  1143. position:absolute;
  1144. align-self:center;
  1145. padding:2px 2px 2px 2px;
  1146. box-sizing:border-box;
  1147. width:100%;
  1148. }
  1149. #u14682_img {
  1150. border-width:0px;
  1151. position:absolute;
  1152. left:0px;
  1153. top:0px;
  1154. width:137px;
  1155. height:30px;
  1156. }
  1157. #u14682_text {
  1158. border-width:0px;
  1159. word-wrap:break-word;
  1160. text-transform:none;
  1161. visibility:hidden;
  1162. }
  1163. #u14683 {
  1164. border-width:0px;
  1165. position:absolute;
  1166. left:208px;
  1167. top:130px;
  1168. width:137px;
  1169. height:30px;
  1170. display:flex;
  1171. transition:none;
  1172. }
  1173. #u14683 .text {
  1174. position:absolute;
  1175. align-self:center;
  1176. padding:2px 2px 2px 2px;
  1177. box-sizing:border-box;
  1178. width:100%;
  1179. }
  1180. #u14683_img {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:137px;
  1186. height:30px;
  1187. }
  1188. #u14683_text {
  1189. border-width:0px;
  1190. word-wrap:break-word;
  1191. text-transform:none;
  1192. visibility:hidden;
  1193. }
  1194. #u14684 {
  1195. border-width:0px;
  1196. position:absolute;
  1197. left:344px;
  1198. top:130px;
  1199. width:137px;
  1200. height:30px;
  1201. display:flex;
  1202. transition:none;
  1203. }
  1204. #u14684 .text {
  1205. position:absolute;
  1206. align-self:center;
  1207. padding:2px 2px 2px 2px;
  1208. box-sizing:border-box;
  1209. width:100%;
  1210. }
  1211. #u14684_img {
  1212. border-width:0px;
  1213. position:absolute;
  1214. left:0px;
  1215. top:0px;
  1216. width:137px;
  1217. height:30px;
  1218. }
  1219. #u14684_text {
  1220. border-width:0px;
  1221. word-wrap:break-word;
  1222. text-transform:none;
  1223. visibility:hidden;
  1224. }
  1225. #u14685 {
  1226. border-width:0px;
  1227. position:absolute;
  1228. left:481px;
  1229. top:130px;
  1230. width:137px;
  1231. height:30px;
  1232. display:flex;
  1233. transition:none;
  1234. }
  1235. #u14685 .text {
  1236. position:absolute;
  1237. align-self:center;
  1238. padding:2px 2px 2px 2px;
  1239. box-sizing:border-box;
  1240. width:100%;
  1241. }
  1242. #u14685_img {
  1243. border-width:0px;
  1244. position:absolute;
  1245. left:0px;
  1246. top:0px;
  1247. width:137px;
  1248. height:30px;
  1249. }
  1250. #u14685_text {
  1251. border-width:0px;
  1252. word-wrap:break-word;
  1253. text-transform:none;
  1254. visibility:hidden;
  1255. }
  1256. #u14686 {
  1257. border-width:0px;
  1258. position:absolute;
  1259. left:617px;
  1260. top:130px;
  1261. width:137px;
  1262. height:30px;
  1263. display:flex;
  1264. transition:none;
  1265. }
  1266. #u14686 .text {
  1267. position:absolute;
  1268. align-self:center;
  1269. padding:2px 2px 2px 2px;
  1270. box-sizing:border-box;
  1271. width:100%;
  1272. }
  1273. #u14686_img {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:0px;
  1277. top:0px;
  1278. width:137px;
  1279. height:30px;
  1280. }
  1281. #u14686_text {
  1282. border-width:0px;
  1283. word-wrap:break-word;
  1284. text-transform:none;
  1285. visibility:hidden;
  1286. }
  1287. #u14687 {
  1288. border-width:0px;
  1289. position:absolute;
  1290. left:0px;
  1291. top:160px;
  1292. width:71px;
  1293. height:30px;
  1294. display:flex;
  1295. transition:none;
  1296. }
  1297. #u14687 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u14687_img {
  1305. border-width:0px;
  1306. position:absolute;
  1307. left:0px;
  1308. top:0px;
  1309. width:71px;
  1310. height:30px;
  1311. }
  1312. #u14687_text {
  1313. border-width:0px;
  1314. word-wrap:break-word;
  1315. text-transform:none;
  1316. }
  1317. #u14688 {
  1318. border-width:0px;
  1319. position:absolute;
  1320. left:71px;
  1321. top:160px;
  1322. width:137px;
  1323. height:30px;
  1324. display:flex;
  1325. transition:none;
  1326. }
  1327. #u14688 .text {
  1328. position:absolute;
  1329. align-self:center;
  1330. padding:2px 2px 2px 2px;
  1331. box-sizing:border-box;
  1332. width:100%;
  1333. }
  1334. #u14688_img {
  1335. border-width:0px;
  1336. position:absolute;
  1337. left:0px;
  1338. top:0px;
  1339. width:137px;
  1340. height:30px;
  1341. }
  1342. #u14688_text {
  1343. border-width:0px;
  1344. word-wrap:break-word;
  1345. text-transform:none;
  1346. visibility:hidden;
  1347. }
  1348. #u14689 {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:208px;
  1352. top:160px;
  1353. width:137px;
  1354. height:30px;
  1355. display:flex;
  1356. transition:none;
  1357. }
  1358. #u14689 .text {
  1359. position:absolute;
  1360. align-self:center;
  1361. padding:2px 2px 2px 2px;
  1362. box-sizing:border-box;
  1363. width:100%;
  1364. }
  1365. #u14689_img {
  1366. border-width:0px;
  1367. position:absolute;
  1368. left:0px;
  1369. top:0px;
  1370. width:137px;
  1371. height:30px;
  1372. }
  1373. #u14689_text {
  1374. border-width:0px;
  1375. word-wrap:break-word;
  1376. text-transform:none;
  1377. visibility:hidden;
  1378. }
  1379. #u14690 {
  1380. border-width:0px;
  1381. position:absolute;
  1382. left:344px;
  1383. top:160px;
  1384. width:137px;
  1385. height:30px;
  1386. display:flex;
  1387. transition:none;
  1388. }
  1389. #u14690 .text {
  1390. position:absolute;
  1391. align-self:center;
  1392. padding:2px 2px 2px 2px;
  1393. box-sizing:border-box;
  1394. width:100%;
  1395. }
  1396. #u14690_img {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:137px;
  1402. height:30px;
  1403. }
  1404. #u14690_text {
  1405. border-width:0px;
  1406. word-wrap:break-word;
  1407. text-transform:none;
  1408. visibility:hidden;
  1409. }
  1410. #u14691 {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:481px;
  1414. top:160px;
  1415. width:137px;
  1416. height:30px;
  1417. display:flex;
  1418. transition:none;
  1419. }
  1420. #u14691 .text {
  1421. position:absolute;
  1422. align-self:center;
  1423. padding:2px 2px 2px 2px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u14691_img {
  1428. border-width:0px;
  1429. position:absolute;
  1430. left:0px;
  1431. top:0px;
  1432. width:137px;
  1433. height:30px;
  1434. }
  1435. #u14691_text {
  1436. border-width:0px;
  1437. word-wrap:break-word;
  1438. text-transform:none;
  1439. visibility:hidden;
  1440. }
  1441. #u14692 {
  1442. border-width:0px;
  1443. position:absolute;
  1444. left:617px;
  1445. top:160px;
  1446. width:137px;
  1447. height:30px;
  1448. display:flex;
  1449. transition:none;
  1450. }
  1451. #u14692 .text {
  1452. position:absolute;
  1453. align-self:center;
  1454. padding:2px 2px 2px 2px;
  1455. box-sizing:border-box;
  1456. width:100%;
  1457. }
  1458. #u14692_img {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:0px;
  1462. top:0px;
  1463. width:137px;
  1464. height:30px;
  1465. }
  1466. #u14692_text {
  1467. border-width:0px;
  1468. word-wrap:break-word;
  1469. text-transform:none;
  1470. visibility:hidden;
  1471. }
  1472. #u14693 {
  1473. border-width:0px;
  1474. position:absolute;
  1475. left:0px;
  1476. top:190px;
  1477. width:71px;
  1478. height:23px;
  1479. display:flex;
  1480. transition:none;
  1481. }
  1482. #u14693 .text {
  1483. position:absolute;
  1484. align-self:center;
  1485. padding:2px 2px 2px 2px;
  1486. box-sizing:border-box;
  1487. width:100%;
  1488. }
  1489. #u14693_img {
  1490. border-width:0px;
  1491. position:absolute;
  1492. left:0px;
  1493. top:0px;
  1494. width:71px;
  1495. height:23px;
  1496. }
  1497. #u14693_text {
  1498. border-width:0px;
  1499. word-wrap:break-word;
  1500. text-transform:none;
  1501. }
  1502. #u14694 {
  1503. border-width:0px;
  1504. position:absolute;
  1505. left:71px;
  1506. top:190px;
  1507. width:137px;
  1508. height:23px;
  1509. display:flex;
  1510. transition:none;
  1511. }
  1512. #u14694 .text {
  1513. position:absolute;
  1514. align-self:center;
  1515. padding:2px 2px 2px 2px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u14694_img {
  1520. border-width:0px;
  1521. position:absolute;
  1522. left:0px;
  1523. top:0px;
  1524. width:137px;
  1525. height:23px;
  1526. }
  1527. #u14694_text {
  1528. border-width:0px;
  1529. word-wrap:break-word;
  1530. text-transform:none;
  1531. visibility:hidden;
  1532. }
  1533. #u14695 {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:208px;
  1537. top:190px;
  1538. width:137px;
  1539. height:23px;
  1540. display:flex;
  1541. transition:none;
  1542. }
  1543. #u14695 .text {
  1544. position:absolute;
  1545. align-self:center;
  1546. padding:2px 2px 2px 2px;
  1547. box-sizing:border-box;
  1548. width:100%;
  1549. }
  1550. #u14695_img {
  1551. border-width:0px;
  1552. position:absolute;
  1553. left:0px;
  1554. top:0px;
  1555. width:137px;
  1556. height:23px;
  1557. }
  1558. #u14695_text {
  1559. border-width:0px;
  1560. word-wrap:break-word;
  1561. text-transform:none;
  1562. visibility:hidden;
  1563. }
  1564. #u14696 {
  1565. border-width:0px;
  1566. position:absolute;
  1567. left:344px;
  1568. top:190px;
  1569. width:137px;
  1570. height:23px;
  1571. display:flex;
  1572. transition:none;
  1573. }
  1574. #u14696 .text {
  1575. position:absolute;
  1576. align-self:center;
  1577. padding:2px 2px 2px 2px;
  1578. box-sizing:border-box;
  1579. width:100%;
  1580. }
  1581. #u14696_img {
  1582. border-width:0px;
  1583. position:absolute;
  1584. left:0px;
  1585. top:0px;
  1586. width:137px;
  1587. height:23px;
  1588. }
  1589. #u14696_text {
  1590. border-width:0px;
  1591. word-wrap:break-word;
  1592. text-transform:none;
  1593. visibility:hidden;
  1594. }
  1595. #u14697 {
  1596. border-width:0px;
  1597. position:absolute;
  1598. left:481px;
  1599. top:190px;
  1600. width:137px;
  1601. height:23px;
  1602. display:flex;
  1603. transition:none;
  1604. }
  1605. #u14697 .text {
  1606. position:absolute;
  1607. align-self:center;
  1608. padding:2px 2px 2px 2px;
  1609. box-sizing:border-box;
  1610. width:100%;
  1611. }
  1612. #u14697_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:137px;
  1618. height:23px;
  1619. }
  1620. #u14697_text {
  1621. border-width:0px;
  1622. word-wrap:break-word;
  1623. text-transform:none;
  1624. visibility:hidden;
  1625. }
  1626. #u14698 {
  1627. border-width:0px;
  1628. position:absolute;
  1629. left:617px;
  1630. top:190px;
  1631. width:137px;
  1632. height:23px;
  1633. display:flex;
  1634. transition:none;
  1635. }
  1636. #u14698 .text {
  1637. position:absolute;
  1638. align-self:center;
  1639. padding:2px 2px 2px 2px;
  1640. box-sizing:border-box;
  1641. width:100%;
  1642. }
  1643. #u14698_img {
  1644. border-width:0px;
  1645. position:absolute;
  1646. left:0px;
  1647. top:0px;
  1648. width:137px;
  1649. height:23px;
  1650. }
  1651. #u14698_text {
  1652. border-width:0px;
  1653. word-wrap:break-word;
  1654. text-transform:none;
  1655. visibility:hidden;
  1656. }
  1657. #u14699 {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:0px;
  1661. top:0px;
  1662. width:0px;
  1663. height:0px;
  1664. }
  1665. #u14700_div {
  1666. border-width:0px;
  1667. position:absolute;
  1668. left:0px;
  1669. top:0px;
  1670. width:140px;
  1671. height:30px;
  1672. background:inherit;
  1673. background-color:rgba(255, 255, 255, 1);
  1674. box-sizing:border-box;
  1675. border-width:1px;
  1676. border-style:solid;
  1677. border-color:rgba(201, 201, 201, 1);
  1678. border-radius:4px;
  1679. filter:drop-shadow(none);
  1680. transition:none;
  1681. font-family:"Microsoft YaHei", sans-serif;
  1682. font-weight:400;
  1683. font-style:normal;
  1684. font-size:14px;
  1685. color:#CCCCCC;
  1686. text-align:left;
  1687. }
  1688. #u14700 {
  1689. border-width:0px;
  1690. position:absolute;
  1691. left:218px;
  1692. top:115px;
  1693. width:140px;
  1694. height:30px;
  1695. display:flex;
  1696. transition:none;
  1697. transform-origin:50% 50%;
  1698. font-family:"Microsoft YaHei", sans-serif;
  1699. font-weight:400;
  1700. font-style:normal;
  1701. font-size:14px;
  1702. color:#CCCCCC;
  1703. text-align:left;
  1704. }
  1705. #u14700 .text {
  1706. position:absolute;
  1707. align-self:center;
  1708. padding:2px 8px 2px 8px;
  1709. box-sizing:border-box;
  1710. width:100%;
  1711. }
  1712. #u14700_text {
  1713. border-width:0px;
  1714. word-wrap:break-word;
  1715. text-transform:none;
  1716. visibility:hidden;
  1717. }
  1718. #u14701_input {
  1719. position:absolute;
  1720. left:0px;
  1721. top:0px;
  1722. width:127px;
  1723. height:25px;
  1724. padding:2px 2px 2px 2px;
  1725. font-family:"Microsoft YaHei", sans-serif;
  1726. font-weight:400;
  1727. font-style:normal;
  1728. font-size:10px;
  1729. letter-spacing:normal;
  1730. color:#000000;
  1731. vertical-align:none;
  1732. text-align:left;
  1733. text-transform:none;
  1734. background-color:transparent;
  1735. border-color:transparent;
  1736. }
  1737. #u14701_input.hint {
  1738. position:absolute;
  1739. left:0px;
  1740. top:0px;
  1741. width:127px;
  1742. height:25px;
  1743. padding:2px 2px 2px 2px;
  1744. font-family:"Microsoft YaHei", sans-serif;
  1745. font-weight:400;
  1746. font-style:normal;
  1747. font-size:12px;
  1748. letter-spacing:normal;
  1749. color:#AAAAAA;
  1750. vertical-align:none;
  1751. text-align:left;
  1752. text-transform:none;
  1753. background-color:transparent;
  1754. border-color:transparent;
  1755. }
  1756. #u14701_input.disabled {
  1757. position:absolute;
  1758. left:0px;
  1759. top:0px;
  1760. width:127px;
  1761. height:25px;
  1762. padding:2px 2px 2px 2px;
  1763. font-family:"Microsoft YaHei", sans-serif;
  1764. font-weight:400;
  1765. font-style:normal;
  1766. font-size:10px;
  1767. letter-spacing:normal;
  1768. color:#000000;
  1769. vertical-align:none;
  1770. text-align:left;
  1771. text-transform:none;
  1772. background-color:transparent;
  1773. border-color:transparent;
  1774. }
  1775. #u14701_input.hint.disabled {
  1776. position:absolute;
  1777. left:0px;
  1778. top:0px;
  1779. width:127px;
  1780. height:25px;
  1781. padding:2px 2px 2px 2px;
  1782. font-family:"Microsoft YaHei", sans-serif;
  1783. font-weight:400;
  1784. font-style:normal;
  1785. font-size:12px;
  1786. letter-spacing:normal;
  1787. color:#AAAAAA;
  1788. vertical-align:none;
  1789. text-align:left;
  1790. text-transform:none;
  1791. background-color:transparent;
  1792. border-color:transparent;
  1793. }
  1794. #u14701_div {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:0px;
  1798. top:0px;
  1799. width:127px;
  1800. height:25px;
  1801. background:inherit;
  1802. background-color:rgba(255, 255, 255, 1);
  1803. border-radius:0px;
  1804. filter:drop-shadow(none);
  1805. transition:none;
  1806. font-family:"Microsoft YaHei", sans-serif;
  1807. font-weight:400;
  1808. font-style:normal;
  1809. font-size:10px;
  1810. }
  1811. #u14701 {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:226px;
  1815. top:116px;
  1816. width:127px;
  1817. height:25px;
  1818. display:flex;
  1819. transition:none;
  1820. transform-origin:50% 50%;
  1821. font-family:"Microsoft YaHei", sans-serif;
  1822. font-weight:400;
  1823. font-style:normal;
  1824. font-size:10px;
  1825. }
  1826. #u14701 .text {
  1827. position:absolute;
  1828. align-self:center;
  1829. padding:2px 2px 2px 2px;
  1830. box-sizing:border-box;
  1831. width:100%;
  1832. }
  1833. #u14701_div.hint {
  1834. border-width:0px;
  1835. position:absolute;
  1836. left:0px;
  1837. top:0px;
  1838. width:127px;
  1839. height:25px;
  1840. background:inherit;
  1841. background-color:rgba(255, 255, 255, 1);
  1842. border-radius:0px;
  1843. filter:drop-shadow(none);
  1844. transition:none;
  1845. font-family:"Microsoft YaHei", sans-serif;
  1846. font-weight:400;
  1847. font-style:normal;
  1848. font-size:10px;
  1849. }
  1850. #u14701.hint {
  1851. }
  1852. #u14701_div.disabled {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:0px;
  1856. top:0px;
  1857. width:127px;
  1858. height:25px;
  1859. background:inherit;
  1860. background-color:rgba(240, 240, 240, 1);
  1861. border-radius:0px;
  1862. filter:drop-shadow(none);
  1863. transition:none;
  1864. font-family:"Microsoft YaHei", sans-serif;
  1865. font-weight:400;
  1866. font-style:normal;
  1867. font-size:10px;
  1868. }
  1869. #u14701.disabled {
  1870. }
  1871. #u14701_div.hint.disabled {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:0px;
  1875. top:0px;
  1876. width:127px;
  1877. height:25px;
  1878. background:inherit;
  1879. background-color:rgba(240, 240, 240, 1);
  1880. border-radius:0px;
  1881. filter:drop-shadow(none);
  1882. transition:none;
  1883. font-family:"Microsoft YaHei", sans-serif;
  1884. font-weight:400;
  1885. font-style:normal;
  1886. font-size:10px;
  1887. }
  1888. #u14701.hint.disabled {
  1889. }
  1890. #u14702 {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:0px;
  1894. top:0px;
  1895. width:0px;
  1896. height:0px;
  1897. }
  1898. #u14703_div {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:0px;
  1902. top:0px;
  1903. width:140px;
  1904. height:30px;
  1905. background:inherit;
  1906. background-color:rgba(255, 255, 255, 1);
  1907. box-sizing:border-box;
  1908. border-width:1px;
  1909. border-style:solid;
  1910. border-color:rgba(201, 201, 201, 1);
  1911. border-radius:4px;
  1912. filter:drop-shadow(none);
  1913. transition:none;
  1914. font-family:"Microsoft YaHei", sans-serif;
  1915. font-weight:400;
  1916. font-style:normal;
  1917. font-size:14px;
  1918. color:#CCCCCC;
  1919. text-align:left;
  1920. }
  1921. #u14703 {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:368px;
  1925. top:115px;
  1926. width:140px;
  1927. height:30px;
  1928. display:flex;
  1929. transition:none;
  1930. transform-origin:50% 50%;
  1931. font-family:"Microsoft YaHei", sans-serif;
  1932. font-weight:400;
  1933. font-style:normal;
  1934. font-size:14px;
  1935. color:#CCCCCC;
  1936. text-align:left;
  1937. }
  1938. #u14703 .text {
  1939. position:absolute;
  1940. align-self:center;
  1941. padding:2px 8px 2px 8px;
  1942. box-sizing:border-box;
  1943. width:100%;
  1944. }
  1945. #u14703_text {
  1946. border-width:0px;
  1947. word-wrap:break-word;
  1948. text-transform:none;
  1949. visibility:hidden;
  1950. }
  1951. #u14704_input {
  1952. position:absolute;
  1953. left:0px;
  1954. top:0px;
  1955. width:127px;
  1956. height:25px;
  1957. padding:2px 2px 2px 2px;
  1958. font-family:"Microsoft YaHei", sans-serif;
  1959. font-weight:400;
  1960. font-style:normal;
  1961. font-size:10px;
  1962. letter-spacing:normal;
  1963. color:#000000;
  1964. vertical-align:none;
  1965. text-align:left;
  1966. text-transform:none;
  1967. background-color:transparent;
  1968. border-color:transparent;
  1969. }
  1970. #u14704_input.hint {
  1971. position:absolute;
  1972. left:0px;
  1973. top:0px;
  1974. width:127px;
  1975. height:25px;
  1976. padding:2px 2px 2px 2px;
  1977. font-family:"Microsoft YaHei", sans-serif;
  1978. font-weight:400;
  1979. font-style:normal;
  1980. font-size:12px;
  1981. letter-spacing:normal;
  1982. color:#AAAAAA;
  1983. vertical-align:none;
  1984. text-align:left;
  1985. text-transform:none;
  1986. background-color:transparent;
  1987. border-color:transparent;
  1988. }
  1989. #u14704_input.disabled {
  1990. position:absolute;
  1991. left:0px;
  1992. top:0px;
  1993. width:127px;
  1994. height:25px;
  1995. padding:2px 2px 2px 2px;
  1996. font-family:"Microsoft YaHei", sans-serif;
  1997. font-weight:400;
  1998. font-style:normal;
  1999. font-size:10px;
  2000. letter-spacing:normal;
  2001. color:#000000;
  2002. vertical-align:none;
  2003. text-align:left;
  2004. text-transform:none;
  2005. background-color:transparent;
  2006. border-color:transparent;
  2007. }
  2008. #u14704_input.hint.disabled {
  2009. position:absolute;
  2010. left:0px;
  2011. top:0px;
  2012. width:127px;
  2013. height:25px;
  2014. padding:2px 2px 2px 2px;
  2015. font-family:"Microsoft YaHei", sans-serif;
  2016. font-weight:400;
  2017. font-style:normal;
  2018. font-size:12px;
  2019. letter-spacing:normal;
  2020. color:#AAAAAA;
  2021. vertical-align:none;
  2022. text-align:left;
  2023. text-transform:none;
  2024. background-color:transparent;
  2025. border-color:transparent;
  2026. }
  2027. #u14704_div {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:0px;
  2031. top:0px;
  2032. width:127px;
  2033. height:25px;
  2034. background:inherit;
  2035. background-color:rgba(255, 255, 255, 1);
  2036. border-radius:0px;
  2037. filter:drop-shadow(none);
  2038. transition:none;
  2039. font-family:"Microsoft YaHei", sans-serif;
  2040. font-weight:400;
  2041. font-style:normal;
  2042. font-size:10px;
  2043. }
  2044. #u14704 {
  2045. border-width:0px;
  2046. position:absolute;
  2047. left:376px;
  2048. top:116px;
  2049. width:127px;
  2050. height:25px;
  2051. display:flex;
  2052. transition:none;
  2053. transform-origin:50% 50%;
  2054. font-family:"Microsoft YaHei", sans-serif;
  2055. font-weight:400;
  2056. font-style:normal;
  2057. font-size:10px;
  2058. }
  2059. #u14704 .text {
  2060. position:absolute;
  2061. align-self:center;
  2062. padding:2px 2px 2px 2px;
  2063. box-sizing:border-box;
  2064. width:100%;
  2065. }
  2066. #u14704_div.hint {
  2067. border-width:0px;
  2068. position:absolute;
  2069. left:0px;
  2070. top:0px;
  2071. width:127px;
  2072. height:25px;
  2073. background:inherit;
  2074. background-color:rgba(255, 255, 255, 1);
  2075. border-radius:0px;
  2076. filter:drop-shadow(none);
  2077. transition:none;
  2078. font-family:"Microsoft YaHei", sans-serif;
  2079. font-weight:400;
  2080. font-style:normal;
  2081. font-size:10px;
  2082. }
  2083. #u14704.hint {
  2084. }
  2085. #u14704_div.disabled {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:0px;
  2089. top:0px;
  2090. width:127px;
  2091. height:25px;
  2092. background:inherit;
  2093. background-color:rgba(240, 240, 240, 1);
  2094. border-radius:0px;
  2095. filter:drop-shadow(none);
  2096. transition:none;
  2097. font-family:"Microsoft YaHei", sans-serif;
  2098. font-weight:400;
  2099. font-style:normal;
  2100. font-size:10px;
  2101. }
  2102. #u14704.disabled {
  2103. }
  2104. #u14704_div.hint.disabled {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:0px;
  2108. top:0px;
  2109. width:127px;
  2110. height:25px;
  2111. background:inherit;
  2112. background-color:rgba(240, 240, 240, 1);
  2113. border-radius:0px;
  2114. filter:drop-shadow(none);
  2115. transition:none;
  2116. font-family:"Microsoft YaHei", sans-serif;
  2117. font-weight:400;
  2118. font-style:normal;
  2119. font-size:10px;
  2120. }
  2121. #u14704.hint.disabled {
  2122. }
  2123. #u14705 {
  2124. border-width:0px;
  2125. position:absolute;
  2126. left:0px;
  2127. top:0px;
  2128. width:0px;
  2129. height:0px;
  2130. }
  2131. #u14706_div {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:0px;
  2135. top:0px;
  2136. width:60px;
  2137. height:30px;
  2138. background:inherit;
  2139. background-color:rgba(24, 144, 255, 1);
  2140. border-radius:4px;
  2141. filter:drop-shadow(none);
  2142. transition:none;
  2143. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2144. font-weight:400;
  2145. font-style:normal;
  2146. font-size:14px;
  2147. color:#FFFFFF;
  2148. }
  2149. #u14706 {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:518px;
  2153. top:114px;
  2154. width:60px;
  2155. height:30px;
  2156. display:flex;
  2157. transition:none;
  2158. transform-origin:50% 50%;
  2159. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2160. font-weight:400;
  2161. font-style:normal;
  2162. font-size:14px;
  2163. color:#FFFFFF;
  2164. }
  2165. #u14706 .text {
  2166. position:absolute;
  2167. align-self:center;
  2168. padding:2px 2px 2px 2px;
  2169. box-sizing:border-box;
  2170. width:100%;
  2171. }
  2172. #u14706_text {
  2173. border-width:0px;
  2174. word-wrap:break-word;
  2175. text-transform:none;
  2176. }
  2177. #u14707_div {
  2178. border-width:0px;
  2179. position:absolute;
  2180. left:0px;
  2181. top:0px;
  2182. width:60px;
  2183. height:30px;
  2184. background:inherit;
  2185. background-color:rgba(255, 255, 255, 1);
  2186. box-sizing:border-box;
  2187. border-width:1px;
  2188. border-style:solid;
  2189. border-color:rgba(170, 170, 170, 1);
  2190. border-radius:4px;
  2191. filter:drop-shadow(none);
  2192. transition:none;
  2193. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2194. font-weight:400;
  2195. font-style:normal;
  2196. font-size:14px;
  2197. }
  2198. #u14707 {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:588px;
  2202. top:114px;
  2203. width:60px;
  2204. height:30px;
  2205. display:flex;
  2206. transition:none;
  2207. transform-origin:50% 50%;
  2208. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2209. font-weight:400;
  2210. font-style:normal;
  2211. font-size:14px;
  2212. }
  2213. #u14707 .text {
  2214. position:absolute;
  2215. align-self:center;
  2216. padding:2px 2px 2px 2px;
  2217. box-sizing:border-box;
  2218. width:100%;
  2219. }
  2220. #u14707_text {
  2221. border-width:0px;
  2222. word-wrap:break-word;
  2223. text-transform:none;
  2224. }
  2225. #u14708 {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:0px;
  2229. top:0px;
  2230. width:0px;
  2231. height:0px;
  2232. }
  2233. #u14709_div {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:0px;
  2237. top:0px;
  2238. width:140px;
  2239. height:30px;
  2240. background:inherit;
  2241. background-color:rgba(255, 255, 255, 1);
  2242. box-sizing:border-box;
  2243. border-width:1px;
  2244. border-style:solid;
  2245. border-color:rgba(201, 201, 201, 1);
  2246. border-radius:4px;
  2247. filter:drop-shadow(none);
  2248. transition:none;
  2249. font-family:"Microsoft YaHei", sans-serif;
  2250. font-weight:400;
  2251. font-style:normal;
  2252. font-size:14px;
  2253. color:#CCCCCC;
  2254. text-align:left;
  2255. }
  2256. #u14709 {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:68px;
  2260. top:115px;
  2261. width:140px;
  2262. height:30px;
  2263. display:flex;
  2264. transition:none;
  2265. transform-origin:50% 50%;
  2266. font-family:"Microsoft YaHei", sans-serif;
  2267. font-weight:400;
  2268. font-style:normal;
  2269. font-size:14px;
  2270. color:#CCCCCC;
  2271. text-align:left;
  2272. }
  2273. #u14709 .text {
  2274. position:absolute;
  2275. align-self:center;
  2276. padding:2px 8px 2px 8px;
  2277. box-sizing:border-box;
  2278. width:100%;
  2279. }
  2280. #u14709_text {
  2281. border-width:0px;
  2282. word-wrap:break-word;
  2283. text-transform:none;
  2284. visibility:hidden;
  2285. }
  2286. #u14710_input {
  2287. position:absolute;
  2288. left:0px;
  2289. top:0px;
  2290. width:127px;
  2291. height:25px;
  2292. padding:2px 2px 2px 2px;
  2293. font-family:"Microsoft YaHei", sans-serif;
  2294. font-weight:400;
  2295. font-style:normal;
  2296. font-size:10px;
  2297. letter-spacing:normal;
  2298. color:#000000;
  2299. vertical-align:none;
  2300. text-align:left;
  2301. text-transform:none;
  2302. background-color:transparent;
  2303. border-color:transparent;
  2304. }
  2305. #u14710_input.hint {
  2306. position:absolute;
  2307. left:0px;
  2308. top:0px;
  2309. width:127px;
  2310. height:25px;
  2311. padding:2px 2px 2px 2px;
  2312. font-family:"Microsoft YaHei", sans-serif;
  2313. font-weight:400;
  2314. font-style:normal;
  2315. font-size:12px;
  2316. letter-spacing:normal;
  2317. color:#AAAAAA;
  2318. vertical-align:none;
  2319. text-align:left;
  2320. text-transform:none;
  2321. background-color:transparent;
  2322. border-color:transparent;
  2323. }
  2324. #u14710_input.disabled {
  2325. position:absolute;
  2326. left:0px;
  2327. top:0px;
  2328. width:127px;
  2329. height:25px;
  2330. padding:2px 2px 2px 2px;
  2331. font-family:"Microsoft YaHei", sans-serif;
  2332. font-weight:400;
  2333. font-style:normal;
  2334. font-size:10px;
  2335. letter-spacing:normal;
  2336. color:#000000;
  2337. vertical-align:none;
  2338. text-align:left;
  2339. text-transform:none;
  2340. background-color:transparent;
  2341. border-color:transparent;
  2342. }
  2343. #u14710_input.hint.disabled {
  2344. position:absolute;
  2345. left:0px;
  2346. top:0px;
  2347. width:127px;
  2348. height:25px;
  2349. padding:2px 2px 2px 2px;
  2350. font-family:"Microsoft YaHei", sans-serif;
  2351. font-weight:400;
  2352. font-style:normal;
  2353. font-size:12px;
  2354. letter-spacing:normal;
  2355. color:#AAAAAA;
  2356. vertical-align:none;
  2357. text-align:left;
  2358. text-transform:none;
  2359. background-color:transparent;
  2360. border-color:transparent;
  2361. }
  2362. #u14710_div {
  2363. border-width:0px;
  2364. position:absolute;
  2365. left:0px;
  2366. top:0px;
  2367. width:127px;
  2368. height:25px;
  2369. background:inherit;
  2370. background-color:rgba(255, 255, 255, 1);
  2371. border-radius:0px;
  2372. filter:drop-shadow(none);
  2373. transition:none;
  2374. font-family:"Microsoft YaHei", sans-serif;
  2375. font-weight:400;
  2376. font-style:normal;
  2377. font-size:10px;
  2378. }
  2379. #u14710 {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:76px;
  2383. top:116px;
  2384. width:127px;
  2385. height:25px;
  2386. display:flex;
  2387. transition:none;
  2388. transform-origin:50% 50%;
  2389. font-family:"Microsoft YaHei", sans-serif;
  2390. font-weight:400;
  2391. font-style:normal;
  2392. font-size:10px;
  2393. }
  2394. #u14710 .text {
  2395. position:absolute;
  2396. align-self:center;
  2397. padding:2px 2px 2px 2px;
  2398. box-sizing:border-box;
  2399. width:100%;
  2400. }
  2401. #u14710_div.hint {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:0px;
  2405. top:0px;
  2406. width:127px;
  2407. height:25px;
  2408. background:inherit;
  2409. background-color:rgba(255, 255, 255, 1);
  2410. border-radius:0px;
  2411. filter:drop-shadow(none);
  2412. transition:none;
  2413. font-family:"Microsoft YaHei", sans-serif;
  2414. font-weight:400;
  2415. font-style:normal;
  2416. font-size:10px;
  2417. }
  2418. #u14710.hint {
  2419. }
  2420. #u14710_div.disabled {
  2421. border-width:0px;
  2422. position:absolute;
  2423. left:0px;
  2424. top:0px;
  2425. width:127px;
  2426. height:25px;
  2427. background:inherit;
  2428. background-color:rgba(240, 240, 240, 1);
  2429. border-radius:0px;
  2430. filter:drop-shadow(none);
  2431. transition:none;
  2432. font-family:"Microsoft YaHei", sans-serif;
  2433. font-weight:400;
  2434. font-style:normal;
  2435. font-size:10px;
  2436. }
  2437. #u14710.disabled {
  2438. }
  2439. #u14710_div.hint.disabled {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:0px;
  2443. top:0px;
  2444. width:127px;
  2445. height:25px;
  2446. background:inherit;
  2447. background-color:rgba(240, 240, 240, 1);
  2448. border-radius:0px;
  2449. filter:drop-shadow(none);
  2450. transition:none;
  2451. font-family:"Microsoft YaHei", sans-serif;
  2452. font-weight:400;
  2453. font-style:normal;
  2454. font-size:10px;
  2455. }
  2456. #u14710.hint.disabled {
  2457. }
  2458. #u14711 {
  2459. border-width:0px;
  2460. position:absolute;
  2461. left:0px;
  2462. top:0px;
  2463. width:0px;
  2464. height:0px;
  2465. }
  2466. #u14712 {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:0px;
  2470. top:0px;
  2471. width:0px;
  2472. height:0px;
  2473. }
  2474. #u14713_div {
  2475. border-width:0px;
  2476. position:absolute;
  2477. left:0px;
  2478. top:0px;
  2479. width:380px;
  2480. height:160px;
  2481. background:inherit;
  2482. background-color:rgba(255, 255, 255, 1);
  2483. box-sizing:border-box;
  2484. border-width:1px;
  2485. border-style:solid;
  2486. border-color:rgba(242, 242, 242, 1);
  2487. border-radius:4px;
  2488. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  2489. transition:none;
  2490. font-family:"Microsoft YaHei", sans-serif;
  2491. font-weight:400;
  2492. font-style:normal;
  2493. }
  2494. #u14713 {
  2495. border-width:0px;
  2496. position:absolute;
  2497. left:304px;
  2498. top:426px;
  2499. width:380px;
  2500. height:160px;
  2501. display:flex;
  2502. transition:none;
  2503. transform-origin:50% 50%;
  2504. font-family:"Microsoft YaHei", sans-serif;
  2505. font-weight:400;
  2506. font-style:normal;
  2507. }
  2508. #u14713 .text {
  2509. position:absolute;
  2510. align-self:center;
  2511. padding:2px 2px 2px 2px;
  2512. box-sizing:border-box;
  2513. width:100%;
  2514. }
  2515. #u14713_text {
  2516. border-width:0px;
  2517. word-wrap:break-word;
  2518. text-transform:none;
  2519. visibility:hidden;
  2520. }
  2521. #u14714_div {
  2522. border-width:0px;
  2523. position:absolute;
  2524. left:0px;
  2525. top:0px;
  2526. width:217px;
  2527. height:21px;
  2528. background:inherit;
  2529. background-color:rgba(255, 255, 255, 0);
  2530. border-radius:0px;
  2531. filter:drop-shadow(none);
  2532. transition:none;
  2533. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  2534. font-weight:650;
  2535. font-style:normal;
  2536. font-size:18px;
  2537. color:#000000;
  2538. line-height:22px;
  2539. }
  2540. #u14714 {
  2541. border-width:0px;
  2542. position:absolute;
  2543. left:364px;
  2544. top:451px;
  2545. width:217px;
  2546. height:21px;
  2547. display:flex;
  2548. transition:none;
  2549. transform-origin:50% 50%;
  2550. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  2551. font-weight:650;
  2552. font-style:normal;
  2553. font-size:18px;
  2554. color:#000000;
  2555. line-height:22px;
  2556. }
  2557. #u14714 .text {
  2558. position:absolute;
  2559. align-self:flex-start;
  2560. padding:0px 0px 0px 0px;
  2561. box-sizing:border-box;
  2562. width:100%;
  2563. }
  2564. #u14714_text {
  2565. border-width:0px;
  2566. white-space:nowrap;
  2567. text-transform:none;
  2568. }
  2569. #u14715_div {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:0px;
  2573. top:0px;
  2574. width:61px;
  2575. height:32px;
  2576. background:inherit;
  2577. background-color:rgba(24, 144, 255, 1);
  2578. border-radius:4px;
  2579. filter:drop-shadow(none);
  2580. transition:none;
  2581. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2582. font-weight:400;
  2583. font-style:normal;
  2584. font-size:14px;
  2585. color:#FFFFFF;
  2586. }
  2587. #u14715 {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:603px;
  2591. top:538px;
  2592. width:61px;
  2593. height:32px;
  2594. display:flex;
  2595. transition:none;
  2596. transform-origin:50% 50%;
  2597. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2598. font-weight:400;
  2599. font-style:normal;
  2600. font-size:14px;
  2601. color:#FFFFFF;
  2602. }
  2603. #u14715 .text {
  2604. position:absolute;
  2605. align-self:center;
  2606. padding:2px 16px 2px 16px;
  2607. box-sizing:border-box;
  2608. width:100%;
  2609. }
  2610. #u14715_text {
  2611. border-width:0px;
  2612. white-space:nowrap;
  2613. text-transform:none;
  2614. }
  2615. #u14716 {
  2616. border-width:0px;
  2617. position:absolute;
  2618. left:333px;
  2619. top:455px;
  2620. width:20px;
  2621. height:20px;
  2622. display:flex;
  2623. transition:none;
  2624. }
  2625. #u14716 .text {
  2626. position:absolute;
  2627. align-self:center;
  2628. padding:2px 2px 2px 2px;
  2629. box-sizing:border-box;
  2630. width:100%;
  2631. }
  2632. #u14716_img {
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:0px;
  2636. top:0px;
  2637. width:20px;
  2638. height:20px;
  2639. }
  2640. #u14716_text {
  2641. border-width:0px;
  2642. word-wrap:break-word;
  2643. text-transform:none;
  2644. visibility:hidden;
  2645. }
  2646. #u14717_div {
  2647. border-width:0px;
  2648. position:absolute;
  2649. left:0px;
  2650. top:0px;
  2651. width:300px;
  2652. height:44px;
  2653. background:inherit;
  2654. background-color:rgba(255, 255, 255, 0);
  2655. border-radius:0px;
  2656. filter:drop-shadow(none);
  2657. transition:none;
  2658. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2659. font-weight:400;
  2660. font-style:normal;
  2661. font-size:14px;
  2662. color:#7F7F7F;
  2663. line-height:22px;
  2664. }
  2665. #u14717 {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:364px;
  2669. top:485px;
  2670. width:300px;
  2671. height:44px;
  2672. display:flex;
  2673. transition:none;
  2674. transform-origin:50% 50%;
  2675. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2676. font-weight:400;
  2677. font-style:normal;
  2678. font-size:14px;
  2679. color:#7F7F7F;
  2680. line-height:22px;
  2681. }
  2682. #u14717 .text {
  2683. position:absolute;
  2684. align-self:flex-start;
  2685. padding:0px 0px 0px 0px;
  2686. box-sizing:border-box;
  2687. width:100%;
  2688. }
  2689. #u14717_text {
  2690. border-width:0px;
  2691. word-wrap:break-word;
  2692. text-transform:none;
  2693. }
  2694. #u14718_div {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:0px;
  2698. top:0px;
  2699. width:66px;
  2700. height:32px;
  2701. background:inherit;
  2702. background-color:rgba(255, 255, 255, 1);
  2703. box-sizing:border-box;
  2704. border-width:1px;
  2705. border-style:solid;
  2706. border-color:rgba(217, 217, 217, 1);
  2707. border-radius:4px;
  2708. filter:drop-shadow(none);
  2709. transition:none;
  2710. font-family:"Microsoft YaHei", sans-serif;
  2711. font-weight:400;
  2712. font-style:normal;
  2713. font-size:14px;
  2714. color:rgba(0, 0, 0, 0.6470588235294118);
  2715. line-height:21px;
  2716. }
  2717. #u14718 {
  2718. border-width:0px;
  2719. position:absolute;
  2720. left:520px;
  2721. top:538px;
  2722. width:66px;
  2723. height:32px;
  2724. display:flex;
  2725. transition:none;
  2726. transform-origin:50% 50%;
  2727. font-family:"Microsoft YaHei", sans-serif;
  2728. font-weight:400;
  2729. font-style:normal;
  2730. font-size:14px;
  2731. color:rgba(0, 0, 0, 0.6470588235294118);
  2732. line-height:21px;
  2733. }
  2734. #u14718 .text {
  2735. position:absolute;
  2736. align-self:center;
  2737. padding:2px 16px 2px 16px;
  2738. box-sizing:border-box;
  2739. width:100%;
  2740. }
  2741. #u14718_text {
  2742. border-width:0px;
  2743. white-space:nowrap;
  2744. text-transform:none;
  2745. }