styles.css 53 KB

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