styles.css 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-42px;
  6. width:680px;
  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. #u144861 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u144862_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:680px;
  33. height:1198px;
  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(215, 215, 215, 1);
  40. border-radius:0px;
  41. -moz-box-shadow:none;
  42. -webkit-box-shadow:none;
  43. box-shadow:none;
  44. }
  45. #u144862 {
  46. border-width:0px;
  47. position:absolute;
  48. left:42px;
  49. top:35px;
  50. width:680px;
  51. height:1198px;
  52. display:flex;
  53. }
  54. #u144862 .text {
  55. position:absolute;
  56. align-self:center;
  57. padding:2px 2px 2px 2px;
  58. box-sizing:border-box;
  59. width:100%;
  60. }
  61. #u144862_text {
  62. border-width:0px;
  63. word-wrap:break-word;
  64. text-transform:none;
  65. visibility:hidden;
  66. }
  67. #u144863_div {
  68. border-width:0px;
  69. position:absolute;
  70. left:0px;
  71. top:0px;
  72. width:73px;
  73. height:30px;
  74. background:inherit;
  75. background-color:rgba(255, 255, 255, 0);
  76. border:none;
  77. border-radius:0px;
  78. -moz-box-shadow:none;
  79. -webkit-box-shadow:none;
  80. box-shadow:none;
  81. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  82. font-weight:400;
  83. font-style:normal;
  84. font-size:18px;
  85. color:#000000;
  86. line-height:30px;
  87. }
  88. #u144863 {
  89. border-width:0px;
  90. position:absolute;
  91. left:62px;
  92. top:55px;
  93. width:73px;
  94. height:30px;
  95. display:flex;
  96. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  97. font-weight:400;
  98. font-style:normal;
  99. font-size:18px;
  100. color:#000000;
  101. line-height:30px;
  102. }
  103. #u144863 .text {
  104. position:absolute;
  105. align-self:flex-start;
  106. padding:0px 0px 0px 0px;
  107. box-sizing:border-box;
  108. width:100%;
  109. }
  110. #u144863_text {
  111. border-width:0px;
  112. white-space:nowrap;
  113. text-transform:none;
  114. }
  115. #u144864_div {
  116. border-width:0px;
  117. position:absolute;
  118. left:0px;
  119. top:0px;
  120. width:95px;
  121. height:30px;
  122. background:inherit;
  123. background-color:rgba(255, 255, 255, 0);
  124. border:none;
  125. border-top:0px;
  126. border-right:0px;
  127. border-bottom:0px;
  128. border-radius:0px;
  129. border-top-left-radius:0px;
  130. border-bottom-left-radius:0px;
  131. -moz-box-shadow:none;
  132. -webkit-box-shadow:none;
  133. box-shadow:none;
  134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  135. font-weight:400;
  136. font-style:normal;
  137. font-size:14px;
  138. }
  139. #u144864 {
  140. border-width:0px;
  141. position:absolute;
  142. left:91px;
  143. top:309px;
  144. width:95px;
  145. height:30px;
  146. display:flex;
  147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  148. font-weight:400;
  149. font-style:normal;
  150. font-size:14px;
  151. }
  152. #u144864 .text {
  153. position:absolute;
  154. align-self:center;
  155. padding:5px 10px 5px 0px;
  156. box-sizing:border-box;
  157. width:100%;
  158. }
  159. #u144864_text {
  160. border-width:0px;
  161. white-space:nowrap;
  162. text-transform:none;
  163. }
  164. #u144865 {
  165. border-width:0px;
  166. position:absolute;
  167. left:0px;
  168. top:0px;
  169. width:0px;
  170. height:0px;
  171. }
  172. #u144866_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:400px;
  178. height:40px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 1);
  181. box-sizing:border-box;
  182. border-width:1px;
  183. border-style:solid;
  184. border-color:rgba(170, 170, 170, 1);
  185. border-radius:4px;
  186. -moz-box-shadow:none;
  187. -webkit-box-shadow:none;
  188. box-shadow:none;
  189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  190. font-weight:400;
  191. font-style:normal;
  192. text-align:left;
  193. }
  194. #u144866 {
  195. border-width:0px;
  196. position:absolute;
  197. left:194px;
  198. top:304px;
  199. width:400px;
  200. height:40px;
  201. display:flex;
  202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  203. font-weight:400;
  204. font-style:normal;
  205. text-align:left;
  206. }
  207. #u144866 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 10px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u144866_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u144867_input {
  221. position:absolute;
  222. left:0px;
  223. top:0px;
  224. width:188px;
  225. height:31px;
  226. padding:2px 2px 2px 2px;
  227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  228. font-weight:400;
  229. font-style:normal;
  230. font-size:13px;
  231. letter-spacing:normal;
  232. color:#AAAAAA;
  233. vertical-align:none;
  234. text-align:left;
  235. text-transform:none;
  236. background-color:transparent;
  237. border-color:transparent;
  238. }
  239. #u144867_input.disabled {
  240. position:absolute;
  241. left:0px;
  242. top:0px;
  243. width:188px;
  244. height:31px;
  245. padding:2px 2px 2px 2px;
  246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  247. font-weight:400;
  248. font-style:normal;
  249. font-size:13px;
  250. letter-spacing:normal;
  251. color:#AAAAAA;
  252. vertical-align:none;
  253. text-align:left;
  254. text-transform:none;
  255. background-color:transparent;
  256. border-color:transparent;
  257. }
  258. #u144867_div {
  259. border-width:0px;
  260. position:absolute;
  261. left:0px;
  262. top:0px;
  263. width:188px;
  264. height:31px;
  265. background:inherit;
  266. background-color:rgba(255, 255, 255, 0);
  267. border:none;
  268. border-radius:0px;
  269. -moz-box-shadow:none;
  270. -webkit-box-shadow:none;
  271. box-shadow:none;
  272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. color:#AAAAAA;
  276. }
  277. #u144867 {
  278. border-width:0px;
  279. position:absolute;
  280. left:204px;
  281. top:309px;
  282. width:188px;
  283. height:31px;
  284. display:flex;
  285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  286. font-weight:400;
  287. font-style:normal;
  288. color:#AAAAAA;
  289. }
  290. #u144867 .text {
  291. position:absolute;
  292. align-self:center;
  293. padding:2px 2px 2px 2px;
  294. box-sizing:border-box;
  295. width:100%;
  296. }
  297. #u144867_div.disabled {
  298. border-width:0px;
  299. position:absolute;
  300. left:0px;
  301. top:0px;
  302. width:188px;
  303. height:31px;
  304. background:inherit;
  305. background-color:rgba(240, 240, 240, 1);
  306. border:none;
  307. border-radius:0px;
  308. -moz-box-shadow:none;
  309. -webkit-box-shadow:none;
  310. box-shadow:none;
  311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  312. font-weight:400;
  313. font-style:normal;
  314. color:#AAAAAA;
  315. }
  316. #u144867.disabled {
  317. }
  318. #u144868_div {
  319. border-width:0px;
  320. position:absolute;
  321. left:0px;
  322. top:0px;
  323. width:88px;
  324. height:30px;
  325. background:inherit;
  326. background-color:rgba(255, 255, 255, 0);
  327. border:none;
  328. border-top:0px;
  329. border-right:0px;
  330. border-bottom:0px;
  331. border-radius:0px;
  332. border-top-left-radius:0px;
  333. border-bottom-left-radius:0px;
  334. -moz-box-shadow:none;
  335. -webkit-box-shadow:none;
  336. box-shadow:none;
  337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  338. font-weight:400;
  339. font-style:normal;
  340. font-size:14px;
  341. }
  342. #u144868 {
  343. border-width:0px;
  344. position:absolute;
  345. left:91px;
  346. top:159px;
  347. width:88px;
  348. height:30px;
  349. display:flex;
  350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  351. font-weight:400;
  352. font-style:normal;
  353. font-size:14px;
  354. }
  355. #u144868 .text {
  356. position:absolute;
  357. align-self:center;
  358. padding:5px 10px 5px 0px;
  359. box-sizing:border-box;
  360. width:100%;
  361. }
  362. #u144868_text {
  363. border-width:0px;
  364. white-space:nowrap;
  365. text-transform:none;
  366. }
  367. #u144869 {
  368. border-width:0px;
  369. position:absolute;
  370. left:0px;
  371. top:0px;
  372. width:0px;
  373. height:0px;
  374. }
  375. #u144870_div {
  376. border-width:0px;
  377. position:absolute;
  378. left:0px;
  379. top:0px;
  380. width:400px;
  381. height:40px;
  382. background:inherit;
  383. background-color:rgba(255, 255, 255, 1);
  384. box-sizing:border-box;
  385. border-width:1px;
  386. border-style:solid;
  387. border-color:rgba(170, 170, 170, 1);
  388. border-radius:4px;
  389. -moz-box-shadow:none;
  390. -webkit-box-shadow:none;
  391. box-shadow:none;
  392. }
  393. #u144870 {
  394. border-width:0px;
  395. position:absolute;
  396. left:194px;
  397. top:154px;
  398. width:400px;
  399. height:40px;
  400. display:flex;
  401. }
  402. #u144870 .text {
  403. position:absolute;
  404. align-self:center;
  405. padding:2px 2px 2px 0px;
  406. box-sizing:border-box;
  407. width:100%;
  408. }
  409. #u144870_text {
  410. border-width:0px;
  411. word-wrap:break-word;
  412. text-transform:none;
  413. visibility:hidden;
  414. }
  415. #u144871_input {
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:380px;
  420. height:30px;
  421. padding:2px 2px 2px 0px;
  422. font-family:'ArialMT', 'Arial', sans-serif;
  423. font-weight:400;
  424. font-style:normal;
  425. font-size:13px;
  426. letter-spacing:normal;
  427. color:#AAAAAA;
  428. vertical-align:none;
  429. text-align:left;
  430. text-transform:none;
  431. background-color:transparent;
  432. border-color:transparent;
  433. }
  434. #u144871_input.disabled {
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:380px;
  439. height:30px;
  440. padding:2px 2px 2px 0px;
  441. font-family:'ArialMT', 'Arial', sans-serif;
  442. font-weight:400;
  443. font-style:normal;
  444. font-size:13px;
  445. letter-spacing:normal;
  446. color:#AAAAAA;
  447. vertical-align:none;
  448. text-align:left;
  449. text-transform:none;
  450. background-color:transparent;
  451. border-color:transparent;
  452. }
  453. #u144871_div {
  454. border-width:0px;
  455. position:absolute;
  456. left:0px;
  457. top:0px;
  458. width:380px;
  459. height:30px;
  460. background:inherit;
  461. background-color:rgba(255, 255, 255, 1);
  462. border:none;
  463. border-radius:0px;
  464. -moz-box-shadow:none;
  465. -webkit-box-shadow:none;
  466. box-shadow:none;
  467. color:#AAAAAA;
  468. }
  469. #u144871 {
  470. border-width:0px;
  471. position:absolute;
  472. left:204px;
  473. top:160px;
  474. width:380px;
  475. height:30px;
  476. display:flex;
  477. color:#AAAAAA;
  478. }
  479. #u144871 .text {
  480. position:absolute;
  481. align-self:flex-start;
  482. padding:2px 2px 2px 0px;
  483. box-sizing:border-box;
  484. width:100%;
  485. }
  486. #u144871_div.disabled {
  487. border-width:0px;
  488. position:absolute;
  489. left:0px;
  490. top:0px;
  491. width:380px;
  492. height:30px;
  493. background:inherit;
  494. background-color:rgba(240, 240, 240, 1);
  495. border:none;
  496. border-radius:0px;
  497. -moz-box-shadow:none;
  498. -webkit-box-shadow:none;
  499. box-shadow:none;
  500. color:#AAAAAA;
  501. }
  502. #u144871.disabled {
  503. }
  504. .u144871_input_option {
  505. }
  506. #u144872_div {
  507. border-width:0px;
  508. position:absolute;
  509. left:0px;
  510. top:0px;
  511. width:53px;
  512. height:30px;
  513. background:inherit;
  514. background-color:rgba(255, 255, 255, 0);
  515. border:none;
  516. border-top:0px;
  517. border-right:0px;
  518. border-bottom:0px;
  519. border-radius:0px;
  520. border-top-left-radius:0px;
  521. border-bottom-left-radius:0px;
  522. -moz-box-shadow:none;
  523. -webkit-box-shadow:none;
  524. box-shadow:none;
  525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  526. font-weight:400;
  527. font-style:normal;
  528. font-size:14px;
  529. }
  530. #u144872 {
  531. border-width:0px;
  532. position:absolute;
  533. left:91px;
  534. top:640px;
  535. width:53px;
  536. height:30px;
  537. display:flex;
  538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  539. font-weight:400;
  540. font-style:normal;
  541. font-size:14px;
  542. }
  543. #u144872 .text {
  544. position:absolute;
  545. align-self:center;
  546. padding:5px 10px 5px 0px;
  547. box-sizing:border-box;
  548. width:100%;
  549. }
  550. #u144872_text {
  551. border-width:0px;
  552. white-space:nowrap;
  553. text-transform:none;
  554. }
  555. #u144873 {
  556. border-width:0px;
  557. position:absolute;
  558. left:0px;
  559. top:0px;
  560. width:0px;
  561. height:0px;
  562. }
  563. #u144874_div {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:400px;
  569. height:40px;
  570. background:inherit;
  571. background-color:rgba(255, 255, 255, 1);
  572. box-sizing:border-box;
  573. border-width:1px;
  574. border-style:solid;
  575. border-color:rgba(170, 170, 170, 1);
  576. border-radius:4px;
  577. -moz-box-shadow:none;
  578. -webkit-box-shadow:none;
  579. box-shadow:none;
  580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  581. font-weight:400;
  582. font-style:normal;
  583. text-align:left;
  584. }
  585. #u144874 {
  586. border-width:0px;
  587. position:absolute;
  588. left:194px;
  589. top:635px;
  590. width:400px;
  591. height:40px;
  592. display:flex;
  593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  594. font-weight:400;
  595. font-style:normal;
  596. text-align:left;
  597. }
  598. #u144874 .text {
  599. position:absolute;
  600. align-self:center;
  601. padding:2px 2px 2px 10px;
  602. box-sizing:border-box;
  603. width:100%;
  604. }
  605. #u144874_text {
  606. border-width:0px;
  607. word-wrap:break-word;
  608. text-transform:none;
  609. visibility:hidden;
  610. }
  611. #u144875_input {
  612. position:absolute;
  613. left:0px;
  614. top:0px;
  615. width:188px;
  616. height:31px;
  617. padding:2px 2px 2px 2px;
  618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  619. font-weight:400;
  620. font-style:normal;
  621. font-size:13px;
  622. letter-spacing:normal;
  623. color:#AAAAAA;
  624. vertical-align:none;
  625. text-align:left;
  626. text-transform:none;
  627. background-color:transparent;
  628. border-color:transparent;
  629. }
  630. #u144875_input.disabled {
  631. position:absolute;
  632. left:0px;
  633. top:0px;
  634. width:188px;
  635. height:31px;
  636. padding:2px 2px 2px 2px;
  637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  638. font-weight:400;
  639. font-style:normal;
  640. font-size:13px;
  641. letter-spacing:normal;
  642. color:#AAAAAA;
  643. vertical-align:none;
  644. text-align:left;
  645. text-transform:none;
  646. background-color:transparent;
  647. border-color:transparent;
  648. }
  649. #u144875_div {
  650. border-width:0px;
  651. position:absolute;
  652. left:0px;
  653. top:0px;
  654. width:188px;
  655. height:31px;
  656. background:inherit;
  657. background-color:rgba(255, 255, 255, 0);
  658. border:none;
  659. border-radius:0px;
  660. -moz-box-shadow:none;
  661. -webkit-box-shadow:none;
  662. box-shadow:none;
  663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  664. font-weight:400;
  665. font-style:normal;
  666. color:#AAAAAA;
  667. }
  668. #u144875 {
  669. border-width:0px;
  670. position:absolute;
  671. left:204px;
  672. top:640px;
  673. width:188px;
  674. height:31px;
  675. display:flex;
  676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  677. font-weight:400;
  678. font-style:normal;
  679. color:#AAAAAA;
  680. }
  681. #u144875 .text {
  682. position:absolute;
  683. align-self:center;
  684. padding:2px 2px 2px 2px;
  685. box-sizing:border-box;
  686. width:100%;
  687. }
  688. #u144875_div.disabled {
  689. border-width:0px;
  690. position:absolute;
  691. left:0px;
  692. top:0px;
  693. width:188px;
  694. height:31px;
  695. background:inherit;
  696. background-color:rgba(240, 240, 240, 1);
  697. border:none;
  698. border-radius:0px;
  699. -moz-box-shadow:none;
  700. -webkit-box-shadow:none;
  701. box-shadow:none;
  702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  703. font-weight:400;
  704. font-style:normal;
  705. color:#AAAAAA;
  706. }
  707. #u144875.disabled {
  708. }
  709. #u144876_div {
  710. border-width:0px;
  711. position:absolute;
  712. left:0px;
  713. top:0px;
  714. width:81px;
  715. height:30px;
  716. background:inherit;
  717. background-color:rgba(255, 255, 255, 0);
  718. border:none;
  719. border-top:0px;
  720. border-right:0px;
  721. border-bottom:0px;
  722. border-radius:0px;
  723. border-top-left-radius:0px;
  724. border-bottom-left-radius:0px;
  725. -moz-box-shadow:none;
  726. -webkit-box-shadow:none;
  727. box-shadow:none;
  728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  729. font-weight:400;
  730. font-style:normal;
  731. font-size:14px;
  732. }
  733. #u144876 {
  734. border-width:0px;
  735. position:absolute;
  736. left:91px;
  737. top:409px;
  738. width:81px;
  739. height:30px;
  740. display:flex;
  741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  742. font-weight:400;
  743. font-style:normal;
  744. font-size:14px;
  745. }
  746. #u144876 .text {
  747. position:absolute;
  748. align-self:center;
  749. padding:5px 10px 5px 0px;
  750. box-sizing:border-box;
  751. width:100%;
  752. }
  753. #u144876_text {
  754. border-width:0px;
  755. white-space:nowrap;
  756. text-transform:none;
  757. }
  758. #u144877 {
  759. border-width:0px;
  760. position:absolute;
  761. left:0px;
  762. top:0px;
  763. width:0px;
  764. height:0px;
  765. }
  766. #u144878_div {
  767. border-width:0px;
  768. position:absolute;
  769. left:0px;
  770. top:0px;
  771. width:400px;
  772. height:40px;
  773. background:inherit;
  774. background-color:rgba(255, 255, 255, 1);
  775. box-sizing:border-box;
  776. border-width:1px;
  777. border-style:solid;
  778. border-color:rgba(170, 170, 170, 1);
  779. border-radius:4px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. text-align:left;
  787. }
  788. #u144878 {
  789. border-width:0px;
  790. position:absolute;
  791. left:194px;
  792. top:404px;
  793. width:400px;
  794. height:40px;
  795. display:flex;
  796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  797. font-weight:400;
  798. font-style:normal;
  799. text-align:left;
  800. }
  801. #u144878 .text {
  802. position:absolute;
  803. align-self:center;
  804. padding:2px 2px 2px 10px;
  805. box-sizing:border-box;
  806. width:100%;
  807. }
  808. #u144878_text {
  809. border-width:0px;
  810. word-wrap:break-word;
  811. text-transform:none;
  812. visibility:hidden;
  813. }
  814. #u144879_input {
  815. position:absolute;
  816. left:0px;
  817. top:0px;
  818. width:188px;
  819. height:31px;
  820. padding:2px 2px 2px 2px;
  821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  822. font-weight:400;
  823. font-style:normal;
  824. font-size:13px;
  825. letter-spacing:normal;
  826. color:#AAAAAA;
  827. vertical-align:none;
  828. text-align:left;
  829. text-transform:none;
  830. background-color:transparent;
  831. border-color:transparent;
  832. }
  833. #u144879_input.disabled {
  834. position:absolute;
  835. left:0px;
  836. top:0px;
  837. width:188px;
  838. height:31px;
  839. padding:2px 2px 2px 2px;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:13px;
  844. letter-spacing:normal;
  845. color:#AAAAAA;
  846. vertical-align:none;
  847. text-align:left;
  848. text-transform:none;
  849. background-color:transparent;
  850. border-color:transparent;
  851. }
  852. #u144879_div {
  853. border-width:0px;
  854. position:absolute;
  855. left:0px;
  856. top:0px;
  857. width:188px;
  858. height:31px;
  859. background:inherit;
  860. background-color:rgba(255, 255, 255, 0);
  861. border:none;
  862. border-radius:0px;
  863. -moz-box-shadow:none;
  864. -webkit-box-shadow:none;
  865. box-shadow:none;
  866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  867. font-weight:400;
  868. font-style:normal;
  869. color:#AAAAAA;
  870. }
  871. #u144879 {
  872. border-width:0px;
  873. position:absolute;
  874. left:204px;
  875. top:409px;
  876. width:188px;
  877. height:31px;
  878. display:flex;
  879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  880. font-weight:400;
  881. font-style:normal;
  882. color:#AAAAAA;
  883. }
  884. #u144879 .text {
  885. position:absolute;
  886. align-self:center;
  887. padding:2px 2px 2px 2px;
  888. box-sizing:border-box;
  889. width:100%;
  890. }
  891. #u144879_div.disabled {
  892. border-width:0px;
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:188px;
  897. height:31px;
  898. background:inherit;
  899. background-color:rgba(240, 240, 240, 1);
  900. border:none;
  901. border-radius:0px;
  902. -moz-box-shadow:none;
  903. -webkit-box-shadow:none;
  904. box-shadow:none;
  905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  906. font-weight:400;
  907. font-style:normal;
  908. color:#AAAAAA;
  909. }
  910. #u144879.disabled {
  911. }
  912. #u144880 {
  913. border-width:0px;
  914. position:absolute;
  915. left:0px;
  916. top:0px;
  917. width:0px;
  918. height:0px;
  919. }
  920. #u144881_div {
  921. border-width:0px;
  922. position:absolute;
  923. left:0px;
  924. top:0px;
  925. width:40px;
  926. height:40px;
  927. background:inherit;
  928. background-color:rgba(255, 255, 255, 0);
  929. border:none;
  930. border-top:0px;
  931. border-right:0px;
  932. border-bottom:0px;
  933. border-radius:0px;
  934. border-top-left-radius:0px;
  935. border-bottom-left-radius:0px;
  936. -moz-box-shadow:none;
  937. -webkit-box-shadow:none;
  938. box-shadow:none;
  939. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  940. font-weight:500;
  941. font-style:normal;
  942. font-size:18px;
  943. text-align:center;
  944. }
  945. #u144881 {
  946. border-width:0px;
  947. position:absolute;
  948. left:682px;
  949. top:35px;
  950. width:40px;
  951. height:40px;
  952. display:flex;
  953. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  954. font-weight:500;
  955. font-style:normal;
  956. font-size:18px;
  957. text-align:center;
  958. }
  959. #u144881 .text {
  960. position:absolute;
  961. align-self:center;
  962. padding:5px 10px 5px 0px;
  963. box-sizing:border-box;
  964. width:100%;
  965. }
  966. #u144881_text {
  967. border-width:0px;
  968. word-wrap:break-word;
  969. text-transform:none;
  970. }
  971. #u144882_img {
  972. border-width:0px;
  973. position:absolute;
  974. left:0px;
  975. top:0px;
  976. width:13px;
  977. height:17px;
  978. }
  979. #u144882 {
  980. border-width:0px;
  981. position:absolute;
  982. left:669px;
  983. top:47px;
  984. width:13px;
  985. height:17px;
  986. display:flex;
  987. }
  988. #u144882 .text {
  989. position:absolute;
  990. align-self:center;
  991. padding:2px 2px 2px 2px;
  992. box-sizing:border-box;
  993. width:100%;
  994. }
  995. #u144882_text {
  996. border-width:0px;
  997. word-wrap:break-word;
  998. text-transform:none;
  999. visibility:hidden;
  1000. }
  1001. #u144883 {
  1002. border-width:0px;
  1003. position:absolute;
  1004. left:0px;
  1005. top:0px;
  1006. width:0px;
  1007. height:0px;
  1008. }
  1009. #u144884_div {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:680px;
  1015. height:60px;
  1016. background:inherit;
  1017. background-color:rgba(255, 255, 255, 1);
  1018. box-sizing:border-box;
  1019. border-width:1px;
  1020. border-style:solid;
  1021. border-color:rgba(215, 215, 215, 1);
  1022. border-radius:0px;
  1023. -moz-box-shadow:none;
  1024. -webkit-box-shadow:none;
  1025. box-shadow:none;
  1026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1027. font-weight:400;
  1028. font-style:normal;
  1029. font-size:14px;
  1030. color:#AAAAAA;
  1031. text-align:center;
  1032. line-height:30px;
  1033. }
  1034. #u144884 {
  1035. border-width:0px;
  1036. position:absolute;
  1037. left:42px;
  1038. top:1173px;
  1039. width:680px;
  1040. height:60px;
  1041. display:flex;
  1042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1043. font-weight:400;
  1044. font-style:normal;
  1045. font-size:14px;
  1046. color:#AAAAAA;
  1047. text-align:center;
  1048. line-height:30px;
  1049. }
  1050. #u144884 .text {
  1051. position:absolute;
  1052. align-self:center;
  1053. padding:5px 10px 5px 10px;
  1054. box-sizing:border-box;
  1055. width:100%;
  1056. }
  1057. #u144884_text {
  1058. border-width:0px;
  1059. word-wrap:break-word;
  1060. text-transform:none;
  1061. visibility:hidden;
  1062. }
  1063. #u144885_div {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:80px;
  1069. height:30px;
  1070. background:inherit;
  1071. background-color:rgba(24, 144, 255, 1);
  1072. border:none;
  1073. border-radius:4px;
  1074. -moz-box-shadow:none;
  1075. -webkit-box-shadow:none;
  1076. box-shadow:none;
  1077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1078. font-weight:400;
  1079. font-style:normal;
  1080. font-size:14px;
  1081. color:#FFFFFF;
  1082. }
  1083. #u144885 {
  1084. border-width:0px;
  1085. position:absolute;
  1086. left:597px;
  1087. top:1188px;
  1088. width:80px;
  1089. height:30px;
  1090. display:flex;
  1091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1092. font-weight:400;
  1093. font-style:normal;
  1094. font-size:14px;
  1095. color:#FFFFFF;
  1096. }
  1097. #u144885 .text {
  1098. position:absolute;
  1099. align-self:center;
  1100. padding:2px 2px 2px 2px;
  1101. box-sizing:border-box;
  1102. width:100%;
  1103. }
  1104. #u144885_text {
  1105. border-width:0px;
  1106. word-wrap:break-word;
  1107. text-transform:none;
  1108. }
  1109. #u144886_div {
  1110. border-width:0px;
  1111. position:absolute;
  1112. left:0px;
  1113. top:0px;
  1114. width:80px;
  1115. height:30px;
  1116. background:inherit;
  1117. background-color:rgba(255, 255, 255, 1);
  1118. box-sizing:border-box;
  1119. border-width:1px;
  1120. border-style:solid;
  1121. border-color:rgba(170, 170, 170, 1);
  1122. border-radius:4px;
  1123. -moz-box-shadow:none;
  1124. -webkit-box-shadow:none;
  1125. box-shadow:none;
  1126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1127. font-weight:400;
  1128. font-style:normal;
  1129. font-size:14px;
  1130. }
  1131. #u144886 {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:498px;
  1135. top:1188px;
  1136. width:80px;
  1137. height:30px;
  1138. display:flex;
  1139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1140. font-weight:400;
  1141. font-style:normal;
  1142. font-size:14px;
  1143. }
  1144. #u144886 .text {
  1145. position:absolute;
  1146. align-self:center;
  1147. padding:2px 2px 2px 2px;
  1148. box-sizing:border-box;
  1149. width:100%;
  1150. }
  1151. #u144886_text {
  1152. border-width:0px;
  1153. word-wrap:break-word;
  1154. text-transform:none;
  1155. }
  1156. #u144887_div {
  1157. border-width:0px;
  1158. position:absolute;
  1159. left:0px;
  1160. top:0px;
  1161. width:140px;
  1162. height:121px;
  1163. background:inherit;
  1164. background-color:rgba(242, 242, 242, 1);
  1165. border:none;
  1166. border-radius:0px;
  1167. -moz-box-shadow:none;
  1168. -webkit-box-shadow:none;
  1169. box-shadow:none;
  1170. font-size:48px;
  1171. color:#D7D7D7;
  1172. }
  1173. #u144887 {
  1174. border-width:0px;
  1175. position:absolute;
  1176. left:194px;
  1177. top:454px;
  1178. width:140px;
  1179. height:121px;
  1180. display:flex;
  1181. font-size:48px;
  1182. color:#D7D7D7;
  1183. }
  1184. #u144887 .text {
  1185. position:absolute;
  1186. align-self:center;
  1187. padding:2px 2px 2px 2px;
  1188. box-sizing:border-box;
  1189. width:100%;
  1190. }
  1191. #u144887_text {
  1192. border-width:0px;
  1193. word-wrap:break-word;
  1194. text-transform:none;
  1195. }
  1196. #u144888_div {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:0px;
  1200. top:0px;
  1201. width:208px;
  1202. height:44px;
  1203. background:inherit;
  1204. background-color:rgba(255, 255, 255, 0);
  1205. border:none;
  1206. border-top:0px;
  1207. border-right:0px;
  1208. border-bottom:0px;
  1209. border-radius:0px;
  1210. border-top-left-radius:0px;
  1211. border-bottom-left-radius:0px;
  1212. -moz-box-shadow:none;
  1213. -webkit-box-shadow:none;
  1214. box-shadow:none;
  1215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1216. font-weight:400;
  1217. font-style:normal;
  1218. font-size:12px;
  1219. color:#AAAAAA;
  1220. }
  1221. #u144888 {
  1222. border-width:0px;
  1223. position:absolute;
  1224. left:351px;
  1225. top:471px;
  1226. width:208px;
  1227. height:44px;
  1228. display:flex;
  1229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1230. font-weight:400;
  1231. font-style:normal;
  1232. font-size:12px;
  1233. color:#AAAAAA;
  1234. }
  1235. #u144888 .text {
  1236. position:absolute;
  1237. align-self:center;
  1238. padding:5px 10px 5px 0px;
  1239. box-sizing:border-box;
  1240. width:100%;
  1241. }
  1242. #u144888_text {
  1243. border-width:0px;
  1244. word-wrap:break-word;
  1245. text-transform:none;
  1246. }
  1247. #u144889_div {
  1248. border-width:0px;
  1249. position:absolute;
  1250. left:0px;
  1251. top:0px;
  1252. width:88px;
  1253. height:30px;
  1254. background:inherit;
  1255. background-color:rgba(255, 255, 255, 0);
  1256. border:none;
  1257. border-top:0px;
  1258. border-right:0px;
  1259. border-bottom:0px;
  1260. border-radius:0px;
  1261. border-top-left-radius:0px;
  1262. border-bottom-left-radius:0px;
  1263. -moz-box-shadow:none;
  1264. -webkit-box-shadow:none;
  1265. box-shadow:none;
  1266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1267. font-weight:400;
  1268. font-style:normal;
  1269. font-size:14px;
  1270. }
  1271. #u144889 {
  1272. border-width:0px;
  1273. position:absolute;
  1274. left:91px;
  1275. top:359px;
  1276. width:88px;
  1277. height:30px;
  1278. display:flex;
  1279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1280. font-weight:400;
  1281. font-style:normal;
  1282. font-size:14px;
  1283. }
  1284. #u144889 .text {
  1285. position:absolute;
  1286. align-self:center;
  1287. padding:5px 10px 5px 0px;
  1288. box-sizing:border-box;
  1289. width:100%;
  1290. }
  1291. #u144889_text {
  1292. border-width:0px;
  1293. white-space:nowrap;
  1294. text-transform:none;
  1295. }
  1296. #u144890_div {
  1297. border-width:0px;
  1298. position:absolute;
  1299. left:0px;
  1300. top:0px;
  1301. width:81px;
  1302. height:30px;
  1303. background:inherit;
  1304. background-color:rgba(255, 255, 255, 0);
  1305. border:none;
  1306. border-top:0px;
  1307. border-right:0px;
  1308. border-bottom:0px;
  1309. border-radius:0px;
  1310. border-top-left-radius:0px;
  1311. border-bottom-left-radius:0px;
  1312. -moz-box-shadow:none;
  1313. -webkit-box-shadow:none;
  1314. box-shadow:none;
  1315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1316. font-weight:400;
  1317. font-style:normal;
  1318. font-size:14px;
  1319. }
  1320. #u144890 {
  1321. border-width:0px;
  1322. position:absolute;
  1323. left:91px;
  1324. top:840px;
  1325. width:81px;
  1326. height:30px;
  1327. display:flex;
  1328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1329. font-weight:400;
  1330. font-style:normal;
  1331. font-size:14px;
  1332. }
  1333. #u144890 .text {
  1334. position:absolute;
  1335. align-self:center;
  1336. padding:5px 10px 5px 0px;
  1337. box-sizing:border-box;
  1338. width:100%;
  1339. }
  1340. #u144890_text {
  1341. border-width:0px;
  1342. white-space:nowrap;
  1343. text-transform:none;
  1344. }
  1345. #u144891 {
  1346. border-width:0px;
  1347. position:absolute;
  1348. left:0px;
  1349. top:0px;
  1350. width:0px;
  1351. height:0px;
  1352. }
  1353. #u144892_div {
  1354. border-width:0px;
  1355. position:absolute;
  1356. left:0px;
  1357. top:0px;
  1358. width:400px;
  1359. height:80px;
  1360. background:inherit;
  1361. background-color:rgba(255, 255, 255, 1);
  1362. box-sizing:border-box;
  1363. border-width:1px;
  1364. border-style:solid;
  1365. border-color:rgba(170, 170, 170, 1);
  1366. border-radius:4px;
  1367. -moz-box-shadow:none;
  1368. -webkit-box-shadow:none;
  1369. box-shadow:none;
  1370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1371. font-weight:400;
  1372. font-style:normal;
  1373. text-align:left;
  1374. }
  1375. #u144892 {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:194px;
  1379. top:835px;
  1380. width:400px;
  1381. height:80px;
  1382. display:flex;
  1383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1384. font-weight:400;
  1385. font-style:normal;
  1386. text-align:left;
  1387. }
  1388. #u144892 .text {
  1389. position:absolute;
  1390. align-self:center;
  1391. padding:2px 2px 2px 10px;
  1392. box-sizing:border-box;
  1393. width:100%;
  1394. }
  1395. #u144892_text {
  1396. border-width:0px;
  1397. word-wrap:break-word;
  1398. text-transform:none;
  1399. visibility:hidden;
  1400. }
  1401. #u144893_input {
  1402. position:absolute;
  1403. left:0px;
  1404. top:0px;
  1405. width:188px;
  1406. height:31px;
  1407. padding:2px 2px 2px 2px;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. font-size:13px;
  1412. letter-spacing:normal;
  1413. color:#AAAAAA;
  1414. vertical-align:none;
  1415. text-align:left;
  1416. text-transform:none;
  1417. background-color:transparent;
  1418. border-color:transparent;
  1419. }
  1420. #u144893_input.disabled {
  1421. position:absolute;
  1422. left:0px;
  1423. top:0px;
  1424. width:188px;
  1425. height:31px;
  1426. padding:2px 2px 2px 2px;
  1427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1428. font-weight:400;
  1429. font-style:normal;
  1430. font-size:13px;
  1431. letter-spacing:normal;
  1432. color:#AAAAAA;
  1433. vertical-align:none;
  1434. text-align:left;
  1435. text-transform:none;
  1436. background-color:transparent;
  1437. border-color:transparent;
  1438. }
  1439. #u144893_div {
  1440. border-width:0px;
  1441. position:absolute;
  1442. left:0px;
  1443. top:0px;
  1444. width:188px;
  1445. height:31px;
  1446. background:inherit;
  1447. background-color:rgba(255, 255, 255, 0);
  1448. border:none;
  1449. border-radius:0px;
  1450. -moz-box-shadow:none;
  1451. -webkit-box-shadow:none;
  1452. box-shadow:none;
  1453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1454. font-weight:400;
  1455. font-style:normal;
  1456. color:#AAAAAA;
  1457. }
  1458. #u144893 {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:204px;
  1462. top:840px;
  1463. width:188px;
  1464. height:31px;
  1465. display:flex;
  1466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1467. font-weight:400;
  1468. font-style:normal;
  1469. color:#AAAAAA;
  1470. }
  1471. #u144893 .text {
  1472. position:absolute;
  1473. align-self:center;
  1474. padding:2px 2px 2px 2px;
  1475. box-sizing:border-box;
  1476. width:100%;
  1477. }
  1478. #u144893_div.disabled {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:188px;
  1484. height:31px;
  1485. background:inherit;
  1486. background-color:rgba(240, 240, 240, 1);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. color:#AAAAAA;
  1496. }
  1497. #u144893.disabled {
  1498. }
  1499. #u144894_div {
  1500. border-width:0px;
  1501. position:absolute;
  1502. left:0px;
  1503. top:0px;
  1504. width:39px;
  1505. height:24px;
  1506. background:inherit;
  1507. background-color:rgba(255, 255, 255, 0);
  1508. border:none;
  1509. border-top:0px;
  1510. border-right:0px;
  1511. border-bottom:0px;
  1512. border-radius:0px;
  1513. border-top-left-radius:0px;
  1514. border-bottom-left-radius:0px;
  1515. -moz-box-shadow:none;
  1516. -webkit-box-shadow:none;
  1517. box-shadow:none;
  1518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1519. font-weight:400;
  1520. font-style:normal;
  1521. font-size:10px;
  1522. color:#AAAAAA;
  1523. text-align:right;
  1524. }
  1525. #u144894 {
  1526. border-width:0px;
  1527. position:absolute;
  1528. left:552px;
  1529. top:890px;
  1530. width:39px;
  1531. height:24px;
  1532. display:flex;
  1533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1534. font-weight:400;
  1535. font-style:normal;
  1536. font-size:10px;
  1537. color:#AAAAAA;
  1538. text-align:right;
  1539. }
  1540. #u144894 .text {
  1541. position:absolute;
  1542. align-self:center;
  1543. padding:5px 0px 5px 0px;
  1544. box-sizing:border-box;
  1545. width:100%;
  1546. }
  1547. #u144894_text {
  1548. border-width:0px;
  1549. white-space:nowrap;
  1550. text-transform:none;
  1551. }
  1552. #u144895 {
  1553. border-width:0px;
  1554. position:absolute;
  1555. left:0px;
  1556. top:0px;
  1557. width:0px;
  1558. height:0px;
  1559. }
  1560. #u144896_div {
  1561. border-width:0px;
  1562. position:absolute;
  1563. left:0px;
  1564. top:0px;
  1565. width:400px;
  1566. height:40px;
  1567. background:inherit;
  1568. background-color:rgba(255, 255, 255, 1);
  1569. box-sizing:border-box;
  1570. border-width:1px;
  1571. border-style:solid;
  1572. border-color:rgba(170, 170, 170, 1);
  1573. border-radius:4px;
  1574. -moz-box-shadow:none;
  1575. -webkit-box-shadow:none;
  1576. box-shadow:none;
  1577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1578. font-weight:400;
  1579. font-style:normal;
  1580. text-align:left;
  1581. }
  1582. #u144896 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:194px;
  1586. top:354px;
  1587. width:400px;
  1588. height:40px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. text-align:left;
  1594. }
  1595. #u144896 .text {
  1596. position:absolute;
  1597. align-self:center;
  1598. padding:2px 2px 2px 10px;
  1599. box-sizing:border-box;
  1600. width:100%;
  1601. }
  1602. #u144896_text {
  1603. border-width:0px;
  1604. word-wrap:break-word;
  1605. text-transform:none;
  1606. visibility:hidden;
  1607. }
  1608. #u144897_input {
  1609. position:absolute;
  1610. left:0px;
  1611. top:0px;
  1612. width:188px;
  1613. height:31px;
  1614. padding:2px 2px 2px 2px;
  1615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1616. font-weight:400;
  1617. font-style:normal;
  1618. font-size:13px;
  1619. letter-spacing:normal;
  1620. color:#AAAAAA;
  1621. vertical-align:none;
  1622. text-align:left;
  1623. text-transform:none;
  1624. background-color:transparent;
  1625. border-color:transparent;
  1626. }
  1627. #u144897_input.disabled {
  1628. position:absolute;
  1629. left:0px;
  1630. top:0px;
  1631. width:188px;
  1632. height:31px;
  1633. padding:2px 2px 2px 2px;
  1634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1635. font-weight:400;
  1636. font-style:normal;
  1637. font-size:13px;
  1638. letter-spacing:normal;
  1639. color:#AAAAAA;
  1640. vertical-align:none;
  1641. text-align:left;
  1642. text-transform:none;
  1643. background-color:transparent;
  1644. border-color:transparent;
  1645. }
  1646. #u144897_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:188px;
  1652. height:31px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 0);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. color:#AAAAAA;
  1664. }
  1665. #u144897 {
  1666. border-width:0px;
  1667. position:absolute;
  1668. left:204px;
  1669. top:359px;
  1670. width:188px;
  1671. height:31px;
  1672. display:flex;
  1673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1674. font-weight:400;
  1675. font-style:normal;
  1676. color:#AAAAAA;
  1677. }
  1678. #u144897 .text {
  1679. position:absolute;
  1680. align-self:center;
  1681. padding:2px 2px 2px 2px;
  1682. box-sizing:border-box;
  1683. width:100%;
  1684. }
  1685. #u144897_div.disabled {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:0px;
  1689. top:0px;
  1690. width:188px;
  1691. height:31px;
  1692. background:inherit;
  1693. background-color:rgba(240, 240, 240, 1);
  1694. border:none;
  1695. border-radius:0px;
  1696. -moz-box-shadow:none;
  1697. -webkit-box-shadow:none;
  1698. box-shadow:none;
  1699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1700. font-weight:400;
  1701. font-style:normal;
  1702. color:#AAAAAA;
  1703. }
  1704. #u144897.disabled {
  1705. }
  1706. #u144898_div {
  1707. border-width:0px;
  1708. position:absolute;
  1709. left:0px;
  1710. top:0px;
  1711. width:88px;
  1712. height:30px;
  1713. background:inherit;
  1714. background-color:rgba(255, 255, 255, 0);
  1715. border:none;
  1716. border-top:0px;
  1717. border-right:0px;
  1718. border-bottom:0px;
  1719. border-radius:0px;
  1720. border-top-left-radius:0px;
  1721. border-bottom-left-radius:0px;
  1722. -moz-box-shadow:none;
  1723. -webkit-box-shadow:none;
  1724. box-shadow:none;
  1725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1726. font-weight:400;
  1727. font-style:normal;
  1728. font-size:14px;
  1729. }
  1730. #u144898 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:91px;
  1734. top:109px;
  1735. width:88px;
  1736. height:30px;
  1737. display:flex;
  1738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1739. font-weight:400;
  1740. font-style:normal;
  1741. font-size:14px;
  1742. }
  1743. #u144898 .text {
  1744. position:absolute;
  1745. align-self:center;
  1746. padding:5px 10px 5px 0px;
  1747. box-sizing:border-box;
  1748. width:100%;
  1749. }
  1750. #u144898_text {
  1751. border-width:0px;
  1752. white-space:nowrap;
  1753. text-transform:none;
  1754. }
  1755. #u144899 {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:0px;
  1759. top:0px;
  1760. width:0px;
  1761. height:0px;
  1762. }
  1763. #u144900_div {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:0px;
  1767. top:0px;
  1768. width:400px;
  1769. height:40px;
  1770. background:inherit;
  1771. background-color:rgba(255, 255, 255, 1);
  1772. box-sizing:border-box;
  1773. border-width:1px;
  1774. border-style:solid;
  1775. border-color:rgba(170, 170, 170, 1);
  1776. border-radius:4px;
  1777. -moz-box-shadow:none;
  1778. -webkit-box-shadow:none;
  1779. box-shadow:none;
  1780. }
  1781. #u144900 {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:194px;
  1785. top:104px;
  1786. width:400px;
  1787. height:40px;
  1788. display:flex;
  1789. }
  1790. #u144900 .text {
  1791. position:absolute;
  1792. align-self:center;
  1793. padding:2px 2px 2px 0px;
  1794. box-sizing:border-box;
  1795. width:100%;
  1796. }
  1797. #u144900_text {
  1798. border-width:0px;
  1799. word-wrap:break-word;
  1800. text-transform:none;
  1801. visibility:hidden;
  1802. }
  1803. #u144901_input {
  1804. position:absolute;
  1805. left:0px;
  1806. top:0px;
  1807. width:380px;
  1808. height:30px;
  1809. padding:2px 2px 2px 0px;
  1810. font-family:'ArialMT', 'Arial', sans-serif;
  1811. font-weight:400;
  1812. font-style:normal;
  1813. font-size:13px;
  1814. letter-spacing:normal;
  1815. color:#AAAAAA;
  1816. vertical-align:none;
  1817. text-align:left;
  1818. text-transform:none;
  1819. background-color:transparent;
  1820. border-color:transparent;
  1821. }
  1822. #u144901_input.disabled {
  1823. position:absolute;
  1824. left:0px;
  1825. top:0px;
  1826. width:380px;
  1827. height:30px;
  1828. padding:2px 2px 2px 0px;
  1829. font-family:'ArialMT', 'Arial', sans-serif;
  1830. font-weight:400;
  1831. font-style:normal;
  1832. font-size:13px;
  1833. letter-spacing:normal;
  1834. color:#AAAAAA;
  1835. vertical-align:none;
  1836. text-align:left;
  1837. text-transform:none;
  1838. background-color:transparent;
  1839. border-color:transparent;
  1840. }
  1841. #u144901_div {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:0px;
  1845. top:0px;
  1846. width:380px;
  1847. height:30px;
  1848. background:inherit;
  1849. background-color:rgba(255, 255, 255, 1);
  1850. border:none;
  1851. border-radius:0px;
  1852. -moz-box-shadow:none;
  1853. -webkit-box-shadow:none;
  1854. box-shadow:none;
  1855. color:#AAAAAA;
  1856. }
  1857. #u144901 {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:204px;
  1861. top:110px;
  1862. width:380px;
  1863. height:30px;
  1864. display:flex;
  1865. color:#AAAAAA;
  1866. }
  1867. #u144901 .text {
  1868. position:absolute;
  1869. align-self:flex-start;
  1870. padding:2px 2px 2px 0px;
  1871. box-sizing:border-box;
  1872. width:100%;
  1873. }
  1874. #u144901_div.disabled {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:0px;
  1878. top:0px;
  1879. width:380px;
  1880. height:30px;
  1881. background:inherit;
  1882. background-color:rgba(240, 240, 240, 1);
  1883. border:none;
  1884. border-radius:0px;
  1885. -moz-box-shadow:none;
  1886. -webkit-box-shadow:none;
  1887. box-shadow:none;
  1888. color:#AAAAAA;
  1889. }
  1890. #u144901.disabled {
  1891. }
  1892. .u144901_input_option {
  1893. }
  1894. #u144902_div {
  1895. border-width:0px;
  1896. position:absolute;
  1897. left:0px;
  1898. top:0px;
  1899. width:88px;
  1900. height:30px;
  1901. background:inherit;
  1902. background-color:rgba(255, 255, 255, 0);
  1903. border:none;
  1904. border-top:0px;
  1905. border-right:0px;
  1906. border-bottom:0px;
  1907. border-radius:0px;
  1908. border-top-left-radius:0px;
  1909. border-bottom-left-radius:0px;
  1910. -moz-box-shadow:none;
  1911. -webkit-box-shadow:none;
  1912. box-shadow:none;
  1913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1914. font-weight:400;
  1915. font-style:normal;
  1916. font-size:14px;
  1917. }
  1918. #u144902 {
  1919. border-width:0px;
  1920. position:absolute;
  1921. left:91px;
  1922. top:209px;
  1923. width:88px;
  1924. height:30px;
  1925. display:flex;
  1926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1927. font-weight:400;
  1928. font-style:normal;
  1929. font-size:14px;
  1930. }
  1931. #u144902 .text {
  1932. position:absolute;
  1933. align-self:center;
  1934. padding:5px 10px 5px 0px;
  1935. box-sizing:border-box;
  1936. width:100%;
  1937. }
  1938. #u144902_text {
  1939. border-width:0px;
  1940. white-space:nowrap;
  1941. text-transform:none;
  1942. }
  1943. #u144903 {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:0px;
  1947. top:0px;
  1948. width:0px;
  1949. height:0px;
  1950. }
  1951. #u144904_div {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:0px;
  1955. top:0px;
  1956. width:400px;
  1957. height:40px;
  1958. background:inherit;
  1959. background-color:rgba(255, 255, 255, 1);
  1960. box-sizing:border-box;
  1961. border-width:1px;
  1962. border-style:solid;
  1963. border-color:rgba(170, 170, 170, 1);
  1964. border-radius:4px;
  1965. -moz-box-shadow:none;
  1966. -webkit-box-shadow:none;
  1967. box-shadow:none;
  1968. }
  1969. #u144904 {
  1970. border-width:0px;
  1971. position:absolute;
  1972. left:194px;
  1973. top:204px;
  1974. width:400px;
  1975. height:40px;
  1976. display:flex;
  1977. }
  1978. #u144904 .text {
  1979. position:absolute;
  1980. align-self:center;
  1981. padding:2px 2px 2px 0px;
  1982. box-sizing:border-box;
  1983. width:100%;
  1984. }
  1985. #u144904_text {
  1986. border-width:0px;
  1987. word-wrap:break-word;
  1988. text-transform:none;
  1989. visibility:hidden;
  1990. }
  1991. #u144905_input {
  1992. position:absolute;
  1993. left:0px;
  1994. top:0px;
  1995. width:380px;
  1996. height:30px;
  1997. padding:2px 2px 2px 0px;
  1998. font-family:'ArialMT', 'Arial', sans-serif;
  1999. font-weight:400;
  2000. font-style:normal;
  2001. font-size:13px;
  2002. letter-spacing:normal;
  2003. color:#AAAAAA;
  2004. vertical-align:none;
  2005. text-align:left;
  2006. text-transform:none;
  2007. background-color:transparent;
  2008. border-color:transparent;
  2009. }
  2010. #u144905_input.disabled {
  2011. position:absolute;
  2012. left:0px;
  2013. top:0px;
  2014. width:380px;
  2015. height:30px;
  2016. padding:2px 2px 2px 0px;
  2017. font-family:'ArialMT', 'Arial', sans-serif;
  2018. font-weight:400;
  2019. font-style:normal;
  2020. font-size:13px;
  2021. letter-spacing:normal;
  2022. color:#AAAAAA;
  2023. vertical-align:none;
  2024. text-align:left;
  2025. text-transform:none;
  2026. background-color:transparent;
  2027. border-color:transparent;
  2028. }
  2029. #u144905_div {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:0px;
  2033. top:0px;
  2034. width:380px;
  2035. height:30px;
  2036. background:inherit;
  2037. background-color:rgba(255, 255, 255, 1);
  2038. border:none;
  2039. border-radius:0px;
  2040. -moz-box-shadow:none;
  2041. -webkit-box-shadow:none;
  2042. box-shadow:none;
  2043. color:#AAAAAA;
  2044. }
  2045. #u144905 {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:204px;
  2049. top:210px;
  2050. width:380px;
  2051. height:30px;
  2052. display:flex;
  2053. color:#AAAAAA;
  2054. }
  2055. #u144905 .text {
  2056. position:absolute;
  2057. align-self:flex-start;
  2058. padding:2px 2px 2px 0px;
  2059. box-sizing:border-box;
  2060. width:100%;
  2061. }
  2062. #u144905_div.disabled {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:0px;
  2066. top:0px;
  2067. width:380px;
  2068. height:30px;
  2069. background:inherit;
  2070. background-color:rgba(240, 240, 240, 1);
  2071. border:none;
  2072. border-radius:0px;
  2073. -moz-box-shadow:none;
  2074. -webkit-box-shadow:none;
  2075. box-shadow:none;
  2076. color:#AAAAAA;
  2077. }
  2078. #u144905.disabled {
  2079. }
  2080. .u144905_input_option {
  2081. }
  2082. #u144906_div {
  2083. border-width:0px;
  2084. position:absolute;
  2085. left:0px;
  2086. top:0px;
  2087. width:88px;
  2088. height:30px;
  2089. background:inherit;
  2090. background-color:rgba(255, 255, 255, 0);
  2091. border:none;
  2092. border-top:0px;
  2093. border-right:0px;
  2094. border-bottom:0px;
  2095. border-radius:0px;
  2096. border-top-left-radius:0px;
  2097. border-bottom-left-radius:0px;
  2098. -moz-box-shadow:none;
  2099. -webkit-box-shadow:none;
  2100. box-shadow:none;
  2101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2102. font-weight:400;
  2103. font-style:normal;
  2104. font-size:14px;
  2105. }
  2106. #u144906 {
  2107. border-width:0px;
  2108. position:absolute;
  2109. left:91px;
  2110. top:259px;
  2111. width:88px;
  2112. height:30px;
  2113. display:flex;
  2114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2115. font-weight:400;
  2116. font-style:normal;
  2117. font-size:14px;
  2118. }
  2119. #u144906 .text {
  2120. position:absolute;
  2121. align-self:center;
  2122. padding:5px 10px 5px 0px;
  2123. box-sizing:border-box;
  2124. width:100%;
  2125. }
  2126. #u144906_text {
  2127. border-width:0px;
  2128. white-space:nowrap;
  2129. text-transform:none;
  2130. }
  2131. #u144907 {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:0px;
  2135. top:0px;
  2136. width:0px;
  2137. height:0px;
  2138. }
  2139. #u144908_div {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:0px;
  2143. top:0px;
  2144. width:400px;
  2145. height:40px;
  2146. background:inherit;
  2147. background-color:rgba(255, 255, 255, 1);
  2148. box-sizing:border-box;
  2149. border-width:1px;
  2150. border-style:solid;
  2151. border-color:rgba(170, 170, 170, 1);
  2152. border-radius:4px;
  2153. -moz-box-shadow:none;
  2154. -webkit-box-shadow:none;
  2155. box-shadow:none;
  2156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2157. font-weight:400;
  2158. font-style:normal;
  2159. text-align:left;
  2160. }
  2161. #u144908 {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:194px;
  2165. top:254px;
  2166. width:400px;
  2167. height:40px;
  2168. display:flex;
  2169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2170. font-weight:400;
  2171. font-style:normal;
  2172. text-align:left;
  2173. }
  2174. #u144908 .text {
  2175. position:absolute;
  2176. align-self:center;
  2177. padding:2px 2px 2px 10px;
  2178. box-sizing:border-box;
  2179. width:100%;
  2180. }
  2181. #u144908_text {
  2182. border-width:0px;
  2183. word-wrap:break-word;
  2184. text-transform:none;
  2185. visibility:hidden;
  2186. }
  2187. #u144909_input {
  2188. position:absolute;
  2189. left:0px;
  2190. top:0px;
  2191. width:188px;
  2192. height:31px;
  2193. padding:2px 2px 2px 2px;
  2194. font-family:'PingFangSC-Regular', 'PingFang SC', 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. #u144909_input.disabled {
  2207. position:absolute;
  2208. left:0px;
  2209. top:0px;
  2210. width:188px;
  2211. height:31px;
  2212. padding:2px 2px 2px 2px;
  2213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2214. font-weight:400;
  2215. font-style:normal;
  2216. font-size:13px;
  2217. letter-spacing:normal;
  2218. color:#AAAAAA;
  2219. vertical-align:none;
  2220. text-align:left;
  2221. text-transform:none;
  2222. background-color:transparent;
  2223. border-color:transparent;
  2224. }
  2225. #u144909_div {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:0px;
  2229. top:0px;
  2230. width:188px;
  2231. height:31px;
  2232. background:inherit;
  2233. background-color:rgba(255, 255, 255, 0);
  2234. border:none;
  2235. border-radius:0px;
  2236. -moz-box-shadow:none;
  2237. -webkit-box-shadow:none;
  2238. box-shadow:none;
  2239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2240. font-weight:400;
  2241. font-style:normal;
  2242. color:#AAAAAA;
  2243. }
  2244. #u144909 {
  2245. border-width:0px;
  2246. position:absolute;
  2247. left:204px;
  2248. top:259px;
  2249. width:188px;
  2250. height:31px;
  2251. display:flex;
  2252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2253. font-weight:400;
  2254. font-style:normal;
  2255. color:#AAAAAA;
  2256. }
  2257. #u144909 .text {
  2258. position:absolute;
  2259. align-self:center;
  2260. padding:2px 2px 2px 2px;
  2261. box-sizing:border-box;
  2262. width:100%;
  2263. }
  2264. #u144909_div.disabled {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:0px;
  2268. top:0px;
  2269. width:188px;
  2270. height:31px;
  2271. background:inherit;
  2272. background-color:rgba(240, 240, 240, 1);
  2273. border:none;
  2274. border-radius:0px;
  2275. -moz-box-shadow:none;
  2276. -webkit-box-shadow:none;
  2277. box-shadow:none;
  2278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2279. font-weight:400;
  2280. font-style:normal;
  2281. color:#AAAAAA;
  2282. }
  2283. #u144909.disabled {
  2284. }
  2285. #u144910_div {
  2286. border-width:0px;
  2287. position:absolute;
  2288. left:0px;
  2289. top:0px;
  2290. width:53px;
  2291. height:30px;
  2292. background:inherit;
  2293. background-color:rgba(255, 255, 255, 0);
  2294. border:none;
  2295. border-top:0px;
  2296. border-right:0px;
  2297. border-bottom:0px;
  2298. border-radius:0px;
  2299. border-top-left-radius:0px;
  2300. border-bottom-left-radius:0px;
  2301. -moz-box-shadow:none;
  2302. -webkit-box-shadow:none;
  2303. box-shadow:none;
  2304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2305. font-weight:400;
  2306. font-style:normal;
  2307. font-size:14px;
  2308. }
  2309. #u144910 {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:91px;
  2313. top:590px;
  2314. width:53px;
  2315. height:30px;
  2316. display:flex;
  2317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2318. font-weight:400;
  2319. font-style:normal;
  2320. font-size:14px;
  2321. }
  2322. #u144910 .text {
  2323. position:absolute;
  2324. align-self:center;
  2325. padding:5px 10px 5px 0px;
  2326. box-sizing:border-box;
  2327. width:100%;
  2328. }
  2329. #u144910_text {
  2330. border-width:0px;
  2331. white-space:nowrap;
  2332. text-transform:none;
  2333. }
  2334. #u144911 {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:0px;
  2340. height:0px;
  2341. }
  2342. #u144912_div {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:0px;
  2346. top:0px;
  2347. width:400px;
  2348. height:40px;
  2349. background:inherit;
  2350. background-color:rgba(255, 255, 255, 1);
  2351. box-sizing:border-box;
  2352. border-width:1px;
  2353. border-style:solid;
  2354. border-color:rgba(170, 170, 170, 1);
  2355. border-radius:4px;
  2356. -moz-box-shadow:none;
  2357. -webkit-box-shadow:none;
  2358. box-shadow:none;
  2359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2360. font-weight:400;
  2361. font-style:normal;
  2362. text-align:left;
  2363. }
  2364. #u144912 {
  2365. border-width:0px;
  2366. position:absolute;
  2367. left:194px;
  2368. top:585px;
  2369. width:400px;
  2370. height:40px;
  2371. display:flex;
  2372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2373. font-weight:400;
  2374. font-style:normal;
  2375. text-align:left;
  2376. }
  2377. #u144912 .text {
  2378. position:absolute;
  2379. align-self:center;
  2380. padding:2px 2px 2px 10px;
  2381. box-sizing:border-box;
  2382. width:100%;
  2383. }
  2384. #u144912_text {
  2385. border-width:0px;
  2386. word-wrap:break-word;
  2387. text-transform:none;
  2388. visibility:hidden;
  2389. }
  2390. #u144913_input {
  2391. position:absolute;
  2392. left:0px;
  2393. top:0px;
  2394. width:188px;
  2395. height:31px;
  2396. padding:2px 2px 2px 2px;
  2397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2398. font-weight:400;
  2399. font-style:normal;
  2400. font-size:13px;
  2401. letter-spacing:normal;
  2402. color:#AAAAAA;
  2403. vertical-align:none;
  2404. text-align:left;
  2405. text-transform:none;
  2406. background-color:transparent;
  2407. border-color:transparent;
  2408. }
  2409. #u144913_input.disabled {
  2410. position:absolute;
  2411. left:0px;
  2412. top:0px;
  2413. width:188px;
  2414. height:31px;
  2415. padding:2px 2px 2px 2px;
  2416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2417. font-weight:400;
  2418. font-style:normal;
  2419. font-size:13px;
  2420. letter-spacing:normal;
  2421. color:#AAAAAA;
  2422. vertical-align:none;
  2423. text-align:left;
  2424. text-transform:none;
  2425. background-color:transparent;
  2426. border-color:transparent;
  2427. }
  2428. #u144913_div {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:0px;
  2432. top:0px;
  2433. width:188px;
  2434. height:31px;
  2435. background:inherit;
  2436. background-color:rgba(255, 255, 255, 0);
  2437. border:none;
  2438. border-radius:0px;
  2439. -moz-box-shadow:none;
  2440. -webkit-box-shadow:none;
  2441. box-shadow:none;
  2442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2443. font-weight:400;
  2444. font-style:normal;
  2445. color:#AAAAAA;
  2446. }
  2447. #u144913 {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:204px;
  2451. top:590px;
  2452. width:188px;
  2453. height:31px;
  2454. display:flex;
  2455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2456. font-weight:400;
  2457. font-style:normal;
  2458. color:#AAAAAA;
  2459. }
  2460. #u144913 .text {
  2461. position:absolute;
  2462. align-self:center;
  2463. padding:2px 2px 2px 2px;
  2464. box-sizing:border-box;
  2465. width:100%;
  2466. }
  2467. #u144913_div.disabled {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:0px;
  2471. top:0px;
  2472. width:188px;
  2473. height:31px;
  2474. background:inherit;
  2475. background-color:rgba(240, 240, 240, 1);
  2476. border:none;
  2477. border-radius:0px;
  2478. -moz-box-shadow:none;
  2479. -webkit-box-shadow:none;
  2480. box-shadow:none;
  2481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2482. font-weight:400;
  2483. font-style:normal;
  2484. color:#AAAAAA;
  2485. }
  2486. #u144913.disabled {
  2487. }
  2488. #u144914_div {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:0px;
  2492. top:0px;
  2493. width:67px;
  2494. height:30px;
  2495. background:inherit;
  2496. background-color:rgba(255, 255, 255, 0);
  2497. border:none;
  2498. border-top:0px;
  2499. border-right:0px;
  2500. border-bottom:0px;
  2501. border-radius:0px;
  2502. border-top-left-radius:0px;
  2503. border-bottom-left-radius:0px;
  2504. -moz-box-shadow:none;
  2505. -webkit-box-shadow:none;
  2506. box-shadow:none;
  2507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2508. font-weight:400;
  2509. font-style:normal;
  2510. font-size:14px;
  2511. }
  2512. #u144914 {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:91px;
  2516. top:690px;
  2517. width:67px;
  2518. height:30px;
  2519. display:flex;
  2520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2521. font-weight:400;
  2522. font-style:normal;
  2523. font-size:14px;
  2524. }
  2525. #u144914 .text {
  2526. position:absolute;
  2527. align-self:center;
  2528. padding:5px 10px 5px 0px;
  2529. box-sizing:border-box;
  2530. width:100%;
  2531. }
  2532. #u144914_text {
  2533. border-width:0px;
  2534. white-space:nowrap;
  2535. text-transform:none;
  2536. }
  2537. #u144915 {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:0px;
  2541. top:0px;
  2542. width:0px;
  2543. height:0px;
  2544. }
  2545. #u144916_div {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:0px;
  2549. top:0px;
  2550. width:400px;
  2551. height:40px;
  2552. background:inherit;
  2553. background-color:rgba(255, 255, 255, 1);
  2554. box-sizing:border-box;
  2555. border-width:1px;
  2556. border-style:solid;
  2557. border-color:rgba(170, 170, 170, 1);
  2558. border-radius:4px;
  2559. -moz-box-shadow:none;
  2560. -webkit-box-shadow:none;
  2561. box-shadow:none;
  2562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2563. font-weight:400;
  2564. font-style:normal;
  2565. text-align:left;
  2566. }
  2567. #u144916 {
  2568. border-width:0px;
  2569. position:absolute;
  2570. left:194px;
  2571. top:685px;
  2572. width:400px;
  2573. height:40px;
  2574. display:flex;
  2575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2576. font-weight:400;
  2577. font-style:normal;
  2578. text-align:left;
  2579. }
  2580. #u144916 .text {
  2581. position:absolute;
  2582. align-self:center;
  2583. padding:2px 2px 2px 10px;
  2584. box-sizing:border-box;
  2585. width:100%;
  2586. }
  2587. #u144916_text {
  2588. border-width:0px;
  2589. word-wrap:break-word;
  2590. text-transform:none;
  2591. visibility:hidden;
  2592. }
  2593. #u144917_input {
  2594. position:absolute;
  2595. left:0px;
  2596. top:0px;
  2597. width:188px;
  2598. height:31px;
  2599. padding:2px 2px 2px 2px;
  2600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2601. font-weight:400;
  2602. font-style:normal;
  2603. font-size:13px;
  2604. letter-spacing:normal;
  2605. color:#AAAAAA;
  2606. vertical-align:none;
  2607. text-align:left;
  2608. text-transform:none;
  2609. background-color:transparent;
  2610. border-color:transparent;
  2611. }
  2612. #u144917_input.disabled {
  2613. position:absolute;
  2614. left:0px;
  2615. top:0px;
  2616. width:188px;
  2617. height:31px;
  2618. padding:2px 2px 2px 2px;
  2619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2620. font-weight:400;
  2621. font-style:normal;
  2622. font-size:13px;
  2623. letter-spacing:normal;
  2624. color:#AAAAAA;
  2625. vertical-align:none;
  2626. text-align:left;
  2627. text-transform:none;
  2628. background-color:transparent;
  2629. border-color:transparent;
  2630. }
  2631. #u144917_div {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:0px;
  2635. top:0px;
  2636. width:188px;
  2637. height:31px;
  2638. background:inherit;
  2639. background-color:rgba(255, 255, 255, 0);
  2640. border:none;
  2641. border-radius:0px;
  2642. -moz-box-shadow:none;
  2643. -webkit-box-shadow:none;
  2644. box-shadow:none;
  2645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2646. font-weight:400;
  2647. font-style:normal;
  2648. color:#AAAAAA;
  2649. }
  2650. #u144917 {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:204px;
  2654. top:690px;
  2655. width:188px;
  2656. height:31px;
  2657. display:flex;
  2658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2659. font-weight:400;
  2660. font-style:normal;
  2661. color:#AAAAAA;
  2662. }
  2663. #u144917 .text {
  2664. position:absolute;
  2665. align-self:center;
  2666. padding:2px 2px 2px 2px;
  2667. box-sizing:border-box;
  2668. width:100%;
  2669. }
  2670. #u144917_div.disabled {
  2671. border-width:0px;
  2672. position:absolute;
  2673. left:0px;
  2674. top:0px;
  2675. width:188px;
  2676. height:31px;
  2677. background:inherit;
  2678. background-color:rgba(240, 240, 240, 1);
  2679. border:none;
  2680. border-radius:0px;
  2681. -moz-box-shadow:none;
  2682. -webkit-box-shadow:none;
  2683. box-shadow:none;
  2684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2685. font-weight:400;
  2686. font-style:normal;
  2687. color:#AAAAAA;
  2688. }
  2689. #u144917.disabled {
  2690. }
  2691. #u144918_div {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:0px;
  2695. top:0px;
  2696. width:81px;
  2697. height:30px;
  2698. background:inherit;
  2699. background-color:rgba(255, 255, 255, 0);
  2700. border:none;
  2701. border-top:0px;
  2702. border-right:0px;
  2703. border-bottom:0px;
  2704. border-radius:0px;
  2705. border-top-left-radius:0px;
  2706. border-bottom-left-radius:0px;
  2707. -moz-box-shadow:none;
  2708. -webkit-box-shadow:none;
  2709. box-shadow:none;
  2710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2711. font-weight:400;
  2712. font-style:normal;
  2713. font-size:14px;
  2714. }
  2715. #u144918 {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:91px;
  2719. top:740px;
  2720. width:81px;
  2721. height:30px;
  2722. display:flex;
  2723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2724. font-weight:400;
  2725. font-style:normal;
  2726. font-size:14px;
  2727. }
  2728. #u144918 .text {
  2729. position:absolute;
  2730. align-self:center;
  2731. padding:5px 10px 5px 0px;
  2732. box-sizing:border-box;
  2733. width:100%;
  2734. }
  2735. #u144918_text {
  2736. border-width:0px;
  2737. white-space:nowrap;
  2738. text-transform:none;
  2739. }
  2740. #u144919 {
  2741. border-width:0px;
  2742. position:absolute;
  2743. left:0px;
  2744. top:0px;
  2745. width:0px;
  2746. height:0px;
  2747. }
  2748. #u144920_div {
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:0px;
  2752. top:0px;
  2753. width:400px;
  2754. height:40px;
  2755. background:inherit;
  2756. background-color:rgba(255, 255, 255, 1);
  2757. box-sizing:border-box;
  2758. border-width:1px;
  2759. border-style:solid;
  2760. border-color:rgba(170, 170, 170, 1);
  2761. border-radius:4px;
  2762. -moz-box-shadow:none;
  2763. -webkit-box-shadow:none;
  2764. box-shadow:none;
  2765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2766. font-weight:400;
  2767. font-style:normal;
  2768. text-align:left;
  2769. }
  2770. #u144920 {
  2771. border-width:0px;
  2772. position:absolute;
  2773. left:194px;
  2774. top:735px;
  2775. width:400px;
  2776. height:40px;
  2777. display:flex;
  2778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2779. font-weight:400;
  2780. font-style:normal;
  2781. text-align:left;
  2782. }
  2783. #u144920 .text {
  2784. position:absolute;
  2785. align-self:center;
  2786. padding:2px 2px 2px 10px;
  2787. box-sizing:border-box;
  2788. width:100%;
  2789. }
  2790. #u144920_text {
  2791. border-width:0px;
  2792. word-wrap:break-word;
  2793. text-transform:none;
  2794. visibility:hidden;
  2795. }
  2796. #u144921_input {
  2797. position:absolute;
  2798. left:0px;
  2799. top:0px;
  2800. width:188px;
  2801. height:31px;
  2802. padding:2px 2px 2px 2px;
  2803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2804. font-weight:400;
  2805. font-style:normal;
  2806. font-size:13px;
  2807. letter-spacing:normal;
  2808. color:#AAAAAA;
  2809. vertical-align:none;
  2810. text-align:left;
  2811. text-transform:none;
  2812. background-color:transparent;
  2813. border-color:transparent;
  2814. }
  2815. #u144921_input.disabled {
  2816. position:absolute;
  2817. left:0px;
  2818. top:0px;
  2819. width:188px;
  2820. height:31px;
  2821. padding:2px 2px 2px 2px;
  2822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2823. font-weight:400;
  2824. font-style:normal;
  2825. font-size:13px;
  2826. letter-spacing:normal;
  2827. color:#AAAAAA;
  2828. vertical-align:none;
  2829. text-align:left;
  2830. text-transform:none;
  2831. background-color:transparent;
  2832. border-color:transparent;
  2833. }
  2834. #u144921_div {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:0px;
  2838. top:0px;
  2839. width:188px;
  2840. height:31px;
  2841. background:inherit;
  2842. background-color:rgba(255, 255, 255, 0);
  2843. border:none;
  2844. border-radius:0px;
  2845. -moz-box-shadow:none;
  2846. -webkit-box-shadow:none;
  2847. box-shadow:none;
  2848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2849. font-weight:400;
  2850. font-style:normal;
  2851. color:#AAAAAA;
  2852. }
  2853. #u144921 {
  2854. border-width:0px;
  2855. position:absolute;
  2856. left:204px;
  2857. top:740px;
  2858. width:188px;
  2859. height:31px;
  2860. display:flex;
  2861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2862. font-weight:400;
  2863. font-style:normal;
  2864. color:#AAAAAA;
  2865. }
  2866. #u144921 .text {
  2867. position:absolute;
  2868. align-self:center;
  2869. padding:2px 2px 2px 2px;
  2870. box-sizing:border-box;
  2871. width:100%;
  2872. }
  2873. #u144921_div.disabled {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:0px;
  2877. top:0px;
  2878. width:188px;
  2879. height:31px;
  2880. background:inherit;
  2881. background-color:rgba(240, 240, 240, 1);
  2882. border:none;
  2883. border-radius:0px;
  2884. -moz-box-shadow:none;
  2885. -webkit-box-shadow:none;
  2886. box-shadow:none;
  2887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2888. font-weight:400;
  2889. font-style:normal;
  2890. color:#AAAAAA;
  2891. }
  2892. #u144921.disabled {
  2893. }
  2894. #u144922_div {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:0px;
  2898. top:0px;
  2899. width:81px;
  2900. height:30px;
  2901. background:inherit;
  2902. background-color:rgba(255, 255, 255, 0);
  2903. border:none;
  2904. border-top:0px;
  2905. border-right:0px;
  2906. border-bottom:0px;
  2907. border-radius:0px;
  2908. border-top-left-radius:0px;
  2909. border-bottom-left-radius:0px;
  2910. -moz-box-shadow:none;
  2911. -webkit-box-shadow:none;
  2912. box-shadow:none;
  2913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2914. font-weight:400;
  2915. font-style:normal;
  2916. font-size:14px;
  2917. }
  2918. #u144922 {
  2919. border-width:0px;
  2920. position:absolute;
  2921. left:91px;
  2922. top:790px;
  2923. width:81px;
  2924. height:30px;
  2925. display:flex;
  2926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2927. font-weight:400;
  2928. font-style:normal;
  2929. font-size:14px;
  2930. }
  2931. #u144922 .text {
  2932. position:absolute;
  2933. align-self:center;
  2934. padding:5px 10px 5px 0px;
  2935. box-sizing:border-box;
  2936. width:100%;
  2937. }
  2938. #u144922_text {
  2939. border-width:0px;
  2940. white-space:nowrap;
  2941. text-transform:none;
  2942. }
  2943. #u144923 {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:0px;
  2947. top:0px;
  2948. width:0px;
  2949. height:0px;
  2950. }
  2951. #u144924_div {
  2952. border-width:0px;
  2953. position:absolute;
  2954. left:0px;
  2955. top:0px;
  2956. width:400px;
  2957. height:40px;
  2958. background:inherit;
  2959. background-color:rgba(255, 255, 255, 1);
  2960. box-sizing:border-box;
  2961. border-width:1px;
  2962. border-style:solid;
  2963. border-color:rgba(170, 170, 170, 1);
  2964. border-radius:4px;
  2965. -moz-box-shadow:none;
  2966. -webkit-box-shadow:none;
  2967. box-shadow:none;
  2968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2969. font-weight:400;
  2970. font-style:normal;
  2971. text-align:left;
  2972. }
  2973. #u144924 {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:194px;
  2977. top:785px;
  2978. width:400px;
  2979. height:40px;
  2980. display:flex;
  2981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2982. font-weight:400;
  2983. font-style:normal;
  2984. text-align:left;
  2985. }
  2986. #u144924 .text {
  2987. position:absolute;
  2988. align-self:center;
  2989. padding:2px 2px 2px 10px;
  2990. box-sizing:border-box;
  2991. width:100%;
  2992. }
  2993. #u144924_text {
  2994. border-width:0px;
  2995. word-wrap:break-word;
  2996. text-transform:none;
  2997. visibility:hidden;
  2998. }
  2999. #u144925_input {
  3000. position:absolute;
  3001. left:0px;
  3002. top:0px;
  3003. width:188px;
  3004. height:31px;
  3005. padding:2px 2px 2px 2px;
  3006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3007. font-weight:400;
  3008. font-style:normal;
  3009. font-size:13px;
  3010. letter-spacing:normal;
  3011. color:#AAAAAA;
  3012. vertical-align:none;
  3013. text-align:left;
  3014. text-transform:none;
  3015. background-color:transparent;
  3016. border-color:transparent;
  3017. }
  3018. #u144925_input.disabled {
  3019. position:absolute;
  3020. left:0px;
  3021. top:0px;
  3022. width:188px;
  3023. height:31px;
  3024. padding:2px 2px 2px 2px;
  3025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3026. font-weight:400;
  3027. font-style:normal;
  3028. font-size:13px;
  3029. letter-spacing:normal;
  3030. color:#AAAAAA;
  3031. vertical-align:none;
  3032. text-align:left;
  3033. text-transform:none;
  3034. background-color:transparent;
  3035. border-color:transparent;
  3036. }
  3037. #u144925_div {
  3038. border-width:0px;
  3039. position:absolute;
  3040. left:0px;
  3041. top:0px;
  3042. width:188px;
  3043. height:31px;
  3044. background:inherit;
  3045. background-color:rgba(255, 255, 255, 0);
  3046. border:none;
  3047. border-radius:0px;
  3048. -moz-box-shadow:none;
  3049. -webkit-box-shadow:none;
  3050. box-shadow:none;
  3051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3052. font-weight:400;
  3053. font-style:normal;
  3054. color:#AAAAAA;
  3055. }
  3056. #u144925 {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:204px;
  3060. top:790px;
  3061. width:188px;
  3062. height:31px;
  3063. display:flex;
  3064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3065. font-weight:400;
  3066. font-style:normal;
  3067. color:#AAAAAA;
  3068. }
  3069. #u144925 .text {
  3070. position:absolute;
  3071. align-self:center;
  3072. padding:2px 2px 2px 2px;
  3073. box-sizing:border-box;
  3074. width:100%;
  3075. }
  3076. #u144925_div.disabled {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:0px;
  3080. top:0px;
  3081. width:188px;
  3082. height:31px;
  3083. background:inherit;
  3084. background-color:rgba(240, 240, 240, 1);
  3085. border:none;
  3086. border-radius:0px;
  3087. -moz-box-shadow:none;
  3088. -webkit-box-shadow:none;
  3089. box-shadow:none;
  3090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3091. font-weight:400;
  3092. font-style:normal;
  3093. color:#AAAAAA;
  3094. }
  3095. #u144925.disabled {
  3096. }