styles.css 50 KB

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