styles.css 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892
  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. #u94154 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u94155_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. #u94155 {
  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. #u94155 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u94155_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u94156_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. #u94156 {
  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. #u94156 .text {
  119. position:absolute;
  120. align-self:center;
  121. padding:5px 10px 5px 0px;
  122. box-sizing:border-box;
  123. width:100%;
  124. }
  125. #u94156_text {
  126. border-width:0px;
  127. white-space:nowrap;
  128. text-transform:none;
  129. }
  130. #u94157_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. #u94157 {
  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. #u94157 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:5px 10px 5px 10px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u94157_text {
  179. border-width:0px;
  180. word-wrap:break-word;
  181. text-transform:none;
  182. visibility:hidden;
  183. }
  184. #u94158 {
  185. border-width:0px;
  186. position:absolute;
  187. left:0px;
  188. top:0px;
  189. width:0px;
  190. height:0px;
  191. }
  192. #u94159_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. #u94159 {
  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. #u94159 .text {
  234. position:absolute;
  235. align-self:center;
  236. padding:5px 10px 5px 10px;
  237. box-sizing:border-box;
  238. width:100%;
  239. }
  240. #u94159_text {
  241. border-width:0px;
  242. word-wrap:break-word;
  243. text-transform:none;
  244. visibility:hidden;
  245. }
  246. #u94160_img {
  247. border-width:0px;
  248. position:absolute;
  249. left:0px;
  250. top:0px;
  251. width:80px;
  252. height:30px;
  253. }
  254. #u94160 {
  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. #u94160 .text {
  269. position:absolute;
  270. align-self:center;
  271. padding:2px 2px 2px 2px;
  272. box-sizing:border-box;
  273. width:100%;
  274. }
  275. #u94160_text {
  276. border-width:0px;
  277. word-wrap:break-word;
  278. text-transform:none;
  279. }
  280. #u94161_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. #u94161 {
  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. #u94161 .text {
  316. position:absolute;
  317. align-self:center;
  318. padding:2px 2px 2px 2px;
  319. box-sizing:border-box;
  320. width:100%;
  321. }
  322. #u94161_text {
  323. border-width:0px;
  324. word-wrap:break-word;
  325. text-transform:none;
  326. }
  327. #u94162_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. #u94162 {
  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. #u94162 .text {
  367. position:absolute;
  368. align-self:center;
  369. padding:5px 10px 5px 0px;
  370. box-sizing:border-box;
  371. width:100%;
  372. }
  373. #u94162_text {
  374. border-width:0px;
  375. word-wrap:break-word;
  376. text-transform:none;
  377. }
  378. #u94163_div {
  379. border-width:0px;
  380. position:absolute;
  381. left:0px;
  382. top:0px;
  383. width:64px;
  384. height:40px;
  385. background:inherit;
  386. background-color:rgba(255, 255, 255, 0);
  387. border:none;
  388. border-left:0px;
  389. border-top:0px;
  390. border-right:0px;
  391. border-radius:0px;
  392. border-bottom-right-radius:0px;
  393. border-bottom-left-radius:0px;
  394. -moz-box-shadow:none;
  395. -webkit-box-shadow:none;
  396. box-shadow:none;
  397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  398. font-weight:400;
  399. font-style:normal;
  400. font-size:14px;
  401. }
  402. #u94163 {
  403. border-width:0px;
  404. position:absolute;
  405. left:336px;
  406. top:356px;
  407. width:64px;
  408. height:40px;
  409. display:flex;
  410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  411. font-weight:400;
  412. font-style:normal;
  413. font-size:14px;
  414. }
  415. #u94163 .text {
  416. position:absolute;
  417. align-self:center;
  418. padding:0px 0px 0px 0px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u94163_text {
  423. border-width:0px;
  424. white-space:nowrap;
  425. text-transform:none;
  426. }
  427. #u94164 {
  428. border-width:0px;
  429. position:absolute;
  430. left:0px;
  431. top:0px;
  432. width:0px;
  433. height:0px;
  434. }
  435. #u94165_div {
  436. border-width:0px;
  437. position:absolute;
  438. left:0px;
  439. top:0px;
  440. width:200px;
  441. height:40px;
  442. background:inherit;
  443. background-color:rgba(255, 255, 255, 1);
  444. box-sizing:border-box;
  445. border-width:1px;
  446. border-style:solid;
  447. border-color:rgba(201, 201, 201, 1);
  448. border-radius:4px;
  449. -moz-box-shadow:none;
  450. -webkit-box-shadow:none;
  451. box-shadow:none;
  452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  453. font-weight:400;
  454. font-style:normal;
  455. font-size:14px;
  456. text-align:right;
  457. }
  458. #u94165 {
  459. border-width:0px;
  460. position:absolute;
  461. left:566px;
  462. top:395px;
  463. width:200px;
  464. height:40px;
  465. display:flex;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:14px;
  470. text-align:right;
  471. }
  472. #u94165 .text {
  473. position:absolute;
  474. align-self:center;
  475. padding:2px 8px 2px 8px;
  476. box-sizing:border-box;
  477. width:100%;
  478. }
  479. #u94165_text {
  480. border-width:0px;
  481. word-wrap:break-word;
  482. text-transform:none;
  483. visibility:hidden;
  484. }
  485. #u94166_input {
  486. position:absolute;
  487. left:0px;
  488. top:0px;
  489. width:161px;
  490. height:33px;
  491. padding:2px 2px 2px 2px;
  492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  493. font-weight:400;
  494. font-style:normal;
  495. font-size:14px;
  496. letter-spacing:normal;
  497. color:#D7D7D7;
  498. vertical-align:none;
  499. text-align:left;
  500. text-transform:none;
  501. background-color:transparent;
  502. border-color:transparent;
  503. }
  504. #u94166_input.disabled {
  505. position:absolute;
  506. left:0px;
  507. top:0px;
  508. width:161px;
  509. height:33px;
  510. padding:2px 2px 2px 2px;
  511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  512. font-weight:400;
  513. font-style:normal;
  514. font-size:14px;
  515. letter-spacing:normal;
  516. color:#D7D7D7;
  517. vertical-align:none;
  518. text-align:left;
  519. text-transform:none;
  520. background-color:transparent;
  521. border-color:transparent;
  522. }
  523. #u94166_div {
  524. border-width:0px;
  525. position:absolute;
  526. left:0px;
  527. top:0px;
  528. width:161px;
  529. height:33px;
  530. background:inherit;
  531. background-color:rgba(255, 255, 255, 0);
  532. border:none;
  533. border-radius:0px;
  534. -moz-box-shadow:none;
  535. -webkit-box-shadow:none;
  536. box-shadow:none;
  537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  538. font-weight:400;
  539. font-style:normal;
  540. font-size:14px;
  541. color:#D7D7D7;
  542. }
  543. #u94166 {
  544. border-width:0px;
  545. position:absolute;
  546. left:574px;
  547. top:398px;
  548. width:161px;
  549. height:33px;
  550. display:flex;
  551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  552. font-weight:400;
  553. font-style:normal;
  554. font-size:14px;
  555. color:#D7D7D7;
  556. }
  557. #u94166 .text {
  558. position:absolute;
  559. align-self:center;
  560. padding:2px 2px 2px 2px;
  561. box-sizing:border-box;
  562. width:100%;
  563. }
  564. #u94166_div.disabled {
  565. border-width:0px;
  566. position:absolute;
  567. left:0px;
  568. top:0px;
  569. width:161px;
  570. height:33px;
  571. background:inherit;
  572. background-color:rgba(240, 240, 240, 1);
  573. border:none;
  574. border-radius:0px;
  575. -moz-box-shadow:none;
  576. -webkit-box-shadow:none;
  577. box-shadow:none;
  578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  579. font-weight:400;
  580. font-style:normal;
  581. font-size:14px;
  582. color:#D7D7D7;
  583. }
  584. #u94166.disabled {
  585. }
  586. #u94167_div {
  587. border-width:0px;
  588. position:absolute;
  589. left:0px;
  590. top:0px;
  591. width:43px;
  592. height:40px;
  593. background:inherit;
  594. background-color:rgba(255, 255, 255, 0);
  595. border:none;
  596. border-left:0px;
  597. border-top:0px;
  598. border-right:0px;
  599. border-radius:0px;
  600. border-bottom-right-radius:0px;
  601. border-bottom-left-radius:0px;
  602. -moz-box-shadow:none;
  603. -webkit-box-shadow:none;
  604. box-shadow:none;
  605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  606. font-weight:400;
  607. font-style:normal;
  608. font-size:14px;
  609. }
  610. #u94167 {
  611. border-width:0px;
  612. position:absolute;
  613. left:566px;
  614. top:356px;
  615. width:43px;
  616. height:40px;
  617. display:flex;
  618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  619. font-weight:400;
  620. font-style:normal;
  621. font-size:14px;
  622. }
  623. #u94167 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:0px 0px 0px 0px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u94167_text {
  631. border-width:0px;
  632. white-space:nowrap;
  633. text-transform:none;
  634. }
  635. #u94168 {
  636. border-width:0px;
  637. position:absolute;
  638. left:0px;
  639. top:0px;
  640. width:0px;
  641. height:0px;
  642. }
  643. #u94169_div {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:200px;
  649. height:40px;
  650. background:inherit;
  651. background-color:rgba(255, 255, 255, 1);
  652. box-sizing:border-box;
  653. border-width:1px;
  654. border-style:solid;
  655. border-color:rgba(201, 201, 201, 1);
  656. border-radius:4px;
  657. -moz-box-shadow:none;
  658. -webkit-box-shadow:none;
  659. box-shadow:none;
  660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  661. font-weight:400;
  662. font-style:normal;
  663. font-size:14px;
  664. text-align:right;
  665. }
  666. #u94169 {
  667. border-width:0px;
  668. position:absolute;
  669. left:336px;
  670. top:574px;
  671. width:200px;
  672. height:40px;
  673. display:flex;
  674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  675. font-weight:400;
  676. font-style:normal;
  677. font-size:14px;
  678. text-align:right;
  679. }
  680. #u94169 .text {
  681. position:absolute;
  682. align-self:center;
  683. padding:2px 8px 2px 8px;
  684. box-sizing:border-box;
  685. width:100%;
  686. }
  687. #u94169_text {
  688. border-width:0px;
  689. word-wrap:break-word;
  690. text-transform:none;
  691. visibility:hidden;
  692. }
  693. #u94170_input {
  694. position:absolute;
  695. left:0px;
  696. top:0px;
  697. width:161px;
  698. height:33px;
  699. padding:2px 2px 2px 2px;
  700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  701. font-weight:400;
  702. font-style:normal;
  703. font-size:14px;
  704. letter-spacing:normal;
  705. color:#D7D7D7;
  706. vertical-align:none;
  707. text-align:left;
  708. text-transform:none;
  709. background-color:transparent;
  710. border-color:transparent;
  711. }
  712. #u94170_input.disabled {
  713. position:absolute;
  714. left:0px;
  715. top:0px;
  716. width:161px;
  717. height:33px;
  718. padding:2px 2px 2px 2px;
  719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  720. font-weight:400;
  721. font-style:normal;
  722. font-size:14px;
  723. letter-spacing:normal;
  724. color:#D7D7D7;
  725. vertical-align:none;
  726. text-align:left;
  727. text-transform:none;
  728. background-color:transparent;
  729. border-color:transparent;
  730. }
  731. #u94170_div {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:161px;
  737. height:33px;
  738. background:inherit;
  739. background-color:rgba(255, 255, 255, 0);
  740. border:none;
  741. border-radius:0px;
  742. -moz-box-shadow:none;
  743. -webkit-box-shadow:none;
  744. box-shadow:none;
  745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  746. font-weight:400;
  747. font-style:normal;
  748. font-size:14px;
  749. color:#D7D7D7;
  750. }
  751. #u94170 {
  752. border-width:0px;
  753. position:absolute;
  754. left:344px;
  755. top:577px;
  756. width:161px;
  757. height:33px;
  758. display:flex;
  759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  760. font-weight:400;
  761. font-style:normal;
  762. font-size:14px;
  763. color:#D7D7D7;
  764. }
  765. #u94170 .text {
  766. position:absolute;
  767. align-self:center;
  768. padding:2px 2px 2px 2px;
  769. box-sizing:border-box;
  770. width:100%;
  771. }
  772. #u94170_div.disabled {
  773. border-width:0px;
  774. position:absolute;
  775. left:0px;
  776. top:0px;
  777. width:161px;
  778. height:33px;
  779. background:inherit;
  780. background-color:rgba(240, 240, 240, 1);
  781. border:none;
  782. border-radius:0px;
  783. -moz-box-shadow:none;
  784. -webkit-box-shadow:none;
  785. box-shadow:none;
  786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  787. font-weight:400;
  788. font-style:normal;
  789. font-size:14px;
  790. color:#D7D7D7;
  791. }
  792. #u94170.disabled {
  793. }
  794. #u94171_div {
  795. border-width:0px;
  796. position:absolute;
  797. left:0px;
  798. top:0px;
  799. width:71px;
  800. height:40px;
  801. background:inherit;
  802. background-color:rgba(255, 255, 255, 0);
  803. border:none;
  804. border-left:0px;
  805. border-top:0px;
  806. border-right:0px;
  807. border-radius:0px;
  808. border-bottom-right-radius:0px;
  809. border-bottom-left-radius:0px;
  810. -moz-box-shadow:none;
  811. -webkit-box-shadow:none;
  812. box-shadow:none;
  813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  814. font-weight:400;
  815. font-style:normal;
  816. font-size:14px;
  817. }
  818. #u94171 {
  819. border-width:0px;
  820. position:absolute;
  821. left:336px;
  822. top:535px;
  823. width:71px;
  824. height:40px;
  825. display:flex;
  826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  827. font-weight:400;
  828. font-style:normal;
  829. font-size:14px;
  830. }
  831. #u94171 .text {
  832. position:absolute;
  833. align-self:center;
  834. padding:0px 0px 0px 0px;
  835. box-sizing:border-box;
  836. width:100%;
  837. }
  838. #u94171_text {
  839. border-width:0px;
  840. white-space:nowrap;
  841. text-transform:none;
  842. }
  843. #u94172_div {
  844. border-width:0px;
  845. position:absolute;
  846. left:0px;
  847. top:0px;
  848. width:57px;
  849. height:40px;
  850. background:inherit;
  851. background-color:rgba(255, 255, 255, 0);
  852. border:none;
  853. border-left:0px;
  854. border-top:0px;
  855. border-right:0px;
  856. border-radius:0px;
  857. border-bottom-right-radius:0px;
  858. border-bottom-left-radius:0px;
  859. -moz-box-shadow:none;
  860. -webkit-box-shadow:none;
  861. box-shadow:none;
  862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  863. font-weight:400;
  864. font-style:normal;
  865. font-size:14px;
  866. }
  867. #u94172 {
  868. border-width:0px;
  869. position:absolute;
  870. left:136px;
  871. top:446px;
  872. width:57px;
  873. height:40px;
  874. display:flex;
  875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  876. font-weight:400;
  877. font-style:normal;
  878. font-size:14px;
  879. }
  880. #u94172 .text {
  881. position:absolute;
  882. align-self:center;
  883. padding:0px 0px 0px 0px;
  884. box-sizing:border-box;
  885. width:100%;
  886. }
  887. #u94172_text {
  888. border-width:0px;
  889. white-space:nowrap;
  890. text-transform:none;
  891. }
  892. #u94173_div {
  893. border-width:0px;
  894. position:absolute;
  895. left:0px;
  896. top:0px;
  897. width:120px;
  898. height:120px;
  899. background:inherit;
  900. background-color:rgba(255, 255, 255, 1);
  901. box-sizing:border-box;
  902. border-width:1px;
  903. border-style:solid;
  904. border-color:rgba(201, 201, 201, 1);
  905. border-radius:4px;
  906. -moz-box-shadow:none;
  907. -webkit-box-shadow:none;
  908. box-shadow:none;
  909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  910. font-weight:400;
  911. font-style:normal;
  912. font-size:38px;
  913. }
  914. #u94173 {
  915. border-width:0px;
  916. position:absolute;
  917. left:136px;
  918. top:486px;
  919. width:120px;
  920. height:120px;
  921. display:flex;
  922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  923. font-weight:400;
  924. font-style:normal;
  925. font-size:38px;
  926. }
  927. #u94173 .text {
  928. position:absolute;
  929. align-self:center;
  930. padding:2px 8px 2px 8px;
  931. box-sizing:border-box;
  932. width:100%;
  933. }
  934. #u94173_text {
  935. border-width:0px;
  936. word-wrap:break-word;
  937. text-transform:none;
  938. }
  939. #u94174_div {
  940. border-width:0px;
  941. position:absolute;
  942. left:0px;
  943. top:0px;
  944. width:29px;
  945. height:40px;
  946. background:inherit;
  947. background-color:rgba(255, 255, 255, 0);
  948. border:none;
  949. border-left:0px;
  950. border-top:0px;
  951. border-right:0px;
  952. border-radius:0px;
  953. border-bottom-right-radius:0px;
  954. border-bottom-left-radius:0px;
  955. -moz-box-shadow:none;
  956. -webkit-box-shadow:none;
  957. box-shadow:none;
  958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  959. font-weight:400;
  960. font-style:normal;
  961. font-size:14px;
  962. }
  963. #u94174 {
  964. border-width:0px;
  965. position:absolute;
  966. left:336px;
  967. top:445px;
  968. width:29px;
  969. height:40px;
  970. display:flex;
  971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  972. font-weight:400;
  973. font-style:normal;
  974. font-size:14px;
  975. }
  976. #u94174 .text {
  977. position:absolute;
  978. align-self:center;
  979. padding:0px 0px 0px 0px;
  980. box-sizing:border-box;
  981. width:100%;
  982. }
  983. #u94174_text {
  984. border-width:0px;
  985. white-space:nowrap;
  986. text-transform:none;
  987. }
  988. #u94175 {
  989. border-width:0px;
  990. position:absolute;
  991. left:0px;
  992. top:0px;
  993. width:0px;
  994. height:0px;
  995. }
  996. #u94176_div {
  997. border-width:0px;
  998. position:absolute;
  999. left:0px;
  1000. top:0px;
  1001. width:200px;
  1002. height:40px;
  1003. background:inherit;
  1004. background-color:rgba(255, 255, 255, 1);
  1005. box-sizing:border-box;
  1006. border-width:1px;
  1007. border-style:solid;
  1008. border-color:rgba(215, 215, 215, 1);
  1009. border-radius:4px;
  1010. -moz-box-shadow:none;
  1011. -webkit-box-shadow:none;
  1012. box-shadow:none;
  1013. font-size:14px;
  1014. }
  1015. #u94176 {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:336px;
  1019. top:485px;
  1020. width:200px;
  1021. height:40px;
  1022. display:flex;
  1023. font-size:14px;
  1024. }
  1025. #u94176 .text {
  1026. position:absolute;
  1027. align-self:center;
  1028. padding:2px 2px 2px 2px;
  1029. box-sizing:border-box;
  1030. width:100%;
  1031. }
  1032. #u94176_text {
  1033. border-width:0px;
  1034. word-wrap:break-word;
  1035. text-transform:none;
  1036. visibility:hidden;
  1037. }
  1038. #u94177_input {
  1039. position:absolute;
  1040. left:0px;
  1041. top:0px;
  1042. width:191px;
  1043. height:31px;
  1044. padding:2px 2px 2px 2px;
  1045. font-family:'ArialMT', 'Arial', sans-serif;
  1046. font-weight:400;
  1047. font-style:normal;
  1048. font-size:14px;
  1049. letter-spacing:normal;
  1050. color:#AAAAAA;
  1051. vertical-align:none;
  1052. text-align:left;
  1053. text-transform:none;
  1054. background-color:transparent;
  1055. border-color:transparent;
  1056. }
  1057. #u94177_input.disabled {
  1058. position:absolute;
  1059. left:0px;
  1060. top:0px;
  1061. width:191px;
  1062. height:31px;
  1063. padding:2px 2px 2px 2px;
  1064. font-family:'ArialMT', 'Arial', sans-serif;
  1065. font-weight:400;
  1066. font-style:normal;
  1067. font-size:14px;
  1068. letter-spacing:normal;
  1069. color:#AAAAAA;
  1070. vertical-align:none;
  1071. text-align:left;
  1072. text-transform:none;
  1073. background-color:transparent;
  1074. border-color:transparent;
  1075. }
  1076. #u94177_div {
  1077. border-width:0px;
  1078. position:absolute;
  1079. left:0px;
  1080. top:0px;
  1081. width:191px;
  1082. height:31px;
  1083. background:inherit;
  1084. background-color:rgba(255, 255, 255, 1);
  1085. border:none;
  1086. border-radius:0px;
  1087. -moz-box-shadow:none;
  1088. -webkit-box-shadow:none;
  1089. box-shadow:none;
  1090. font-size:14px;
  1091. color:#AAAAAA;
  1092. }
  1093. #u94177 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:342px;
  1097. top:488px;
  1098. width:191px;
  1099. height:31px;
  1100. display:flex;
  1101. font-size:14px;
  1102. color:#AAAAAA;
  1103. }
  1104. #u94177 .text {
  1105. position:absolute;
  1106. align-self:flex-start;
  1107. padding:2px 2px 2px 2px;
  1108. box-sizing:border-box;
  1109. width:100%;
  1110. }
  1111. #u94177_div.disabled {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:0px;
  1115. top:0px;
  1116. width:191px;
  1117. height:31px;
  1118. background:inherit;
  1119. background-color:rgba(240, 240, 240, 1);
  1120. border:none;
  1121. border-radius:0px;
  1122. -moz-box-shadow:none;
  1123. -webkit-box-shadow:none;
  1124. box-shadow:none;
  1125. font-size:14px;
  1126. color:#AAAAAA;
  1127. }
  1128. #u94177.disabled {
  1129. }
  1130. .u94177_input_option {
  1131. font-size:14px;
  1132. }
  1133. #u94178 {
  1134. border-width:0px;
  1135. position:absolute;
  1136. left:0px;
  1137. top:0px;
  1138. width:0px;
  1139. height:0px;
  1140. }
  1141. #u94179_div {
  1142. border-width:0px;
  1143. position:absolute;
  1144. left:0px;
  1145. top:0px;
  1146. width:200px;
  1147. height:40px;
  1148. background:inherit;
  1149. background-color:rgba(255, 255, 255, 1);
  1150. box-sizing:border-box;
  1151. border-width:1px;
  1152. border-style:solid;
  1153. border-color:rgba(201, 201, 201, 1);
  1154. border-radius:4px;
  1155. -moz-box-shadow:none;
  1156. -webkit-box-shadow:none;
  1157. box-shadow:none;
  1158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1159. font-weight:400;
  1160. font-style:normal;
  1161. font-size:14px;
  1162. text-align:right;
  1163. }
  1164. #u94179 {
  1165. border-width:0px;
  1166. position:absolute;
  1167. left:566px;
  1168. top:574px;
  1169. width:200px;
  1170. height:40px;
  1171. display:flex;
  1172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1173. font-weight:400;
  1174. font-style:normal;
  1175. font-size:14px;
  1176. text-align:right;
  1177. }
  1178. #u94179 .text {
  1179. position:absolute;
  1180. align-self:center;
  1181. padding:2px 8px 2px 8px;
  1182. box-sizing:border-box;
  1183. width:100%;
  1184. }
  1185. #u94179_text {
  1186. border-width:0px;
  1187. word-wrap:break-word;
  1188. text-transform:none;
  1189. visibility:hidden;
  1190. }
  1191. #u94180_input {
  1192. position:absolute;
  1193. left:0px;
  1194. top:0px;
  1195. width:161px;
  1196. height:33px;
  1197. padding:2px 2px 2px 2px;
  1198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1199. font-weight:400;
  1200. font-style:normal;
  1201. font-size:14px;
  1202. letter-spacing:normal;
  1203. color:#D7D7D7;
  1204. vertical-align:none;
  1205. text-align:left;
  1206. text-transform:none;
  1207. background-color:transparent;
  1208. border-color:transparent;
  1209. }
  1210. #u94180_input.disabled {
  1211. position:absolute;
  1212. left:0px;
  1213. top:0px;
  1214. width:161px;
  1215. height:33px;
  1216. padding:2px 2px 2px 2px;
  1217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1218. font-weight:400;
  1219. font-style:normal;
  1220. font-size:14px;
  1221. letter-spacing:normal;
  1222. color:#D7D7D7;
  1223. vertical-align:none;
  1224. text-align:left;
  1225. text-transform:none;
  1226. background-color:transparent;
  1227. border-color:transparent;
  1228. }
  1229. #u94180_div {
  1230. border-width:0px;
  1231. position:absolute;
  1232. left:0px;
  1233. top:0px;
  1234. width:161px;
  1235. height:33px;
  1236. background:inherit;
  1237. background-color:rgba(255, 255, 255, 0);
  1238. border:none;
  1239. border-radius:0px;
  1240. -moz-box-shadow:none;
  1241. -webkit-box-shadow:none;
  1242. box-shadow:none;
  1243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1244. font-weight:400;
  1245. font-style:normal;
  1246. font-size:14px;
  1247. color:#D7D7D7;
  1248. }
  1249. #u94180 {
  1250. border-width:0px;
  1251. position:absolute;
  1252. left:574px;
  1253. top:577px;
  1254. width:161px;
  1255. height:33px;
  1256. display:flex;
  1257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1258. font-weight:400;
  1259. font-style:normal;
  1260. font-size:14px;
  1261. color:#D7D7D7;
  1262. }
  1263. #u94180 .text {
  1264. position:absolute;
  1265. align-self:center;
  1266. padding:2px 2px 2px 2px;
  1267. box-sizing:border-box;
  1268. width:100%;
  1269. }
  1270. #u94180_div.disabled {
  1271. border-width:0px;
  1272. position:absolute;
  1273. left:0px;
  1274. top:0px;
  1275. width:161px;
  1276. height:33px;
  1277. background:inherit;
  1278. background-color:rgba(240, 240, 240, 1);
  1279. border:none;
  1280. border-radius:0px;
  1281. -moz-box-shadow:none;
  1282. -webkit-box-shadow:none;
  1283. box-shadow:none;
  1284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1285. font-weight:400;
  1286. font-style:normal;
  1287. font-size:14px;
  1288. color:#D7D7D7;
  1289. }
  1290. #u94180.disabled {
  1291. }
  1292. #u94181_div {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:71px;
  1298. height:40px;
  1299. background:inherit;
  1300. background-color:rgba(255, 255, 255, 0);
  1301. border:none;
  1302. border-left:0px;
  1303. border-top:0px;
  1304. border-right:0px;
  1305. border-radius:0px;
  1306. border-bottom-right-radius:0px;
  1307. border-bottom-left-radius:0px;
  1308. -moz-box-shadow:none;
  1309. -webkit-box-shadow:none;
  1310. box-shadow:none;
  1311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1312. font-weight:400;
  1313. font-style:normal;
  1314. font-size:14px;
  1315. }
  1316. #u94181 {
  1317. border-width:0px;
  1318. position:absolute;
  1319. left:566px;
  1320. top:535px;
  1321. width:71px;
  1322. height:40px;
  1323. display:flex;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. font-size:14px;
  1328. }
  1329. #u94181 .text {
  1330. position:absolute;
  1331. align-self:center;
  1332. padding:0px 0px 0px 0px;
  1333. box-sizing:border-box;
  1334. width:100%;
  1335. }
  1336. #u94181_text {
  1337. border-width:0px;
  1338. white-space:nowrap;
  1339. text-transform:none;
  1340. }
  1341. #u94182_div {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:0px;
  1345. top:0px;
  1346. width:64px;
  1347. height:40px;
  1348. background:inherit;
  1349. background-color:rgba(255, 255, 255, 0);
  1350. border:none;
  1351. border-left:0px;
  1352. border-top:0px;
  1353. border-right:0px;
  1354. border-radius:0px;
  1355. border-bottom-right-radius:0px;
  1356. border-bottom-left-radius:0px;
  1357. -moz-box-shadow:none;
  1358. -webkit-box-shadow:none;
  1359. box-shadow:none;
  1360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1361. font-weight:400;
  1362. font-style:normal;
  1363. font-size:14px;
  1364. }
  1365. #u94182 {
  1366. border-width:0px;
  1367. position:absolute;
  1368. left:136px;
  1369. top:266px;
  1370. width:64px;
  1371. height:40px;
  1372. display:flex;
  1373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1374. font-weight:400;
  1375. font-style:normal;
  1376. font-size:14px;
  1377. }
  1378. #u94182 .text {
  1379. position:absolute;
  1380. align-self:center;
  1381. padding:0px 0px 0px 0px;
  1382. box-sizing:border-box;
  1383. width:100%;
  1384. }
  1385. #u94182_text {
  1386. border-width:0px;
  1387. white-space:nowrap;
  1388. text-transform:none;
  1389. }
  1390. #u94183_div {
  1391. border-width:0px;
  1392. position:absolute;
  1393. left:0px;
  1394. top:0px;
  1395. width:120px;
  1396. height:120px;
  1397. background:inherit;
  1398. background-color:rgba(255, 255, 255, 1);
  1399. box-sizing:border-box;
  1400. border-width:1px;
  1401. border-style:solid;
  1402. border-color:rgba(201, 201, 201, 1);
  1403. border-radius:4px;
  1404. -moz-box-shadow:none;
  1405. -webkit-box-shadow:none;
  1406. box-shadow:none;
  1407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1408. font-weight:400;
  1409. font-style:normal;
  1410. font-size:38px;
  1411. }
  1412. #u94183 {
  1413. border-width:0px;
  1414. position:absolute;
  1415. left:136px;
  1416. top:306px;
  1417. width:120px;
  1418. height:120px;
  1419. display:flex;
  1420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1421. font-weight:400;
  1422. font-style:normal;
  1423. font-size:38px;
  1424. }
  1425. #u94183 .text {
  1426. position:absolute;
  1427. align-self:center;
  1428. padding:2px 8px 2px 8px;
  1429. box-sizing:border-box;
  1430. width:100%;
  1431. }
  1432. #u94183_text {
  1433. border-width:0px;
  1434. word-wrap:break-word;
  1435. text-transform:none;
  1436. }
  1437. #u94184_div {
  1438. border-width:0px;
  1439. position:absolute;
  1440. left:0px;
  1441. top:0px;
  1442. width:73px;
  1443. height:40px;
  1444. background:inherit;
  1445. background-color:rgba(255, 255, 255, 0);
  1446. border:none;
  1447. border-left:0px;
  1448. border-top:0px;
  1449. border-right:0px;
  1450. border-radius:0px;
  1451. border-bottom-right-radius:0px;
  1452. border-bottom-left-radius:0px;
  1453. -moz-box-shadow:none;
  1454. -webkit-box-shadow:none;
  1455. box-shadow:none;
  1456. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1457. font-weight:500;
  1458. font-style:normal;
  1459. font-size:18px;
  1460. }
  1461. #u94184 {
  1462. border-width:0px;
  1463. position:absolute;
  1464. left:136px;
  1465. top:206px;
  1466. width:73px;
  1467. height:40px;
  1468. display:flex;
  1469. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1470. font-weight:500;
  1471. font-style:normal;
  1472. font-size:18px;
  1473. }
  1474. #u94184 .text {
  1475. position:absolute;
  1476. align-self:center;
  1477. padding:0px 0px 0px 0px;
  1478. box-sizing:border-box;
  1479. width:100%;
  1480. }
  1481. #u94184_text {
  1482. border-width:0px;
  1483. white-space:nowrap;
  1484. text-transform:none;
  1485. }
  1486. #u94185 {
  1487. border-width:0px;
  1488. position:absolute;
  1489. left:0px;
  1490. top:0px;
  1491. width:0px;
  1492. height:0px;
  1493. }
  1494. #u94186_div {
  1495. border-width:0px;
  1496. position:absolute;
  1497. left:0px;
  1498. top:0px;
  1499. width:200px;
  1500. height:40px;
  1501. background:inherit;
  1502. background-color:rgba(255, 255, 255, 1);
  1503. box-sizing:border-box;
  1504. border-width:1px;
  1505. border-style:solid;
  1506. border-color:rgba(201, 201, 201, 1);
  1507. border-radius:4px;
  1508. -moz-box-shadow:none;
  1509. -webkit-box-shadow:none;
  1510. box-shadow:none;
  1511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1512. font-weight:400;
  1513. font-style:normal;
  1514. font-size:14px;
  1515. text-align:right;
  1516. }
  1517. #u94186 {
  1518. border-width:0px;
  1519. position:absolute;
  1520. left:336px;
  1521. top:395px;
  1522. width:200px;
  1523. height:40px;
  1524. display:flex;
  1525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1526. font-weight:400;
  1527. font-style:normal;
  1528. font-size:14px;
  1529. text-align:right;
  1530. }
  1531. #u94186 .text {
  1532. position:absolute;
  1533. align-self:center;
  1534. padding:2px 8px 2px 8px;
  1535. box-sizing:border-box;
  1536. width:100%;
  1537. }
  1538. #u94186_text {
  1539. border-width:0px;
  1540. word-wrap:break-word;
  1541. text-transform:none;
  1542. visibility:hidden;
  1543. }
  1544. #u94187_input {
  1545. position:absolute;
  1546. left:0px;
  1547. top:0px;
  1548. width:161px;
  1549. height:33px;
  1550. padding:2px 2px 2px 2px;
  1551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1552. font-weight:400;
  1553. font-style:normal;
  1554. font-size:14px;
  1555. letter-spacing:normal;
  1556. color:#D7D7D7;
  1557. vertical-align:none;
  1558. text-align:left;
  1559. text-transform:none;
  1560. background-color:transparent;
  1561. border-color:transparent;
  1562. }
  1563. #u94187_input.disabled {
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:161px;
  1568. height:33px;
  1569. padding:2px 2px 2px 2px;
  1570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1571. font-weight:400;
  1572. font-style:normal;
  1573. font-size:14px;
  1574. letter-spacing:normal;
  1575. color:#D7D7D7;
  1576. vertical-align:none;
  1577. text-align:left;
  1578. text-transform:none;
  1579. background-color:transparent;
  1580. border-color:transparent;
  1581. }
  1582. #u94187_div {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:161px;
  1588. height:33px;
  1589. background:inherit;
  1590. background-color:rgba(255, 255, 255, 0);
  1591. border:none;
  1592. border-radius:0px;
  1593. -moz-box-shadow:none;
  1594. -webkit-box-shadow:none;
  1595. box-shadow:none;
  1596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1597. font-weight:400;
  1598. font-style:normal;
  1599. font-size:14px;
  1600. color:#D7D7D7;
  1601. }
  1602. #u94187 {
  1603. border-width:0px;
  1604. position:absolute;
  1605. left:344px;
  1606. top:398px;
  1607. width:161px;
  1608. height:33px;
  1609. display:flex;
  1610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1611. font-weight:400;
  1612. font-style:normal;
  1613. font-size:14px;
  1614. color:#D7D7D7;
  1615. }
  1616. #u94187 .text {
  1617. position:absolute;
  1618. align-self:center;
  1619. padding:2px 2px 2px 2px;
  1620. box-sizing:border-box;
  1621. width:100%;
  1622. }
  1623. #u94187_div.disabled {
  1624. border-width:0px;
  1625. position:absolute;
  1626. left:0px;
  1627. top:0px;
  1628. width:161px;
  1629. height:33px;
  1630. background:inherit;
  1631. background-color:rgba(240, 240, 240, 1);
  1632. border:none;
  1633. border-radius:0px;
  1634. -moz-box-shadow:none;
  1635. -webkit-box-shadow:none;
  1636. box-shadow:none;
  1637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1638. font-weight:400;
  1639. font-style:normal;
  1640. font-size:14px;
  1641. color:#D7D7D7;
  1642. }
  1643. #u94187.disabled {
  1644. }
  1645. #u94188_img {
  1646. border-width:0px;
  1647. position:absolute;
  1648. left:0px;
  1649. top:0px;
  1650. width:13px;
  1651. height:13px;
  1652. }
  1653. #u94188 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:514px;
  1657. top:408px;
  1658. width:13px;
  1659. height:13px;
  1660. display:flex;
  1661. }
  1662. #u94188 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u94188_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u94189_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:57px;
  1681. height:40px;
  1682. background:inherit;
  1683. background-color:rgba(255, 255, 255, 0);
  1684. border:none;
  1685. border-left:0px;
  1686. border-top:0px;
  1687. border-right:0px;
  1688. border-radius:0px;
  1689. border-bottom-right-radius:0px;
  1690. border-bottom-left-radius:0px;
  1691. -moz-box-shadow:none;
  1692. -webkit-box-shadow:none;
  1693. box-shadow:none;
  1694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1695. font-weight:400;
  1696. font-style:normal;
  1697. font-size:14px;
  1698. }
  1699. #u94189 {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:566px;
  1703. top:445px;
  1704. width:57px;
  1705. height:40px;
  1706. display:flex;
  1707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1708. font-weight:400;
  1709. font-style:normal;
  1710. font-size:14px;
  1711. }
  1712. #u94189 .text {
  1713. position:absolute;
  1714. align-self:center;
  1715. padding:0px 0px 0px 0px;
  1716. box-sizing:border-box;
  1717. width:100%;
  1718. }
  1719. #u94189_text {
  1720. border-width:0px;
  1721. white-space:nowrap;
  1722. text-transform:none;
  1723. }
  1724. #u94190 {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:0px;
  1728. top:0px;
  1729. width:0px;
  1730. height:0px;
  1731. }
  1732. #u94191_div {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:0px;
  1736. top:0px;
  1737. width:200px;
  1738. height:40px;
  1739. background:inherit;
  1740. background-color:rgba(255, 255, 255, 1);
  1741. box-sizing:border-box;
  1742. border-width:1px;
  1743. border-style:solid;
  1744. border-color:rgba(215, 215, 215, 1);
  1745. border-radius:4px;
  1746. -moz-box-shadow:none;
  1747. -webkit-box-shadow:none;
  1748. box-shadow:none;
  1749. font-size:14px;
  1750. }
  1751. #u94191 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:566px;
  1755. top:485px;
  1756. width:200px;
  1757. height:40px;
  1758. display:flex;
  1759. font-size:14px;
  1760. }
  1761. #u94191 .text {
  1762. position:absolute;
  1763. align-self:center;
  1764. padding:2px 2px 2px 2px;
  1765. box-sizing:border-box;
  1766. width:100%;
  1767. }
  1768. #u94191_text {
  1769. border-width:0px;
  1770. word-wrap:break-word;
  1771. text-transform:none;
  1772. visibility:hidden;
  1773. }
  1774. #u94192_input {
  1775. position:absolute;
  1776. left:0px;
  1777. top:0px;
  1778. width:191px;
  1779. height:31px;
  1780. padding:2px 2px 2px 2px;
  1781. font-family:'ArialMT', 'Arial', sans-serif;
  1782. font-weight:400;
  1783. font-style:normal;
  1784. font-size:14px;
  1785. letter-spacing:normal;
  1786. color:#AAAAAA;
  1787. vertical-align:none;
  1788. text-align:left;
  1789. text-transform:none;
  1790. background-color:transparent;
  1791. border-color:transparent;
  1792. }
  1793. #u94192_input.disabled {
  1794. position:absolute;
  1795. left:0px;
  1796. top:0px;
  1797. width:191px;
  1798. height:31px;
  1799. padding:2px 2px 2px 2px;
  1800. font-family:'ArialMT', 'Arial', sans-serif;
  1801. font-weight:400;
  1802. font-style:normal;
  1803. font-size:14px;
  1804. letter-spacing:normal;
  1805. color:#AAAAAA;
  1806. vertical-align:none;
  1807. text-align:left;
  1808. text-transform:none;
  1809. background-color:transparent;
  1810. border-color:transparent;
  1811. }
  1812. #u94192_div {
  1813. border-width:0px;
  1814. position:absolute;
  1815. left:0px;
  1816. top:0px;
  1817. width:191px;
  1818. height:31px;
  1819. background:inherit;
  1820. background-color:rgba(255, 255, 255, 1);
  1821. border:none;
  1822. border-radius:0px;
  1823. -moz-box-shadow:none;
  1824. -webkit-box-shadow:none;
  1825. box-shadow:none;
  1826. font-size:14px;
  1827. color:#AAAAAA;
  1828. }
  1829. #u94192 {
  1830. border-width:0px;
  1831. position:absolute;
  1832. left:572px;
  1833. top:488px;
  1834. width:191px;
  1835. height:31px;
  1836. display:flex;
  1837. font-size:14px;
  1838. color:#AAAAAA;
  1839. }
  1840. #u94192 .text {
  1841. position:absolute;
  1842. align-self:flex-start;
  1843. padding:2px 2px 2px 2px;
  1844. box-sizing:border-box;
  1845. width:100%;
  1846. }
  1847. #u94192_div.disabled {
  1848. border-width:0px;
  1849. position:absolute;
  1850. left:0px;
  1851. top:0px;
  1852. width:191px;
  1853. height:31px;
  1854. background:inherit;
  1855. background-color:rgba(240, 240, 240, 1);
  1856. border:none;
  1857. border-radius:0px;
  1858. -moz-box-shadow:none;
  1859. -webkit-box-shadow:none;
  1860. box-shadow:none;
  1861. font-size:14px;
  1862. color:#AAAAAA;
  1863. }
  1864. #u94192.disabled {
  1865. }
  1866. .u94192_input_option {
  1867. font-size:14px;
  1868. }
  1869. #u94193_div {
  1870. border-width:0px;
  1871. position:absolute;
  1872. left:0px;
  1873. top:0px;
  1874. width:64px;
  1875. height:40px;
  1876. background:inherit;
  1877. background-color:rgba(255, 255, 255, 0);
  1878. border:none;
  1879. border-left:0px;
  1880. border-top:0px;
  1881. border-right:0px;
  1882. border-radius:0px;
  1883. border-bottom-right-radius:0px;
  1884. border-bottom-left-radius:0px;
  1885. -moz-box-shadow:none;
  1886. -webkit-box-shadow:none;
  1887. box-shadow:none;
  1888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1889. font-weight:400;
  1890. font-style:normal;
  1891. font-size:14px;
  1892. }
  1893. #u94193 {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:336px;
  1897. top:266px;
  1898. width:64px;
  1899. height:40px;
  1900. display:flex;
  1901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1902. font-weight:400;
  1903. font-style:normal;
  1904. font-size:14px;
  1905. }
  1906. #u94193 .text {
  1907. position:absolute;
  1908. align-self:center;
  1909. padding:0px 0px 0px 0px;
  1910. box-sizing:border-box;
  1911. width:100%;
  1912. }
  1913. #u94193_text {
  1914. border-width:0px;
  1915. white-space:nowrap;
  1916. text-transform:none;
  1917. }
  1918. #u94194 {
  1919. border-width:0px;
  1920. position:absolute;
  1921. left:0px;
  1922. top:0px;
  1923. width:0px;
  1924. height:0px;
  1925. }
  1926. #u94195_div {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:0px;
  1930. top:0px;
  1931. width:200px;
  1932. height:40px;
  1933. background:inherit;
  1934. background-color:rgba(255, 255, 255, 1);
  1935. box-sizing:border-box;
  1936. border-width:1px;
  1937. border-style:solid;
  1938. border-color:rgba(215, 215, 215, 1);
  1939. border-radius:4px;
  1940. -moz-box-shadow:none;
  1941. -webkit-box-shadow:none;
  1942. box-shadow:none;
  1943. font-size:14px;
  1944. }
  1945. #u94195 {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:336px;
  1949. top:306px;
  1950. width:200px;
  1951. height:40px;
  1952. display:flex;
  1953. font-size:14px;
  1954. }
  1955. #u94195 .text {
  1956. position:absolute;
  1957. align-self:center;
  1958. padding:2px 2px 2px 2px;
  1959. box-sizing:border-box;
  1960. width:100%;
  1961. }
  1962. #u94195_text {
  1963. border-width:0px;
  1964. word-wrap:break-word;
  1965. text-transform:none;
  1966. visibility:hidden;
  1967. }
  1968. #u94196_input {
  1969. position:absolute;
  1970. left:0px;
  1971. top:0px;
  1972. width:194px;
  1973. height:31px;
  1974. padding:2px 2px 2px 2px;
  1975. font-family:'ArialMT', 'Arial', sans-serif;
  1976. font-weight:400;
  1977. font-style:normal;
  1978. font-size:14px;
  1979. letter-spacing:normal;
  1980. color:#AAAAAA;
  1981. vertical-align:none;
  1982. text-align:left;
  1983. text-transform:none;
  1984. background-color:transparent;
  1985. border-color:transparent;
  1986. }
  1987. #u94196_input.disabled {
  1988. position:absolute;
  1989. left:0px;
  1990. top:0px;
  1991. width:194px;
  1992. height:31px;
  1993. padding:2px 2px 2px 2px;
  1994. font-family:'ArialMT', 'Arial', sans-serif;
  1995. font-weight:400;
  1996. font-style:normal;
  1997. font-size:14px;
  1998. letter-spacing:normal;
  1999. color:#AAAAAA;
  2000. vertical-align:none;
  2001. text-align:left;
  2002. text-transform:none;
  2003. background-color:transparent;
  2004. border-color:transparent;
  2005. }
  2006. #u94196_div {
  2007. border-width:0px;
  2008. position:absolute;
  2009. left:0px;
  2010. top:0px;
  2011. width:194px;
  2012. height:31px;
  2013. background:inherit;
  2014. background-color:rgba(255, 255, 255, 1);
  2015. border:none;
  2016. border-radius:0px;
  2017. -moz-box-shadow:none;
  2018. -webkit-box-shadow:none;
  2019. box-shadow:none;
  2020. font-size:14px;
  2021. color:#AAAAAA;
  2022. }
  2023. #u94196 {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:339px;
  2027. top:309px;
  2028. width:194px;
  2029. height:31px;
  2030. display:flex;
  2031. font-size:14px;
  2032. color:#AAAAAA;
  2033. }
  2034. #u94196 .text {
  2035. position:absolute;
  2036. align-self:flex-start;
  2037. padding:2px 2px 2px 2px;
  2038. box-sizing:border-box;
  2039. width:100%;
  2040. }
  2041. #u94196_div.disabled {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:0px;
  2045. top:0px;
  2046. width:194px;
  2047. height:31px;
  2048. background:inherit;
  2049. background-color:rgba(240, 240, 240, 1);
  2050. border:none;
  2051. border-radius:0px;
  2052. -moz-box-shadow:none;
  2053. -webkit-box-shadow:none;
  2054. box-shadow:none;
  2055. font-size:14px;
  2056. color:#AAAAAA;
  2057. }
  2058. #u94196.disabled {
  2059. }
  2060. .u94196_input_option {
  2061. font-size:14px;
  2062. }
  2063. #u94197_div {
  2064. border-width:0px;
  2065. position:absolute;
  2066. left:0px;
  2067. top:0px;
  2068. width:57px;
  2069. height:40px;
  2070. background:inherit;
  2071. background-color:rgba(255, 255, 255, 0);
  2072. border:none;
  2073. border-left:0px;
  2074. border-top:0px;
  2075. border-right:0px;
  2076. border-radius:0px;
  2077. border-bottom-right-radius:0px;
  2078. border-bottom-left-radius:0px;
  2079. -moz-box-shadow:none;
  2080. -webkit-box-shadow:none;
  2081. box-shadow:none;
  2082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2083. font-weight:400;
  2084. font-style:normal;
  2085. font-size:14px;
  2086. }
  2087. #u94197 {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:566px;
  2091. top:266px;
  2092. width:57px;
  2093. height:40px;
  2094. display:flex;
  2095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2096. font-weight:400;
  2097. font-style:normal;
  2098. font-size:14px;
  2099. }
  2100. #u94197 .text {
  2101. position:absolute;
  2102. align-self:center;
  2103. padding:0px 0px 0px 0px;
  2104. box-sizing:border-box;
  2105. width:100%;
  2106. }
  2107. #u94197_text {
  2108. border-width:0px;
  2109. white-space:nowrap;
  2110. text-transform:none;
  2111. }
  2112. #u94198 {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:0px;
  2116. top:0px;
  2117. width:0px;
  2118. height:0px;
  2119. }
  2120. #u94199_div {
  2121. border-width:0px;
  2122. position:absolute;
  2123. left:0px;
  2124. top:0px;
  2125. width:200px;
  2126. height:40px;
  2127. background:inherit;
  2128. background-color:rgba(255, 255, 255, 1);
  2129. box-sizing:border-box;
  2130. border-width:1px;
  2131. border-style:solid;
  2132. border-color:rgba(215, 215, 215, 1);
  2133. border-radius:4px;
  2134. -moz-box-shadow:none;
  2135. -webkit-box-shadow:none;
  2136. box-shadow:none;
  2137. font-size:14px;
  2138. }
  2139. #u94199 {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:566px;
  2143. top:306px;
  2144. width:200px;
  2145. height:40px;
  2146. display:flex;
  2147. font-size:14px;
  2148. }
  2149. #u94199 .text {
  2150. position:absolute;
  2151. align-self:center;
  2152. padding:2px 2px 2px 2px;
  2153. box-sizing:border-box;
  2154. width:100%;
  2155. }
  2156. #u94199_text {
  2157. border-width:0px;
  2158. word-wrap:break-word;
  2159. text-transform:none;
  2160. visibility:hidden;
  2161. }
  2162. #u94200_input {
  2163. position:absolute;
  2164. left:0px;
  2165. top:0px;
  2166. width:194px;
  2167. height:31px;
  2168. padding:2px 2px 2px 2px;
  2169. font-family:'ArialMT', 'Arial', sans-serif;
  2170. font-weight:400;
  2171. font-style:normal;
  2172. font-size:14px;
  2173. letter-spacing:normal;
  2174. color:#AAAAAA;
  2175. vertical-align:none;
  2176. text-align:left;
  2177. text-transform:none;
  2178. background-color:transparent;
  2179. border-color:transparent;
  2180. }
  2181. #u94200_input.disabled {
  2182. position:absolute;
  2183. left:0px;
  2184. top:0px;
  2185. width:194px;
  2186. height:31px;
  2187. padding:2px 2px 2px 2px;
  2188. font-family:'ArialMT', 'Arial', sans-serif;
  2189. font-weight:400;
  2190. font-style:normal;
  2191. font-size:14px;
  2192. letter-spacing:normal;
  2193. color:#AAAAAA;
  2194. vertical-align:none;
  2195. text-align:left;
  2196. text-transform:none;
  2197. background-color:transparent;
  2198. border-color:transparent;
  2199. }
  2200. #u94200_div {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:0px;
  2204. top:0px;
  2205. width:194px;
  2206. height:31px;
  2207. background:inherit;
  2208. background-color:rgba(255, 255, 255, 1);
  2209. border:none;
  2210. border-radius:0px;
  2211. -moz-box-shadow:none;
  2212. -webkit-box-shadow:none;
  2213. box-shadow:none;
  2214. font-size:14px;
  2215. color:#AAAAAA;
  2216. }
  2217. #u94200 {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:569px;
  2221. top:309px;
  2222. width:194px;
  2223. height:31px;
  2224. display:flex;
  2225. font-size:14px;
  2226. color:#AAAAAA;
  2227. }
  2228. #u94200 .text {
  2229. position:absolute;
  2230. align-self:flex-start;
  2231. padding:2px 2px 2px 2px;
  2232. box-sizing:border-box;
  2233. width:100%;
  2234. }
  2235. #u94200_div.disabled {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:0px;
  2239. top:0px;
  2240. width:194px;
  2241. height:31px;
  2242. background:inherit;
  2243. background-color:rgba(240, 240, 240, 1);
  2244. border:none;
  2245. border-radius:0px;
  2246. -moz-box-shadow:none;
  2247. -webkit-box-shadow:none;
  2248. box-shadow:none;
  2249. font-size:14px;
  2250. color:#AAAAAA;
  2251. }
  2252. #u94200.disabled {
  2253. }
  2254. .u94200_input_option {
  2255. font-size:14px;
  2256. }
  2257. #u94201 {
  2258. border-width:0px;
  2259. position:absolute;
  2260. left:0px;
  2261. top:0px;
  2262. width:0px;
  2263. height:0px;
  2264. }
  2265. #u94202_div {
  2266. border-width:0px;
  2267. position:absolute;
  2268. left:0px;
  2269. top:0px;
  2270. width:630px;
  2271. height:30px;
  2272. background:inherit;
  2273. background-color:rgba(224, 231, 247, 1);
  2274. border:none;
  2275. border-radius:4px;
  2276. -moz-box-shadow:none;
  2277. -webkit-box-shadow:none;
  2278. box-shadow:none;
  2279. font-size:14px;
  2280. }
  2281. #u94202 {
  2282. border-width:0px;
  2283. position:absolute;
  2284. left:136px;
  2285. top:158px;
  2286. width:630px;
  2287. height:30px;
  2288. display:flex;
  2289. font-size:14px;
  2290. }
  2291. #u94202 .text {
  2292. position:absolute;
  2293. align-self:center;
  2294. padding:2px 2px 2px 2px;
  2295. box-sizing:border-box;
  2296. width:100%;
  2297. }
  2298. #u94202_text {
  2299. border-width:0px;
  2300. word-wrap:break-word;
  2301. text-transform:none;
  2302. visibility:hidden;
  2303. }
  2304. #u94203_div {
  2305. border-width:0px;
  2306. position:absolute;
  2307. left:0px;
  2308. top:0px;
  2309. width:313px;
  2310. height:17px;
  2311. background:inherit;
  2312. background-color:rgba(255, 255, 255, 0);
  2313. border:none;
  2314. border-left:0px;
  2315. border-top:0px;
  2316. border-right:0px;
  2317. border-radius:0px;
  2318. border-bottom-right-radius:0px;
  2319. border-bottom-left-radius:0px;
  2320. -moz-box-shadow:none;
  2321. -webkit-box-shadow:none;
  2322. box-shadow:none;
  2323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2324. font-weight:400;
  2325. font-style:normal;
  2326. font-size:12px;
  2327. }
  2328. #u94203 {
  2329. border-width:0px;
  2330. position:absolute;
  2331. left:180px;
  2332. top:165px;
  2333. width:313px;
  2334. height:17px;
  2335. display:flex;
  2336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2337. font-weight:400;
  2338. font-style:normal;
  2339. font-size:12px;
  2340. }
  2341. #u94203 .text {
  2342. position:absolute;
  2343. align-self:center;
  2344. padding:0px 0px 0px 0px;
  2345. box-sizing:border-box;
  2346. width:100%;
  2347. }
  2348. #u94203_text {
  2349. border-width:0px;
  2350. white-space:nowrap;
  2351. text-transform:none;
  2352. }
  2353. #u94204_img {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:0px;
  2357. top:0px;
  2358. width:16px;
  2359. height:16px;
  2360. }
  2361. #u94204 {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:154px;
  2365. top:166px;
  2366. width:16px;
  2367. height:16px;
  2368. display:flex;
  2369. }
  2370. #u94204 .text {
  2371. position:absolute;
  2372. align-self:center;
  2373. padding:2px 2px 2px 2px;
  2374. box-sizing:border-box;
  2375. width:100%;
  2376. }
  2377. #u94204_text {
  2378. border-width:0px;
  2379. word-wrap:break-word;
  2380. text-transform:none;
  2381. visibility:hidden;
  2382. }
  2383. #u94205_div {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:0px;
  2387. top:0px;
  2388. width:57px;
  2389. height:40px;
  2390. background:inherit;
  2391. background-color:rgba(255, 255, 255, 0);
  2392. border:none;
  2393. border-left:0px;
  2394. border-top:0px;
  2395. border-right:0px;
  2396. border-radius:0px;
  2397. border-bottom-right-radius:0px;
  2398. border-bottom-left-radius:0px;
  2399. -moz-box-shadow:none;
  2400. -webkit-box-shadow:none;
  2401. box-shadow:none;
  2402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2403. font-weight:400;
  2404. font-style:normal;
  2405. font-size:14px;
  2406. }
  2407. #u94205 {
  2408. border-width:0px;
  2409. position:absolute;
  2410. left:336px;
  2411. top:614px;
  2412. width:57px;
  2413. height:40px;
  2414. display:flex;
  2415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2416. font-weight:400;
  2417. font-style:normal;
  2418. font-size:14px;
  2419. }
  2420. #u94205 .text {
  2421. position:absolute;
  2422. align-self:center;
  2423. padding:0px 0px 0px 0px;
  2424. box-sizing:border-box;
  2425. width:100%;
  2426. }
  2427. #u94205_text {
  2428. border-width:0px;
  2429. white-space:nowrap;
  2430. text-transform:none;
  2431. }
  2432. #u94206 {
  2433. border-width:0px;
  2434. position:absolute;
  2435. left:0px;
  2436. top:0px;
  2437. width:0px;
  2438. height:0px;
  2439. }
  2440. #u94207_div {
  2441. border-width:0px;
  2442. position:absolute;
  2443. left:0px;
  2444. top:0px;
  2445. width:430px;
  2446. height:40px;
  2447. background:inherit;
  2448. background-color:rgba(255, 255, 255, 1);
  2449. box-sizing:border-box;
  2450. border-width:1px;
  2451. border-style:solid;
  2452. border-color:rgba(215, 215, 215, 1);
  2453. border-radius:4px;
  2454. -moz-box-shadow:none;
  2455. -webkit-box-shadow:none;
  2456. box-shadow:none;
  2457. font-size:14px;
  2458. }
  2459. #u94207 {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:336px;
  2463. top:654px;
  2464. width:430px;
  2465. height:40px;
  2466. display:flex;
  2467. font-size:14px;
  2468. }
  2469. #u94207 .text {
  2470. position:absolute;
  2471. align-self:center;
  2472. padding:2px 2px 2px 2px;
  2473. box-sizing:border-box;
  2474. width:100%;
  2475. }
  2476. #u94207_text {
  2477. border-width:0px;
  2478. word-wrap:break-word;
  2479. text-transform:none;
  2480. visibility:hidden;
  2481. }
  2482. #u94208_input {
  2483. position:absolute;
  2484. left:0px;
  2485. top:0px;
  2486. width:411px;
  2487. height:31px;
  2488. padding:2px 2px 2px 2px;
  2489. font-family:'ArialMT', 'Arial', sans-serif;
  2490. font-weight:400;
  2491. font-style:normal;
  2492. font-size:14px;
  2493. letter-spacing:normal;
  2494. color:#AAAAAA;
  2495. vertical-align:none;
  2496. text-align:left;
  2497. text-transform:none;
  2498. background-color:transparent;
  2499. border-color:transparent;
  2500. }
  2501. #u94208_input.disabled {
  2502. position:absolute;
  2503. left:0px;
  2504. top:0px;
  2505. width:411px;
  2506. height:31px;
  2507. padding:2px 2px 2px 2px;
  2508. font-family:'ArialMT', 'Arial', sans-serif;
  2509. font-weight:400;
  2510. font-style:normal;
  2511. font-size:14px;
  2512. letter-spacing:normal;
  2513. color:#AAAAAA;
  2514. vertical-align:none;
  2515. text-align:left;
  2516. text-transform:none;
  2517. background-color:transparent;
  2518. border-color:transparent;
  2519. }
  2520. #u94208_div {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:0px;
  2524. top:0px;
  2525. width:411px;
  2526. height:31px;
  2527. background:inherit;
  2528. background-color:rgba(255, 255, 255, 1);
  2529. border:none;
  2530. border-radius:0px;
  2531. -moz-box-shadow:none;
  2532. -webkit-box-shadow:none;
  2533. box-shadow:none;
  2534. font-size:14px;
  2535. color:#AAAAAA;
  2536. }
  2537. #u94208 {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:349px;
  2541. top:657px;
  2542. width:411px;
  2543. height:31px;
  2544. display:flex;
  2545. font-size:14px;
  2546. color:#AAAAAA;
  2547. }
  2548. #u94208 .text {
  2549. position:absolute;
  2550. align-self:flex-start;
  2551. padding:2px 2px 2px 2px;
  2552. box-sizing:border-box;
  2553. width:100%;
  2554. }
  2555. #u94208_div.disabled {
  2556. border-width:0px;
  2557. position:absolute;
  2558. left:0px;
  2559. top:0px;
  2560. width:411px;
  2561. height:31px;
  2562. background:inherit;
  2563. background-color:rgba(240, 240, 240, 1);
  2564. border:none;
  2565. border-radius:0px;
  2566. -moz-box-shadow:none;
  2567. -webkit-box-shadow:none;
  2568. box-shadow:none;
  2569. font-size:14px;
  2570. color:#AAAAAA;
  2571. }
  2572. #u94208.disabled {
  2573. }
  2574. .u94208_input_option {
  2575. font-size:14px;
  2576. }
  2577. #u94209 {
  2578. border-width:0px;
  2579. position:absolute;
  2580. left:0px;
  2581. top:0px;
  2582. width:0px;
  2583. height:0px;
  2584. }
  2585. #u94210_div {
  2586. border-width:0px;
  2587. position:absolute;
  2588. left:0px;
  2589. top:0px;
  2590. width:427px;
  2591. height:80px;
  2592. background:inherit;
  2593. background-color:rgba(255, 255, 255, 1);
  2594. box-sizing:border-box;
  2595. border-width:1px;
  2596. border-style:solid;
  2597. border-color:rgba(201, 201, 201, 1);
  2598. border-radius:4px;
  2599. -moz-box-shadow:none;
  2600. -webkit-box-shadow:none;
  2601. box-shadow:none;
  2602. font-family:'Microsoft YaHei', sans-serif;
  2603. font-weight:400;
  2604. font-style:normal;
  2605. font-size:14px;
  2606. color:#CCCCCC;
  2607. text-align:left;
  2608. }
  2609. #u94210 {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:336px;
  2613. top:854px;
  2614. width:427px;
  2615. height:80px;
  2616. display:flex;
  2617. font-family:'Microsoft YaHei', sans-serif;
  2618. font-weight:400;
  2619. font-style:normal;
  2620. font-size:14px;
  2621. color:#CCCCCC;
  2622. text-align:left;
  2623. }
  2624. #u94210 .text {
  2625. position:absolute;
  2626. align-self:center;
  2627. padding:2px 8px 2px 8px;
  2628. box-sizing:border-box;
  2629. width:100%;
  2630. }
  2631. #u94210_text {
  2632. border-width:0px;
  2633. word-wrap:break-word;
  2634. text-transform:none;
  2635. visibility:hidden;
  2636. }
  2637. #u94211_input {
  2638. position:absolute;
  2639. left:0px;
  2640. top:0px;
  2641. width:389px;
  2642. height:33px;
  2643. padding:2px 2px 2px 2px;
  2644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2645. font-weight:400;
  2646. font-style:normal;
  2647. font-size:14px;
  2648. letter-spacing:normal;
  2649. color:#D7D7D7;
  2650. vertical-align:none;
  2651. text-align:left;
  2652. text-transform:none;
  2653. background-color:transparent;
  2654. border-color:transparent;
  2655. }
  2656. #u94211_input.disabled {
  2657. position:absolute;
  2658. left:0px;
  2659. top:0px;
  2660. width:389px;
  2661. height:33px;
  2662. padding:2px 2px 2px 2px;
  2663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2664. font-weight:400;
  2665. font-style:normal;
  2666. font-size:14px;
  2667. letter-spacing:normal;
  2668. color:#D7D7D7;
  2669. vertical-align:none;
  2670. text-align:left;
  2671. text-transform:none;
  2672. background-color:transparent;
  2673. border-color:transparent;
  2674. }
  2675. #u94211_div {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:0px;
  2679. top:0px;
  2680. width:389px;
  2681. height:33px;
  2682. background:inherit;
  2683. background-color:rgba(255, 255, 255, 0);
  2684. border:none;
  2685. border-radius:0px;
  2686. -moz-box-shadow:none;
  2687. -webkit-box-shadow:none;
  2688. box-shadow:none;
  2689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2690. font-weight:400;
  2691. font-style:normal;
  2692. font-size:14px;
  2693. color:#D7D7D7;
  2694. }
  2695. #u94211 {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:353px;
  2699. top:857px;
  2700. width:389px;
  2701. height:33px;
  2702. display:flex;
  2703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2704. font-weight:400;
  2705. font-style:normal;
  2706. font-size:14px;
  2707. color:#D7D7D7;
  2708. }
  2709. #u94211 .text {
  2710. position:absolute;
  2711. align-self:center;
  2712. padding:2px 2px 2px 2px;
  2713. box-sizing:border-box;
  2714. width:100%;
  2715. }
  2716. #u94211_div.disabled {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:0px;
  2720. top:0px;
  2721. width:389px;
  2722. height:33px;
  2723. background:inherit;
  2724. background-color:rgba(240, 240, 240, 1);
  2725. border:none;
  2726. border-radius:0px;
  2727. -moz-box-shadow:none;
  2728. -webkit-box-shadow:none;
  2729. box-shadow:none;
  2730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2731. font-weight:400;
  2732. font-style:normal;
  2733. font-size:14px;
  2734. color:#D7D7D7;
  2735. }
  2736. #u94211.disabled {
  2737. }
  2738. #u94212_div {
  2739. border-width:0px;
  2740. position:absolute;
  2741. left:0px;
  2742. top:0px;
  2743. width:78px;
  2744. height:40px;
  2745. background:inherit;
  2746. background-color:rgba(255, 255, 255, 0);
  2747. border:none;
  2748. border-left:0px;
  2749. border-top:0px;
  2750. border-right:0px;
  2751. border-radius:0px;
  2752. border-bottom-right-radius:0px;
  2753. border-bottom-left-radius:0px;
  2754. -moz-box-shadow:none;
  2755. -webkit-box-shadow:none;
  2756. box-shadow:none;
  2757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2758. font-weight:400;
  2759. font-style:normal;
  2760. font-size:14px;
  2761. }
  2762. #u94212 {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:336px;
  2766. top:814px;
  2767. width:78px;
  2768. height:40px;
  2769. display:flex;
  2770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2771. font-weight:400;
  2772. font-style:normal;
  2773. font-size:14px;
  2774. }
  2775. #u94212 .text {
  2776. position:absolute;
  2777. align-self:center;
  2778. padding:0px 0px 0px 0px;
  2779. box-sizing:border-box;
  2780. width:100%;
  2781. }
  2782. #u94212_text {
  2783. border-width:0px;
  2784. white-space:nowrap;
  2785. text-transform:none;
  2786. }
  2787. #u94213 {
  2788. border-width:0px;
  2789. position:absolute;
  2790. left:0px;
  2791. top:0px;
  2792. width:0px;
  2793. height:0px;
  2794. }
  2795. #u94214_div {
  2796. border-width:0px;
  2797. position:absolute;
  2798. left:0px;
  2799. top:0px;
  2800. width:83px;
  2801. height:80px;
  2802. background:inherit;
  2803. background-color:rgba(255, 255, 255, 1);
  2804. box-sizing:border-box;
  2805. border-width:1px;
  2806. border-style:solid;
  2807. border-color:rgba(201, 201, 201, 1);
  2808. border-radius:4px;
  2809. -moz-box-shadow:none;
  2810. -webkit-box-shadow:none;
  2811. box-shadow:none;
  2812. font-family:'Helvetica', sans-serif;
  2813. font-weight:400;
  2814. font-style:normal;
  2815. font-size:24px;
  2816. }
  2817. #u94214 {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:336px;
  2821. top:734px;
  2822. width:83px;
  2823. height:80px;
  2824. display:flex;
  2825. font-family:'Helvetica', sans-serif;
  2826. font-weight:400;
  2827. font-style:normal;
  2828. font-size:24px;
  2829. }
  2830. #u94214 .text {
  2831. position:absolute;
  2832. align-self:center;
  2833. padding:2px 8px 2px 8px;
  2834. box-sizing:border-box;
  2835. width:100%;
  2836. }
  2837. #u94214_text {
  2838. border-width:0px;
  2839. word-wrap:break-word;
  2840. text-transform:none;
  2841. }
  2842. #u94215_div {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:0px;
  2846. top:0px;
  2847. width:57px;
  2848. height:40px;
  2849. background:inherit;
  2850. background-color:rgba(255, 255, 255, 0);
  2851. border:none;
  2852. border-left:0px;
  2853. border-top:0px;
  2854. border-right:0px;
  2855. border-radius:0px;
  2856. border-bottom-right-radius:0px;
  2857. border-bottom-left-radius:0px;
  2858. -moz-box-shadow:none;
  2859. -webkit-box-shadow:none;
  2860. box-shadow:none;
  2861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2862. font-weight:400;
  2863. font-style:normal;
  2864. font-size:14px;
  2865. color:#D9001B;
  2866. }
  2867. #u94215 {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:336px;
  2871. top:694px;
  2872. width:57px;
  2873. height:40px;
  2874. display:flex;
  2875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2876. font-weight:400;
  2877. font-style:normal;
  2878. font-size:14px;
  2879. color:#D9001B;
  2880. }
  2881. #u94215 .text {
  2882. position:absolute;
  2883. align-self:center;
  2884. padding:0px 0px 0px 0px;
  2885. box-sizing:border-box;
  2886. width:100%;
  2887. }
  2888. #u94215_text {
  2889. border-width:0px;
  2890. white-space:nowrap;
  2891. text-transform:none;
  2892. }