styles.css 51 KB

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