styles.css 50 KB

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