styles.css 49 KB

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